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

io.unlogged.auth.SimpleAuthority Maven / Gradle / Ivy

There is a newer version: 0.7.6
Show newest version
package io.unlogged.auth;

public class SimpleAuthority {
    private String authority;

    public SimpleAuthority() {
    }

    public SimpleAuthority(String authority) {
        this.authority = authority;
    }

    //    @Override
    public String getAuthority() {
        return authority;
    }

    public void setAuthority(String authority) {
        this.authority = authority;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy