Interface CountyEbo

All Superinterfaces:
org.kuali.rice.krad.bo.BusinessObject, org.kuali.rice.core.api.mo.common.Coded, org.kuali.rice.location.api.county.CountyContract, org.kuali.rice.krad.bo.ExternalizableBusinessObject, org.kuali.rice.core.api.mo.common.active.Inactivatable, org.kuali.rice.core.api.mo.ModelObjectBasic, org.kuali.rice.core.api.mo.common.active.MutableInactivatable, Serializable, org.kuali.rice.core.api.mo.common.Versioned

public interface CountyEbo extends org.kuali.rice.location.api.county.CountyContract, org.kuali.rice.krad.bo.ExternalizableBusinessObject, org.kuali.rice.core.api.mo.common.active.MutableInactivatable
TODO: Likely should remove all methods from this interface after KULRICE-7170 is fixed
  • Method Summary

    Modifier and Type
    Method
    Description
    The code value for this object.
    This the postal country code for the County.
    This the name for the County.
    This the postal state code for the County.
    Returns the version number for this object.
    boolean
    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 Details

    • getCountryCode

      String getCountryCode()
      This the postal country code for the County. This cannot be null or a blank string.
      Specified by:
      getCountryCode in interface org.kuali.rice.location.api.county.CountyContract
      Returns:
      postal country code
    • getStateCode

      String getStateCode()
      This the postal state code for the County. This cannot be null or a blank string.
      Specified by:
      getStateCode in interface org.kuali.rice.location.api.county.CountyContract
      Returns:
      postal state code
    • getName

      String getName()
      This the name for the County. This cannot be null or a blank string.
      Specified by:
      getName in interface org.kuali.rice.location.api.county.CountyContract
      Returns:
      name
    • 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 org.kuali.rice.core.api.mo.common.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 org.kuali.rice.core.api.mo.common.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 org.kuali.rice.core.api.mo.common.active.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 org.kuali.rice.core.api.mo.common.active.MutableInactivatable