Uses of Class
tigase.jaxmpp.core.client.BareJID

Packages that use BareJID
tigase.jaxmpp.core.client   
tigase.jaxmpp.core.client.xmpp.modules.chat   
tigase.jaxmpp.core.client.xmpp.modules.muc   
tigase.jaxmpp.core.client.xmpp.modules.presence   
tigase.jaxmpp.core.client.xmpp.modules.pubsub   
tigase.jaxmpp.core.client.xmpp.modules.roster   
 

Uses of BareJID in tigase.jaxmpp.core.client
 

Methods in tigase.jaxmpp.core.client that return BareJID
static BareJID BareJID.bareJIDInstance(String jid)
          Creates instance of BareJID.
static BareJID BareJID.bareJIDInstance(String p_localpart, String p_domain)
          Creates instance of BareJID.
 BareJID JID.getBareJid()
          Returns bare JID part (<localpart@domainpart>) from full JID.
 BareJID SessionObject.getUserBareJid()
          Returns users JID
 BareJID AbstractSessionObject.getUserBareJid()
          Returns users JID
 

Methods in tigase.jaxmpp.core.client with parameters of type BareJID
 int BareJID.compareTo(BareJID o)
           
<T extends JaxmppCore>
T
MultiJaxmpp.get(BareJID userJid)
          Return instance of JaxmppCore connected registered for specific user account.
static JID JID.jidInstance(BareJID bareJid)
          Creates intance of JID from BareJID.
static JID JID.jidInstance(BareJID bareJid, String p_resource)
          Creates intance of JID.
 void ConnectionConfiguration.setUserJID(BareJID jid)
          Set users JabberID.
 

Uses of BareJID in tigase.jaxmpp.core.client.xmpp.modules.chat
 

Methods in tigase.jaxmpp.core.client.xmpp.modules.chat with parameters of type BareJID
 boolean AbstractChatManager.isChatOpenFor(BareJID jid)
           
 

Uses of BareJID in tigase.jaxmpp.core.client.xmpp.modules.muc
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.muc with type parameters of type BareJID
protected  Map<BareJID,Room> AbstractRoomsManager.rooms
           
 

Methods in tigase.jaxmpp.core.client.xmpp.modules.muc that return BareJID
 BareJID Room.getRoomJid()
           
 

Methods in tigase.jaxmpp.core.client.xmpp.modules.muc with parameters of type BareJID
 boolean AbstractRoomsManager.contains(BareJID roomJid)
           
 Room DefaultRoomsManager.createRoomInstance(BareJID roomJid, String nickname, String password)
           
protected abstract  Room AbstractRoomsManager.createRoomInstance(BareJID roomJid, String nickname, String password)
           
 Room AbstractRoomsManager.get(BareJID roomJid)
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.muc with parameters of type BareJID
Room(long id, PacketWriter writer, BareJID roomJid, String nickname, SessionObject sessionObject)
           
 

Uses of BareJID in tigase.jaxmpp.core.client.xmpp.modules.presence
 

Methods in tigase.jaxmpp.core.client.xmpp.modules.presence with parameters of type BareJID
 Presence PresenceStore.getBestPresence(BareJID jid)
           
 Map<String,Presence> PresenceStore.getPresences(BareJID jid)
           
 boolean PresenceStore.isAvailable(BareJID jid)
           
 

Uses of BareJID in tigase.jaxmpp.core.client.xmpp.modules.pubsub
 

Methods in tigase.jaxmpp.core.client.xmpp.modules.pubsub with parameters of type BareJID
 void PubSubModule.configureSubscription(BareJID pubSubJID, String nodeName, JID subscriberJID, JabberDataElement form, AsyncCallback callback)
           
 void PubSubModule.configureSubscription(BareJID pubSubJID, String nodeName, JID subscriberJID, JabberDataElement form, PubSubAsyncCallback callback)
           
 void PubSubModule.createNode(BareJID pubSubJID, String nodeName, AsyncCallback callback)
          Create node on PubSub Service.
 void PubSubModule.createNode(BareJID pubSubJID, String nodeName, Element config, AsyncCallback callback)
          Create node on PubSub Service.
 void PubSubModule.createNode(BareJID pubSubJID, String nodeName, Element config, PubSubAsyncCallback callback)
          Create node on PubSub Service.
 void PubSubModule.createNode(BareJID pubSubJID, String nodeName, PubSubAsyncCallback callback)
          Create node on PubSub Service.
 void PubSubModule.deleteItem(BareJID pubSubJID, String nodeName, String itemId, AsyncCallback callback)
           
 void PubSubModule.deleteItem(BareJID pubSubJID, String nodeName, String itemId, PubSubAsyncCallback callback)
           
 void PubSubModule.deleteNode(BareJID pubSubJID, String nodeName, AsyncCallback callback)
          Delete node from PubSub service.
 void PubSubModule.deleteNode(BareJID pubSubJID, String nodeName, PubSubAsyncCallback callback)
          Delete node from PubSub service.
 void PubSubModule.getDefaultSubscriptionConfiguration(BareJID pubSubJID, String nodeName, AsyncCallback callback)
           
 void PubSubModule.getDefaultSubscriptionConfiguration(BareJID pubSubJID, String nodeName, PubSubModule.SubscriptionOptionsAsyncCallback callback)
           
 void PubSubModule.getSubscriptionConfiguration(BareJID pubSubJID, String nodeName, JID subscriberJID, AsyncCallback callback)
           
 void PubSubModule.getSubscriptionConfiguration(BareJID pubSubJID, String nodeName, JID subscriberJID, PubSubModule.SubscriptionOptionsAsyncCallback callback)
           
 void PubSubModule.publishItem(BareJID pubSubJID, String nodeName, String itemId, Element payload, AsyncCallback callback)
           
 void PubSubModule.publishItem(BareJID pubSubJID, String nodeName, String itemId, Element payload, PubSubModule.PublishAsyncCallback callback)
           
 void PubSubModule.retrieveItem(BareJID pubSubJID, String nodeName, AsyncCallback callback)
           
 void PubSubModule.retrieveItem(BareJID pubSubJID, String nodeName, PubSubModule.RetrieveItemsAsyncCallback callback)
           
 void PubSubModule.retrieveItem(BareJID pubSubJID, String nodeName, String itemId, AsyncCallback callback)
           
 void PubSubModule.retrieveItem(BareJID pubSubJID, String nodeName, String itemId, Integer maxItems, AsyncCallback callback)
           
 void PubSubModule.retrieveItem(BareJID pubSubJID, String nodeName, String itemId, PubSubModule.RetrieveItemsAsyncCallback callback)
           
 void PubSubModule.subscribe(BareJID pubSubJID, String nodeName, JID subscriberJID, JabberDataElement options, AsyncCallback callback)
           
 void PubSubModule.subscribe(BareJID pubSubJID, String nodeName, JID subscriberJID, JabberDataElement options, PubSubModule.SubscriptionAsyncCallback callback)
           
 void PubSubModule.subscribe(BareJID pubSubJID, String nodeName, JID subscriberJID, PubSubModule.SubscriptionAsyncCallback callback)
           
 void PubSubModule.unlockItem(BareJID pubSubJID, String nodeName, String itemId, AsyncCallback callback)
           
 void PubSubModule.unlockItem(BareJID pubSubJID, String nodeName, String itemId, PubSubAsyncCallback callback)
           
 void PubSubModule.unsubscribe(BareJID pubSubJID, String nodeName, JID subscriberJID, AsyncCallback callback)
           
 void PubSubModule.unsubscribe(BareJID pubSubJID, String nodeName, JID subscriberJID, PubSubAsyncCallback callback)
           
 

Uses of BareJID in tigase.jaxmpp.core.client.xmpp.modules.roster
 

Fields in tigase.jaxmpp.core.client.xmpp.modules.roster with type parameters of type BareJID
protected  Map<BareJID,RosterItem> RosterStore.roster
           
 

Methods in tigase.jaxmpp.core.client.xmpp.modules.roster that return BareJID
 BareJID RosterItem.getJid()
           
 

Methods in tigase.jaxmpp.core.client.xmpp.modules.roster with parameters of type BareJID
 void RosterStore.add(BareJID jid, String name, AsyncCallback asyncCallback)
           
 void RosterStore.add(BareJID jid, String name, Collection<String> groups, AsyncCallback asyncCallback)
           
protected  void RosterModule.add(BareJID jid, String name, Collection<String> groups, AsyncCallback asyncCallback)
           
 void RosterStore.add(BareJID jid, String name, String[] groups, AsyncCallback asyncCallback)
           
 RosterItem RosterStore.get(BareJID jid)
           
 void RosterStore.remove(BareJID jid)
           
protected  void RosterModule.remove(BareJID jid)
           
 

Constructors in tigase.jaxmpp.core.client.xmpp.modules.roster with parameters of type BareJID
RosterItem(BareJID jid, SessionObject sessionObject)
           
 



Copyright © 2006-2012 Tigase. All Rights Reserved.