Interface County
-
- All Superinterfaces:
java.lang.Cloneable
- All Known Implementing Classes:
CountyImpl
public interface County extends java.lang.CloneableBO representation of a county (relevant for countries where tax jurisdiction code determination based on county is necessary)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Countyclone()java.lang.StringgetCountyText()java.lang.StringgetTaxJurCode()voidsetCountyText(java.lang.String countyText)voidsetTaxJurCode(java.lang.String taxJurCode)
-
-
-
Method Detail
-
getCountyText
java.lang.String getCountyText()
- Returns:
- county description
-
setCountyText
void setCountyText(java.lang.String countyText)
- Parameters:
countyText- county description
-
getTaxJurCode
java.lang.String getTaxJurCode()
- Returns:
- tax jurisdiction code. Will be determined in ERP or CRM backend
-
setTaxJurCode
void setTaxJurCode(java.lang.String taxJurCode)
- Parameters:
taxJurCode- tax jurisdiction code. Will be determined in ERP or CRM backend
-
clone
County clone()
- Returns:
- a clone of the county
-
-