| java.lang.Object java.security.Permission java.security.BasicPermission javax.management.MBeanServerPermission
MBeanServerPermission | public class MBeanServerPermission extends BasicPermission (Code) | | The permission that guards access to MBeanServerFactory methods.
It has no actions, only target names can be provided.
The wildcard "*" means all names, and "createMBeanServer" implies "newMBeanServer", and the names
can be specified as a comma separated list.
The list of target names is the following:
- newMBeanServer
- createMBeanServer
- findMBeanServer
- releaseMBeanServer
version: $Revision: 1.14 $ |
MBeanServerPermission | public MBeanServerPermission(String name)(Code) | | Creates a new MBeanServerPermission with the specified name and no actions
Parameters: name - The comma separated list of target names |
MBeanServerPermission | public MBeanServerPermission(String name, String actions)(Code) | | Creates a new MBeanServerPermission with the specified name and actions, but the actions will be ignored
Parameters: name - The comma separated list of target names Parameters: actions - Ignored |
getActions | public String getActions()(Code) | | Returns null, as this permission does not have actions
|
hashCode | public int hashCode()(Code) | | |
|
|