Package de.xima.fc.entities
Class FormRecordMessageUploadRequest
- java.lang.Object
-
- de.xima.cmn.dao.model.AEntity<Long>
-
- de.xima.fc.entities.AbstractEntity
-
- de.xima.fc.entities.AbstractLockableEntity
-
- de.xima.fc.entities.FormRecordMessageUploadRequest
-
- All Implemented Interfaces:
de.xima.cmn.dao.interfaces.IEntity<Long>,de.xima.cmn.dao.interfaces.ILockableEntity<Long>,ILockingVersionProviding,INameProviding,ITransferable,ITransferableEntity,ITransferableLockableEntity,IUUIDEntity,Serializable,Comparable<de.xima.cmn.dao.interfaces.IEntity<Long>>
@Entity public class FormRecordMessageUploadRequest extends AbstractLockableEntity implements IUUIDEntity, INameProviding
Entity representing (pending or fulfilled) upload requests for form record messages.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringATTR_ATTACHMENTstatic StringATTR_FORM_FIELD_NAMEstatic StringATTR_MESSAGEstatic StringCOL_ATTMT_IDstatic StringCOL_FORM_FIELD_NAMEstatic StringCOL_MSG_ID-
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.INameProviding
ATTR_NAME, COL_NAME
-
Fields inherited from interface de.xima.fc.entities.interfaces.ITransferableEntity
IMPORT_ID, INVALID_ID
-
Fields inherited from interface de.xima.fc.entities.interfaces.IUUIDEntity
ATTR_UUID, COL_UUID, INVALID_UUID, INVALID_UUID_OBJECT, NULL_SAFE_UUID_TYPE, NULLABLE_UUID_TYPE, TYPE_NAME_UUID
-
-
Constructor Summary
Constructors Constructor Description FormRecordMessageUploadRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AttachmentgetAttachment()StringgetFormFieldName()LonggetId()FormRecordMessagegetMessage()StringgetName()StringgetUUID()UUIDgetUUIDObject()booleanisPending()voidsetAttachment(Attachment attachment)voidsetFormFieldName(String formFieldName)voidsetMessage(FormRecordMessage message)voidsetName(String name)voidsetUUID(String uuid)voidsetUUIDObject(UUID uuid)-
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_MESSAGE
public static final String ATTR_MESSAGE
- See Also:
- Constant Field Values
-
ATTR_ATTACHMENT
public static final String ATTR_ATTACHMENT
- See Also:
- Constant Field Values
-
ATTR_FORM_FIELD_NAME
public static final String ATTR_FORM_FIELD_NAME
- See Also:
- Constant Field Values
-
COL_MSG_ID
public static final String COL_MSG_ID
- See Also:
- Constant Field Values
-
COL_ATTMT_ID
public static final String COL_ATTMT_ID
- See Also:
- Constant Field Values
-
COL_FORM_FIELD_NAME
public static final String COL_FORM_FIELD_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getUUID
public String getUUID()
- Specified by:
getUUIDin interfaceIUUIDEntity- Returns:
- UUID (Universal Unique Identifier) that identifies this type of entity. Usually is unique within a
context, e.g.
Mandant,Projekt, ...
-
setUUID
public void setUUID(String uuid)
- Specified by:
setUUIDin interfaceIUUIDEntity
-
getUUIDObject
public UUID getUUIDObject()
- Specified by:
getUUIDObjectin interfaceIUUIDEntity
-
setUUIDObject
public void setUUIDObject(UUID uuid)
-
getMessage
public FormRecordMessage getMessage()
-
setMessage
public void setMessage(FormRecordMessage message)
-
getAttachment
public Attachment getAttachment()
-
setAttachment
public void setAttachment(Attachment attachment)
-
getName
public String getName()
- Specified by:
getNamein interfaceINameProviding- Returns:
- The name of this object.
-
setName
public void setName(String name)
-
getFormFieldName
public String getFormFieldName()
-
setFormFieldName
public void setFormFieldName(String formFieldName)
-
isPending
public boolean isPending()
-
-