Package io.apicurio.registry.storage.dto
Class ArtifactMetaDataDto
- java.lang.Object
-
- io.apicurio.registry.storage.dto.ArtifactMetaDataDto
-
public class ArtifactMetaDataDto extends Object
- Author:
- eric.wittmann@gmail.com
-
-
Constructor Summary
Constructors Constructor Description ArtifactMetaDataDto()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getContentId()
String
getCreatedBy()
long
getCreatedOn()
String
getDescription()
long
getGlobalId()
String
getGroupId()
String
getId()
List<String>
getLabels()
String
getModifiedBy()
long
getModifiedOn()
String
getName()
Map<String,String>
getProperties()
ArtifactState
getState()
ArtifactType
getType()
String
getVersion()
int
getVersionId()
void
setContentId(long contentId)
void
setCreatedBy(String createdBy)
void
setCreatedOn(long createdOn)
void
setDescription(String description)
void
setGlobalId(long globalId)
void
setGroupId(String groupId)
void
setId(String id)
void
setLabels(List<String> labels)
void
setModifiedBy(String modifiedBy)
void
setModifiedOn(long modifiedOn)
void
setName(String name)
void
setProperties(Map<String,String> properties)
void
setState(ArtifactState state)
void
setType(ArtifactType type)
void
setVersion(String version)
void
setVersionId(int versionId)
-
-
-
Method Detail
-
getDescription
public String getDescription()
- Returns:
- the description
-
setDescription
public void setDescription(String description)
- Parameters:
description
- the description 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
-
getVersion
public String getVersion()
- Returns:
- the version
-
setVersion
public void setVersion(String version)
- Parameters:
version
- the version to set
-
getType
public ArtifactType getType()
- Returns:
- the type
-
setType
public void setType(ArtifactType type)
- Parameters:
type
- the type to set
-
getState
public ArtifactState getState()
- Returns:
- the state
-
setState
public void setState(ArtifactState state)
- Parameters:
state
- the state to set
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name
- the name to set
-
getId
public String getId()
- Returns:
- the id
-
setId
public void setId(String id)
- Parameters:
id
- the id to set
-
getGlobalId
public long getGlobalId()
- Returns:
- the globalId
-
setGlobalId
public void setGlobalId(long globalId)
- Parameters:
globalId
- the globalId to set
-
getContentId
public long getContentId()
- Returns:
- the contentId
-
setContentId
public void setContentId(long contentId)
- Parameters:
contentId
- the contentId to set
-
setProperties
public void setProperties(Map<String,String> properties)
- Parameters:
properties
- the user-defined properties to set
-
getGroupId
public String getGroupId()
- Returns:
- the groupId
-
setGroupId
public void setGroupId(String groupId)
- Parameters:
groupId
- the groupId to set
-
getVersionId
public int getVersionId()
- Returns:
- the versionId
-
setVersionId
public void setVersionId(int versionId)
- Parameters:
versionId
- the versionId to set
-
-