Class AggregateMetadataInfoContent
- java.lang.Object
-
- com.totvs.tjf.repository.aggregate.metadata.AggregateMetadataInfoContent
-
public class AggregateMetadataInfoContent extends Object
Aggregate metadata field content representation.- Author:
- Rubens dos Santos Filho
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAggregateMetadataInfoContent.AggregateMetadataInfoContentBuilderAggregateMetadataInfobuilder.
-
Constructor Summary
Constructors Constructor Description AggregateMetadataInfoContent()Class default constructorAggregateMetadataInfoContent(String creationUser, ZonedDateTime creationDate, String lastUpdateUser, ZonedDateTime lastUpdateDate)Class constructor with all fields
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AggregateMetadataInfoContent.AggregateMetadataInfoContentBuilderbuilder()AggregateMetadataInfobuilder.booleanequals(Object object)ZonedDateTimegetCreationDate()Get the creation date for this aggregate record.StringgetCreationUser()Get the creation user for this aggregate record.ZonedDateTimegetLastUpdateDate()Get the last aggregate update date for this record.StringgetLastUpdateUser()Get the last aggregate update user for this record.inthashCode()voidsetLastUpdateDate(ZonedDateTime lastUpdateDate)Set the last aggregate update date for this record.voidsetLastUpdateUser(String lastUpdateUser)Set the last aggregate update user for this record.
-
-
-
Constructor Detail
-
AggregateMetadataInfoContent
public AggregateMetadataInfoContent()
Class default constructor
-
AggregateMetadataInfoContent
public AggregateMetadataInfoContent(String creationUser, ZonedDateTime creationDate, String lastUpdateUser, ZonedDateTime lastUpdateDate)
Class constructor with all fields- Parameters:
creationUser-creationDate-lastUpdateUser-lastUpdateDate-
-
-
Method Detail
-
getCreationUser
public String getCreationUser()
Get the creation user for this aggregate record.- Returns:
- aggregate record creation user
-
getCreationDate
public ZonedDateTime getCreationDate()
Get the creation date for this aggregate record.- Returns:
- aggregate record creation date
-
getLastUpdateUser
public String getLastUpdateUser()
Get the last aggregate update user for this record.- Returns:
- record's last aggregate update user
-
setLastUpdateUser
public void setLastUpdateUser(String lastUpdateUser)
Set the last aggregate update user for this record.- Parameters:
lastUpdateUser- record's last aggregate update user
-
getLastUpdateDate
public ZonedDateTime getLastUpdateDate()
Get the last aggregate update date for this record.- Returns:
- record's last aggregate update date
-
setLastUpdateDate
public void setLastUpdateDate(ZonedDateTime lastUpdateDate)
Set the last aggregate update date for this record.- Parameters:
lastUpdateDate- record's last aggregate update date
-
builder
public static AggregateMetadataInfoContent.AggregateMetadataInfoContentBuilder builder()
AggregateMetadataInfobuilder.- Returns:
AggregateMetadataInfoContent.AggregateMetadataInfoContentBuilderinstance
-
-