public abstract class RecordDTO extends EntityDTO implements ModelWithCustomValues<CustomFieldValueDTO>
| Modifier and Type | Field and Description |
|---|---|
static Property<UserVO,RecordDTO> |
CREATED_BY |
static Property<DateTime,RecordDTO> |
CREATION_DATE |
static ListProperty<CustomFieldValueDTO,RecordDTO> |
CUSTOM_VALUES |
static Property<DateTime,RecordDTO> |
LAST_MODIFIED_DATE |
static Property<UserVO,RecordDTO> |
MODIFIED_BY |
static Property<RecordTypeVO,RecordDTO> |
TYPE |
ID| Constructor and Description |
|---|
RecordDTO() |
RecordDTO(java.lang.Long id) |
RecordDTO(Property<T,? super RecordDTO> property,
T value) |
| Modifier and Type | Method and Description |
|---|---|
protected java.util.List<Property<?,?>> |
doGetProperties() |
protected void |
doSet(Property<?,?> property,
java.lang.Object value) |
java.lang.Object |
get(Property<?,?> property)
Returns the value of the given property
|
UserVO |
getCreatedBy() |
DateTime |
getCreationDate() |
java.util.List<CustomFieldValueDTO> |
getCustomValues() |
DateTime |
getLastModifiedDate() |
UserVO |
getModifiedBy() |
RecordTypeVO |
getType() |
void |
setCreatedBy(UserVO createdBy) |
void |
setCreationDate(DateTime creationDate) |
void |
setCustomValues(java.util.List<CustomFieldValueDTO> customValues) |
void |
setLastModifiedDate(DateTime lastModifiedDate) |
void |
setModifiedBy(UserVO modifiedBy) |
void |
setType(RecordTypeVO type) |
java.lang.String |
toString() |
getVersion, isPersistent, isTransient, setVersionequals, getId, hashCode, setIdaddPropertyChangeListener, addPropertyChangeListener, changes, copyPropertiesTo, firePropertyChange, properties, propertyMap, removePropertyChangeListener, removePropertyChangeListener, setpublic static final ListProperty<CustomFieldValueDTO,RecordDTO> CUSTOM_VALUES
public static final Property<RecordTypeVO,RecordDTO> TYPE
protected java.util.List<Property<?,?>> doGetProperties()
doGetProperties in class EntityDTOprotected void doSet(Property<?,?> property, java.lang.Object value)
public java.lang.Object get(Property<?,?> property)
ObservableBeanpublic UserVO getCreatedBy()
public DateTime getCreationDate()
public java.util.List<CustomFieldValueDTO> getCustomValues()
getCustomValues in interface ModelWithCustomValues<CustomFieldValueDTO>public DateTime getLastModifiedDate()
public UserVO getModifiedBy()
public RecordTypeVO getType()
public void setCreatedBy(UserVO createdBy)
public void setCreationDate(DateTime creationDate)
public void setCustomValues(java.util.List<CustomFieldValueDTO> customValues)
setCustomValues in interface ModelWithCustomValues<CustomFieldValueDTO>public void setLastModifiedDate(DateTime lastModifiedDate)
public void setModifiedBy(UserVO modifiedBy)
public void setType(RecordTypeVO type)
public java.lang.String toString()
toString in class EntityModel