users@glassfish.java.net

default roles of glassfish admin console ?

From: Felipe Gaúcho <fgaucho_at_gmail.com>
Date: Sat, 27 Dec 2008 13:41:55 +0100

what are the default roles of the administrative console of Glassfish ?

may I use it in my own applications ? let's say: I declare a resource
as secure, using the container itself to authenticate the access:

        <security-constraint>
                <display-name>Only Glassfish admin can access</display-name>
                <web-resource-collection>
                        <web-resource-name>ALL</web-resource-name>
                        <description />
                        <url-pattern>/*</url-pattern>
                        <http-method>GET</http-method>
                        <http-method>POST</http-method>
                        <http-method>HEAD</http-method>
                        <http-method>PUT</http-method>
                        <http-method>OPTIONS</http-method>
                        <http-method>TRACE</http-method>
                        <http-method>DELETE</http-method>
                </web-resource-collection>
                <auth-constraint>
                        <description>Glassfish default admin role</description>
                        <role-name>admin</role-name> <-- what can I use here ??
                </auth-constraint>
        </security-constraint>