当前位置: 首页>>代码示例>>Java>>正文


Java AuthScheme.isComplete方法代码示例

本文整理汇总了Java中org.apache.http.auth.AuthScheme.isComplete方法的典型用法代码示例。如果您正苦于以下问题:Java AuthScheme.isComplete方法的具体用法?Java AuthScheme.isComplete怎么用?Java AuthScheme.isComplete使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.http.auth.AuthScheme的用法示例。


在下文中一共展示了AuthScheme.isComplete方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isCachable

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private boolean isCachable(final AuthState authState) {
    AuthScheme authScheme = authState.getAuthScheme();
    if (authScheme == null || !authScheme.isComplete()) {
        return false;
    }
    String schemeName = authScheme.getSchemeName();
    return schemeName.equalsIgnoreCase(AuthPolicy.BASIC) ||
            schemeName.equalsIgnoreCase(AuthPolicy.DIGEST);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:10,代码来源:ResponseAuthCache.java

示例2: isCachable

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private boolean isCachable(final AuthScheme authScheme) {
    if (authScheme == null || !authScheme.isComplete()) {
        return false;
    }
    String schemeName = authScheme.getSchemeName();
    return schemeName.equalsIgnoreCase(AuthPolicy.BASIC) ||
            schemeName.equalsIgnoreCase(AuthPolicy.DIGEST);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:9,代码来源:AuthenticationStrategyAdaptor.java

示例3: getAuthPrincipal

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private static Principal getAuthPrincipal(final AuthState authState) {
    AuthScheme scheme = authState.getAuthScheme();
    if (scheme != null && scheme.isComplete() && scheme.isConnectionBased()) {
        Credentials creds = authState.getCredentials();
        if (creds != null) {
            return creds.getUserPrincipal();
        }
    }
    return null;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:11,代码来源:DefaultUserTokenHandler.java

示例4: isCachable

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
protected boolean isCachable(final AuthScheme authScheme) {
    if (authScheme == null || !authScheme.isComplete()) {
        return false;
    }
    String schemeName = authScheme.getSchemeName();
    return schemeName.equalsIgnoreCase(AuthPolicy.BASIC) ||
            schemeName.equalsIgnoreCase(AuthPolicy.DIGEST);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:9,代码来源:AuthenticationStrategyImpl.java

示例5: isCachable

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
protected boolean isCachable(final AuthScheme authScheme) {
    if (authScheme == null || !authScheme.isComplete()) {
        return false;
    }
    final String schemeName = authScheme.getSchemeName();
    return schemeName.equalsIgnoreCase(AuthSchemes.BASIC) ||
            schemeName.equalsIgnoreCase(AuthSchemes.DIGEST);
}
 
开发者ID:xxonehjh,项目名称:remote-files-sync,代码行数:9,代码来源:AuthenticationStrategyImpl.java

示例6: getAuthPrincipal

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private static Principal getAuthPrincipal(final AuthStateHC4 authState) {
    final AuthScheme scheme = authState.getAuthScheme();
    if (scheme != null && scheme.isComplete() && scheme.isConnectionBased()) {
        final Credentials creds = authState.getCredentials();
        if (creds != null) {
            return creds.getUserPrincipal();
        }
    }
    return null;
}
 
开发者ID:xxonehjh,项目名称:remote-files-sync,代码行数:11,代码来源:DefaultUserTokenHandlerHC4.java

示例7: isCachable

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private boolean isCachable(final AuthState authState) {
    final AuthScheme authScheme = authState.getAuthScheme();
    if (authScheme == null || !authScheme.isComplete()) {
        return false;
    }
    final String schemeName = authScheme.getSchemeName();
    return schemeName.equalsIgnoreCase(AuthPolicy.BASIC) ||
            schemeName.equalsIgnoreCase(AuthPolicy.DIGEST);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:10,代码来源:ResponseAuthCache.java

示例8: isCachable

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private boolean isCachable(final AuthScheme authScheme) {
    if (authScheme == null || !authScheme.isComplete()) {
        return false;
    }
    final String schemeName = authScheme.getSchemeName();
    return schemeName.equalsIgnoreCase(AuthPolicy.BASIC) ||
            schemeName.equalsIgnoreCase(AuthPolicy.DIGEST);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:9,代码来源:AuthenticationStrategyAdaptor.java

示例9: getAuthPrincipal

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private static Principal getAuthPrincipal(final AuthState authState) {
    final AuthScheme scheme = authState.getAuthScheme();
    if (scheme != null && scheme.isComplete() && scheme.isConnectionBased()) {
        final Credentials creds = authState.getCredentials();
        if (creds != null) {
            return creds.getUserPrincipal();
        }
    }
    return null;
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:11,代码来源:DefaultUserTokenHandler.java

示例10: getAuthPrincipal

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private static Principal getAuthPrincipal(final AuthState authState) {
    AuthScheme scheme = authState.getAuthScheme();
    if (scheme != null && scheme.isComplete() && scheme.isConnectionBased()) {
        Credentials creds = authState.getCredentials();
        if (creds != null) {
            return creds.getUserPrincipal(); 
        }
    }
    return null;
}
 
开发者ID:tdopires,项目名称:cJUnit-mc626,代码行数:11,代码来源:DefaultUserTokenHandler.java

示例11: authenticate

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
public boolean authenticate(
        final HttpHost host,
        final HttpResponse response,
        final AuthenticationStrategy authStrategy,
        final AuthState authState,
        final HttpContext context) {
    try {
        if (this.log.isDebugEnabled()) {
            this.log.debug(host.toHostString() + " requested authentication");
        }
        Map<String, Header> challenges = authStrategy.getChallenges(host, response, context);
        if (challenges.isEmpty()) {
            this.log.debug("Response contains no authentication challenges");
            return false;
        }

        AuthScheme authScheme = authState.getAuthScheme();
        switch (authState.getState()) {
        case FAILURE:
            return false;
        case SUCCESS:
            authState.reset();
            break;
        case CHALLENGED:
        case HANDSHAKE:
            if (authScheme == null) {
                this.log.debug("Auth scheme is null");
                authStrategy.authFailed(host, null, context);
                authState.reset();
                authState.setState(AuthProtocolState.FAILURE);
                return false;
            }
        case UNCHALLENGED:
            if (authScheme != null) {
                String id = authScheme.getSchemeName();
                Header challenge = challenges.get(id.toLowerCase(Locale.US));
                if (challenge != null) {
                    this.log.debug("Authorization challenge processed");
                    authScheme.processChallenge(challenge);
                    if (authScheme.isComplete()) {
                        this.log.debug("Authentication failed");
                        authStrategy.authFailed(host, authState.getAuthScheme(), context);
                        authState.reset();
                        authState.setState(AuthProtocolState.FAILURE);
                        return false;
                    } else {
                        authState.setState(AuthProtocolState.HANDSHAKE);
                        return true;
                    }
                } else {
                    authState.reset();
                    // Retry authentication with a different scheme
                }
            }
        }
        Queue<AuthOption> authOptions = authStrategy.select(challenges, host, response, context);
        if (authOptions != null && !authOptions.isEmpty()) {
            if (this.log.isDebugEnabled()) {
                this.log.debug("Selected authentication options: " + authOptions);
            }
            authState.setState(AuthProtocolState.CHALLENGED);
            authState.update(authOptions);
            return true;
        } else {
            return false;
        }
    } catch (MalformedChallengeException ex) {
        if (this.log.isWarnEnabled()) {
            this.log.warn("Malformed challenge: " +  ex.getMessage());
        }
        authState.reset();
        return false;
    }
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:75,代码来源:HttpAuthenticator.java

示例12: handleAuthChallenge

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
public boolean handleAuthChallenge(
        final HttpHost host,
        final HttpResponse response,
        final AuthenticationStrategy authStrategy,
        final AuthState authState,
        final HttpContext context) {
    try {
        if (this.log.isDebugEnabled()) {
            this.log.debug(host.toHostString() + " requested authentication");
        }
        final Map<String, Header> challenges = authStrategy.getChallenges(host, response, context);
        if (challenges.isEmpty()) {
            this.log.debug("Response contains no authentication challenges");
            return false;
        }

        final AuthScheme authScheme = authState.getAuthScheme();
        switch (authState.getState()) {
        case FAILURE:
            return false;
        case SUCCESS:
            authState.reset();
            break;
        case CHALLENGED:
        case HANDSHAKE:
            if (authScheme == null) {
                this.log.debug("Auth scheme is null");
                authStrategy.authFailed(host, null, context);
                authState.reset();
                authState.setState(AuthProtocolState.FAILURE);
                return false;
            }
        case UNCHALLENGED:
            if (authScheme != null) {
                final String id = authScheme.getSchemeName();
                final Header challenge = challenges.get(id.toLowerCase(Locale.ROOT));
                if (challenge != null) {
                    this.log.debug("Authorization challenge processed");
                    authScheme.processChallenge(challenge);
                    if (authScheme.isComplete()) {
                        this.log.debug("Authentication failed");
                        authStrategy.authFailed(host, authState.getAuthScheme(), context);
                        authState.reset();
                        authState.setState(AuthProtocolState.FAILURE);
                        return false;
                    } else {
                        authState.setState(AuthProtocolState.HANDSHAKE);
                        return true;
                    }
                } else {
                    authState.reset();
                    // Retry authentication with a different scheme
                }
            }
        }
        final Queue<AuthOption> authOptions = authStrategy.select(challenges, host, response, context);
        if (authOptions != null && !authOptions.isEmpty()) {
            if (this.log.isDebugEnabled()) {
                this.log.debug("Selected authentication options: " + authOptions);
            }
            authState.setState(AuthProtocolState.CHALLENGED);
            authState.update(authOptions);
            return true;
        } else {
            return false;
        }
    } catch (final MalformedChallengeException ex) {
        if (this.log.isWarnEnabled()) {
            this.log.warn("Malformed challenge: " +  ex.getMessage());
        }
        authState.reset();
        return false;
    }
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:75,代码来源:HttpAuthenticator.java

示例13: updateAuthState

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private void updateAuthState(
    final AuthState authState,
    final HttpHost host,
    final CredentialsProvider credsProvider) {

  if (!authState.isValid()) {
    return;
  }

  String hostname = host.getHostName();
  int port = host.getPort();
  if (port < 0) {
    Scheme scheme = connManager.getSchemeRegistry().getScheme(host);
    port = scheme.getDefaultPort();
  }

  AuthScheme authScheme = authState.getAuthScheme();
  AuthScope authScope = new AuthScope(
      hostname,
      port,
      authScheme.getRealm(),
      authScheme.getSchemeName());

  if (this.log.isDebugEnabled()) {
    this.log.debug("Authentication scope: " + authScope);
  }
  Credentials creds = authState.getCredentials();
  if (creds == null) {
    creds = credsProvider.getCredentials(authScope);
    if (this.log.isDebugEnabled()) {
      if (creds != null) {
        this.log.debug("Found credentials");
      } else {
        this.log.debug("Credentials not found");
      }
    }
  } else {
    if (authScheme.isComplete()) {
      this.log.debug("Authentication failed");
      creds = null;
    }
  }
  authState.setAuthScope(authScope);
  authState.setCredentials(creds);
}
 
开发者ID:qx,项目名称:FullRobolectricTestSample,代码行数:46,代码来源:DefaultRequestDirector.java

示例14: updateAuthState

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private void updateAuthState(
        final AuthState authState, 
        final HttpHost host,
        final CredentialsProvider credsProvider) {
    
    if (!authState.isValid()) {
        return;
    }
    
    String hostname = host.getHostName();
    int port = host.getPort();
    if (port < 0) {
        Scheme scheme = connManager.getSchemeRegistry().getScheme(host);
        port = scheme.getDefaultPort();
    }
    
    AuthScheme authScheme = authState.getAuthScheme();
    AuthScope authScope = new AuthScope(
            hostname,
            port,
            authScheme.getRealm(), 
            authScheme.getSchemeName());  
    
    if (this.log.isDebugEnabled()) {
        this.log.debug("Authentication scope: " + authScope);
    }
    Credentials creds = authState.getCredentials();
    if (creds == null) {
        creds = credsProvider.getCredentials(authScope);
        if (this.log.isDebugEnabled()) {
            if (creds != null) {
                this.log.debug("Found credentials");
            } else {
                this.log.debug("Credentials not found");
            }
        }
    } else {
        if (authScheme.isComplete()) {
            this.log.debug("Authentication failed");
            creds = null;
        }
    }
    authState.setAuthScope(authScope);
    authState.setCredentials(creds);
}
 
开发者ID:tdopires,项目名称:cJUnit-mc626,代码行数:46,代码来源:DefaultRequestDirector.java

示例15: updateAuthState

import org.apache.http.auth.AuthScheme; //导入方法依赖的package包/类
private void updateAuthState(
        final AuthState authState,
        final HttpHost host,
        final CredentialsProvider credsProvider) {

    if (!authState.isValid()) {
        return;
    }

    String hostname = host.getHostName();
    int port = host.getPort();
    if (port < 0) {
        Scheme scheme = connManager.getSchemeRegistry().getScheme(host);
        port = scheme.getDefaultPort();
    }

    AuthScheme authScheme = authState.getAuthScheme();
    AuthScope authScope = new AuthScope(
            hostname,
            port,
            authScheme.getRealm(),
            authScheme.getSchemeName());

    if (DEBUG) {
    	Logger.debug("Authentication scope: {}", authScope);
    }
    Credentials creds = authState.getCredentials();
    if (creds == null) {
        creds = credsProvider.getCredentials(authScope);
        if (DEBUG) {
            if (creds != null) {
            	Logger.debug("Found credentials");
            } else {
            	Logger.debug("Credentials not found");
            }
        }
    } else {
        if (authScheme.isComplete()) {
        	if (DEBUG) {
        		Logger.debug("Authentication failed");
        	}
            creds = null;
        }
    }
    authState.setAuthScope(authScope);
    authState.setCredentials(creds);
}
 
开发者ID:cattong,项目名称:YiBo,代码行数:48,代码来源:LibRequestDirector.java


注:本文中的org.apache.http.auth.AuthScheme.isComplete方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。