Package com.sun.jmx.remote.generic

Examples of com.sun.jmx.remote.generic.ServerAdmin


    /**
     * Returns an instance of ServerAdmin.  Its default value is a
     * <code>com.sun.jmx.remote.opt.security.AdminServer</code>.
     */
    public static ServerAdmin getServerAdmin(Map env) {
  ServerAdmin admin;
  final Object o = env.get(SERVER_ADMIN);

  if (o == null) {
      admin = new com.sun.jmx.remote.opt.security.AdminServer(env);
  } else if (o instanceof ServerAdmin) {
View Full Code Here

TOP

Related Classes of com.sun.jmx.remote.generic.ServerAdmin

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.