resourcestarget.java

来自「OPIAM stands for Open Identity and Acces」· Java 代码 · 共 68 行

JAVA
68
字号
/*
 * OPIAM Suite
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */

package opiam.admin.faare.service.services.acl.beans;

import opiam.admin.faare.config.javabeans.JBAcl;

import java.util.ArrayList;
import java.util.List;


/**
 * This class is used by the ProfileResourceAclPlugin ACL plugin example.
 *
 */
public class ResourcesTarget
{
    /** Resources list. */
    private List resourcesList = new ArrayList();

    /** Target of the resources. */
    private JBAcl target;

    /**
     * Returns the resources List.
     *
     * @return The list.
     */
    public List getResourcesList()
    {
        return resourcesList;
    }

    /**
     * Returns the JBAcl target.
     *
     * @return The target.
     */
    public JBAcl getTarget()
    {
        return target;
    }

    /**
     * Sets the resourcesList.
     *
     * @param aresourcesList  The resourcesList to set.
     */
    public void setResourcesList(List aresourcesList)
    {
        this.resourcesList = aresourcesList;
    }

    /**
     * Sets the target.
     *
     * @param atarget  The target to set.
     */
    public void setTarget(JBAcl atarget)
    {
        this.target = atarget;
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?