Class ServerProperty

  • All Implemented Interfaces:
    java.io.Serializable

    public class ServerProperty
    extends java.lang.Object
    implements java.io.Serializable
    Class representing an ServerProperty.
    Since:
    4.1.6
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  ServerProperty.PropertyTypes
      Enum with InDesignServer, CometServer and InDesignServer types
    • Constructor Summary

      Constructors 
      Constructor Description
      ServerProperty()  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getPropertyKey()
      Get the propertyKey of the ServerProperty.
      java.lang.String getType()
      Get the type of the ServerProperty.
      java.lang.String getValue()
      Get the value of the ServerProperty.
      static ServerProperty newInstance​(java.lang.String propertyKey, java.lang.String type, java.lang.String value)
      Factory method to create a server property.
      ServerProperty setPropertyKey​(java.lang.String propertyKey)
      Set the propertyKey of the ServerProperty.
      ServerProperty setType​(java.lang.String type)
      Set the type of the ServerProperty.
      ServerProperty setValue​(java.lang.String value)
      Set the value of the ServerProperty.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ServerProperty

        public ServerProperty()
    • Method Detail

      • newInstance

        public static ServerProperty newInstance​(java.lang.String propertyKey,
                                                 java.lang.String type,
                                                 java.lang.String value)
        Factory method to create a server property.
        Parameters:
        propertyKey -
        type -
        value -
        Returns:
      • getPropertyKey

        public java.lang.String getPropertyKey()
        Get the propertyKey of the ServerProperty.
        Returns:
        propertyKey
      • setPropertyKey

        public ServerProperty setPropertyKey​(java.lang.String propertyKey)
        Set the propertyKey of the ServerProperty.
        Parameters:
        propertyKey -
        Returns:
        the property object for chaining
      • getType

        public java.lang.String getType()
        Get the type of the ServerProperty.
        Returns:
        type
      • setType

        public ServerProperty setType​(java.lang.String type)
        Set the type of the ServerProperty.
        Parameters:
        type -
        Returns:
        the property object for chaining
      • getValue

        public java.lang.String getValue()
        Get the value of the ServerProperty.
        Returns:
        value
      • setValue

        public ServerProperty setValue​(java.lang.String value)
        Set the value of the ServerProperty.
        Parameters:
        value -
        Returns:
        the property object for chaining