io.serialized.client.tenant.TenantsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serialized-client Show documentation
Show all versions of serialized-client Show documentation
Java Client for Serialized APIs
package io.serialized.client.tenant;
import java.util.List;
import static java.util.Collections.emptyList;
import static java.util.Collections.unmodifiableList;
public class TenantsResponse {
private List tenants;
public TenantsResponse() {
}
public TenantsResponse(List tenants) {
this.tenants = tenants;
}
public List tenants() {
return tenants == null ? emptyList() : unmodifiableList(tenants);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy