| java.lang.Object org.kuali.core.bo.user.AuthenticationUserId
AuthenticationUserId | final public class AuthenticationUserId implements UserId,Serializable(Code) | | This class is to hold our users network ids and wrap them in a strongly typed object
|
AuthenticationUserId | public AuthenticationUserId(String authenticationId)(Code) | | Constructor that takes in a string authenticationId
Parameters: authenticationId - |
AuthenticationUserId | public AuthenticationUserId()(Code) | | Empty constructor, available to support standard bean activity
|
equals | public boolean equals(Object obj)(Code) | | override equals so that we can compare authenticationIds If you make this class non-final, you must rewrite equals to work
for subclasses.
|
getAuthenticationId | public String getAuthenticationId()(Code) | | getter which returns the string authenticationId
|
hashCode | public int hashCode()(Code) | | override hashCode because we overrode equals
|
isEmpty | public boolean isEmpty()(Code) | | Returns true if this userId has an empty value. Empty userIds can't be used as keys in a Hash, among other things.
true if this instance doesn't have a value |
setAuthenticationId | public void setAuthenticationId(String authenticationId)(Code) | | setter which takes the string authenticationId
Parameters: authenticationId - |
toString | public String toString()(Code) | | override toString so that it prints out the authenticationId String
|
|
|