| org.sakaiproject.authz.api.Member
All known Subclasses: org.sakaiproject.authz.impl.BaseMember,
Method Summary | |
Role | getRole() Access the member's Role. | String | getUserDisplayId() Access the user display id, if we can find it - fall back to the user id if not. | String | getUserEid() Access the user eid of the member, if we can find it - fall back to the user id if not. | String | getUserId() Access the user id of the member. | boolean | isActive() Check if the membership is active. | boolean | isProvided() Check if the membership is from the external provider. | void | setActive(boolean active) Set the active value. |
getRole | Role getRole()(Code) | | Access the member's Role.
The member's Role. |
getUserDisplayId | String getUserDisplayId()(Code) | | Access the user display id, if we can find it - fall back to the user id if not.
The user display id of the member. |
getUserEid | String getUserEid()(Code) | | Access the user eid of the member, if we can find it - fall back to the user id if not.
The user eid of the member. |
getUserId | String getUserId()(Code) | | Access the user id of the member.
The user id of the member. |
isActive | boolean isActive()(Code) | | Check if the membership is active.
true if the membership is active, false if not. |
isProvided | boolean isProvided()(Code) | | Check if the membership is from the external provider.
true if the membership is from the external provider, false if not. |
setActive | void setActive(boolean active)(Code) | | Set the active value.
Parameters: active - The new active value. |
|
|