Package com.priint.pubserver.preferences
Class ServerProperty
- java.lang.Object
-
- com.priint.pubserver.preferences.ServerProperty
-
- All Implemented Interfaces:
java.io.Serializable
public class ServerProperty extends java.lang.Object implements java.io.SerializableClass representing an ServerProperty.- Since:
- 4.1.6
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classServerProperty.PropertyTypesEnum 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.StringgetPropertyKey()Get the propertyKey of the ServerProperty.java.lang.StringgetType()Get the type of the ServerProperty.java.lang.StringgetValue()Get the value of the ServerProperty.static ServerPropertynewInstance(java.lang.String propertyKey, java.lang.String type, java.lang.String value)Factory method to create a server property.ServerPropertysetPropertyKey(java.lang.String propertyKey)Set the propertyKey of the ServerProperty.ServerPropertysetType(java.lang.String type)Set the type of the ServerProperty.ServerPropertysetValue(java.lang.String value)Set the value of the 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
-
-