Uses of Class
tigase.db.UserNotFoundException

Packages that use UserNotFoundException
tigase.db   
tigase.db.jdbc   
tigase.db.xml   
tigase.xmpp.impl   
 

Uses of UserNotFoundException in tigase.db
 

Methods in tigase.db that throw UserNotFoundException
 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 NonAuthUserRepository.addOfflineData(String user, String subnode, String key, String value)
          addDataList method adds mode entries to existing data list associated with given key in repository under given node path.
 void NonAuthUserRepository.addOfflineDataList(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.
 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[] 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 NonAuthUserRepository.getPublicData(String user, String subnode, String key, String def)
          getPublicData method returns a value associated with given key for user repository in given subnode.
 String[] NonAuthUserRepository.getPublicDataList(String user, String subnode, String key)
          getPublicDataList 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[] 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.
 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 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 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 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 UserAuthRepository.updatePassword(String user, String password)
          Describe updatePassword method here.
 

Uses of UserNotFoundException in tigase.db.jdbc
 

Methods in tigase.db.jdbc that throw UserNotFoundException
 void JDBCRepository.addDataList(String user_id, String subnode, String key, String[] list)
          Describe addDataList method here.
 boolean TigaseAuth.digestAuth(String user, String digest, String id, String alg)
          Describe digestAuth 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 JDBCRepository.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.
 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.
 void TigaseAuth.logout(String user)
           
 void DrupalAuth.logout(String user)
           
 void LibreSourceAuth.logout(String user)
           
 void JDBCRepository.logout(String user)
           
 void TigaseCustomAuth.logout(String user)
           
 boolean TigaseAuth.otherAuth(Map<String,Object> props)
          Describe otherAuth method here.
 boolean DrupalAuth.otherAuth(Map<String,Object> props)
          Describe otherAuth method here.
 boolean LibreSourceAuth.otherAuth(Map<String,Object> props)
          Describe otherAuth method here.
 boolean JDBCRepository.otherAuth(Map<String,Object> props)
          Describe otherAuth method here.
 boolean TigaseCustomAuth.otherAuth(Map<String,Object> props)
          Describe otherAuth method here.
 boolean TigaseAuth.plainAuth(String user, String password)
          Describe plainAuth 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 JDBCRepository.plainAuth(String user, String password)
          Describe plainAuth method here.
 boolean TigaseCustomAuth.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 TigaseAuth.removeUser(String user)
          Describe removeUser method here.
 void DrupalAuth.removeUser(String user)
          Describe removeUser method here.
 void LibreSourceAuth.removeUser(String user)
          Describe removeUser method here.
 void JDBCRepository.removeUser(String user_id)
          removeUser method is thread safe.
 void TigaseCustomAuth.removeUser(String user)
          Describe removeUser method here.
 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 TigaseAuth.updatePassword(String user, String password)
          Describe updatePassword method here.
 void DrupalAuth.updatePassword(String user, String password)
          Describe updatePassword method here.
 void TigaseCustomAuth.updatePassword(String user, String password)
          Describe updatePassword method here.
 

Uses of UserNotFoundException in tigase.db.xml
 

Methods in tigase.db.xml that throw UserNotFoundException
 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.
 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.removeData(String user, String key)
          removeData method removes pair (key, value) from user repository in default repository node.
 void XMLRepository.removeData(String user, String subnode, String key)
          removeData method removes pair (key, value) from user repository in given subnode.
 void XMLRepository.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 XMLRepository.removeUser(String user)
          This removeUser method allows to remove user and all his data from user repository.
 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.
 

Uses of UserNotFoundException in tigase.xmpp.impl
 

Methods in tigase.xmpp.impl that throw UserNotFoundException
 boolean OfflineMessages.savePacketForOffLineUser(Packet pac, NonAuthUserRepository repo)
           
 



Copyright © 2001-2006 Tigase Developers Team. All rights Reserved.