Interface EnvEntry
-
- All Superinterfaces:
ConfigBeanProxy
public interface EnvEntry extends ConfigBeanProxy
Represents the env-entry web application configuration customization.- Author:
- tjquinn
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classEnvEntry.Duckstatic classEnvEntry.UtilUtility class.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()StringgetEnvEntryName()StringgetEnvEntryType()StringgetEnvEntryValue()StringgetIgnoreDescriptorItem()voidsetDescription(String value)voidsetEnvEntryName(String value)voidsetEnvEntryType(String value)voidsetEnvEntryValue(String value)voidsetIgnoreDescriptorItem(String value)voidvalidateValue()Validates the value in the env-entry-value subelement against the type stored in the env-entry-type subelement.-
Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent, getParent
-
-
-
-
Method Detail
-
getDescription
String getDescription()
-
setDescription
void setDescription(String value)
-
getEnvEntryName
String getEnvEntryName()
-
setEnvEntryName
void setEnvEntryName(String value)
-
getEnvEntryType
String getEnvEntryType()
-
setEnvEntryType
void setEnvEntryType(String value)
-
getEnvEntryValue
String getEnvEntryValue()
-
setEnvEntryValue
void setEnvEntryValue(String value)
-
getIgnoreDescriptorItem
String getIgnoreDescriptorItem()
-
setIgnoreDescriptorItem
void setIgnoreDescriptorItem(String value)
-
validateValue
@DuckTyped void validateValue()
Validates the value in the env-entry-value subelement against the type stored in the env-entry-type subelement.- Throws:
IllegalArgumentException- if the type does not match one of the legal onesNumberFormatException- if the value cannot be parsed according to the type
-
-