Home | History | Annotate | Download | only in util

Lines Matching defs:authentication

33 import org.jivesoftware.smack.packet.Authentication;
383 private static Authentication parseAuthentication(XmlPullParser parser) throws Exception {
384 Authentication authentication = new Authentication();
390 authentication.setUsername(parser.nextText());
393 authentication.setPassword(parser.nextText());
396 authentication
399 authentication.setResource(parser.nextText());
408 return authentication;
664 * Parses SASL authentication error packets.