org.springframework.security.authentication.AbstractAuthenticationToken.isAuthenticated()方法的使用及代码示例

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

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

AbstractAuthenticationToken.isAuthenticated介绍

暂无

代码示例

代码示例来源:origin: spring-projects/spring-security

@Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append(super.toString()).append(": ");
    sb.append("Principal: ").append(this.getPrincipal()).append("; ");
    sb.append("Credentials: [PROTECTED]; ");
    sb.append("Authenticated: ").append(this.isAuthenticated()).append("; ");
    sb.append("Details: ").append(this.getDetails()).append("; ");

    if (!authorities.isEmpty()) {
      sb.append("Granted Authorities: ");

      int i = 0;
      for (GrantedAuthority authority : authorities) {
        if (i++ > 0) {
          sb.append(", ");
        }

        sb.append(authority);
      }
    } else {
      sb.append("Not granted any authorities");
    }

    return sb.toString();
  }
}

代码示例来源:origin: org.springframework.security/spring-security-core

@Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append(super.toString()).append(": ");
    sb.append("Principal: ").append(this.getPrincipal()).append("; ");
    sb.append("Credentials: [PROTECTED]; ");
    sb.append("Authenticated: ").append(this.isAuthenticated()).append("; ");
    sb.append("Details: ").append(this.getDetails()).append("; ");

    if (!authorities.isEmpty()) {
      sb.append("Granted Authorities: ");

      int i = 0;
      for (GrantedAuthority authority : authorities) {
        if (i++ > 0) {
          sb.append(", ");
        }

        sb.append(authority);
      }
    } else {
      sb.append("Not granted any authorities");
    }

    return sb.toString();
  }
}

代码示例来源:origin: spring-projects/spring-security

@Override
public int hashCode() {
  int code = 31;
  for (GrantedAuthority authority : authorities) {
    code ^= authority.hashCode();
  }
  if (this.getPrincipal() != null) {
    code ^= this.getPrincipal().hashCode();
  }
  if (this.getCredentials() != null) {
    code ^= this.getCredentials().hashCode();
  }
  if (this.getDetails() != null) {
    code ^= this.getDetails().hashCode();
  }
  if (this.isAuthenticated()) {
    code ^= -37;
  }
  return code;
}

代码示例来源:origin: org.springframework.security/spring-security-core

@Override
public int hashCode() {
  int code = 31;
  for (GrantedAuthority authority : authorities) {
    code ^= authority.hashCode();
  }
  if (this.getPrincipal() != null) {
    code ^= this.getPrincipal().hashCode();
  }
  if (this.getCredentials() != null) {
    code ^= this.getCredentials().hashCode();
  }
  if (this.getDetails() != null) {
    code ^= this.getDetails().hashCode();
  }
  if (this.isAuthenticated()) {
    code ^= -37;
  }
  return code;
}

代码示例来源:origin: spring-projects/spring-security

return this.isAuthenticated() == test.isAuthenticated();

代码示例来源:origin: org.springframework.security/spring-security-core

return this.isAuthenticated() == test.isAuthenticated();

代码示例来源:origin: org.springframework.social/spring-social-security

/**
 * @throws IllegalArgumentException when trying to authenticate a previously unauthenticated token
 */
@Override
public void setAuthenticated(final boolean isAuthenticated) throws IllegalArgumentException {
  if (!isAuthenticated) {
    super.setAuthenticated(false);
  } else if (!super.isAuthenticated()) {
    throw new IllegalArgumentException(
        "Cannot set this token to trusted - use constructor which takes a GrantedAuthority list instead");
  }
}

代码示例来源:origin: at.molindo.social/spring-social-security

/**
 * @throws IllegalArgumentException when trying to authenticate a previously unauthenticated token
 */
@Override
public void setAuthenticated(final boolean isAuthenticated) throws IllegalArgumentException {
  if (!isAuthenticated) {
    super.setAuthenticated(false);
  } else if (!super.isAuthenticated()) {
    throw new IllegalArgumentException(
        "Cannot set this token to trusted - use constructor which takes a GrantedAuthority list instead");
  }
}

代码示例来源:origin: org.springframework.security/org.springframework.security.core

@Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append(super.toString()).append(": ");
    sb.append("Principal: ").append(this.getPrincipal()).append("; ");
    sb.append("Credentials: [PROTECTED]; ");
    sb.append("Authenticated: ").append(this.isAuthenticated()).append("; ");
    sb.append("Details: ").append(this.getDetails()).append("; ");

    if (!authorities.isEmpty()) {
      sb.append("Granted Authorities: ");

      int i = 0;
      for (GrantedAuthority authority: authorities) {
        if (i++ > 0) {
          sb.append(", ");
        }

        sb.append(authority);
      }
    } else {
      sb.append("Not granted any authorities");
    }

    return sb.toString();
  }
}

代码示例来源:origin: apache/servicemix-bundles

@Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append(super.toString()).append(": ");
    sb.append("Principal: ").append(this.getPrincipal()).append("; ");
    sb.append("Credentials: [PROTECTED]; ");
    sb.append("Authenticated: ").append(this.isAuthenticated()).append("; ");
    sb.append("Details: ").append(this.getDetails()).append("; ");

    if (!authorities.isEmpty()) {
      sb.append("Granted Authorities: ");

      int i = 0;
      for (GrantedAuthority authority : authorities) {
        if (i++ > 0) {
          sb.append(", ");
        }

        sb.append(authority);
      }
    } else {
      sb.append("Not granted any authorities");
    }

    return sb.toString();
  }
}

代码示例来源:origin: org.springframework.security/org.springframework.security.core

@Override
public int hashCode() {
  int code = 31;
  for (GrantedAuthority authority : authorities) {
    code ^= authority.hashCode();
  }
  if (this.getPrincipal() != null) {
    code ^= this.getPrincipal().hashCode();
  }
  if (this.getCredentials() != null) {
    code ^= this.getCredentials().hashCode();
  }
  if (this.getDetails() != null) {
    code ^= this.getDetails().hashCode();
  }
  if (this.isAuthenticated()) {
    code ^= -37;
  }
  return code;
}

代码示例来源:origin: apache/servicemix-bundles

@Override
public int hashCode() {
  int code = 31;
  for (GrantedAuthority authority : authorities) {
    code ^= authority.hashCode();
  }
  if (this.getPrincipal() != null) {
    code ^= this.getPrincipal().hashCode();
  }
  if (this.getCredentials() != null) {
    code ^= this.getCredentials().hashCode();
  }
  if (this.getDetails() != null) {
    code ^= this.getDetails().hashCode();
  }
  if (this.isAuthenticated()) {
    code ^= -37;
  }
  return code;
}

代码示例来源:origin: org.springframework.security/org.springframework.security.core

return this.isAuthenticated() == test.isAuthenticated();

代码示例来源:origin: apache/servicemix-bundles

return this.isAuthenticated() == test.isAuthenticated();

相关文章