Interface Country
- All Superinterfaces:
BusinessObject
- All Known Implementing Classes:
CountryBean
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 Summary
Modifier and TypeMethodDescriptionboolean
getCode()
int
int
boolean
getName()
void
setAllowOtherStates
(boolean allowOtherStates) void
void
setCountryID
(int countryID) void
setCountryOrder
(int countryOrder) void
setIsActive
(boolean isActive) void
void
setStates
(Collection states) Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
-
Method Details
-
getAllowOtherStates
boolean getAllowOtherStates() -
setAllowOtherStates
void setAllowOtherStates(boolean allowOtherStates) -
getCode
String getCode() -
setCode
-
getCountryOrder
int getCountryOrder() -
setCountryOrder
void setCountryOrder(int countryOrder) -
getIsActive
boolean getIsActive() -
setIsActive
void setIsActive(boolean isActive) -
getName
String getName() -
setName
-
getCountryID
int getCountryID() -
setCountryID
void setCountryID(int countryID) -
getStates
Collection getStates() -
setStates
-