jbviewdefprofile.java
来自「OPIAM stands for Open Identity and Acces」· Java 代码 · 共 62 行
JAVA
62 行
/*
* OPIAM Suite
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package opiam.admin.faare.config.javabeans;
import java.io.Serializable;
/**
* Class corresponding to the "viewdef_profile" element of views.xml.<br>
* This is a profile which can see the view.
*/
public class JBViewDefProfile implements Serializable
{
/** Profile name. */
private String name;
/** Creates new JBViewDef. */
public JBViewDefProfile()
{
}
/**
* Returns the profile name.
* @return name
*/
public String getName()
{
return name;
}
/**
* Sets the profile name.
* @param aname The name to set
*/
public void setName(String aname)
{
this.name = aname;
}
/**
* Displays the object.
*
* @return object
*/
public String toString()
{
StringBuffer buf = new StringBuffer();
buf.append(" name = ");
buf.append(name);
buf.append(System.getProperty("line.separator"));
return buf.toString();
}
// end of toString method
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?