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);
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);
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;
  /external/smack/src/org/jivesoftware/smack/
SASLAuthentication.java 64 public class SASLAuthentication implements UserAuthentication {
178 SASLAuthentication(Connection connection) {
232 Constructor<? extends SASLMechanism> constructor = mechanismClass.getConstructor(SASLAuthentication.class);
314 Constructor<? extends SASLMechanism> constructor = mechanismClass.getConstructor(SASLAuthentication.class);
SASLAuthentication.java.orig 64 public class SASLAuthentication implements UserAuthentication {
178 SASLAuthentication(Connection connection) {
232 Constructor<? extends SASLMechanism> constructor = mechanismClass.getConstructor(SASLAuthentication.class);
314 Constructor<? extends SASLMechanism> constructor = mechanismClass.getConstructor(SASLAuthentication.class);
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 390 milliseconds