Package de.xima.fc.entities
Class FrontendServerProperty
- java.lang.Object
-
- de.xima.cmn.dao.model.AEntity<Long>
-
- de.xima.fc.entities.AbstractEntity
-
- de.xima.fc.entities.AbstractLockableEntity
-
- de.xima.fc.entities.FrontendServerProperty
-
- All Implemented Interfaces:
de.xima.cmn.dao.interfaces.IEntity<Long>
,de.xima.cmn.dao.interfaces.ILockableEntity<Long>
,ILockingVersionProviding
,IServerPropertyEntity
,ITransferable
,ITransferableEntity
,ITransferableLockableEntity
,Serializable
,Comparable<de.xima.cmn.dao.interfaces.IEntity<Long>>
@Entity public class FrontendServerProperty extends AbstractLockableEntity implements IServerPropertyEntity
Entity for properties of a frontend server.- Since:
- 8.4.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ATTR_FRONTEND_SERVER
static String
COL_FRONTEND_SERVER
static String
COL_KEY
static String
COL_VALUE
-
Fields inherited from class de.xima.fc.entities.AbstractLockableEntity
COL_LOCKINGVERSION, lockingVersion
-
Fields inherited from class de.xima.fc.entities.AbstractEntity
COL_ID, id
-
Fields inherited from interface de.xima.fc.entities.interfaces.IServerPropertyEntity
ATTR_KEY, ATTR_VALUE
-
Fields inherited from interface de.xima.fc.entities.interfaces.ITransferableEntity
IMPORT_ID, INVALID_ID
-
-
Constructor Summary
Constructors Constructor Description FrontendServerProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FrontendServer
getFrontendServer()
Long
getId()
@Size(max=250) String
getKey()
Returns the key of the property.String
getValue()
Returns the value of the property.void
setFrontendServer(FrontendServer frontendServer)
void
setKey(String key)
Sets the key of the property.void
setValue(String value)
Sets the value of the property.-
Methods inherited from class de.xima.fc.entities.AbstractLockableEntity
entityHasChanged, getLockingVersion, setLockingVersion, toString
-
Methods inherited from class de.xima.fc.entities.AbstractEntity
asIntValue, isPersisted, setId, setId
-
Methods inherited from class de.xima.cmn.dao.model.AEntity
compareTo, equals, getDBTableName, hashCode
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Field Detail
-
ATTR_FRONTEND_SERVER
public static final String ATTR_FRONTEND_SERVER
- See Also:
- Constant Field Values
-
COL_KEY
public static final String COL_KEY
- See Also:
- Constant Field Values
-
COL_VALUE
public static final String COL_VALUE
- See Also:
- Constant Field Values
-
COL_FRONTEND_SERVER
public static final String COL_FRONTEND_SERVER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getKey
@Size(max=250) public @Size(max=250) String getKey()
Description copied from interface:IServerPropertyEntity
Returns the key of the property.- Specified by:
getKey
in interfaceIServerPropertyEntity
- Returns:
- the key of the property.
-
setKey
public void setKey(String key)
Description copied from interface:IServerPropertyEntity
Sets the key of the property.- Specified by:
setKey
in interfaceIServerPropertyEntity
- Parameters:
key
- the key of the property.
-
getValue
public String getValue()
Description copied from interface:IServerPropertyEntity
Returns the value of the property.- Specified by:
getValue
in interfaceIServerPropertyEntity
- Returns:
- the value of the property.
-
setValue
public void setValue(String value)
Description copied from interface:IServerPropertyEntity
Sets the value of the property.- Specified by:
setValue
in interfaceIServerPropertyEntity
- Parameters:
value
- the value of the property.
-
getFrontendServer
public FrontendServer getFrontendServer()
-
setFrontendServer
public void setFrontendServer(FrontendServer frontendServer)
-
-