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

com.yammer.dropwizard.authenticator.User Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.yammer.dropwizard.authenticator;

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

public class User implements Principal {

    private final String name;
    private final Set roles;

    public User(String name, Set roles) {
        this.name = name;
        this.roles = roles;
    }

    @Override
    public String getName() {
        return name;
    }

    public Set getRoles() {
        return roles;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy