ch.systemsx.cisd.openbis.generic.shared.api.v1.dto
Class SpaceWithProjectsAndRoleAssignments

java.lang.Object
  extended by ch.systemsx.cisd.openbis.generic.shared.api.v1.dto.SpaceWithProjectsAndRoleAssignments
All Implemented Interfaces:
ch.systemsx.cisd.openbis.generic.shared.basic.ICodeHolder, java.io.Serializable

@JsonObject(value="SpaceWithProjectsAndRoleAssignments")
public class SpaceWithProjectsAndRoleAssignments
extends java.lang.Object
implements ch.systemsx.cisd.openbis.generic.shared.basic.ICodeHolder, java.io.Serializable

Bean which represents a space, all its projects, and all its relevant role assignments

See Also:
Serialized Form

Constructor Summary
SpaceWithProjectsAndRoleAssignments(java.lang.String code)
          Creates a new instance for the specified code.
 
Method Summary
 void add(Project project)
           
 void add(java.lang.String user, Role role)
           
 java.lang.String getCode()
          Returns the space code.
 java.util.List<Project> getProjects()
          Returns all projects of this space.
 java.util.Set<Role> getRoles(java.lang.String userID)
          Returns all access roles the specified user has on this space.
 java.util.Set<java.lang.String> getUsers()
          Returns the set of all users that have a role in this space.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SpaceWithProjectsAndRoleAssignments

public SpaceWithProjectsAndRoleAssignments(java.lang.String code)
Creates a new instance for the specified code.

Throws:
java.lang.IllegalArgumentException - if the code is null or an empty string.
Method Detail

getCode

public java.lang.String getCode()
Returns the space code.

Specified by:
getCode in interface ch.systemsx.cisd.openbis.generic.shared.basic.ICodeHolder

add

public void add(Project project)

getProjects

public java.util.List<Project> getProjects()
Returns all projects of this space.


add

public void add(java.lang.String user,
                Role role)

getRoles

public java.util.Set<Role> getRoles(java.lang.String userID)
Returns all access roles the specified user has on this space.


getUsers

public java.util.Set<java.lang.String> getUsers()
Returns the set of all users that have a role in this space.