io.apicurio.registry.rest.v2.beans.VersionMetaData Maven / Gradle / Ivy
package io.apicurio.registry.rest.v2.beans;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import io.apicurio.registry.types.ArtifactState;
/**
* Root Type for ArtifactVersionMetaData
*
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"version",
"name",
"description",
"createdBy",
"createdOn",
"type",
"globalId",
"state",
"id",
"labels",
"properties",
"groupId",
"contentId"
})
@Generated("jsonschema2pojo")
@io.quarkus.runtime.annotations.RegisterForReflection
@lombok.experimental.SuperBuilder
@lombok.AllArgsConstructor
@lombok.NoArgsConstructor
@lombok.EqualsAndHashCode
@lombok.ToString(callSuper = true)
public class VersionMetaData {
/**
*
* (Required)
*
*/
@JsonProperty("version")
private String version;
@JsonProperty("name")
private String name;
@JsonProperty("description")
private String description;
/**
*
* (Required)
*
*/
@JsonProperty("createdBy")
private String createdBy;
/**
*
* (Required)
*
*/
@JsonProperty("createdOn")
private Date createdOn;
/**
*
* (Required)
*
*/
@JsonProperty("type")
@JsonPropertyDescription("")
private String type;
/**
*
* (Required)
*
*/
@JsonProperty("globalId")
@JsonPropertyDescription("")
private Long globalId;
/**
* Describes the state of an artifact or artifact version. The following states
* are possible:
*
* * ENABLED
* * DISABLED
* * DEPRECATED
*
*
*/
@JsonProperty("state")
@JsonPropertyDescription("Describes the state of an artifact or artifact version. The following states\nare possible:\n\n* ENABLED\n* DISABLED\n* DEPRECATED\n")
private ArtifactState state;
/**
* The ID of a single artifact.
* (Required)
*
*/
@JsonProperty("id")
@JsonPropertyDescription("The ID of a single artifact.")
private String id;
/**
*
*/
@JsonProperty("labels")
@JsonPropertyDescription("")
private List labels = new ArrayList();
/**
* User-defined name-value pairs. Name and value must be strings.
*
*/
@JsonProperty("properties")
@JsonPropertyDescription("User-defined name-value pairs. Name and value must be strings.")
private Map properties;
/**
* An ID of a single artifact group.
*
*/
@JsonProperty("groupId")
@JsonPropertyDescription("An ID of a single artifact group.")
private String groupId;
/**
*
* (Required)
*
*/
@JsonProperty("contentId")
@JsonPropertyDescription("")
private Long contentId;
/**
*
* (Required)
*
*/
@JsonProperty("version")
public String getVersion() {
return version;
}
/**
*
* (Required)
*
*/
@JsonProperty("version")
public void setVersion(String version) {
this.version = version;
}
@JsonProperty("name")
public String getName() {
return name;
}
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
@JsonProperty("description")
public String getDescription() {
return description;
}
@JsonProperty("description")
public void setDescription(String description) {
this.description = description;
}
/**
*
* (Required)
*
*/
@JsonProperty("createdBy")
public String getCreatedBy() {
return createdBy;
}
/**
*
* (Required)
*
*/
@JsonProperty("createdBy")
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
/**
*
* (Required)
*
*/
@JsonProperty("createdOn")
public Date getCreatedOn() {
return createdOn;
}
/**
*
* (Required)
*
*/
@JsonProperty("createdOn")
public void setCreatedOn(Date createdOn) {
this.createdOn = createdOn;
}
/**
*
* (Required)
*
*/
@JsonProperty("type")
public String getType() {
return type;
}
/**
*
* (Required)
*
*/
@JsonProperty("type")
public void setType(String type) {
this.type = type;
}
/**
*
* (Required)
*
*/
@JsonProperty("globalId")
public Long getGlobalId() {
return globalId;
}
/**
*
* (Required)
*
*/
@JsonProperty("globalId")
public void setGlobalId(Long globalId) {
this.globalId = globalId;
}
/**
* Describes the state of an artifact or artifact version. The following states
* are possible:
*
* * ENABLED
* * DISABLED
* * DEPRECATED
*
*
*/
@JsonProperty("state")
public ArtifactState getState() {
return state;
}
/**
* Describes the state of an artifact or artifact version. The following states
* are possible:
*
* * ENABLED
* * DISABLED
* * DEPRECATED
*
*
*/
@JsonProperty("state")
public void setState(ArtifactState state) {
this.state = state;
}
/**
* The ID of a single artifact.
* (Required)
*
*/
@JsonProperty("id")
public String getId() {
return id;
}
/**
* The ID of a single artifact.
* (Required)
*
*/
@JsonProperty("id")
public void setId(String id) {
this.id = id;
}
/**
*
*/
@JsonProperty("labels")
public List getLabels() {
return labels;
}
/**
*
*/
@JsonProperty("labels")
public void setLabels(List labels) {
this.labels = labels;
}
/**
* User-defined name-value pairs. Name and value must be strings.
*
*/
@JsonProperty("properties")
public Map getProperties() {
return properties;
}
/**
* User-defined name-value pairs. Name and value must be strings.
*
*/
@JsonProperty("properties")
public void setProperties(Map properties) {
this.properties = properties;
}
/**
* An ID of a single artifact group.
*
*/
@JsonProperty("groupId")
public String getGroupId() {
return groupId;
}
/**
* An ID of a single artifact group.
*
*/
@JsonProperty("groupId")
public void setGroupId(String groupId) {
this.groupId = groupId;
}
/**
*
* (Required)
*
*/
@JsonProperty("contentId")
public Long getContentId() {
return contentId;
}
/**
*
* (Required)
*
*/
@JsonProperty("contentId")
public void setContentId(Long contentId) {
this.contentId = contentId;
}
}