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

cn.ocoop.shiro.subject.BasicHttpAuthcUser Maven / Gradle / Ivy

package cn.ocoop.shiro.subject;

import java.util.List;

/**
 * Created by liolay on 16-8-11.
 */
public class BasicHttpAuthcUser {
    private User user;
    private List perms;

    public BasicHttpAuthcUser(User user, List perms) {
        this.user = user;
        this.perms = perms;
    }

    public User getUser() {
        return user;
    }

    public void setUser(User user) {
        this.user = user;
    }

    public List getPerms() {
        return perms;
    }

    public void setPerms(List perms) {
        this.perms = perms;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy