| java.lang.Object org.kuali.core.bo.user.UuId
Method Summary | |
public boolean | equals(Object obj) Override of equals that allows us to compare uuids If you make this class non-final, you must rewrite equals to work for
subclasses. | public String | getUuId() | public int | hashCode() | public boolean | isEmpty() Returns true if this userId has an empty value. | public void | setUuId(String uuId) | public String | toString() |
UuId | public UuId(String uuId)(Code) | | Constructor that takes in a string uuid
Parameters: uuId - |
UuId | public UuId()(Code) | | Empty constructor
|
equals | public boolean equals(Object obj)(Code) | | Override of equals that allows us to compare uuids If you make this class non-final, you must rewrite equals to work for
subclasses.
|
getUuId | public String getUuId()(Code) | | simple getter for string uuid
|
hashCode | public int hashCode()(Code) | | override of hashCode since 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 |
setUuId | public void setUuId(String uuId)(Code) | | simple setter for uuid
Parameters: uuId - |
toString | public String toString()(Code) | | override of toString that will print uuid
|
|
|