FileDocCategorySizeDatePackage
Group.javaAPI DocGlassfish v2 API2516Fri May 04 22:31:22 BST 2007com.sun.enterprise.deployment

Group

public class Group extends PrincipalImpl
This class implements the EJB concept of a Group. A Group is a privilege attribute that several Principals share. Or, in in other words, several Principals belong to a same group.
author
Harish Prabandham

Fields Summary
Constructors Summary
public Group(String name)
Creates a new Group attribute

	super(name);
    
Methods Summary
public booleanequals(java.lang.Object other)

	if(other instanceof Group) {
	    return getName().equals(((Group)other).getName());
	} else {
	    return false;
	}