jbstaticgroup.java

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

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

package opiam.admin.faare.persistence.javabeans;

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


/**
 * Basic class for static groups business bean.<br>
 * In case the application contains static groups,
 * the integrator may use this class or a subclass
 * of this one as bean for the corresponding object.
 * Name of the class and name of the attribute containing
 * the members must be configured in the
 * "staticgroup" element of the profiles_config.xml file.
 */
public class JBStaticGroup extends JBTop
{
    /** Attribute containing members. */
    private List uniqueMember = new ArrayList(); //DN

    /** Creates new JBStaticGroup. */
    public JBStaticGroup()
    {
    }

    /** Getter for property uniqueMember.
     * @return Value of property uniqueMember.
     */
    public List getUniqueMember()
    {
        return uniqueMember;
    }

    /** Setter for property uniqueMember.
     * @param auniqueMember New value of property uniqueMember.
     */
    public void setUniqueMember(List auniqueMember)
    {
        this.uniqueMember = auniqueMember;
    }
}

⌨️ 快捷键说明

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