Class RegistryTenantList
- java.lang.Object
-
- io.apicurio.multitenant.api.datamodel.RegistryTenantList
-
@Generated("jsonschema2pojo") public class RegistryTenantList extends Object
Describes the response received when searching for tenants.
-
-
Constructor Summary
Constructors Constructor Description RegistryTenantList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getCount()
The total number of items that matched the query that produced the result set (may be more than the number of items in the result set).List<RegistryTenant>
getItems()
The RegistryTenants returned in the result set.void
setCount(Integer count)
The total number of items that matched the query that produced the result set (may be more than the number of items in the result set).void
setItems(List<RegistryTenant> items)
The RegistryTenants returned in the result set.
-
-
-
Method Detail
-
getItems
public List<RegistryTenant> getItems()
The RegistryTenants returned in the result set. (Required)
-
setItems
public void setItems(List<RegistryTenant> items)
The RegistryTenants returned in the result set. (Required)
-
getCount
public Integer getCount()
The total number of items that matched the query that produced the result set (may be more than the number of items in the result set). (Required)
-
setCount
public void setCount(Integer count)
The total number of items that matched the query that produced the result set (may be more than the number of items in the result set). (Required)
-
-