System.out.println("*** IN STOP ");
Container c = registry.getContainer("RHQAS7");
try {
if (State.STARTED.equals(c.getState())) {
System.out.println("*** STOPPING ");
c.stop();
}
} catch (Exception e) {
System.err.println("Could not stop custom container " + c.getName());
e.printStackTrace();
}