Uses of Class
org.jivesoftware.openfire.user.UserNotFoundException
-
Packages that use UserNotFoundException Package Description org.jivesoftware.openfire org.jivesoftware.openfire.auth Authentication and Authorization service interfaces and classes.org.jivesoftware.openfire.crowd org.jivesoftware.openfire.ldap LDAP code for authentication and user profile information.org.jivesoftware.openfire.muc Implementation of Multi-User Chat (XEP-0045).org.jivesoftware.openfire.roster Provides classes for managing the roster.org.jivesoftware.openfire.session org.jivesoftware.openfire.spi org.jivesoftware.openfire.user Provides the interfaces and classes necessary to create custom user account data providers for Openfire.org.jivesoftware.openfire.user.property -
-
Uses of UserNotFoundException in org.jivesoftware.openfire
Methods in org.jivesoftware.openfire that throw UserNotFoundException Modifier and Type Method Description boolean
PresenceManager. canProbePresence(org.xmpp.packet.JID prober, String probee)
Returns true if the the prober is allowed to see the presence of the probee. -
Uses of UserNotFoundException in org.jivesoftware.openfire.auth
Methods in org.jivesoftware.openfire.auth that throw UserNotFoundException Modifier and Type Method Description boolean
DefaultAuthProvider. checkPassword(String username, String testPassword)
static int
AuthFactory. getIterations(String username)
int
AuthProvider. getIterations(String username)
int
DefaultAuthProvider. getIterations(String username)
int
HybridAuthProvider. getIterations(String username)
int
JDBCAuthProvider. getIterations(String username)
int
MappedAuthProvider. getIterations(String username)
int
NativeAuthProvider. getIterations(String username)
int
POP3AuthProvider. getIterations(String username)
static String
AuthFactory. getPassword(String username)
Returns the user's password.String
AuthProvider. getPassword(String username)
Returns the user's password.String
DefaultAuthProvider. getPassword(String username)
String
HybridAuthProvider. getPassword(String username)
String
JDBCAuthProvider. getPassword(String username)
String
MappedAuthProvider. getPassword(String username)
String
NativeAuthProvider. getPassword(String username)
String
POP3AuthProvider. getPassword(String username)
static String
AuthFactory. getSalt(String username)
String
AuthProvider. getSalt(String username)
String
DefaultAuthProvider. getSalt(String username)
String
HybridAuthProvider. getSalt(String username)
String
JDBCAuthProvider. getSalt(String username)
String
MappedAuthProvider. getSalt(String username)
String
NativeAuthProvider. getSalt(String username)
String
POP3AuthProvider. getSalt(String username)
static String
AuthFactory. getServerKey(String username)
String
AuthProvider. getServerKey(String username)
String
DefaultAuthProvider. getServerKey(String username)
String
HybridAuthProvider. getServerKey(String username)
String
JDBCAuthProvider. getServerKey(String username)
String
MappedAuthProvider. getServerKey(String username)
String
NativeAuthProvider. getServerKey(String username)
String
POP3AuthProvider. getServerKey(String username)
static String
AuthFactory. getStoredKey(String username)
String
AuthProvider. getStoredKey(String username)
String
DefaultAuthProvider. getStoredKey(String username)
String
HybridAuthProvider. getStoredKey(String username)
String
JDBCAuthProvider. getStoredKey(String username)
String
MappedAuthProvider. getStoredKey(String username)
String
NativeAuthProvider. getStoredKey(String username)
String
POP3AuthProvider. getStoredKey(String username)
static void
AuthFactory. setPassword(String username, String password)
Sets the users's password.void
AuthProvider. setPassword(String username, String password)
Sets the users's password.void
DefaultAuthProvider. setPassword(String username, String password)
void
HybridAuthProvider. setPassword(String username, String password)
void
JDBCAuthProvider. setPassword(String username, String password)
void
MappedAuthProvider. setPassword(String username, String password)
void
NativeAuthProvider. setPassword(String username, String password)
void
POP3AuthProvider. setPassword(String username, String password)
-
Uses of UserNotFoundException in org.jivesoftware.openfire.crowd
Methods in org.jivesoftware.openfire.crowd that throw UserNotFoundException Modifier and Type Method Description User
CrowdUserProvider. getCrowdUser(String username)
int
CrowdAuthProvider. getIterations(String username)
String
CrowdAuthProvider. getPassword(String username)
String
CrowdAuthProvider. getSalt(String username)
String
CrowdAuthProvider. getServerKey(String username)
String
CrowdAuthProvider. getStoredKey(String username)
User
CrowdUserProvider. loadUser(String username)
void
CrowdUserProvider. setCreationDate(String username, Date creationDate)
void
CrowdUserProvider. setEmail(String username, String email)
void
CrowdUserProvider. setModificationDate(String username, Date modificationDate)
void
CrowdUserProvider. setName(String username, String name)
void
CrowdAuthProvider. setPassword(String username, String password)
-
Uses of UserNotFoundException in org.jivesoftware.openfire.ldap
Methods in org.jivesoftware.openfire.ldap that throw UserNotFoundException Modifier and Type Method Description int
LdapAuthProvider. getIterations(String username)
String
LdapAuthProvider. getPassword(String username)
String
LdapAuthProvider. getSalt(String username)
String
LdapAuthProvider. getServerKey(String username)
String
LdapAuthProvider. getStoredKey(String username)
User
LdapUserProvider. loadUser(String username)
void
LdapUserProvider. setCreationDate(String username, Date creationDate)
void
LdapUserProvider. setEmail(String username, String email)
void
LdapUserProvider. setModificationDate(String username, Date modificationDate)
void
LdapUserProvider. setName(String username, String name)
void
LdapAuthProvider. setPassword(String username, String password)
-
Uses of UserNotFoundException in org.jivesoftware.openfire.muc
Methods in org.jivesoftware.openfire.muc that throw UserNotFoundException Modifier and Type Method Description List<MUCRole>
MUCRoom. getOccupantsByBareJID(org.xmpp.packet.JID jid)
Obtain the roles of a given user in the room by his bare JID.List<MUCRole>
MUCRoom. getOccupantsByNickname(String nickname)
Obtain the roles of a given user by nickname. -
Uses of UserNotFoundException in org.jivesoftware.openfire.roster
Methods in org.jivesoftware.openfire.roster that throw UserNotFoundException Modifier and Type Method Description Roster
RosterManager. getRoster(String username)
Returns the roster for the given username.RosterItem
Roster. getRosterItem(org.xmpp.packet.JID user)
Returns the roster item that is associated with the specified JID.void
RosterItemProvider. updateItem(String username, RosterItem item)
Update the roster item in storage with the information contained in the given item (optional operation).void
Roster. updateRosterItem(RosterItem item)
Update an item that is already in the roster. -
Uses of UserNotFoundException in org.jivesoftware.openfire.session
Methods in org.jivesoftware.openfire.session that throw UserNotFoundException Modifier and Type Method Description String
ClientSession. getUsername()
Returns the username associated with this session.String
LocalClientSession. getUsername()
Returns the username associated with this session.String
RemoteClientSession. getUsername()
-
Uses of UserNotFoundException in org.jivesoftware.openfire.spi
Methods in org.jivesoftware.openfire.spi that throw UserNotFoundException Modifier and Type Method Description boolean
PresenceManagerImpl. canProbePresence(org.xmpp.packet.JID prober, String probee)
-
Uses of UserNotFoundException in org.jivesoftware.openfire.user
Methods in org.jivesoftware.openfire.user that throw UserNotFoundException Modifier and Type Method Description static String
User. getPropertyValue(String username, String propertyName)
Returns the value of the specified property for the given username.User
UserManager. getUser(String username)
Returns the User specified by username.User
UserManager. getUser(org.xmpp.packet.JID user)
Returns the User specified by jid node.static String
UserNameManager. getUserName(org.xmpp.packet.JID entity)
Returns the name of the XMPP entity.static String
UserNameManager. getUserName(org.xmpp.packet.JID entity, String defaultName)
Returns the name of the XMPP entity.User
DefaultUserProvider. loadUser(String username)
User
HybridUserProvider. loadUser(String username)
Loads a user from the first provider that contains the user.User
JDBCUserProvider. loadUser(String username)
User
MappedUserProvider. loadUser(String username)
User
UserProvider. loadUser(String username)
Loads the specified user by username.void
DefaultUserProvider. setCreationDate(String username, Date creationDate)
void
HybridUserProvider. setCreationDate(String username, Date creationDate)
Changes the creation date of a user in the first provider that contains the user.void
JDBCUserProvider. setCreationDate(String username, Date creationDate)
void
MappedUserProvider. setCreationDate(String username, Date creationDate)
void
UserProvider. setCreationDate(String username, Date creationDate)
Sets the date the user was created.void
DefaultUserProvider. setEmail(String username, String email)
void
HybridUserProvider. setEmail(String username, String email)
Changes the email address of a user in the first provider that contains the user.void
JDBCUserProvider. setEmail(String username, String email)
void
MappedUserProvider. setEmail(String username, String email)
void
POP3UserProvider. setEmail(String username, String email)
void
UserProvider. setEmail(String username, String email)
Sets the user's email address.void
DefaultUserProvider. setModificationDate(String username, Date modificationDate)
void
HybridUserProvider. setModificationDate(String username, Date modificationDate)
Changes the modification date of a user in the first provider that contains the user.void
JDBCUserProvider. setModificationDate(String username, Date modificationDate)
void
MappedUserProvider. setModificationDate(String username, Date modificationDate)
void
UserProvider. setModificationDate(String username, Date modificationDate)
Sets the date the user was last modified.void
DefaultUserProvider. setName(String username, String name)
void
HybridUserProvider. setName(String username, String name)
Changes the full name of a user in the first provider that contains the user.void
JDBCUserProvider. setName(String username, String name)
void
MappedUserProvider. setName(String username, String name)
void
UserProvider. setName(String username, String name)
Sets the user's name. -
Uses of UserNotFoundException in org.jivesoftware.openfire.user.property
Methods in org.jivesoftware.openfire.user.property that throw UserNotFoundException Modifier and Type Method Description void
MappedUserPropertyProvider. deleteProperty(String username, String propName)
void
UserPropertyProvider. deleteProperty(String username, String propName)
Removes one particular property for a particular user.void
MappedUserPropertyProvider. insertProperty(String username, String propName, String propValue)
void
UserPropertyProvider. insertProperty(String username, String propName, String propValue)
Adds a property for an user.Map<String,String>
MappedUserPropertyProvider. loadProperties(String username)
Map<String,String>
UserPropertyProvider. loadProperties(String username)
Retrieves all properties for a particular user.String
MappedUserPropertyProvider. loadProperty(String username, String propName)
String
UserPropertyProvider. loadProperty(String username, String propName)
Retrieves a property value for a user.void
MappedUserPropertyProvider. updateProperty(String username, String propName, String propValue)
void
UserPropertyProvider. updateProperty(String username, String propName, String propValue)
Changes a property value for an user.
-