All Superinterfaces:
BusinessObject
All Known Implementing Classes:
CountryBean

public interface Country extends BusinessObject
Interface representing a country within the system.

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

The default "countryImplementer" is CountryBean.

Author:
David Tobey
  • Method Details

    • getAllowOtherStates

      boolean getAllowOtherStates()
    • setAllowOtherStates

      void setAllowOtherStates(boolean allowOtherStates)
    • getCode

      String getCode()
    • setCode

      void setCode(String code)
    • getCountryOrder

      int getCountryOrder()
    • setCountryOrder

      void setCountryOrder(int countryOrder)
    • getIsActive

      boolean getIsActive()
    • setIsActive

      void setIsActive(boolean isActive)
    • getName

      String getName()
    • setName

      void setName(String name)
    • getCountryID

      int getCountryID()
    • setCountryID

      void setCountryID(int countryID)
    • getStates

      Collection getStates()
    • setStates

      void setStates(Collection states)