Package com.saperion.rmi
Class UserRightsImpl
- java.lang.Object
-
- com.saperion.rmi.UserRightsImpl
-
- All Implemented Interfaces:
UsersRights
,java.io.Serializable
public class UserRightsImpl extends java.lang.Object implements UsersRights
Default implementation ofUsersRights
.- Author:
- jsc
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserRightsImpl(WorkflowMember actor, SaACLRights aclRights)
Literal constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SaACLRights
getRights()
This method returns the rights the given user has.WorkflowMember
getUser()
This method returns the user that has the specific rights.
-
-
-
Constructor Detail
-
UserRightsImpl
public UserRightsImpl(WorkflowMember actor, SaACLRights aclRights)
Literal constructor.- Parameters:
actor
- The user that has the specific rightsaclRights
- The rights this user has.
-
-
Method Detail
-
getUser
public WorkflowMember getUser()
Description copied from interface:UsersRights
This method returns the user that has the specific rights.- Specified by:
getUser
in interfaceUsersRights
- Returns:
- the user that has the specific rights
-
getRights
public SaACLRights getRights()
Description copied from interface:UsersRights
This method returns the rights the given user has.- Specified by:
getRights
in interfaceUsersRights
- Returns:
- the rights the given user has.
-
-