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

  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
CredentialsCache.java 67 List<AuthorizationHeader> authHeaders = authorizationHeaders.get(callId);
68 if (authHeaders == null) {
69 authHeaders = new LinkedList<AuthorizationHeader>();
70 authorizationHeaders.put(callId, authHeaders);
73 for (ListIterator<AuthorizationHeader> li = authHeaders.listIterator(); li.hasNext();) {
81 authHeaders.add(authorization);
AuthenticationHelperImpl.java 175 ListIterator authHeaders = null;
178 authHeaders = challenge.getHeaders(WWWAuthenticateHeader.NAME);
180 authHeaders = challenge.getHeaders(ProxyAuthenticateHeader.NAME);
185 if (authHeaders == null) {
226 while (authHeaders.hasNext()) {
227 authHeader = (WWWAuthenticateHeader) authHeaders.next();
441 Collection<AuthorizationHeader> authHeaders = this.cachedCredentials
443 if (authHeaders == null) {
450 for (AuthorizationHeader authHeader : authHeaders) {

Completed in 52 milliseconds