Home | History | Annotate | Download | only in smack

Lines Matching refs:Authentication

24 import org.jivesoftware.smack.packet.Authentication;

32 * Implementation of JEP-0078: Non-SASL Authentication. Follow the following
60 // If we send an authentication packet in "get" mode with just the username,
61 // the server will return the list of authentication protocols it supports.
62 Authentication discoveryAuth = new Authentication();
80 Authentication authTypes = (Authentication) response;
83 // Now, create the authentication packet we'll send to the server.
84 Authentication auth = new Authentication();
87 // Figure out if we should use digest or plain text authentication.
95 throw new XMPPException("Server does not support compatible authentication mechanism.");
106 throw new XMPPException("Authentication failed.");
118 // Create the authentication packet we'll send to the server.
119 Authentication auth = new Authentication();
140 return connection.getServiceName() + "/" + ((Authentication) response).getResource();