java.lang.Object
com.softslate.commerce.businessobjects.core.BaseBusinessObject
com.softslate.commerce.businessobjects.order.CountryBean
All Implemented Interfaces:
BusinessObject, Country, Serializable

public class CountryBean extends BaseBusinessObject implements Country, Serializable
Object representing a country within the system. CountryBean is the default implementation of the Country interface for the application.

The database stores countries in the sscCountry table, and this interface can be used to represent a single row of that table. The Hibernate configuration file CountryBean.hbm.xml maps that table's columns to the properties in this object.

Author:
David Tobey
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • countryID

      private int countryID
    • code

      private String code
    • name

      private String name
    • countryOrder

      private int countryOrder
    • allowOtherStates

      private boolean allowOtherStates
    • isActive

      private boolean isActive
    • states

      private Collection states
  • Constructor Details

    • CountryBean

      public CountryBean()
  • Method Details