HomeSort by relevance Sort by last modified time
    Searched refs:saslAuthentication (Results 1 - 12 of 12) sorted by null

  /external/smack/src/org/jivesoftware/smack/sasl/
SASLCramMD5Mechanism.java 22 import org.jivesoftware.smack.SASLAuthentication;
31 public SASLCramMD5Mechanism(SASLAuthentication saslAuthentication) {
32 super(saslAuthentication);
SASLDigestMD5Mechanism.java 22 import org.jivesoftware.smack.SASLAuthentication;
31 public SASLDigestMD5Mechanism(SASLAuthentication saslAuthentication) {
32 super(saslAuthentication);
SASLExternalMechanism.java 22 import org.jivesoftware.smack.SASLAuthentication;
46 * To enable it, the implementer will need to call SASLAuthentication.supportSASLMechamism("EXTERNAL");
52 public SASLExternalMechanism(SASLAuthentication saslAuthentication) {
53 super(saslAuthentication);
SASLPlainMechanism.java 18 import org.jivesoftware.smack.SASLAuthentication;
27 public SASLPlainMechanism(SASLAuthentication saslAuthentication) {
28 super(saslAuthentication);
SASLAnonymous.java 22 import org.jivesoftware.smack.SASLAuthentication;
34 public SASLAnonymous(SASLAuthentication saslAuthentication) {
35 super(saslAuthentication);
SASLGSSAPIMechanism.java 22 import org.jivesoftware.smack.SASLAuthentication;
38 public SASLGSSAPIMechanism(SASLAuthentication saslAuthentication) {
39 super(saslAuthentication);
SASLMechanism.java 24 import org.jivesoftware.smack.SASLAuthentication;
59 private SASLAuthentication saslAuthentication;
66 public SASLMechanism(SASLAuthentication saslAuthentication) {
67 this.saslAuthentication = saslAuthentication;
164 protected SASLAuthentication getSASLAuthentication() {
165 return saslAuthentication;
SASLFacebookConnect.java 15 import org.jivesoftware.smack.SASLAuthentication;
32 SASLAuthentication.registerSASLMechanism("X-FACEBOOK-PLATFORM",
34 SASLAuthentication.supportSASLMechanism("X-FACEBOOK-PLATFORM", 0);
37 public SASLFacebookConnect(SASLAuthentication saslAuthentication) {
38 super(saslAuthentication);
  /external/smack/src/org/jivesoftware/smack/
BOSHConnection.java 160 saslAuthentication.init();
317 && saslAuthentication.hasNonAnonymousAuthentication()) {
320 response = saslAuthentication.authenticate(username, password, resource);
322 response = saslAuthentication.authenticate(username, resource, config.getCallbackHandler());
383 saslAuthentication.hasAnonymousAuthentication()) {
384 response = saslAuthentication.authenticateAnonymously();
XMPPConnection.java 217 saslAuthentication.hasNonAnonymousAuthentication()) {
220 response = saslAuthentication.authenticate(username, password, resource);
223 response = saslAuthentication
295 saslAuthentication.hasAnonymousAuthentication()) {
296 response = saslAuthentication.authenticateAnonymously();
471 saslAuthentication.init();
    [all...]
Connection.java.orig 197 * The SASLAuthentication manager that is responsible for authenticating with the server.
199 protected SASLAuthentication saslAuthentication = new SASLAuthentication(this);
468 * Returns the SASLAuthentication manager that is responsible for authenticating with
471 * @return the SASLAuthentication manager that is responsible for authenticating with
474 public SASLAuthentication getSASLAuthentication() {
475 return saslAuthentication;
    [all...]
Connection.java 197 * The SASLAuthentication manager that is responsible for authenticating with the server.
199 protected SASLAuthentication saslAuthentication = new SASLAuthentication(this);
468 * Returns the SASLAuthentication manager that is responsible for authenticating with
471 * @return the SASLAuthentication manager that is responsible for authenticating with
474 public SASLAuthentication getSASLAuthentication() {
475 return saslAuthentication;
    [all...]

Completed in 59 milliseconds