Interface SystemProperty
-
- All Superinterfaces:
org.jvnet.hk2.config.ConfigBeanProxy
public interface SystemProperty extends org.jvnet.hk2.config.ConfigBeanProxySyntax for supplying system properties as name value pairs
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Gets the value of the description property.@NotNull @Pattern(regexp="[A-Za-z0-9_][A-Za-z0-9\\-_\\./;#]*") StringgetName()Gets the value of the name property.@NotNull StringgetValue()Gets the value of the value property.voidsetDescription(String value)Sets the value of the description property.voidsetName(String value)Sets the value of the name property.voidsetValue(String value)Sets the value of the value property.
-
-
-
Method Detail
-
getName
@NotNull @Pattern(regexp="[A-Za-z0-9_][A-Za-z0-9\\-_\\./;#]*") @NotNull @Pattern(regexp="[A-Za-z0-9_][A-Za-z0-9\\-_\\./;#]*") String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
void setName(String value) throws PropertyVetoException
Sets the value of the name property.- Parameters:
value- allowed object isString- Throws:
PropertyVetoException
-
getValue
@NotNull @NotNull String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
void setValue(String value) throws PropertyVetoException
Sets the value of the value property.- Parameters:
value- allowed object isString- Throws:
PropertyVetoException
-
getDescription
String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
void setDescription(String value) throws PropertyVetoException
Sets the value of the description property.- Parameters:
value- allowed object isString- Throws:
PropertyVetoException
-
-