org.kuali.rice.location.framework.postalcode
Interface PostalCodeEbo

All Superinterfaces:
BusinessObject, Coded, ExternalizableBusinessObject, Inactivatable, ModelObjectBasic, MutableInactivatable, PostalCodeContract, Serializable, Versioned

public interface PostalCodeEbo
extends PostalCodeContract, ExternalizableBusinessObject, MutableInactivatable

TODO: Likely should remove all methods from this interface after KULRICE-7170 is fixed


Method Summary
 String getCityName()
          This the postal state code for the PostalCode.
 String getCode()
          The code value for this object.
 String getCountryCode()
          This the postal country code for the PostalCode.
 String getCountyCode()
          This the county code for the PostalCode.
 String getStateCode()
          This the postal state code for the PostalCode.
 Long getVersionNumber()
          Returns the version number for this object.
 boolean isActive()
          The active indicator for an object.
 void setActive(boolean active)
          Sets the record to active or inactive.
 
Methods inherited from interface org.kuali.rice.krad.bo.BusinessObject
refresh
 
Methods inherited from interface org.kuali.rice.core.api.mo.ModelObjectBasic
toString
 

Method Detail

getCountryCode

String getCountryCode()
This the postal country code for the PostalCode. This cannot be null or a blank string.

Specified by:
getCountryCode in interface PostalCodeContract
Returns:
postal country code

getStateCode

String getStateCode()
This the postal state code for the PostalCode. This can be null.

Specified by:
getStateCode in interface PostalCodeContract
Returns:
postal state code

getCityName

String getCityName()
This the postal state code for the PostalCode. This can be null.

Specified by:
getCityName in interface PostalCodeContract
Returns:
postal state code

getCountyCode

String getCountyCode()
This the county code for the PostalCode. This cannot be null.

Specified by:
getCountyCode in interface PostalCodeContract
Returns:
postal state code

getCode

String getCode()
The code value for this object. In general a code value cannot be null or a blank string.

Specified by:
getCode in interface Coded
Returns:
the code value for this object.

getVersionNumber

Long getVersionNumber()
Returns the version number for this object. In general, this value should only be null if the object has not yet been stored to a persistent data store. This version number is generally used for the purposes of optimistic locking.

Specified by:
getVersionNumber in interface Versioned
Returns:
the version number, or null if one has not been assigned yet

isActive

boolean isActive()
The active indicator for an object.

Specified by:
isActive in interface Inactivatable
Returns:
true if active false if not.

setActive

void setActive(boolean active)
Sets the record to active or inactive.

Specified by:
setActive in interface MutableInactivatable


Copyright © 2005-2013 The Kuali Foundation. All Rights Reserved.