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

x33g5p2x  于2022-01-15 转载在 其他  
字(7.4k)|赞(0)|评价(0)|浏览(87)

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

AuthState.reset介绍

[英]Resets the auth state.
[中]重置身份验证状态。

代码示例

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

/**
 * Invalidates the authentication state by resetting its parameters.
 *
 * @deprecated (4.2)  use {@link #reset()}
 */
@Deprecated
public void invalidate() {
  reset();
}

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

/**
 * Invalidates the authentication state by resetting its parameters.
 *
 * @deprecated (4.2)  use {@link #reset()}
 */
@Deprecated
public void invalidate() {
  reset();
}

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

/**
 * Invalidates the authentication state by resetting its parameters.
 *
 * @deprecated (4.2)  use {@link #reset()}
 */
@Deprecated
public void invalidate() {
  reset();
}

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

/**
 * Invalidates the authentication state by resetting its parameters.
 *
 * @deprecated (4.2)  use {@link #reset()}
 */
@Deprecated
public void invalidate() {
  reset();
}

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

/**
 * Invalidates the authentication state by resetting its parameters.
 *
 * @deprecated (4.2)  use {@link #reset()}
 */
@Deprecated
public void invalidate() {
  reset();
}

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

/**
 * Invalidates the authentication state by resetting its parameters.
 *
 * @deprecated (4.2)  use {@link #reset()}
 */
@Deprecated
public void invalidate() {
  reset();
}

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

/**
 * Assigns the given {@link AuthScheme authentication scheme}.
 *
 * @param authScheme the {@link AuthScheme authentication scheme}
 *
 * @deprecated (4.2)  use {@link #update(AuthScheme, Credentials)}
 */
@Deprecated
public void setAuthScheme(final AuthScheme authScheme) {
  if (authScheme == null) {
    reset();
    return;
  }
  this.authScheme = authScheme;
}

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

/**
 * Assigns the given {@link AuthScheme authentication scheme}.
 *
 * @param authScheme the {@link AuthScheme authentication scheme}
 *
 * @deprecated (4.2)  use {@link #update(AuthScheme, Credentials)}
 */
@Deprecated
public void setAuthScheme(final AuthScheme authScheme) {
  if (authScheme == null) {
    reset();
    return;
  }
  this.authScheme = authScheme;
}

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

/**
 * Assigns the given {@link AuthScheme authentication scheme}.
 *
 * @param authScheme the {@link AuthScheme authentication scheme}
 *
 * @deprecated (4.2)  use {@link #update(AuthScheme, Credentials)}
 */
@Deprecated
public void setAuthScheme(final AuthScheme authScheme) {
  if (authScheme == null) {
    reset();
    return;
  }
  this.authScheme = authScheme;
}

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

/**
 * Assigns the given {@link AuthScheme authentication scheme}.
 *
 * @param authScheme the {@link AuthScheme authentication scheme}
 *
 * @deprecated (4.2)  use {@link #update(AuthScheme, Credentials)}
 */
@Deprecated
public void setAuthScheme(final AuthScheme authScheme) {
  if (authScheme == null) {
    reset();
    return;
  }
  this.authScheme = authScheme;
}

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

/**
 * Assigns the given {@link AuthScheme authentication scheme}.
 *
 * @param authScheme the {@link AuthScheme authentication scheme}
 *
 * @deprecated (4.2)  use {@link #update(AuthScheme, Credentials)}
 */
@Deprecated
public void setAuthScheme(final AuthScheme authScheme) {
  if (authScheme == null) {
    reset();
    return;
  }
  this.authScheme = authScheme;
}

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

/**
 * Assigns the given {@link AuthScheme authentication scheme}.
 *
 * @param authScheme the {@link AuthScheme authentication scheme}
 *
 * @deprecated (4.2)  use {@link #update(AuthScheme, Credentials)}
 */
@Deprecated
public void setAuthScheme(final AuthScheme authScheme) {
  if (authScheme == null) {
    reset();
    return;
  }
  this.authScheme = authScheme;
}

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

return false;
case SUCCESS:
  authState.reset();
  break;
case CHALLENGED:
    this.log.debug("Auth scheme is null");
    authStrategy.authFailed(host, null, context);
    authState.reset();
    authState.setState(AuthProtocolState.FAILURE);
    return false;
        this.log.debug("Authentication failed");
        authStrategy.authFailed(host, authState.getAuthScheme(), context);
        authState.reset();
        authState.setState(AuthProtocolState.FAILURE);
        return false;
      authState.reset();
  this.log.warn("Malformed challenge: " +  ex.getMessage());
authState.reset();
return false;

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

return false;
case SUCCESS:
  authState.reset();
  break;
case CHALLENGED:
    this.log.debug("Auth scheme is null");
    authStrategy.authFailed(host, null, context);
    authState.reset();
    authState.setState(AuthProtocolState.FAILURE);
    return false;
        this.log.debug("Authentication failed");
        authStrategy.authFailed(host, authState.getAuthScheme(), context);
        authState.reset();
        authState.setState(AuthProtocolState.FAILURE);
        return false;
      authState.reset();
  this.log.warn("Malformed challenge: " +  ex.getMessage());
authState.reset();
return false;

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

return false;
case SUCCESS:
  authState.reset();
  break;
case CHALLENGED:
    this.log.debug("Auth scheme is null");
    authStrategy.authFailed(host, null, context);
    authState.reset();
    authState.setState(AuthProtocolState.FAILURE);
    return false;
        this.log.debug("Authentication failed");
        authStrategy.authFailed(host, authState.getAuthScheme(), context);
        authState.reset();
        authState.setState(AuthProtocolState.FAILURE);
        return false;
      authState.reset();
  this.log.warn("Malformed challenge: " +  ex.getMessage());
authState.reset();
return false;

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

return false;
case SUCCESS:
  authState.reset();
  break;
case CHALLENGED:
    this.log.debug("Auth scheme is null");
    authStrategy.authFailed(host, null, context);
    authState.reset();
    authState.setState(AuthProtocolState.FAILURE);
    return false;
        this.log.debug("Authentication failed");
        authStrategy.authFailed(host, authState.getAuthScheme(), context);
        authState.reset();
        authState.setState(AuthProtocolState.FAILURE);
        return false;
      authState.reset();
  this.log.warn("Malformed challenge: " +  ex.getMessage());
authState.reset();
return false;

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

return false;
case SUCCESS:
  authState.reset();
  break;
case CHALLENGED:
    this.log.debug("Auth scheme is null");
    authStrategy.authFailed(host, null, context);
    authState.reset();
    authState.setState(AuthProtocolState.FAILURE);
    return false;
        this.log.debug("Authentication failed");
        authStrategy.authFailed(host, authState.getAuthScheme(), context);
        authState.reset();
        authState.setState(AuthProtocolState.FAILURE);
        return false;
      authState.reset();
  this.log.warn("Malformed challenge: " +  ex.getMessage());
authState.reset();
return false;

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

return false;
case SUCCESS:
  authState.reset();
  break;
case CHALLENGED:
    this.log.debug("Auth scheme is null");
    authStrategy.authFailed(host, null, context);
    authState.reset();
    authState.setState(AuthProtocolState.FAILURE);
    return false;
        this.log.debug("Authentication failed");
        authStrategy.authFailed(host, authState.getAuthScheme(), context);
        authState.reset();
        authState.setState(AuthProtocolState.FAILURE);
        return false;
      authState.reset();
  this.log.warn("Malformed challenge: " +  ex.getMessage());
authState.reset();
return false;

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

if (targetAuthState != null) {
  this.log.debug("Resetting target auth state");
  targetAuthState.reset();
  if (authScheme != null && authScheme.isConnectionBased()) {
    this.log.debug("Resetting proxy auth state");
    proxyAuthState.reset();

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

targetAuthState.reset();
final AuthScheme authScheme = proxyAuthState.getAuthScheme();
if (authScheme != null && authScheme.isConnectionBased()) {
  this.log.debug("Resetting proxy auth state");
  proxyAuthState.reset();

相关文章