List<Namespace> |
NamespaceApi.findNamespaces(String query) |
Get all namespaces that match a string in their name or path.
|
Pager<Namespace> |
NamespaceApi.findNamespaces(String query,
int itemsPerPage) |
Get a Pager of all namespaces that match a string in their name or path.
|
List<Namespace> |
NamespaceApi.findNamespaces(String query,
int page,
int perPage) |
Get all namespaces that match a string in their name or path in the specified page range.
|
Stream<Namespace> |
NamespaceApi.findNamespacesStream(String query) |
Get all namespaces that match a string in their name or path as a Stream.
|
List<Namespace> |
NamespaceApi.getNamespaces() |
Get a list of the namespaces of the authenticated user.
|
Pager<Namespace> |
NamespaceApi.getNamespaces(int itemsPerPage) |
Get a Pager of the namespaces of the authenticated user.
|
List<Namespace> |
NamespaceApi.getNamespaces(int page,
int perPage) |
Get a list of the namespaces of the authenticated user.
|
Stream<Namespace> |
NamespaceApi.getNamespacesStream() |
Get a Stream of the namespaces of the authenticated user.
|