Package com.saperion.intf
Interface SaUserInfo
-
- All Superinterfaces:
MutableUserInformation
,java.io.Serializable
- All Known Subinterfaces:
WorkflowMember
- All Known Implementing Classes:
SaUserInfoImpl
,WorkflowMemberImpl
public interface SaUserInfo extends MutableUserInformation
This class holds detailed information about a Saperion user management entity e.g. users.- Author:
- rbo
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
SaUserInfo.GroupKind
This enumeration holds the different kinds of entities in a saperion user management entity.
-
Field Summary
Fields Modifier and Type Field Description static long
UIDFAVORITE
UID to mark favourite folder.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getDisplayName()
Deprecated.use getUserName() insteadSaUserInfo.GroupKind
getGroupKind()
This method returns the kind of user management entity.int
getMandantUid()
java.lang.String
getName()
Deprecated.usegetUserName()
insteadint
getOrgUnitUid()
int
getType()
Deprecated.usegetGroupKind()
insteadint
getUid()
This method returns the id of the user.UserName
getUserName()
This method returns the name of the entity.-
Methods inherited from interface com.saperion.intf.MutableUserInformation
getUserFlags, isPresent
-
-
-
-
Field Detail
-
UIDFAVORITE
static final long UIDFAVORITE
UID to mark favourite folder.- See Also:
- Constant Field Values
-
-
Method Detail
-
getUid
int getUid()
This method returns the id of the user.- Returns:
- the id of the user
-
getGroupKind
SaUserInfo.GroupKind getGroupKind()
This method returns the kind of user management entity.- Returns:
- the kind of user management entity
-
getType
@Deprecated int getType()
Deprecated.usegetGroupKind()
insteadThis method returns the numerical value of the kind of user management entity.- Returns:
- the numerical value of the kind of user management entity
-
getName
@Deprecated java.lang.String getName()
Deprecated.usegetUserName()
insteadThis method returns the name of the entity.- Returns:
- the name of the entity
-
getUserName
UserName getUserName()
This method returns the name of the entity.- Returns:
- the name of the entity
-
getOrgUnitUid
int getOrgUnitUid()
- Returns:
- the unique organisation id the user is assigned to
-
getMandantUid
int getMandantUid()
- Returns:
- the unique tenant id the user is assigned to
-
getDisplayName
@Deprecated java.lang.String getDisplayName()
Deprecated.use getUserName() instead- Returns:
- the users short name
-
-