Uses of Class
rocks.xmpp.extensions.rsm.model.ResultSetManagement
-
Packages that use ResultSetManagement Package Description rocks.xmpp.extensions.disco Provides classes for XEP-0030: Service Discovery.rocks.xmpp.extensions.disco.client rocks.xmpp.extensions.disco.model.items Provides XML schema implementations of XEP-0030: Service Discovery (#items).rocks.xmpp.extensions.rsm Provides classes for XEP-0059: Result Set Management.rocks.xmpp.extensions.rsm.model Provides XML schema implementations of XEP-0059: Result Set Management.rocks.xmpp.extensions.search.model Provides XML schema implementations of XEP-0055: Jabber Search. -
-
Uses of ResultSetManagement in rocks.xmpp.extensions.disco
Methods in rocks.xmpp.extensions.disco with parameters of type ResultSetManagement Modifier and Type Method Description AsyncResult<ItemNode>
AbstractServiceDiscoveryManager. discoverItems(Jid jid, ResultSetManagement resultSet)
AsyncResult<ItemNode>
ServiceDiscoveryManager. discoverItems(Jid jid, String node, ResultSetManagement resultSetManagement)
Discovers item associated with another XMPP entity.AsyncResult<ItemNode>
ServiceDiscoveryManager. discoverItems(Jid jid, ResultSetManagement resultSet)
Discovers item associated with another XMPP entity. -
Uses of ResultSetManagement in rocks.xmpp.extensions.disco.client
Methods in rocks.xmpp.extensions.disco.client with parameters of type ResultSetManagement Modifier and Type Method Description AsyncResult<ItemNode>
ClientServiceDiscoveryManager. discoverItems(Jid jid, String node, ResultSetManagement resultSetManagement)
Discovers item associated with another XMPP entity. -
Uses of ResultSetManagement in rocks.xmpp.extensions.disco.model.items
Methods in rocks.xmpp.extensions.disco.model.items that return ResultSetManagement Modifier and Type Method Description ResultSetManagement
ItemDiscovery. getResultSetManagement()
ResultSetManagement
ItemNode. getResultSetManagement()
Gets the result set.Constructors in rocks.xmpp.extensions.disco.model.items with parameters of type ResultSetManagement Constructor Description ItemDiscovery(String node, Collection<? extends Item> items, ResultSetManagement resultSetManagement)
Creates an item discovery element with a node attribute and result set management.ItemDiscovery(String node, ResultSetManagement resultSetManagement)
Creates an item discovery element with a node attribute.ItemDiscovery(Collection<Item> items, ResultSetManagement resultSetManagement)
Creates an item discovery element with nodes and result set management. -
Uses of ResultSetManagement in rocks.xmpp.extensions.rsm
Methods in rocks.xmpp.extensions.rsm that return ResultSetManagement Modifier and Type Method Description ResultSetManagement
ResultSet. getResultSetManagement()
Gets the result set info.Methods in rocks.xmpp.extensions.rsm with parameters of type ResultSetManagement Modifier and Type Method Description static <T extends ResultSetItem>
ResultSet<T>ResultSet. create(ResultSetProvider<T> resultSetProvider, ResultSetManagement resultSetManagement)
Creates a result set from a result set provider and a result set management. -
Uses of ResultSetManagement in rocks.xmpp.extensions.rsm.model
Methods in rocks.xmpp.extensions.rsm.model that return ResultSetManagement Modifier and Type Method Description static ResultSetManagement
ResultSetManagement. forCountResponse(int count)
Gets a result set, which has a count information.static ResultSetManagement
ResultSetManagement. forFirstPage(int max)
Gets a result set, which requests the first page.static ResultSetManagement
ResultSetManagement. forItemCount()
Gets a result set, which gets the item count of a result without retrieving the items themselves.static ResultSetManagement
ResultSetManagement. forLastPage(int max)
Gets a result set, which requests the last page.static ResultSetManagement
ResultSetManagement. forLimit(int limit, int index)
Gets a result set, which starts at a particular index.static ResultSetManagement
ResultSetManagement. forNextPage(int max, String id)
Gets a result set, which requests the next page after a specified item.static ResultSetManagement
ResultSetManagement. forPreviousPage(int max, String id)
Gets a result set, which requests the previous page before a specified item.static ResultSetManagement
ResultSetManagement. forResponse(Integer count, Integer index, String first, String last)
Gets a result set, which has a count information, including first and last item.ResultSetManagement
ResultSetManagement. nextPage(int max)
Creates the result set request for the next page.ResultSetManagement
ResultSetManagement. previousPage(int max)
Creates the result set request for the previous page. -
Uses of ResultSetManagement in rocks.xmpp.extensions.search.model
Methods in rocks.xmpp.extensions.search.model that return ResultSetManagement Modifier and Type Method Description ResultSetManagement
Search. getResultSet()
Gets the result set information.Constructors in rocks.xmpp.extensions.search.model with parameters of type ResultSetManagement Constructor Description Search(String first, String last, String nick, String email, ResultSetManagement resultSet, String instructions, DataForm dataForm)
Creates a search request, consisting of multiple search parameters.
-