Interface IServerPropertyEntity

All Known Implementing Classes:
FrontendServerProperty, SystemProperty

public interface IServerPropertyEntity
Interface for server properties.
Since:
8.4.0
Author:
XIMA MEDIA GmbH
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the key of the property.
    Returns the value of the property.
    void
    Sets the key of the property.
    void
    Sets the value of the property.
  • Field Details

  • Method Details

    • getKey

      String getKey()
      Returns the key of the property.
      Returns:
      the key of the property.
    • setKey

      void setKey(String key)
      Sets the key of the property.
      Parameters:
      key - the key of the property.
    • getValue

      String getValue()
      Returns the value of the property.
      Returns:
      the value of the property.
    • setValue

      void setValue(String value)
      Sets the value of the property.
      Parameters:
      value - the value of the property.