io.apicurio.registry.rest.v3.beans.UserInterfaceConfigUi 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 UserInterfaceConfigUi
*
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"contextPath",
"navPrefixPath",
"oaiDocsUrl"
})
@Generated("jsonschema2pojo")
@io.quarkus.runtime.annotations.RegisterForReflection
@lombok.experimental.SuperBuilder
@lombok.AllArgsConstructor
@lombok.NoArgsConstructor
@lombok.EqualsAndHashCode
@lombok.ToString(callSuper = true)
public class UserInterfaceConfigUi {
@JsonProperty("contextPath")
private String contextPath;
@JsonProperty("navPrefixPath")
private String navPrefixPath;
@JsonProperty("oaiDocsUrl")
private String oaiDocsUrl;
@JsonProperty("contextPath")
public String getContextPath() {
return contextPath;
}
@JsonProperty("contextPath")
public void setContextPath(String contextPath) {
this.contextPath = contextPath;
}
@JsonProperty("navPrefixPath")
public String getNavPrefixPath() {
return navPrefixPath;
}
@JsonProperty("navPrefixPath")
public void setNavPrefixPath(String navPrefixPath) {
this.navPrefixPath = navPrefixPath;
}
@JsonProperty("oaiDocsUrl")
public String getOaiDocsUrl() {
return oaiDocsUrl;
}
@JsonProperty("oaiDocsUrl")
public void setOaiDocsUrl(String oaiDocsUrl) {
this.oaiDocsUrl = oaiDocsUrl;
}
}