Package io.apicurio.registry.storage.dto
Class SearchedArtifactDto
- java.lang.Object
-
- io.apicurio.registry.storage.dto.SearchedArtifactDto
-
public class SearchedArtifactDto extends Object
- Author:
- eric.wittmann@gmail.com
-
-
Constructor Summary
Constructors Constructor Description SearchedArtifactDto()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCreatedBy()
Date
getCreatedOn()
String
getDescription()
String
getGroupId()
String
getId()
List<String>
getLabels()
String
getModifiedBy()
Date
getModifiedOn()
String
getName()
ArtifactState
getState()
ArtifactType
getType()
void
setCreatedBy(String createdBy)
void
setCreatedOn(Date createdOn)
void
setDescription(String description)
void
setGroupId(String groupId)
void
setId(String id)
void
setLabels(List<String> labels)
void
setModifiedBy(String modifiedBy)
void
setModifiedOn(Date modifiedOn)
void
setName(String name)
void
setState(ArtifactState state)
void
setType(ArtifactType type)
-
-
-
Method Detail
-
getGroupId
public String getGroupId()
- Returns:
- the groupId
-
setGroupId
public void setGroupId(String groupId)
- Parameters:
groupId
- the groupId to set
-
getId
public String getId()
- Returns:
- the id
-
setId
public void setId(String id)
- Parameters:
id
- the id to set
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name
- the name to set
-
getDescription
public String getDescription()
- Returns:
- the description
-
setDescription
public void setDescription(String description)
- Parameters:
description
- the description to set
-
getCreatedOn
public Date getCreatedOn()
- Returns:
- the createdOn
-
setCreatedOn
public void setCreatedOn(Date createdOn)
- Parameters:
createdOn
- the createdOn to set
-
getCreatedBy
public String getCreatedBy()
- Returns:
- the createdBy
-
setCreatedBy
public void setCreatedBy(String createdBy)
- Parameters:
createdBy
- the createdBy 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
-
getModifiedOn
public Date getModifiedOn()
- Returns:
- the modifiedOn
-
setModifiedOn
public void setModifiedOn(Date modifiedOn)
- Parameters:
modifiedOn
- the modifiedOn to set
-
getModifiedBy
public String getModifiedBy()
- Returns:
- the modifiedBy
-
setModifiedBy
public void setModifiedBy(String modifiedBy)
- Parameters:
modifiedBy
- the modifiedBy to set
-
-