/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang.management; import java.security.BasicPermission; public final class ManagementPermission extends BasicPermission { public ManagementPermission(String name) { super(name); } public ManagementPermission(String name, String actions) throws IllegalArgumentException { super(name, actions); } }