Package de.xima.fc.entities.interfaces
Interface IServerPropertyEntity
-
- All Known Implementing Classes:
FrontendServerProperty,SystemProperty
public interface IServerPropertyEntityInterface for server properties.- Since:
- 8.4.0
- Author:
- XIMA MEDIA GmbH
-
-
Field Summary
Fields Modifier and Type Field Description static StringATTR_KEYstatic StringATTR_VALUE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetKey()Returns the key of the property.StringgetValue()Returns the value of the property.voidsetKey(String key)Sets the key of the property.voidsetValue(String value)Sets the value of the property.
-
-
-
Field Detail
-
ATTR_KEY
static final String ATTR_KEY
- See Also:
- Constant Field Values
-
ATTR_VALUE
static final String ATTR_VALUE
- See Also:
- Constant Field Values
-
-
Method Detail
-
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.
-
-