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

io.apicurio.registry.rest.v3.beans.BranchMetaData 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 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 BranchMetaData
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "groupId", "artifactId", "branchId", "createdOn", "modifiedBy", "modifiedOn", "owner", "description", "systemDefined" }) @Generated("jsonschema2pojo") @io.quarkus.runtime.annotations.RegisterForReflection @lombok.experimental.SuperBuilder @lombok.AllArgsConstructor @lombok.NoArgsConstructor @lombok.EqualsAndHashCode @lombok.ToString(callSuper = true) public class BranchMetaData { /** * An ID of a single artifact group. * (Required) * */ @JsonProperty("groupId") @JsonPropertyDescription("An ID of a single artifact group.") private String groupId; /** * The ID of a single artifact. * (Required) * */ @JsonProperty("artifactId") @JsonPropertyDescription("The ID of a single artifact.") private String artifactId; /** * The ID of a single artifact branch. * (Required) * */ @JsonProperty("branchId") @JsonPropertyDescription("The ID of a single artifact branch.") private String branchId; /** * * (Required) * */ @JsonProperty("createdOn") private Date createdOn; /** * * (Required) * */ @JsonProperty("modifiedBy") private String modifiedBy; /** * * (Required) * */ @JsonProperty("modifiedOn") private Date modifiedOn; /** * * (Required) * */ @JsonProperty("owner") @JsonPropertyDescription("") private String owner; /** * */ @JsonProperty("description") @JsonPropertyDescription("") private String description; /** * * (Required) * */ @JsonProperty("systemDefined") @JsonPropertyDescription("") private Boolean systemDefined; /** * 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; } /** * 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; } /** * The ID of a single artifact branch. * (Required) * */ @JsonProperty("branchId") public String getBranchId() { return branchId; } /** * The ID of a single artifact branch. * (Required) * */ @JsonProperty("branchId") public void setBranchId(String branchId) { this.branchId = branchId; } /** * * (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; } /** * * (Required) * */ @JsonProperty("owner") public String getOwner() { return owner; } /** * * (Required) * */ @JsonProperty("owner") public void setOwner(String owner) { this.owner = owner; } /** * */ @JsonProperty("description") public String getDescription() { return description; } /** * */ @JsonProperty("description") public void setDescription(String description) { this.description = description; } /** * * (Required) * */ @JsonProperty("systemDefined") public Boolean getSystemDefined() { return systemDefined; } /** * * (Required) * */ @JsonProperty("systemDefined") public void setSystemDefined(Boolean systemDefined) { this.systemDefined = systemDefined; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy