All Superinterfaces:
BusinessObject
All Known Implementing Classes:
StateBean

public interface State extends BusinessObject
Interface representing a state within the system.

When the application needs to create an instance that implements sscState, BusinessObjectFactory finds the name of the Java class to instantiate from the "stateImplementer" setting in the appComponents.properties file.

The default "stateImplementer" is StateBean.

Author:
David Tobey
  • Method Details

    • getCode

      String getCode()
    • setCode

      void setCode(String code)
    • getCountryID

      int getCountryID()
    • setCountryID

      void setCountryID(int countryID)
    • getIsActive

      boolean getIsActive()
    • setIsActive

      void setIsActive(boolean isActive)
    • getName

      String getName()
    • setName

      void setName(String name)
    • getStateOrder

      int getStateOrder()
    • setStateOrder

      void setStateOrder(int stateOrder)
    • getStateID

      int getStateID()
    • setStateID

      void setStateID(int stateID)
    • getCountry

      Country getCountry()
    • setCountry

      void setCountry(Country country)