| java.lang.Object org.kuali.core.bo.user.PersonTaxId
PersonTaxId | public class PersonTaxId implements UserId(Code) | | This class wraps a social security number.
|
Method Summary | |
public boolean | equals(Object obj) override equals so that we can compare socialSecurityNumbers If you make this class non-final, you must rewrite equals to
work for subclasses. | public String | getTaxId() | public int | hashCode() | public boolean | isEmpty() Returns true if this userId has an empty value. | public void | setTaxId(String socialSecurityNumber) | public String | toString() |
PersonTaxId | public PersonTaxId()(Code) | | Empty constructor, available to support standard bean activity
|
PersonTaxId | public PersonTaxId(String socialSecurityNumber)(Code) | | Constructor that takes in a string taxId
Parameters: taxId - |
equals | public boolean equals(Object obj)(Code) | | override equals so that we can compare socialSecurityNumbers If you make this class non-final, you must rewrite equals to
work for subclasses.
|
getTaxId | public String getTaxId()(Code) | | getter which returns the string taxId
taxId |
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 |
setTaxId | public void setTaxId(String socialSecurityNumber)(Code) | | setter which takes the string taxId
Parameters: taxId - |
toString | public String toString()(Code) | | override toString so that it prints out the taxId String
|
|
|