io.apicurio.registry.rest.v3.beans.ArtifactReference Maven / Gradle / Ivy
package io.apicurio.registry.rest.v3.beans;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Root Type for ArtifactReference
*
* A reference to a different artifact. Typically used with artifact types that can have dependencies like Protobuf.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"groupId",
"artifactId",
"version",
"name"
})
@Generated("jsonschema2pojo")
@io.quarkus.runtime.annotations.RegisterForReflection
@lombok.experimental.SuperBuilder
@lombok.AllArgsConstructor
@lombok.NoArgsConstructor
@lombok.EqualsAndHashCode
@lombok.ToString(callSuper = true)
public class ArtifactReference {
/**
*
* (Required)
*
*/
@JsonProperty("groupId")
private String groupId;
/**
*
* (Required)
*
*/
@JsonProperty("artifactId")
private String artifactId;
@JsonProperty("version")
private String version;
/**
*
* (Required)
*
*/
@JsonProperty("name")
private String name;
/**
*
* (Required)
*
*/
@JsonProperty("groupId")
public String getGroupId() {
return groupId;
}
/**
*
* (Required)
*
*/
@JsonProperty("groupId")
public void setGroupId(String groupId) {
this.groupId = groupId;
}
/**
*
* (Required)
*
*/
@JsonProperty("artifactId")
public String getArtifactId() {
return artifactId;
}
/**
*
* (Required)
*
*/
@JsonProperty("artifactId")
public void setArtifactId(String artifactId) {
this.artifactId = artifactId;
}
@JsonProperty("version")
public String getVersion() {
return version;
}
@JsonProperty("version")
public void setVersion(String version) {
this.version = version;
}
/**
*
* (Required)
*
*/
@JsonProperty("name")
public String getName() {
return name;
}
/**
*
* (Required)
*
*/
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
}