beautypg.com

Nsasjejbstatisticsclient.java sample program – HP Integrity NonStop H-Series User Manual

Page 101

background image

}

}

NSASJEJBStatisticsClient.java

sample program

/*Copyright 2013 Hewlett-Packard Development Company, L.P. */
/**
* NSASJEJBStatisticsClient is a sample nsasj client program that demonstrates how to
* get and set values of profile parameters using NSASJClient
*
*/

package com.hp.nsk.nsasj.client.demo;

import org.jboss.dmr.ModelNode;
import org.jboss.logging.Logger;

import com.hp.nsk.nsasj.client.NSASJClient;

public class NSASJEJBStatisticsClient extends NSASJClient {
public NSASJEJBStatisticsClient(String propFile) {
super(propFile);
}

public NSASJEJBStatisticsClient(String propFile, Boolean value) {
super(propFile);
this.enableEJB3Stats = value;
}

/**
* method - getEnableStatistics(). A method that gets the current value of EJB Statistics
*
*/
private void getEnableStatistics() {

ModelNode op = new ModelNode();
op.get("operation").set("read-attribute");
ModelNode address = op.get("address");
address.add("profile", "full-ha");
address.add("subsystem", "ejb3");
op.get("name").set("enable-statistics");

ModelNode returnVal = null;
try {
returnVal = this.client.execute(op);
} catch (Exception e) {
this.logger.error(e.getMessage());
if (this.client != null)
this.disconnectFromHC();
System.exit(0);

}
logger.info("Enable Statistics is set to: " + returnVal.get("result").toString());

}

/**
* method - getEnableStatistics(). A method that sets the value of EJB Statistics
* @param value - boolean true or false
*
*/
private void setEnableStatistics(boolean value) {
ModelNode op = new ModelNode();
op.get("operation").set("write-attribute");
ModelNode address = op.get("address");
address.add("profile", "full-ha");
address.add("subsystem", "ejb3");
op.get("name").set("enable-statistics");
op.get("value").set(value);
ModelNode returnVal = null;
try {
returnVal = this.client.execute(op);
} catch (Exception e) {
this.logger.error(e.getMessage());
if (this.client != null)
this.disconnectFromHC();
System.exit(0);
}
logger.info("The operation outcome is: " + returnVal.get("outcome").asString());
}

/**
* executeCommand() - the abstract method of NSASJClient is overridden here to provide the EnableStatistics
functionality
*/
@Override
public void executeCommand() {
getEnableStatistics();
setEnableStatistics(this.enableEJB3Stats);
getEnableStatistics();

Sample program code

101

This manual is related to the following products: