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

com.mofum.scope.common.model.ScopeContext Maven / Gradle / Ivy

There is a newer version: 2.0.0.RELEASE
Show newest version
package com.mofum.scope.common.model;

import java.util.List;

/**
 * 范围上下文
 *
 * @author [email protected]
 * @since 2019-03-23
 **/
public class ScopeContext {

    /**
     * 用户
     */
    private String username;

    /**
     * 权限
     */
    private String permission;

    /**
     * 角色
     */
    private String role;

    /**
     * 范围
     */
    List scopes;

    /**
     * 上下文
     */
    private Context context;

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getPermission() {
        return permission;
    }

    public void setPermission(String permission) {
        this.permission = permission;
    }

    public String getRole() {
        return role;
    }

    public void setRole(String role) {
        this.role = role;
    }

    public List getScopes() {
        return scopes;
    }

    public void setScopes(List scopes) {
        this.scopes = scopes;
    }

    public Context getContext() {
        return context;
    }

    public void setContext(Context context) {
        this.context = context;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy