Package org.apache.airavata.model.util

Source Code of org.apache.airavata.model.util.ProjectModelUtil

package org.apache.airavata.model.util;

import org.apache.airavata.model.workspace.Project;

public class ProjectModelUtil {
    public static Project createProject (String projectName, String owner,String description){
        Project project = new Project();
        project.setName(projectName);
        project.setOwner(owner);
        project.setDescription(description);
        return project;
    }

}
TOP

Related Classes of org.apache.airavata.model.util.ProjectModelUtil

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.