org.apache.http.auth.AuthScheme.isComplete()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(6.7k)|赞(0)|评价(0)|浏览(99)

本文整理了Java中org.apache.http.auth.AuthScheme.isComplete()方法的一些代码示例,展示了AuthScheme.isComplete()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AuthScheme.isComplete()方法的具体详情如下:
包路径:org.apache.http.auth.AuthScheme
类名称:AuthScheme
方法名:isComplete

AuthScheme.isComplete介绍

[英]Authentication process may involve a series of challenge-response exchanges. This method tests if the authorization process has been completed, either successfully or unsuccessfully, that is, all the required authorization challenges have been processed in their entirety.
[中]

代码示例

代码示例来源:origin: robovm/robovm

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;
}

代码示例来源:origin: robolectric/robolectric

if (authScheme.isComplete()) {
 this.log.debug("Authentication failed");
 creds = null;

代码示例来源:origin: robovm/robovm

if (authScheme.isComplete()) {
  this.log.debug("Authentication failed");
  creds = null;

代码示例来源:origin: org.apache.httpcomponents/httpclient-android

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);
}

代码示例来源:origin: com.bugvm/bugvm-rt

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);
}

代码示例来源:origin: ibinti/bugvm

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);
}

代码示例来源:origin: Nextdoor/bender

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);
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.apache.httpcomponents.httpclient

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);
}

代码示例来源:origin: Nextdoor/bender

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);
}

代码示例来源:origin: com.hynnet/httpclient

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);
}

代码示例来源:origin: com.hynnet/httpclient

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);
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

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);
}

代码示例来源:origin: Nextdoor/bender

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;
}

代码示例来源:origin: com.bugvm/bugvm-rt

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;
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.apache.httpcomponents.httpclient

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;
}

代码示例来源:origin: MobiVM/robovm

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;
}

代码示例来源:origin: com.gluonhq/robovm-rt

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;
}

代码示例来源:origin: ibinti/bugvm

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;
}

代码示例来源:origin: org.apache.httpcomponents/httpclient-android

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;
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

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;
}

相关文章