com.softslate.commerce.businessobjects.order
Interface Country

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 Summary
 boolean getAllowOtherStates()
           
 java.lang.String getCode()
           
 int getCountryID()
           
 int getCountryOrder()
           
 boolean getIsActive()
           
 java.lang.String getName()
           
 java.util.Collection getStates()
           
 void setAllowOtherStates(boolean allowOtherStates)
           
 void setCode(java.lang.String code)
           
 void setCountryID(int countryID)
           
 void setCountryOrder(int countryOrder)
           
 void setIsActive(boolean isActive)
           
 void setName(java.lang.String name)
           
 void setStates(java.util.Collection states)
           
 
Methods inherited from interface com.softslate.commerce.businessobjects.core.BusinessObject
initialize
 

Method Detail

getAllowOtherStates

boolean getAllowOtherStates()

setAllowOtherStates

void setAllowOtherStates(boolean allowOtherStates)

getCode

java.lang.String getCode()

setCode

void setCode(java.lang.String code)

getCountryOrder

int getCountryOrder()

setCountryOrder

void setCountryOrder(int countryOrder)

getIsActive

boolean getIsActive()

setIsActive

void setIsActive(boolean isActive)

getName

java.lang.String getName()

setName

void setName(java.lang.String name)

getCountryID

int getCountryID()

setCountryID

void setCountryID(int countryID)

getStates

java.util.Collection getStates()

setStates

void setStates(java.util.Collection states)


Copyright © SoftSlate, LLC 2003–2005