Interface Country
-
- All Superinterfaces:
BaseEntity
,Serializable
- All Known Implementing Classes:
CountryImpl
public interface Country extends BaseEntity
Country entity used internally by NetLicensing.Properties visible via NetLicensing API:
code - Unique code of country.
name - Unique name of country
vat - Country vat.
isEu - is country in EU.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCode()
boolean
getIsEu()
String
getName()
BigDecimal
getVatPercent()
void
setCode(String code)
void
setIsEu(boolean isEu)
void
setName(String name)
void
setVatPercent(BigDecimal vat)
-
Methods inherited from interface com.labs64.netlicensing.domain.entity.BaseEntity
addProperty, asRequestForm, getActive, getNumber, getProperties, removeProperty, setActive, setNumber
-
-
-
-
Method Detail
-
setCode
void setCode(String code)
-
getCode
String getCode()
-
setName
void setName(String name)
-
getName
String getName()
-
setVatPercent
void setVatPercent(BigDecimal vat)
-
getVatPercent
BigDecimal getVatPercent()
-
setIsEu
void setIsEu(boolean isEu)
-
getIsEu
boolean getIsEu()
-
-