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

io.apicurio.registry.rest.v3.beans.VersionMetaData Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version

package io.apicurio.registry.rest.v3.beans;

import java.util.Date;
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.VersionState;


/**
 * Root Type for ArtifactVersionMetaData
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "version", "name", "description", "owner", "createdOn", "artifactType", "globalId", "state", "labels", "groupId", "contentId", "artifactId" }) @Generated("jsonschema2pojo") @io.quarkus.runtime.annotations.RegisterForReflection @lombok.experimental.SuperBuilder @lombok.AllArgsConstructor @lombok.NoArgsConstructor @lombok.EqualsAndHashCode @lombok.ToString(callSuper = true) public class VersionMetaData { /** * A single version of an artifact. Can be provided by the client when creating a new version, * or it can be server-generated. The value can be any string unique to the artifact, but it is * recommended to use a simple integer or a semver value. * (Required) * */ @JsonProperty("version") @JsonPropertyDescription("A single version of an artifact. Can be provided by the client when creating a new version,\nor it can be server-generated. The value can be any string unique to the artifact, but it is\nrecommended to use a simple integer or a semver value.") private String version; @JsonProperty("name") private String name; @JsonProperty("description") private String description; /** * * (Required) * */ @JsonProperty("owner") private String owner; /** * * (Required) * */ @JsonProperty("createdOn") private Date createdOn; /** * * (Required) * */ @JsonProperty("artifactType") @JsonPropertyDescription("") private String artifactType; /** * * (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 VersionState state; /** * User-defined name-value pairs. Name and value must be strings. * */ @JsonProperty("labels") @JsonPropertyDescription("User-defined name-value pairs. Name and value must be strings.") private Map labels; /** * 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; /** * The ID of a single artifact. * (Required) * */ @JsonProperty("artifactId") @JsonPropertyDescription("The ID of a single artifact.") private String artifactId; /** * A single version of an artifact. Can be provided by the client when creating a new version, * or it can be server-generated. The value can be any string unique to the artifact, but it is * recommended to use a simple integer or a semver value. * (Required) * */ @JsonProperty("version") public String getVersion() { return version; } /** * A single version of an artifact. Can be provided by the client when creating a new version, * or it can be server-generated. The value can be any string unique to the artifact, but it is * recommended to use a simple integer or a semver value. * (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("owner") public String getOwner() { return owner; } /** * * (Required) * */ @JsonProperty("owner") public void setOwner(String owner) { this.owner = owner; } /** * * (Required) * */ @JsonProperty("createdOn") public Date getCreatedOn() { return createdOn; } /** * * (Required) * */ @JsonProperty("createdOn") public void setCreatedOn(Date createdOn) { this.createdOn = createdOn; } /** * * (Required) * */ @JsonProperty("artifactType") public String getArtifactType() { return artifactType; } /** * * (Required) * */ @JsonProperty("artifactType") public void setArtifactType(String artifactType) { this.artifactType = artifactType; } /** * * (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 VersionState 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(VersionState state) { this.state = state; } /** * User-defined name-value pairs. Name and value must be strings. * */ @JsonProperty("labels") public Map getLabels() { return labels; } /** * User-defined name-value pairs. Name and value must be strings. * */ @JsonProperty("labels") public void setLabels(Map labels) { this.labels = labels; } /** * 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; } /** * The ID of a single artifact. * (Required) * */ @JsonProperty("artifactId") public String getArtifactId() { return artifactId; } /** * The ID of a single artifact. * (Required) * */ @JsonProperty("artifactId") public void setArtifactId(String artifactId) { this.artifactId = artifactId; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy