📄 resourcestarget.java
字号:
/*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -