io.apicurio.registry.rest.v3.beans.GroupMetaData Maven / Gradle / Ivy
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;
/**
* Root Type for GroupMetaData
*
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"description",
"owner",
"createdOn",
"modifiedBy",
"modifiedOn",
"labels",
"groupId"
})
@Generated("jsonschema2pojo")
@io.quarkus.runtime.annotations.RegisterForReflection
@lombok.experimental.SuperBuilder
@lombok.AllArgsConstructor
@lombok.NoArgsConstructor
@lombok.EqualsAndHashCode
@lombok.ToString(callSuper = true)
public class GroupMetaData {
/**
*
* (Required)
*
*/
@JsonProperty("description")
private String description;
/**
*
* (Required)
*
*/
@JsonProperty("owner")
private String owner;
/**
*
* (Required)
*
*/
@JsonProperty("createdOn")
private Date createdOn;
/**
*
* (Required)
*
*/
@JsonProperty("modifiedBy")
private String modifiedBy;
/**
*
* (Required)
*
*/
@JsonProperty("modifiedOn")
private Date modifiedOn;
/**
* User-defined name-value pairs. Name and value must be strings.
* (Required)
*
*/
@JsonProperty("labels")
@JsonPropertyDescription("User-defined name-value pairs. Name and value must be strings.")
private Map labels;
/**
* An ID of a single artifact group.
* (Required)
*
*/
@JsonProperty("groupId")
@JsonPropertyDescription("An ID of a single artifact group.")
private String groupId;
/**
*
* (Required)
*
*/
@JsonProperty("description")
public String getDescription() {
return description;
}
/**
*
* (Required)
*
*/
@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("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;
}
/**
* User-defined name-value pairs. Name and value must be strings.
* (Required)
*
*/
@JsonProperty("labels")
public Map getLabels() {
return labels;
}
/**
* User-defined name-value pairs. Name and value must be strings.
* (Required)
*
*/
@JsonProperty("labels")
public void setLabels(Map labels) {
this.labels = labels;
}
/**
* An ID of a single artifact group.
* (Required)
*
*/
@JsonProperty("groupId")
public String getGroupId() {
return groupId;
}
/**
* An ID of a single artifact group.
* (Required)
*
*/
@JsonProperty("groupId")
public void setGroupId(String groupId) {
this.groupId = groupId;
}
}