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 ArtifactType
getArtifactsType()
String
getCreatedBy()
long
getCreatedOn()
String
getDescription()
String
getGroupId()
String
getModifiedBy()
long
getModifiedOn()
Map<String,String>
getProperties()
void
setArtifactsType(ArtifactType artifactsType)
void
setCreatedBy(String createdBy)
void
setCreatedOn(long createdOn)
void
setDescription(String description)
void
setGroupId(String groupId)
void
setModifiedBy(String modifiedBy)
void
setModifiedOn(long modifiedOn)
void
setProperties(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
-
-