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 Details

    • 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()