Package de.xima.fc.entities.interfaces
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 String
ATTR_KEY
static String
ATTR_VALUE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getKey()
Returns the key of the property.String
getValue()
Returns the value of the property.void
setKey(String key)
Sets the key of the property.void
setValue(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.
-
-