Package com.sun.jmx.remote.generic

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


    private List selectProfiles(String serverProfiles) throws Exception {

  // If a profile selector is provided it takes precedence
  // over the default implementation.
  //
  SelectProfiles profileSelector =
      (SelectProfiles) env.get("com.sun.jmx.remote.profile.selector");
  if (profileSelector != null) {
      profileSelector.selectProfiles(env, serverProfiles);
      String clientProfiles = (String) env.get("jmx.remote.profiles");
      if (clientProfiles == null) {
    return Collections.EMPTY_LIST;
      } else {
    StringTokenizer cst = new StringTokenizer(clientProfiles, " ");
View Full Code Here

TOP

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

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.