Interface SystemProperty

All Superinterfaces:
org.jvnet.hk2.config.ConfigBeanProxy

public interface SystemProperty extends org.jvnet.hk2.config.ConfigBeanProxy
Syntax for supplying system properties as name value pairs.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the value of the description property.
    @NotNull @Pattern(regexp="[A-Za-z0-9_][A-Za-z0-9\\-_\\./;#]*",message="Pattern: [A-Za-z0-9_][A-Za-z0-9\\-_\\./;#]*") String
    Gets the value of the name property.
    @NotNull String
    Gets the value of the value property.
    void
    setDescription(String description)
    Sets the value of the description property.
    void
    Sets the value of the name property.
    void
    Sets the value of the value property.

    Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy

    createChild, deepCopy, getParent, getParent
  • Method Details

    • getName

      @NotNull @Pattern(regexp="[A-Za-z0-9_][A-Za-z0-9\\-_\\./;#]*", message="Pattern: [A-Za-z0-9_][A-Za-z0-9\\-_\\./;#]*") @NotNull @Pattern(regexp="[A-Za-z0-9_][A-Za-z0-9\\-_\\./;#]*",message="Pattern: [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 name) throws PropertyVetoException
      Sets the value of the name property.
      Parameters:
      name - allowed object is String
      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 is String
      Throws:
      PropertyVetoException
    • getDescription

      String getDescription()
      Gets the value of the description property.
      Returns:
      possible object is String
    • setDescription

      void setDescription(String description) throws PropertyVetoException
      Sets the value of the description property.
      Parameters:
      description - allowed object is String
      Throws:
      PropertyVetoException