Uses of Class
org.jivesoftware.openfire.roster.RosterItem.AskType
-
Packages that use RosterItem.AskType Package Description org.jivesoftware.openfire.handler IQ class implementations.org.jivesoftware.openfire.roster Provides classes for managing the roster. -
-
Uses of RosterItem.AskType in org.jivesoftware.openfire.handler
Methods in org.jivesoftware.openfire.handler that return RosterItem.AskType Modifier and Type Method Description RosterItem.AskType
PresenceSubscribeHandler.Change. getNewAsk()
Constructors in org.jivesoftware.openfire.handler with parameters of type RosterItem.AskType Constructor Description Change(RosterItem.RecvType recv, RosterItem.SubType sub, RosterItem.AskType ask)
-
Uses of RosterItem.AskType in org.jivesoftware.openfire.roster
Fields in org.jivesoftware.openfire.roster declared as RosterItem.AskType Modifier and Type Field Description static RosterItem.AskType
RosterItem. ASK_NONE
The roster item has no pending subscription requests.static RosterItem.AskType
RosterItem. ASK_SUBSCRIBE
The roster item has been asked for permission to subscribe to their presence but no response has been received.static RosterItem.AskType
RosterItem. ASK_UNSUBSCRIBE
The roster owner has asked to the roster item to unsubscribe from it's presence but has not received confirmation.protected RosterItem.AskType
RosterItem. askStatus
Methods in org.jivesoftware.openfire.roster that return RosterItem.AskType Modifier and Type Method Description RosterItem.AskType
RosterItem. getAskStatus()
Obtain the current ask status of the item.static RosterItem.AskType
RosterItem. getAskStatus(org.xmpp.packet.Roster.Item item)
static RosterItem.AskType
RosterItem.AskType. getTypeFromInt(int value)
static RosterItem.AskType
RosterItem.AskType. valueOf(String name)
Returns the enum constant of this type with the specified name.static RosterItem.AskType[]
RosterItem.AskType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jivesoftware.openfire.roster with parameters of type RosterItem.AskType Modifier and Type Method Description void
RosterItem. setAskStatus(RosterItem.AskType askStatus)
Set the current ask status of the item.Constructors in org.jivesoftware.openfire.roster with parameters of type RosterItem.AskType Constructor Description RosterItem(long id, org.xmpp.packet.JID jid, RosterItem.SubType subStatus, RosterItem.AskType askStatus, RosterItem.RecvType recvStatus, String nickname, List<String> groups)
RosterItem(org.xmpp.packet.JID jid, RosterItem.SubType subStatus, RosterItem.AskType askStatus, RosterItem.RecvType recvStatus, String nickname, List<String> groups)
-