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

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

There is a newer version: 3.0.4
Show newest version

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.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


/**
 * Root Type for ConfigurationProperty
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @JsonPropertyOrder({ "name", "value", "type", "label", "description" }) @Generated("jsonschema2pojo") @io.quarkus.runtime.annotations.RegisterForReflection @lombok.experimental.SuperBuilder @lombok.AllArgsConstructor @lombok.NoArgsConstructor @lombok.EqualsAndHashCode @lombok.ToString(callSuper = true) public class ConfigurationProperty { /** * * (Required) * */ @JsonProperty("name") private String name; /** * * (Required) * */ @JsonProperty("value") private String value; /** * * (Required) * */ @JsonProperty("type") @JsonPropertyDescription("") private String type; /** * * (Required) * */ @JsonProperty("label") @JsonPropertyDescription("") private String label; /** * * (Required) * */ @JsonProperty("description") @JsonPropertyDescription("") private String description; /** * * (Required) * */ @JsonProperty("name") public String getName() { return name; } /** * * (Required) * */ @JsonProperty("name") public void setName(String name) { this.name = name; } /** * * (Required) * */ @JsonProperty("value") public String getValue() { return value; } /** * * (Required) * */ @JsonProperty("value") public void setValue(String value) { this.value = value; } /** * * (Required) * */ @JsonProperty("type") public String getType() { return type; } /** * * (Required) * */ @JsonProperty("type") public void setType(String type) { this.type = type; } /** * * (Required) * */ @JsonProperty("label") public String getLabel() { return label; } /** * * (Required) * */ @JsonProperty("label") public void setLabel(String label) { this.label = label; } /** * * (Required) * */ @JsonProperty("description") public String getDescription() { return description; } /** * * (Required) * */ @JsonProperty("description") public void setDescription(String description) { this.description = description; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy