io.quarkiverse.openfga.client.model.dto.ListObjectsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-openfga-client-model Show documentation
Show all versions of quarkus-openfga-client-model Show documentation
OpenFGA Client API model classes
The newest version!
package io.quarkiverse.openfga.client.model.dto;
import static com.fasterxml.jackson.annotation.JsonCreator.Mode.PROPERTIES;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.quarkiverse.openfga.client.model.utils.Preconditions;
public final class ListObjectsResponse {
@JsonProperty("object_ids")
private final List objects;
@JsonCreator(mode = PROPERTIES)
public ListObjectsResponse(@JsonProperty("objects") List objects) {
this.objects = Preconditions.parameterNonNull(objects, "objects");
}
@JsonProperty("objects")
public List getObjects() {
return objects;
}
@Override
public boolean equals(@Nullable Object obj) {
if (obj == this)
return true;
if (obj == null || obj.getClass() != this.getClass())
return false;
var that = (ListObjectsResponse) obj;
return Objects.equals(this.objects, that.objects);
}
@Override
public int hashCode() {
return Objects.hash(objects);
}
@Override
public String toString() {
return "ListObjectsResponse[" +
"objects=" + objects + ']';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy