Package restx.security

Examples of restx.security.RestxPrincipal


    @Provides @Named(SERVLET_PRINCIPAL_CONVERTER)
    public ServletPrincipalConverter defaultServletPrincipalConverter() {
        return new ServletPrincipalConverter() {
            @Override
            public RestxPrincipal toRestxPrincipal(final Principal principal) {
                return new RestxPrincipal() {
                    @Override
                    public ImmutableSet<String> getPrincipalRoles() {
                        return ImmutableSet.of();
                    }
View Full Code Here

TOP

Related Classes of restx.security.RestxPrincipal

Copyright © 2018 www.massapicom. 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.