Package org.jolokia.client.request

Examples of org.jolokia.client.request.J4pVersionRequest


    }
    return result;
  }
 
  public boolean ping() {
    J4pVersionRequest exec;
    boolean alive = false;
    try {

      exec = new J4pVersionRequest();
      j4pClient.execute(exec);
      alive = true;
    } catch (J4pException e) {
    }
    return alive;
View Full Code Here

TOP

Related Classes of org.jolokia.client.request.J4pVersionRequest

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.