All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.apicurio.registry.rest.v2.beans.ArtifactMetaData Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version

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 ArtifactMetaData
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "name", "description", "createdBy", "createdOn", "modifiedBy", "modifiedOn", "id", "version", "type", "globalId", "state", "labels", "properties", "groupId", "contentId", "references" }) @Generated("jsonschema2pojo") @io.quarkus.runtime.annotations.RegisterForReflection @lombok.experimental.SuperBuilder @lombok.AllArgsConstructor @lombok.NoArgsConstructor @lombok.EqualsAndHashCode @lombok.ToString(callSuper = true) public class ArtifactMetaData { @JsonProperty("name") private String name; @JsonProperty("description") private String description; /** * * (Required) * */ @JsonProperty("createdBy") private String createdBy; /** * * (Required) * */ @JsonProperty("createdOn") private Date createdOn; /** * * (Required) * */ @JsonProperty("modifiedBy") private String modifiedBy; /** * * (Required) * */ @JsonProperty("modifiedOn") private Date modifiedOn; /** * The ID of a single artifact. * (Required) * */ @JsonProperty("id") @JsonPropertyDescription("The ID of a single artifact.") private String id; /** * * (Required) * */ @JsonProperty("version") @JsonPropertyDescription("") private String version; /** * * (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 * * (Required) * */ @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; /** * */ @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; /** * */ @JsonProperty("references") @JsonPropertyDescription("") private List references = new ArrayList(); @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("modifiedBy") public String getModifiedBy() { return modifiedBy; } /** * * (Required) * */ @JsonProperty("modifiedBy") public void setModifiedBy(String modifiedBy) { this.modifiedBy = modifiedBy; } /** * * (Required) * */ @JsonProperty("modifiedOn") public Date getModifiedOn() { return modifiedOn; } /** * * (Required) * */ @JsonProperty("modifiedOn") public void setModifiedOn(Date modifiedOn) { this.modifiedOn = modifiedOn; } /** * 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; } /** * * (Required) * */ @JsonProperty("version") public String getVersion() { return version; } /** * * (Required) * */ @JsonProperty("version") public void setVersion(String version) { this.version = version; } /** * * (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 * * (Required) * */ @JsonProperty("state") public ArtifactState getState() { return state; } /** * Describes the state of an artifact or artifact version. The following states * are possible: * * * ENABLED * * DISABLED * * DEPRECATED * * (Required) * */ @JsonProperty("state") public void setState(ArtifactState state) { this.state = state; } /** * */ @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; } /** * */ @JsonProperty("references") public List getReferences() { return references; } /** * */ @JsonProperty("references") public void setReferences(List references) { this.references = references; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy