AppserverIo\Appserver\ServletEngine\Security\SimpleGroup::__construct PHP Method

__construct() public method

Initialize the principal with the passed name.
public __construct ( string $name )
$name string The principal's name
    public function __construct(string $name)
    {
        // invoke the parent constructor
        parent::__construct($name);
        // initialize the members
        $this->members = new HashMap();
    }