Hello!
I develop MXBean that will manage services.
I have some services, which are available in my MXBean by rmi.
How I can stop them?
If my bean implements interface Lifecycle, what I have to write in stop method implementation?
public class MyBean implements Lifecycle {
public void stop() {
// what would be here ???
}
}


Reply With Quote
