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

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

There is a newer version: 3.0.4
Show newest version

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

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

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "state" }) @Generated("jsonschema2pojo") @io.quarkus.runtime.annotations.RegisterForReflection @lombok.experimental.SuperBuilder @lombok.AllArgsConstructor @lombok.NoArgsConstructor @lombok.EqualsAndHashCode @lombok.ToString(callSuper = true) public class UpdateState { /** * 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; /** * 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; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy