All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.adorsys.oauth.server.OAuhtAccount Maven / Gradle / Ivy

package de.adorsys.oauth.server;

import java.security.Principal;
import java.util.HashSet;
import java.util.Set;

import io.undertow.security.idm.Account;

/**
 * OAuhtAccount
 */
public class OAuhtAccount implements Account {

    static final OAuhtAccount INSTANCE = new OAuhtAccount();

    @Override
    public Principal getPrincipal() {
        return new Principal() {
            @Override
            public String getName() {
                return "oauth";
            }
        };
    }

    @Override
    public Set getRoles() {
        Set result = new HashSet<>();
        result.add("oauth");
        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy