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 StringATTR_FRONTEND_SERVERstatic StringCOL_FRONTEND_SERVERstatic StringCOL_KEYstatic StringCOL_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 FrontendServergetFrontendServer()LonggetId()@Size(max=250) StringgetKey()Returns the key of the property.StringgetValue()Returns the value of the property.voidsetFrontendServer(FrontendServer frontendServer)voidsetKey(String key)Sets the key of the property.voidsetValue(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:IServerPropertyEntityReturns the key of the property.- Specified by:
getKeyin interfaceIServerPropertyEntity- Returns:
- the key of the property.
-
setKey
public void setKey(String key)
Description copied from interface:IServerPropertyEntitySets the key of the property.- Specified by:
setKeyin interfaceIServerPropertyEntity- Parameters:
key- the key of the property.
-
getValue
public String getValue()
Description copied from interface:IServerPropertyEntityReturns the value of the property.- Specified by:
getValuein interfaceIServerPropertyEntity- Returns:
- the value of the property.
-
setValue
public void setValue(String value)
Description copied from interface:IServerPropertyEntitySets the value of the property.- Specified by:
setValuein interfaceIServerPropertyEntity- Parameters:
value- the value of the property.
-
getFrontendServer
public FrontendServer getFrontendServer()
-
setFrontendServer
public void setFrontendServer(FrontendServer frontendServer)
-
-