org.kuali.rice.kim.bo.entity.dto
Class KimEntityAddressInfo

java.lang.Object
  extended by org.kuali.rice.kim.bo.entity.dto.KimInactivatableInfo
      extended by org.kuali.rice.kim.bo.entity.dto.KimDefaultableInfo
          extended by org.kuali.rice.kim.bo.entity.dto.KimEntityAddressInfo
All Implemented Interfaces:
Serializable, KimDefaultableEntityTypeData, KimEntityAddress, Defaultable, DefaultableInactivateable, Inactivateable

public class KimEntityAddressInfo
extends KimDefaultableInfo
implements KimEntityAddress

Author:
Kuali Rice Team (rice.collab@kuali.org)
See Also:
Serialized Form

Field Summary
protected  String addressTypeCode
           
protected  String cityName
           
protected  String cityNameUnmasked
           
protected  String countryCode
           
protected  String countryCodeUnmasked
           
protected  String entityAddressId
           
protected  String entityTypeCode
           
protected  String line1
           
protected  String line1Unmasked
           
protected  String line2
           
protected  String line2Unmasked
           
protected  String line3
           
protected  String line3Unmasked
           
protected  String postalCode
           
protected  String postalCodeUnmasked
           
private static long serialVersionUID
           
protected  String stateCode
           
protected  String stateCodeUnmasked
           
protected  boolean suppressAddress
           
 
Fields inherited from class org.kuali.rice.kim.bo.entity.dto.KimDefaultableInfo
dflt
 
Fields inherited from class org.kuali.rice.kim.bo.entity.dto.KimInactivatableInfo
active
 
Constructor Summary
KimEntityAddressInfo()
          This constructs an empty KimEntityAddressInfo
KimEntityAddressInfo(KimEntityAddress addr)
          This constructs a KimEntityAddressInfo derived from the given KimEntityAddress
 
Method Summary
 String getAddressTypeCode()
          Gets this KimEntityAddress's address type code.
 String getCityName()
          Gets this KimEntityAddress's city name.
 String getCityNameUnmasked()
          Gets this KimEntityAddress's unmasked city name.
 String getCountryCode()
          Gets this KimEntityAddress's country code.
 String getCountryCodeUnmasked()
          Gets this KimEntityAddress's unmasked country code.
 String getEntityAddressId()
          Gets this KimEntityAddress's address id.
 String getEntityTypeCode()
          
 String getLine1()
          Gets this KimEntityAddress's first line.
 String getLine1Unmasked()
          Gets this KimEntityAddress's unmasked first line.
 String getLine2()
          Gets this KimEntityAddress's second line.
 String getLine2Unmasked()
          Gets this KimEntityAddress's unmasked second line.
 String getLine3()
          Gets this KimEntityAddress's third line.
 String getLine3Unmasked()
          Gets this KimEntityAddress's unmasked third line.
 String getPostalCode()
          Gets this KimEntityAddress's postal code.
 String getPostalCodeUnmasked()
          Gets this KimEntityAddress's unmasked postal code.
 String getStateCode()
          Gets this KimEntityAddress's state code.
 String getStateCodeUnmasked()
          Gets this KimEntityAddress's unmasked state code.
 boolean isSuppressAddress()
           
 void setAddressTypeCode(String addressTypeCode)
           
 void setCityName(String cityName)
           
 void setCityNameUnmasked(String cityNameUnmasked)
           
 void setCountryCode(String countryCode)
           
 void setCountryCodeUnmasked(String countryCodeUnmasked)
           
 void setEntityAddressId(String entityAddressId)
           
 void setEntityTypeCode(String entityTypeCode)
           
 void setLine1(String line1)
           
 void setLine1Unmasked(String line1Unmasked)
           
 void setLine2(String line2)
           
 void setLine2Unmasked(String line2Unmasked)
           
 void setLine3(String line3)
           
 void setLine3Unmasked(String line3Unmasked)
           
 void setPostalCode(String postalCode)
           
 void setPostalCodeUnmasked(String postalCodeUnmasked)
           
 void setStateCode(String stateCode)
           
 void setStateCodeUnmasked(String stateCodeUnmasked)
           
 void setSuppressAddress(boolean suppressAddress)
           
 
Methods inherited from class org.kuali.rice.kim.bo.entity.dto.KimDefaultableInfo
isDefault, setDefault
 
Methods inherited from class org.kuali.rice.kim.bo.entity.dto.KimInactivatableInfo
isActive, setActive
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.kuali.rice.kns.bo.Defaultable
isDefault, setDefault
 
Methods inherited from interface org.kuali.rice.kns.bo.Inactivateable
isActive, setActive
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

entityAddressId

protected String entityAddressId

addressTypeCode

protected String addressTypeCode

entityTypeCode

protected String entityTypeCode

cityName

protected String cityName

cityNameUnmasked

protected String cityNameUnmasked

stateCode

protected String stateCode

stateCodeUnmasked

protected String stateCodeUnmasked

postalCode

protected String postalCode

postalCodeUnmasked

protected String postalCodeUnmasked

countryCode

protected String countryCode

countryCodeUnmasked

protected String countryCodeUnmasked

line1

protected String line1

line1Unmasked

protected String line1Unmasked

line2

protected String line2

line2Unmasked

protected String line2Unmasked

line3

protected String line3

line3Unmasked

protected String line3Unmasked

suppressAddress

protected boolean suppressAddress
Constructor Detail

KimEntityAddressInfo

public KimEntityAddressInfo()
This constructs an empty KimEntityAddressInfo


KimEntityAddressInfo

public KimEntityAddressInfo(KimEntityAddress addr)
This constructs a KimEntityAddressInfo derived from the given KimEntityAddress

Method Detail

getEntityAddressId

public String getEntityAddressId()
Gets this KimEntityAddress's address id.

Specified by:
getEntityAddressId in interface KimEntityAddress
Returns:
the address for this KimEntityAddress, or null if none has been assigned.
See Also:
getEntityAddressId()

setEntityAddressId

public void setEntityAddressId(String entityAddressId)
Parameters:
entityAddressId - the entityAddressId to set

getAddressTypeCode

public String getAddressTypeCode()
Gets this KimEntityAddress's address type code.

Specified by:
getAddressTypeCode in interface KimEntityAddress
Returns:
the address type code for this KimEntityAddress, or null if none has been assigned.
See Also:
getAddressTypeCode()

setAddressTypeCode

public void setAddressTypeCode(String addressTypeCode)
Parameters:
addressTypeCode - the addressTypeCode to set

getEntityTypeCode

public String getEntityTypeCode()

Specified by:
getEntityTypeCode in interface KimDefaultableEntityTypeData
See Also:
getEntityTypeCode()

setEntityTypeCode

public void setEntityTypeCode(String entityTypeCode)
Parameters:
entityTypeCode - the entityTypeCode to set

getCityName

public String getCityName()
Gets this KimEntityAddress's city name.

Specified by:
getCityName in interface KimEntityAddress
Returns:
the city name for this KimEntityAddress, or null if none has been assigned.
See Also:
getCityName()

setCityName

public void setCityName(String cityName)
Parameters:
cityName - the cityName to set

getCityNameUnmasked

public String getCityNameUnmasked()
Gets this KimEntityAddress's unmasked city name.

Specified by:
getCityNameUnmasked in interface KimEntityAddress
Returns:
the unmasked city name for this KimEntityAddress, or null if none has been assigned.
See Also:
getCityNameUnmasked()

setCityNameUnmasked

public void setCityNameUnmasked(String cityNameUnmasked)
Parameters:
cityNameUnmasked - the cityNameUnmasked to set

getStateCode

public String getStateCode()
Gets this KimEntityAddress's state code.

Specified by:
getStateCode in interface KimEntityAddress
Returns:
the state code for this KimEntityAddress, or null if none has been assigned.
See Also:
getStateCode()

setStateCode

public void setStateCode(String stateCode)
Parameters:
stateCode - the stateCode to set

getStateCodeUnmasked

public String getStateCodeUnmasked()
Gets this KimEntityAddress's unmasked state code.

Specified by:
getStateCodeUnmasked in interface KimEntityAddress
Returns:
the unmasked state code for this KimEntityAddress, or null if none has been assigned.
See Also:
getStateCodeUnmasked()

setStateCodeUnmasked

public void setStateCodeUnmasked(String stateCodeUnmasked)
Parameters:
stateCodeUnmasked - the stateCodeUnmasked to set

getPostalCode

public String getPostalCode()
Gets this KimEntityAddress's postal code.

Specified by:
getPostalCode in interface KimEntityAddress
Returns:
the postal code for this KimEntityAddress, or null if none has been assigned.
See Also:
getPostalCode()

setPostalCode

public void setPostalCode(String postalCode)
Parameters:
postalCode - the postalCode to set

getPostalCodeUnmasked

public String getPostalCodeUnmasked()
Gets this KimEntityAddress's unmasked postal code.

Specified by:
getPostalCodeUnmasked in interface KimEntityAddress
Returns:
the unmasked postal code for this KimEntityAddress, or null if none has been assigned.
See Also:
getPostalCodeUnmasked()

setPostalCodeUnmasked

public void setPostalCodeUnmasked(String postalCodeUnmasked)
Parameters:
postalCodeUnmasked - the postalCodeUnmasked to set

getCountryCode

public String getCountryCode()
Gets this KimEntityAddress's country code.

Specified by:
getCountryCode in interface KimEntityAddress
Returns:
the country code for this KimEntityAddress, or null if none has been assigned.
See Also:
getCountryCode()

setCountryCode

public void setCountryCode(String countryCode)
Parameters:
countryCode - the countryCode to set

getCountryCodeUnmasked

public String getCountryCodeUnmasked()
Gets this KimEntityAddress's unmasked country code.

Specified by:
getCountryCodeUnmasked in interface KimEntityAddress
Returns:
the unmasked country code for this KimEntityAddress, or null if none has been assigned.
See Also:
KimEntityAddress.getCountryCodeUnmasked()

setCountryCodeUnmasked

public void setCountryCodeUnmasked(String countryCodeUnmasked)

getLine1

public String getLine1()
Gets this KimEntityAddress's first line.

Specified by:
getLine1 in interface KimEntityAddress
Returns:
the first line for this KimEntityAddress, or null if none has been assigned.
See Also:
KimEntityAddress.getLine1()

setLine1

public void setLine1(String line1)
Parameters:
line1 - the line1 to set

getLine1Unmasked

public String getLine1Unmasked()
Gets this KimEntityAddress's unmasked first line.

Specified by:
getLine1Unmasked in interface KimEntityAddress
Returns:
the unmasked first line for this KimEntityAddress, or null if none has been assigned.
See Also:
KimEntityAddress.getLine1Unmasked()

setLine1Unmasked

public void setLine1Unmasked(String line1Unmasked)
Parameters:
line1Unmasked - the line1Unmasked to set

getLine2

public String getLine2()
Gets this KimEntityAddress's second line.

Specified by:
getLine2 in interface KimEntityAddress
Returns:
the second line for this KimEntityAddress, or null if none has been assigned.
See Also:
KimEntityAddress.getLine2()

setLine2

public void setLine2(String line2)
Parameters:
line2 - the line2 to set

getLine2Unmasked

public String getLine2Unmasked()
Gets this KimEntityAddress's unmasked second line.

Specified by:
getLine2Unmasked in interface KimEntityAddress
Returns:
the unmasked second line for this KimEntityAddress, or null if none has been assigned.
See Also:
KimEntityAddress.getLine2Unmasked()

setLine2Unmasked

public void setLine2Unmasked(String line2Unmasked)
Parameters:
line2Unmasked - the line2Unmasked to set

getLine3

public String getLine3()
Gets this KimEntityAddress's third line.

Specified by:
getLine3 in interface KimEntityAddress
Returns:
the third line for this KimEntityAddress, or null if none has been assigned.
See Also:
KimEntityAddress.getLine3()

setLine3

public void setLine3(String line3)
Parameters:
line3 - the line3 to set

getLine3Unmasked

public String getLine3Unmasked()
Gets this KimEntityAddress's unmasked third line.

Specified by:
getLine3Unmasked in interface KimEntityAddress
Returns:
the unmasked third line for this KimEntityAddress, or null if none has been assigned.
See Also:
KimEntityAddress.getLine3Unmasked()

setLine3Unmasked

public void setLine3Unmasked(String line3Unmasked)
Parameters:
line3Unmasked - the line3Unmasked to set

isSuppressAddress

public boolean isSuppressAddress()
Specified by:
isSuppressAddress in interface KimEntityAddress
Returns:
the suppressAddress

setSuppressAddress

public void setSuppressAddress(boolean suppressAddress)
Parameters:
suppressAddress - the suppressAddress to set


Copyright © 2004-2011 The Kuali Foundation. All Rights Reserved.