Examples of FederationUser


Examples of org.apache.cxf.fediz.spring.FederationUser

     * @param token the authentication request token
     * @param authorities the pre-authenticated authorities.
     */
    protected UserDetails createuserDetails(Authentication token,
        GrantedAuthority[] authorities, ClaimCollection claims) {
        return new FederationUser(token.getName(), "N/A", authorities, claims);
    }
View Full Code Here

Examples of org.apache.cxf.fediz.spring.FederationUser

               
                grantedAuthorities.add(new GrantedAuthorityImpl("ROLE_"
                                        + (this.convertToUpperCase ? role.toUpperCase() : role)));
            }
        }
        return new FederationUser(response.getUsername(), "N/A",
                                  (GrantedAuthority[]) grantedAuthorities.toArray(
                                      new GrantedAuthority[grantedAuthorities.size()]),
                                  new ClaimCollection(response.getClaims()));
       
    }
View Full Code Here

Examples of org.apache.cxf.fediz.spring.FederationUser

     * @param token the authentication request token
     * @param authorities the pre-authenticated authorities.
     */
    protected UserDetails createuserDetails(Authentication token,
        Collection<? extends GrantedAuthority> authorities, ClaimCollection claims) {
        return new FederationUser(token.getName(), "N/A", authorities, claims);
    }
View Full Code Here

Examples of org.apache.cxf.fediz.spring.FederationUser

               
                grantedAuthorities.add(new SimpleGrantedAuthority("ROLE_"
                                        + (this.convertToUpperCase ? role.toUpperCase() : role)));
            }
        }
        return new FederationUser(response.getUsername(), "N/A",
                        grantedAuthorities, new ClaimCollection(response.getClaims()));
       
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.