Uses of Class
cluster5.server.datastorage.domain.Project.Status

Packages that use Project.Status
cluster5.client   
cluster5.server   
cluster5.server.datastorage.domain   
cluster5.server.managers   
 

Uses of Project.Status in cluster5.client
 

Methods in cluster5.client that return Project.Status
 Project.Status ClusterInterface.getProjectStatus()
           
 Project.Status ClusterInterfaceImpl.getProjectStatus()
           
 

Uses of Project.Status in cluster5.server
 

Methods in cluster5.server that return Project.Status
 Project.Status ServerInterface4UserImpl.getProjectStatus(java.lang.String token, java.lang.Long projectId)
           
 Project.Status ServerInterface4User.getProjectStatus(java.lang.String token, java.lang.Long projectId)
           
 

Uses of Project.Status in cluster5.server.datastorage.domain
 

Methods in cluster5.server.datastorage.domain that return Project.Status
 Project.Status Project.getStatus()
           
static Project.Status Project.Status.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Project.Status[] Project.Status.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in cluster5.server.datastorage.domain with parameters of type Project.Status
 void Project.setStatus(Project.Status status)
           
 

Constructors in cluster5.server.datastorage.domain with parameters of type Project.Status
Project(java.lang.Long id, java.lang.Long userId, java.lang.String name, java.lang.String mainClass, Project.Status status, java.util.Date createdOn, long cpuTime)
           
 

Uses of Project.Status in cluster5.server.managers
 

Methods in cluster5.server.managers that return Project.Status
 Project.Status ProjectManager.checkRunningProjectStatus(Project project)
          Checks status of tasks associated with this project.
 

Methods in cluster5.server.managers with parameters of type Project.Status
 void ProjectManager.setProjectStatus(java.lang.String token, java.lang.Long projectId, Project.Status status)
          Sets project status to indicated value.