| java.lang.Object org.kuali.core.bo.user.PersonPayrollId
PersonPayrollId | final public class PersonPayrollId implements UserId,Serializable(Code) | | This class is a wrapper class that wraps a string payrollId to provide strong typing of this object as it can be used to find a user
distinctly within our system
|
PersonPayrollId | public PersonPayrollId(String emplId)(Code) | | Constructor which takes a string emplid
Parameters: payrollId - |
PersonPayrollId | public PersonPayrollId()(Code) | | Empty Constructor
|
equals | public boolean equals(Object obj)(Code) | | override equals to allow for comparison of Emplid objects If you make this class non-final, you must rewrite equals to work
for subclasses.
|
getPayrollId | public String getPayrollId()(Code) | | simple getter for the string emplid
|
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 |
setPayrollId | public void setPayrollId(String emplId)(Code) | | simple setter for the string emplid
Parameters: payrollId - |
toString | public String toString()(Code) | | override of toString so that we print out the emplid string
|
|
|