OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:saslAuthentication
(Results
1 - 4
of
4
) sorted by null
/external/smack/src/org/jivesoftware/smack/sasl/
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/
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
...]
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
...]
Completed in 619 milliseconds