Package io.apicurio.registry.storage.dto
Class GroupMetaDataDto
- java.lang.Object
-
- io.apicurio.registry.storage.dto.GroupMetaDataDto
-
- All Implemented Interfaces:
Serializable
public class GroupMetaDataDto extends Object implements Serializable
- Author:
- Fabian Martinez
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GroupMetaDataDto()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArtifactTypegetArtifactsType()StringgetCreatedBy()longgetCreatedOn()StringgetDescription()StringgetGroupId()StringgetModifiedBy()longgetModifiedOn()Map<String,String>getProperties()voidsetArtifactsType(ArtifactType artifactsType)voidsetCreatedBy(String createdBy)voidsetCreatedOn(long createdOn)voidsetDescription(String description)voidsetGroupId(String groupId)voidsetModifiedBy(String modifiedBy)voidsetModifiedOn(long modifiedOn)voidsetProperties(Map<String,String> properties)
-
-
-
Method Detail
-
getGroupId
public String getGroupId()
- Returns:
- the groupId
-
setGroupId
public void setGroupId(String groupId)
- Parameters:
groupId- the groupId to set
-
getDescription
public String getDescription()
- Returns:
- the description
-
setDescription
public void setDescription(String description)
- Parameters:
description- the description to set
-
getArtifactsType
public ArtifactType getArtifactsType()
- Returns:
- the artifactsType
-
setArtifactsType
public void setArtifactsType(ArtifactType artifactsType)
- Parameters:
artifactsType- the artifactsType to set
-
getCreatedBy
public String getCreatedBy()
- Returns:
- the createdBy
-
setCreatedBy
public void setCreatedBy(String createdBy)
- Parameters:
createdBy- the createdBy to set
-
getCreatedOn
public long getCreatedOn()
- Returns:
- the createdOn
-
setCreatedOn
public void setCreatedOn(long createdOn)
- Parameters:
createdOn- the createdOn to set
-
getModifiedBy
public String getModifiedBy()
- Returns:
- the modifiedBy
-
setModifiedBy
public void setModifiedBy(String modifiedBy)
- Parameters:
modifiedBy- the modifiedBy to set
-
getModifiedOn
public long getModifiedOn()
- Returns:
- the modifiedOn
-
setModifiedOn
public void setModifiedOn(long modifiedOn)
- Parameters:
modifiedOn- the modifiedOn to set
-
-