io.apicurio.registry.rest.v3.beans.RoleMappingSearchResults Maven / Gradle / Ivy
The newest version!
package io.apicurio.registry.rest.v3.beans;
import java.util.ArrayList;
import java.util.List;
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;
/**
* Describes the response received when searching for artifacts.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"roleMappings",
"count"
})
@Generated("jsonschema2pojo")
@io.quarkus.runtime.annotations.RegisterForReflection
@lombok.experimental.SuperBuilder
@lombok.AllArgsConstructor
@lombok.NoArgsConstructor
@lombok.EqualsAndHashCode
@lombok.ToString(callSuper = true)
public class RoleMappingSearchResults {
/**
* The role mappings returned in the result set.
* (Required)
*
*/
@JsonProperty("roleMappings")
@JsonPropertyDescription("The role mappings returned in the result set.")
private List roleMappings = new ArrayList();
/**
* The total number of role mappings that matched the query that produced the result set (may be
* more than the number of role mappings in the result set).
* (Required)
*
*/
@JsonProperty("count")
@JsonPropertyDescription("The total number of role mappings that matched the query that produced the result set (may be \nmore than the number of role mappings in the result set).")
private Integer count;
/**
* The role mappings returned in the result set.
* (Required)
*
*/
@JsonProperty("roleMappings")
public List getRoleMappings() {
return roleMappings;
}
/**
* The role mappings returned in the result set.
* (Required)
*
*/
@JsonProperty("roleMappings")
public void setRoleMappings(List roleMappings) {
this.roleMappings = roleMappings;
}
/**
* The total number of role mappings that matched the query that produced the result set (may be
* more than the number of role mappings in the result set).
* (Required)
*
*/
@JsonProperty("count")
public Integer getCount() {
return count;
}
/**
* The total number of role mappings that matched the query that produced the result set (may be
* more than the number of role mappings in the result set).
* (Required)
*
*/
@JsonProperty("count")
public void setCount(Integer count) {
this.count = count;
}
}