Class SystemAttributes
- java.lang.Object
-
- org.odpi.openmetadata.accessservices.subjectarea.properties.objects.common.SystemAttributes
-
- All Implemented Interfaces:
Serializable
public class SystemAttributes extends Object implements Serializable
These are the core ' system' attributes- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description SystemAttributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCreatedBy()User who created this objectLonggetCreateTime()The time at which this object was created.StringgetGUID()StatusgetStatus()Status indicates the status of the object - the values are specified in the Status enumerationStringgetUpdatedBy()User who last updated this objectLonggetUpdateTime()The time at which this object was last updated.LonggetVersion()version of the object.voidsetCreatedBy(String createdBy)voidsetCreateTime(Long createTime)voidsetGUID(String GUID)voidsetStatus(Status status)voidsetUpdatedBy(String updatedBy)voidsetUpdateTime(Long updateTime)Update the time at which this object was last updated in milliseconds since epochvoidsetVersion(Long version)StringBuildertoString(StringBuilder sb)
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getGUID
public String getGUID()
-
setGUID
public void setGUID(String GUID)
-
getStatus
public Status getStatus()
Status indicates the status of the object - the values are specified in the Status enumeration- Returns:
- status of the object
-
setStatus
public void setStatus(Status status)
-
getCreatedBy
public String getCreatedBy()
User who created this object- Returns:
- user who created this.
-
setCreatedBy
public void setCreatedBy(String createdBy)
-
getUpdatedBy
public String getUpdatedBy()
User who last updated this object- Returns:
- use who last updated this
-
setUpdatedBy
public void setUpdatedBy(String updatedBy)
-
getCreateTime
public Long getCreateTime()
The time at which this object was created.- Returns:
- create time in milliseconds since epoch
-
setCreateTime
public void setCreateTime(Long createTime)
-
getUpdateTime
public Long getUpdateTime()
The time at which this object was last updated.- Returns:
- update time in milliseconds since epoch
-
setUpdateTime
public void setUpdateTime(Long updateTime)
Update the time at which this object was last updated in milliseconds since epoch- Parameters:
updateTime- date/time as long
-
getVersion
public Long getVersion()
version of the object.- Returns:
- version
-
setVersion
public void setVersion(Long version)
-
toString
public StringBuilder toString(StringBuilder sb)
-
-