turbinegroup.java

来自「jetspeed源代码」· Java 代码 · 共 39 行

JAVA
39
字号

package org.apache.jetspeed.om.security.turbine;


import org.apache.torque.om.Persistent;

/** 
 * The skeleton for this class was autogenerated by Torque on:
 *
 * [Mon Jun 03 20:14:05 PDT 2002]
 *
 * You should add additional methods to this class to meet the
 * application requirements.  This class will only be generated as
 * long as it does not already exist in the output directory.
 */
public  class TurbineGroup 
    extends org.apache.jetspeed.om.security.turbine.BaseTurbineGroup
    implements Persistent, org.apache.jetspeed.om.security.Group
{
    public String getName()
    {
        return getGroupName();
    }

    public void setName(String name)
    {
        setGroupName(name);
    }

    public String getId()
    {
        return String.valueOf(this.getGroupId());
    }

    public void setId(String id)
    {
    }
}

⌨️ 快捷键说明

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