Class ServerProperties

java.lang.Object
com.priint.pubserver.preferences.ServerProperties
All Implemented Interfaces:
Serializable

public class ServerProperties extends Object implements Serializable
Class representing an ServerProperties (List of ServerProperty).
Since:
4.1.6
See Also:
  • Constructor Details

    • ServerProperties

      public ServerProperties()
  • Method Details

    • getName

      public String getName()
      Get the name of the ServerProperties object.
      Returns:
      name
    • setName

      public ServerProperties setName(String name)
      Set the name of the ServerProperties.
      Parameters:
      name -
      Returns:
      ServerProperties object for chaining
    • getVersion

      public String getVersion()
      Get the version of the ServerProperties.
      Returns:
      version
    • setVersion

      public ServerProperties setVersion(String version)
      Set the version of the ServerProperties.
      Parameters:
      version -
      Returns:
      ServerProperties object for chaining
    • getVersionPubServer

      public String getVersionPubServer()
      Get the versionPubServer of the ServerProperties.
      Returns:
      versionPubServer
    • setVersionPubServer

      public ServerProperties setVersionPubServer(String versionPubServer)
      Set the versionPubServer of the ServerProperties.
      Parameters:
      versionPubServer -
      Returns:
      ServerProperties object for chaining
    • getDescription

      public String getDescription()
      Get the description of the ServerProperties.
      Returns:
      description
    • setDescription

      public ServerProperties setDescription(String description)
      Set the description of the ServerProperties.
      Parameters:
      description -
      Returns:
      ServerProperties object for chaining
    • getServerProperties

      public List<ServerProperty> getServerProperties()
      Get the serverPropertiesList of the ServerProperties.
      Returns:
      serverPropertiesList
    • setServerProperties

      public ServerProperties setServerProperties(List<ServerProperty> serverProperties)
      Set the serverPropertiesList of the ServerProperties.
      Parameters:
      serverProperties -
      Returns:
      ServerProperties object for chaining
    • addProperty

      public ServerProperties addProperty(ServerProperty property)
      Add a ServerProperty to the list
      Parameters:
      property -
      Returns:
      ServerProperties object for chaining
    • addProperty

      public ServerProperties addProperty(String propertyKey, String type, String value)
      Add a ServerProperty to the list
      Parameters:
      propertyKey -
      type -
      value -
      Returns:
      ServerProperties object for chaining