public abstract class RecordDTO extends EntityDTO implements ModelWithCustomValues<CustomFieldValueDTO>
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
CLASS_NAME |
static BasicProperty<UserVO,RecordDTO> |
CREATED_BY |
static BasicProperty<DateTime,RecordDTO> |
CREATION_DATE |
static ListProperty<CustomFieldValueDTO,RecordDTO> |
CUSTOM_VALUES |
static BasicProperty<DateTime,RecordDTO> |
LAST_MODIFIED_DATE |
static BasicProperty<UserVO,RecordDTO> |
MODIFIED_BY |
static BasicProperty<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() |
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, attributeNames, changes, className, clearAttributes, copyPropertiesTo, dataAccessor, firePropertyChange, get, getAttribute, initDataAccessor, properties, propertyMap, removeAttribute, removePropertyChangeListener, removePropertyChangeListener, set, setAttributepublic static final java.lang.String CLASS_NAME
public static final BasicProperty<UserVO,RecordDTO> CREATED_BY
public static final BasicProperty<DateTime,RecordDTO> CREATION_DATE
public static final ListProperty<CustomFieldValueDTO,RecordDTO> CUSTOM_VALUES
public static final BasicProperty<DateTime,RecordDTO> LAST_MODIFIED_DATE
public static final BasicProperty<UserVO,RecordDTO> MODIFIED_BY
public static final BasicProperty<RecordTypeVO,RecordDTO> TYPE
protected java.util.List<Property<?,?>> doGetProperties()
doGetProperties in class EntityDTOpublic UserVO getCreatedBy()
public void setCreatedBy(UserVO createdBy)
public DateTime getCreationDate()
public void setCreationDate(DateTime creationDate)
public java.util.List<CustomFieldValueDTO> getCustomValues()
getCustomValues in interface ModelWithCustomValues<CustomFieldValueDTO>public void setCustomValues(java.util.List<CustomFieldValueDTO> customValues)
setCustomValues in interface ModelWithCustomValues<CustomFieldValueDTO>public DateTime getLastModifiedDate()
public void setLastModifiedDate(DateTime lastModifiedDate)
public UserVO getModifiedBy()
public void setModifiedBy(UserVO modifiedBy)
public RecordTypeVO getType()
public void setType(RecordTypeVO type)
public java.lang.String toString()
toString in class EntityModel