Uses of Class
org.jivesoftware.openfire.auth.AuthToken
-
Packages that use AuthToken Package Description org.jivesoftware.openfire.auth Authentication and Authorization service interfaces and classes.org.jivesoftware.openfire.session org.jivesoftware.util Utility classes. -
-
Uses of AuthToken in org.jivesoftware.openfire.auth
Subclasses of AuthToken in org.jivesoftware.openfire.auth Modifier and Type Class Description static class
AuthToken.OneTimeAuthToken
A token that proves that a user uses a one time access token.Methods in org.jivesoftware.openfire.auth that return AuthToken Modifier and Type Method Description static AuthToken
AuthFactory. authenticate(String username, String password)
Authenticates a user with a username and plain text password and returns and AuthToken.static AuthToken
AuthFactory. checkOneTimeAccessToken(String userToken)
static AuthToken
AuthToken. generateAnonymousToken()
Constructs a new AuthToken that represents an authenticated, but anonymous user.static AuthToken
AuthToken. generateOneTimeToken(String token)
Constructs a new OneTimeAuthToken that represents an one time recovery user.static AuthToken
AuthToken. generateUserToken(String username)
Constructs a new AuthToken that represents an authenticated user identified by the provider username. -
Uses of AuthToken in org.jivesoftware.openfire.session
Fields in org.jivesoftware.openfire.session declared as AuthToken Modifier and Type Field Description protected AuthToken
LocalClientSession. authToken
The authentication token for this session.Methods in org.jivesoftware.openfire.session that return AuthToken Modifier and Type Method Description AuthToken
LocalClientSession. getAuthToken()
Returns the authentication token associated with this session.Methods in org.jivesoftware.openfire.session with parameters of type AuthToken Modifier and Type Method Description void
LocalClientSession. setAuthToken(AuthToken auth)
Sets the new Authorization Token for this session.void
LocalClientSession. setAuthToken(AuthToken auth, String resource)
Initialize the session with a valid authentication token and resource name. -
Uses of AuthToken in org.jivesoftware.util
Methods in org.jivesoftware.util that return AuthToken Modifier and Type Method Description AuthToken
WebManager. getAuthToken()
-