Package modules.commons
Interface ModuleStarter
-
public interface ModuleStarter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetConfigurable()configuration (json serialized to String)StringgetLogo()Base64 logo of the moduleModuleTypegetModuleType()Payment or ShippingList<String>getSupportedCountry()All country supported by this moduleStringgetUniqueCode()Unique module codevoidsetConfigurable(String config)voidsetLogo(String logo)voidsetModuleType(ModuleType moduleType)voidsetSupportedCountry(List<String> supportedCountry)voidsetUniqueCode(String uniqueCode)
-
-
-
Method Detail
-
getConfigurable
String getConfigurable()
configuration (json serialized to String)- Returns:
-
setConfigurable
void setConfigurable(String config)
-
getUniqueCode
String getUniqueCode()
Unique module code- Returns:
- String
-
setUniqueCode
void setUniqueCode(String uniqueCode)
-
setModuleType
void setModuleType(ModuleType moduleType)
-
getModuleType
ModuleType getModuleType()
Payment or Shipping- Returns:
- ModuleType
-
getSupportedCountry
List<String> getSupportedCountry()
All country supported by this module- Returns:
-
setLogo
void setLogo(String logo)
-
getLogo
String getLogo()
Base64 logo of the module- Returns:
- String
-
-