|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TigaseDBException | |
---|---|
tigase.conf | |
tigase.db | |
tigase.db.jdbc | |
tigase.db.xml | |
tigase.server.sreceiver | |
tigase.xmpp | |
tigase.xmpp.impl | |
tigase.xmpp.impl.roster |
Uses of TigaseDBException in tigase.conf |
---|
Methods in tigase.conf that throw TigaseDBException | |
---|---|
void |
ConfigurationCache.addItem(ConfigItem item)
Method description |
Collection<ConfigItem> |
ConfigSQLRepository.allItems()
|
Collection<ConfigItem> |
ConfigurationCache.allItems()
Method description |
Collection<ConfigItem> |
ConfigXMLRepository.allItems()
Method description |
void |
ConfiguratorAbstract.init(String[] args)
Method description |
void |
ConfigurationCache.reload()
Method description |
void |
ConfigurationCache.removeItem(String key)
Method description |
void |
ConfigurationCache.store()
Method description |
void |
ConfigXMLRepository.store()
Method description |
Uses of TigaseDBException in tigase.db |
---|
Subclasses of TigaseDBException in tigase.db | |
---|---|
class |
DataOverwriteException
The DataOverwriteException exception is thrown when application
tries to ovrewrite data in repository but does not have permission to do so. |
class |
DBInitException
Describe class DBInitException here. |
class |
UserExistsException
The UserExistsException is thrown when application tries to add
new user with user ID which already exists in repository. |
class |
UserNotFoundException
The UserNotFoundException exception is thrown when application
tries to access data for user which does not exist in repository. |
Methods in tigase.db that throw TigaseDBException | |
---|---|
void |
UserRepositoryPool.addDataList(String user,
String subnode,
String key,
String[] list)
|
void |
UserRepository.addDataList(String user,
String subnode,
String key,
String[] list)
addDataList method adds mode entries to existing data list
associated with given key in repository under given node path. |
void |
ComponentRepository.addItem(Item item)
The method adds a new or updates existing Item in the repository. |
void |
UserRepositoryPool.addUser(String user)
|
void |
UserRepository.addUser(String user)
This addUser method allows to add new user to repository. |
void |
UserAuthRepository.addUser(String user,
String password)
Describe addUser method here. |
void |
UserAuthRepositoryImpl.addUser(String user,
String password)
Describe addUser method here. |
Collection<Item> |
ComponentRepository.allItems()
Retuns a collection with all items stored in the repository. |
boolean |
UserAuthRepository.digestAuth(String user,
String digest,
String id,
String alg)
digestAuth method performs non-sasl, digest authentication
as described in non-sasl authentication
XEP-0078
For now it is empty and always returns false as I don't
have description for database with passwords. |
boolean |
UserAuthRepositoryImpl.digestAuth(String user,
String digest,
String id,
String alg)
Describe digestAuth method here. |
String |
UserRepositoryPool.getData(String user,
String key)
|
String |
UserRepository.getData(String user,
String key)
getData method returns a value associated with given key for
user repository in default subnode. |
String |
UserRepositoryPool.getData(String user,
String subnode,
String key)
|
String |
UserRepository.getData(String user,
String subnode,
String key)
getData method returns a value associated with given key for
user repository in given subnode. |
String |
UserRepositoryPool.getData(String user,
String subnode,
String key,
String def)
|
String |
UserRepository.getData(String user,
String subnode,
String key,
String def)
getData method returns a value associated with given key for
user repository in given subnode. |
String[] |
UserRepositoryPool.getDataList(String user,
String subnode,
String key)
|
String[] |
UserRepository.getDataList(String user,
String subnode,
String key)
getDataList method returns array of values associated with
given key or null if given key does not exist for given user
ID in given node path. |
String |
NonAuthUserRepository.getDomainTempData(String domain,
String subnode,
String key,
String def)
Retrieves and returns a value associated with given subnode and key from a publicly available space. |
String[] |
UserRepositoryPool.getKeys(String user)
|
String[] |
UserRepository.getKeys(String user)
getKeys method returns list of all keys stored in default user
repository node. |
String[] |
UserRepositoryPool.getKeys(String user,
String subnode)
|
String[] |
UserRepository.getKeys(String user,
String subnode)
getKeys method returns list of all keys stored in given
subnode in user repository. |
String[] |
UserRepositoryPool.getSubnodes(String user)
|
String[] |
UserRepository.getSubnodes(String user)
getSubnodes method returns list of all root nodes for
given user. |
String[] |
UserRepositoryPool.getSubnodes(String user,
String subnode)
|
String[] |
UserRepository.getSubnodes(String user,
String subnode)
getSubnodes method returns list of all direct subnodes from
given node. |
String |
NonAuthUserRepository.getTempData(String subnode,
String key,
String def)
Retrieves and returns a value associated with given subnode and key from a publicly available space. |
List<String> |
UserRepositoryPool.getUsers()
|
List<String> |
UserRepository.getUsers()
This method is only used by the data conversion tools. |
void |
UserAuthRepository.logout(String user)
Describe logout method here. |
boolean |
UserAuthRepository.otherAuth(Map<String,Object> authProps)
Describe otherAuth method here. |
boolean |
UserAuthRepositoryImpl.otherAuth(Map<String,Object> props)
Describe otherAuth method here. |
boolean |
UserAuthRepository.plainAuth(String user,
String password)
plainAuth method performs non-sasl, plain authentication
as described in non-sasl authentication
XEP-0078. |
boolean |
UserAuthRepositoryImpl.plainAuth(String user,
String password)
Describe plainAuth method here. |
void |
NonAuthUserRepository.putDomainTempData(String domain,
String subnode,
String key,
String value)
The method allows to store some temporary data by the plugin in publicly available space. |
void |
NonAuthUserRepository.putTempData(String subnode,
String key,
String value)
The method allows to store some temporary data by the plugin in publicly available space. |
void |
ComponentRepository.reload()
This method is called to reload items from the database or other permanent storage. |
void |
UserRepositoryPool.removeData(String user,
String key)
|
void |
UserRepository.removeData(String user,
String key)
removeData method removes pair (key, value) from user
repository in default repository node. |
void |
UserRepositoryPool.removeData(String user,
String subnode,
String key)
|
void |
UserRepository.removeData(String user,
String subnode,
String key)
removeData method removes pair (key, value) from user
repository in given subnode. |
void |
NonAuthUserRepository.removeDomainTempData(String domain,
String subnode,
String key)
The method allows to remove existing data stored in a temporary storage space associated with a given DNS domain. |
void |
ComponentRepository.removeItem(String key)
The method is called to remove given Item from the memory cache and permanent storage. |
void |
UserRepositoryPool.removeSubnode(String user,
String subnode)
|
void |
UserRepository.removeSubnode(String user,
String subnode)
removeSubnode method removes given subnode with all subnodes
in this node and all data stored in this node and in all subnodes. |
void |
NonAuthUserRepository.removeTempData(String subnode,
String key)
The method allows to remove existing data stored in the Tigase instance specific temporary storage. |
void |
UserAuthRepository.removeUser(String user)
Describe removeUser method here. |
void |
UserAuthRepositoryImpl.removeUser(String user)
Describe removeUser method here. |
void |
UserRepositoryPool.removeUser(String user)
|
void |
UserRepository.removeUser(String user)
This removeUser method allows to remove user and all his data
from user repository. |
void |
UserRepositoryPool.setData(String user,
String key,
String value)
|
void |
UserRepository.setData(String user,
String key,
String value)
This setData method sets data value for given user ID
associated with given key in default repository node. |
void |
UserRepositoryPool.setData(String user,
String subnode,
String key,
String value)
|
void |
UserRepository.setData(String user,
String subnode,
String key,
String value)
setData method sets data value for given user ID in repository
under given node path and associates it with given key. |
void |
UserRepositoryPool.setDataList(String user,
String subnode,
String key,
String[] list)
|
void |
UserRepository.setDataList(String user,
String subnode,
String key,
String[] list)
setDataList method sets list of values for given user
associated given key in repository under given node path. |
void |
ComponentRepository.store()
The method is called to store all data in the database. |
void |
UserAuthRepository.updatePassword(String user,
String password)
Describe updatePassword method here. |
void |
UserAuthRepositoryImpl.updatePassword(String user,
String password)
Describe updatePassword method here. |
Uses of TigaseDBException in tigase.db.jdbc |
---|
Methods in tigase.db.jdbc that throw TigaseDBException | |
---|---|
void |
JDBCRepository.addDataList(String user_id,
String subnode,
String key,
String[] list)
Describe addDataList method here. |
void |
JDBCRepository.addUser(String user_id)
Describe addUser method here. |
void |
DrupalAuth.addUser(String user,
String password)
Describe addUser method here. |
void |
LibreSourceAuth.addUser(String user,
String password)
Describe addUser method here. |
void |
TigaseCustomAuth.addUser(String user,
String password)
Describe addUser method here. |
void |
TigaseAuth.addUser(String user,
String password)
Describe addUser method here. |
void |
JDBCRepository.addUser(String user,
String password)
Describe addUser method here. |
boolean |
DrupalAuth.digestAuth(String user,
String digest,
String id,
String alg)
Describe digestAuth method here. |
boolean |
LibreSourceAuth.digestAuth(String user,
String digest,
String id,
String alg)
Describe digestAuth method here. |
boolean |
TigaseCustomAuth.digestAuth(String user,
String digest,
String id,
String alg)
Describe digestAuth method here. |
boolean |
TigaseAuth.digestAuth(String user,
String digest,
String id,
String alg)
Describe digestAuth method here. |
boolean |
JDBCRepository.digestAuth(String user,
String digest,
String id,
String alg)
Describe digestAuth method here. |
String |
JDBCRepository.getData(String user_id,
String key)
Describe getData method here. |
String |
JDBCRepository.getData(String user_id,
String subnode,
String key)
Describe getData method here. |
String |
JDBCRepository.getData(String user_id,
String subnode,
String key,
String def)
Describe getData method here. |
String[] |
JDBCRepository.getDataList(String user_id,
String subnode,
String key)
Describe getDataList method here. |
String[] |
JDBCRepository.getKeys(String user_id)
Describe getKeys method here. |
String[] |
JDBCRepository.getKeys(String user_id,
String subnode)
Describe getKeys method here. |
String[] |
JDBCRepository.getSubnodes(String user_id)
Describe getSubnodes method here. |
String[] |
JDBCRepository.getSubnodes(String user_id,
String subnode)
Describe getSubnodes method here. |
List<String> |
JDBCRepository.getUsers()
getUsers method is thread safe. |
void |
DrupalAuth.logout(String user)
|
void |
LibreSourceAuth.logout(String user)
|
void |
TigaseCustomAuth.logout(String user)
|
void |
TigaseAuth.logout(String user)
|
void |
JDBCRepository.logout(String user)
|
boolean |
DrupalAuth.otherAuth(Map<String,Object> props)
Describe otherAuth method here. |
boolean |
LibreSourceAuth.otherAuth(Map<String,Object> props)
Describe otherAuth method here. |
boolean |
TigaseCustomAuth.otherAuth(Map<String,Object> props)
Describe otherAuth method here. |
boolean |
TigaseAuth.otherAuth(Map<String,Object> props)
Describe otherAuth method here. |
boolean |
JDBCRepository.otherAuth(Map<String,Object> props)
Describe otherAuth method here. |
boolean |
DrupalAuth.plainAuth(String user,
String password)
Describe plainAuth method here. |
boolean |
LibreSourceAuth.plainAuth(String user,
String password)
Describe plainAuth method here. |
boolean |
TigaseCustomAuth.plainAuth(String user,
String password)
Describe plainAuth method here. |
boolean |
TigaseAuth.plainAuth(String user,
String password)
Describe plainAuth method here. |
boolean |
JDBCRepository.plainAuth(String user,
String password)
Describe plainAuth method here. |
void |
JDBCRepository.removeData(String user_id,
String key)
Describe removeData method here. |
void |
JDBCRepository.removeData(String user_id,
String subnode,
String key)
Describe removeData method here. |
void |
JDBCRepository.removeSubnode(String user_id,
String subnode)
Describe removeSubnode method here. |
void |
DrupalAuth.removeUser(String user)
Describe removeUser method here. |
void |
LibreSourceAuth.removeUser(String user)
Describe removeUser method here. |
void |
TigaseCustomAuth.removeUser(String user)
Describe removeUser method here. |
void |
TigaseAuth.removeUser(String user)
Describe removeUser method here. |
void |
JDBCRepository.removeUser(String user_id)
removeUser method is thread safe. |
void |
JDBCRepository.setData(String user_id,
String key,
String value)
Describe setData method here. |
void |
JDBCRepository.setData(String user_id,
String subnode,
String key,
String value)
Describe setData method here. |
void |
JDBCRepository.setDataList(String user_id,
String subnode,
String key,
String[] list)
Describe setDataList method here. |
void |
DrupalAuth.updatePassword(String user,
String password)
Describe updatePassword method here. |
void |
LibreSourceAuth.updatePassword(String user,
String password)
Describe updatePassword method here. |
void |
TigaseCustomAuth.updatePassword(String user,
String password)
Describe updatePassword method here. |
void |
TigaseAuth.updatePassword(String user,
String password)
Describe updatePassword method here. |
void |
JDBCRepository.updatePassword(String user,
String password)
|
Uses of TigaseDBException in tigase.db.xml |
---|
Methods in tigase.db.xml that throw TigaseDBException | |
---|---|
void |
XMLRepository.addDataList(String user,
String subnode,
String key,
String[] list)
addDataList method adds mode entries to existing data list
associated with given key in repository under given node path. |
void |
XMLRepository.addUser(String user,
String password)
Describe addUser method here. |
boolean |
XMLRepository.digestAuth(String user,
String digest,
String id,
String alg)
Describe digestAuth method here. |
String |
XMLRepository.getData(String user,
String key)
getData method returns a value associated with given key for
user repository in default subnode. |
String |
XMLRepository.getData(String user,
String subnode,
String key)
getData method returns a value associated with given key for
user repository in given subnode. |
String |
XMLRepository.getData(String user,
String subnode,
String key,
String def)
getData method returns a value associated with given key for
user repository in given subnode. |
String[] |
XMLRepository.getDataList(String user,
String subnode,
String key)
getDataList method returns array of values associated with
given key or null if given key does not exist for given user
ID in given node path. |
String[] |
XMLRepository.getKeys(String user)
getKeys method returns list of all keys stored in default user
repository node. |
String[] |
XMLRepository.getKeys(String user,
String subnode)
getKeys method returns list of all keys stored in given
subnode in user repository. |
String[] |
XMLRepository.getSubnodes(String user)
getSubnodes method returns list of all root nodes for
given user. |
String[] |
XMLRepository.getSubnodes(String user,
String subnode)
getSubnodes method returns list of all direct subnodes from
given node. |
void |
XMLRepository.logout(String user)
|
boolean |
XMLRepository.otherAuth(Map<String,Object> props)
Describe otherAuth method here. |
boolean |
XMLRepository.plainAuth(String user,
String password)
Describe plainAuth method here. |
void |
XMLRepository.setData(String user,
String key,
String value)
This setData method sets data value for given user ID
associated with given key in default repository node. |
void |
XMLRepository.setData(String user,
String subnode,
String key,
String value)
setData method sets data value for
given user ID in repository under given node path and associates it with
given key. |
void |
XMLRepository.setDataList(String user,
String subnode,
String key,
String[] list)
setDataList method sets list of values for given user
associated given key in repository under given node path. |
void |
XMLRepository.updatePassword(String user,
String password)
|
Uses of TigaseDBException in tigase.server.sreceiver |
---|
Methods in tigase.server.sreceiver that throw TigaseDBException | |
---|---|
void |
RepoRosterTask.loadRoster()
Method description |
protected void |
StanzaReceiver.saveTaskToRepository(ReceiverTaskIfc task)
|
Uses of TigaseDBException in tigase.xmpp |
---|
Methods in tigase.xmpp that throw TigaseDBException | |
---|---|
void |
RepositoryAccess.addDataList(String subnode,
String key,
String[] list)
Method description |
void |
RepositoryAccess.addOfflineDataList(String subnode,
String key,
String[] list)
Method description |
void |
RepositoryAccess.addPublicDataList(String subnode,
String key,
String[] list)
Method description |
String |
RepositoryAccess.getAuthenticationToken(String xmpp_sessionId)
Method description |
String |
RepositoryAccess.getData(String subnode,
String key,
String def)
getData method is a twin sister (brother?) of
setData(String, String, String) method. |
String[] |
RepositoryAccess.getDataGroups(String subnode)
This method retrieves list of all direct subnodes for given node. |
String[] |
RepositoryAccess.getDataKeys(String subnode)
This method returns all data keys available in permanent storage in given node. |
String[] |
RepositoryAccess.getDataList(String subnode,
String key)
This method allows to retrieve list of values associated with one key. |
String |
RepositoryAccess.getOfflineData(String subnode,
String key,
String def)
Method description |
String[] |
RepositoryAccess.getOfflineDataList(String subnode,
String key)
Method description |
String |
RepositoryAccess.getPublicData(String subnode,
String key,
String def)
Method description |
String[] |
RepositoryAccess.getPublicDataList(String subnode,
String key)
Method description |
void |
XMPPProcessor.init(UserRepository rep)
Method description |
void |
XMPPImplIfc.init(UserRepository rep)
Method init is called just after the plugin has been
loaded into memory. |
Authorization |
XMPPResourceConnection.loginDigest(String user,
String digest,
String id,
String alg)
Method description |
Authorization |
RepositoryAccess.loginDigest(String user,
String digest,
String id,
String alg)
Method description |
Authorization |
XMPPResourceConnection.loginOther(Map<String,Object> props)
Method description |
Authorization |
RepositoryAccess.loginOther(Map<String,Object> props)
Method description |
Authorization |
XMPPResourceConnection.loginPlain(String user,
String password)
Method description |
Authorization |
RepositoryAccess.loginPlain(String user,
String password)
authorize method performs authorization with given
password as plain text. |
Authorization |
RepositoryAccess.loginToken(tigase.xmpp.BareJID userId,
String xmpp_sessionId,
String token)
Method description |
Authorization |
RepositoryAccess.register(String name_param,
String pass_param,
Map<String,String> reg_params)
Method description |
Authorization |
RepositoryAccess.register(String name_param,
String pass_param,
String email_param)
Deprecated. |
void |
RepositoryAccess.removeData(String subnode,
String key)
Method description |
void |
RepositoryAccess.removeDataGroup(String subnode)
Removes the last data node given in subnode path as parameter to this method. |
void |
RepositoryAccess.removeOfflineData(String subnode,
String key)
Method description |
void |
RepositoryAccess.removeOfflineDataGroup(String subnode)
Method description |
void |
RepositoryAccess.removePublicData(String subnode,
String key)
Method description |
void |
RepositoryAccess.removePublicDataGroup(String subnode)
Method description |
void |
RepositoryAccess.setData(String subnode,
String key,
String value)
This method stores given data in permanent storage in given point of hierarchy of data base. |
void |
RepositoryAccess.setDataList(String subnode,
String key,
String[] list)
This method allows to store list of values under one key ID reference. |
void |
RepositoryAccess.setOfflineData(String subnode,
String key,
String value)
Method description |
void |
RepositoryAccess.setOfflineDataList(String subnode,
String key,
String[] list)
Method description |
void |
RepositoryAccess.setPublicData(String subnode,
String key,
String value)
Method description |
void |
RepositoryAccess.setPublicDataList(String subnode,
String key,
String[] list)
Method description |
Authorization |
XMPPResourceConnection.unregister(String name_param)
Method description |
Authorization |
RepositoryAccess.unregister(String name_param)
Method description |
Uses of TigaseDBException in tigase.xmpp.impl |
---|
Methods in tigase.xmpp.impl that throw TigaseDBException | |
---|---|
static void |
Privacy.addList(XMPPResourceConnection session,
tigase.xml.Element list)
Method description |
protected static void |
Presence.broadcastDirectPresences(StanzaType t,
XMPPResourceConnection session,
Queue<Packet> results,
tigase.xml.Element pres)
|
protected static void |
Presence.broadcastOffline(XMPPResourceConnection session,
Queue<Packet> results,
Map<String,Object> settings)
sendPresenceBroadcast method broadcasts given presence
to all budies from roster and to all users to which direct presence
was sent. |
static void |
Presence.broadcastProbe(XMPPResourceConnection session,
Queue<Packet> results,
Map<String,Object> settings)
sendPresenceBroadcast method broadcasts given presence
to all budies from roster and to all users to which direct presence
was sent. |
static String |
Privacy.getDefaultList(XMPPResourceConnection session)
Method description |
static tigase.xml.Element |
Privacy.getList(XMPPResourceConnection session,
String list)
Method description |
static tigase.xml.Element |
Privacy.getListOld(XMPPResourceConnection session,
String list)
Method description |
static String[] |
Privacy.getLists(XMPPResourceConnection session)
Method description |
static void |
Presence.resendPendingInRequests(XMPPResourceConnection session,
Queue<Packet> results)
Method description |
Queue<Packet> |
OfflineMessages.restorePacketForOffLineUser(XMPPResourceConnection conn)
|
static void |
Presence.sendPresenceBroadcast(StanzaType t,
XMPPResourceConnection session,
EnumSet<RosterAbstract.SubscriptionType> subscrs,
Queue<Packet> results,
tigase.xml.Element pres,
Map<String,Object> settings)
sendPresenceBroadcast method broadcasts given presence
to all budies from roster and to all users to which direct presence
was sent. |
static void |
Privacy.setActiveList(XMPPResourceConnection session,
String lName)
Method description |
static void |
Privacy.setDefaultList(XMPPResourceConnection session,
tigase.xml.Element list)
Method description |
Uses of TigaseDBException in tigase.xmpp.impl.roster |
---|
Methods in tigase.xmpp.impl.roster that throw TigaseDBException | |
---|---|
void |
Roster.addBuddy(XMPPResourceConnection session,
tigase.xmpp.JID jid,
String name,
String[] groups,
String otherData)
Method description |
void |
RosterFlat.addBuddy(XMPPResourceConnection session,
tigase.xmpp.JID buddy,
String name,
String[] groups,
String otherData)
Method description |
abstract void |
RosterAbstract.addBuddy(XMPPResourceConnection session,
tigase.xmpp.JID jid,
String name,
String[] groups,
String otherData)
Method description |
boolean |
Roster.addBuddyGroup(XMPPResourceConnection session,
tigase.xmpp.JID buddy,
String[] groups)
Method description |
boolean |
RosterFlat.addBuddyGroup(XMPPResourceConnection session,
tigase.xmpp.JID buddy,
String[] groups)
Method description |
abstract boolean |
RosterAbstract.addBuddyGroup(XMPPResourceConnection session,
tigase.xmpp.JID buddy,
String[] groups)
Method description |
boolean |
Roster.containsBuddy(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
boolean |
RosterFlat.containsBuddy(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
abstract boolean |
RosterAbstract.containsBuddy(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
tigase.xmpp.JID[] |
Roster.getBuddies(XMPPResourceConnection session)
Method description |
tigase.xmpp.JID[] |
RosterFlat.getBuddies(XMPPResourceConnection session)
Method description |
abstract tigase.xmpp.JID[] |
RosterAbstract.getBuddies(XMPPResourceConnection session)
Method description |
tigase.xmpp.JID[] |
RosterAbstract.getBuddies(XMPPResourceConnection session,
EnumSet<RosterAbstract.SubscriptionType> subscrs)
Method description |
String[] |
Roster.getBuddyGroups(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
String[] |
RosterFlat.getBuddyGroups(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
abstract String[] |
RosterAbstract.getBuddyGroups(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
tigase.xml.Element |
RosterAbstract.getBuddyItem(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
String |
Roster.getBuddyName(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
String |
RosterFlat.getBuddyName(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
abstract String |
RosterAbstract.getBuddyName(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
RosterAbstract.SubscriptionType |
Roster.getBuddySubscription(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
RosterAbstract.SubscriptionType |
RosterFlat.getBuddySubscription(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
abstract RosterAbstract.SubscriptionType |
RosterAbstract.getBuddySubscription(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
Method description |
protected RosterElement |
RosterFlat.getRosterElement(XMPPResourceConnection session,
tigase.xmpp.JID buddy)
|
List<tigase.xml.Element> |
RosterFlat.getRosterItems(XMPPResourceConnection session)
Method description |
List<tigase.xml.Element> |
RosterAbstract.getRosterItems(XMPPResourceConnection session)
Method description |
void |
RosterAbstract.init(UserRepository repo)
Method description |
void |
RosterAbstract.init(UserRepository repo)
Method description |
boolean |
RosterAbstract.isPendingIn(XMPPResourceConnection session,
tigase.xmpp.JID jid)
Method description |
boolean |
RosterAbstract.isSubscribedFrom(XMPPResourceConnection session,
tigase.xmpp.JID jid)
Method description |
boolean |
RosterAbstract.isSubscribedTo(XMPPResourceConnection session,
tigase.xmpp.JID jid)
Method description |
boolean |
Roster.removeBuddy(XMPPResourceConnection session,
tigase.xmpp.JID jid)
Method description |
boolean |
RosterFlat.removeBuddy(XMPPResourceConnection session,
tigase.xmpp.JID jid)
Method description |
abstract boolean |
RosterAbstract.removeBuddy(XMPPResourceConnection session,
tigase.xmpp.JID jid)
Method description |
void |
Roster.setBuddyName(XMPPResourceConnection session,
tigase.xmpp.JID buddy,
String name)
Method description |
void |
RosterFlat.setBuddyName(XMPPResourceConnection session,
tigase.xmpp.JID buddy,
String name)
Method description |
abstract void |
RosterAbstract.setBuddyName(XMPPResourceConnection session,
tigase.xmpp.JID buddy,
String name)
Method description |
void |
Roster.setBuddySubscription(XMPPResourceConnection session,
RosterAbstract.SubscriptionType subscription,
tigase.xmpp.JID buddy)
Method description |
void |
RosterFlat.setBuddySubscription(XMPPResourceConnection session,
RosterAbstract.SubscriptionType subscription,
tigase.xmpp.JID buddy)
Method description |
abstract void |
RosterAbstract.setBuddySubscription(XMPPResourceConnection session,
RosterAbstract.SubscriptionType subscription,
tigase.xmpp.JID buddy)
Method description |
void |
RosterAbstract.updateBuddyChange(XMPPResourceConnection session,
Queue<Packet> results,
tigase.xml.Element item)
Method description |
boolean |
RosterAbstract.updateBuddySubscription(XMPPResourceConnection session,
RosterAbstract.PresenceType presence,
tigase.xmpp.JID jid)
Method description |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |