1 17 package org.apache.geronimo.kernel.proxy; 18 19 import org.apache.geronimo.kernel.management.State; 20 21 35 public interface GeronimoManagedBean { 36 42 String getObjectName(); 43 44 51 int getState(); 52 53 58 State getStateInstance(); 59 60 65 long getStartTime(); 66 67 68 79 void start() throws Exception , IllegalStateException ; 80 81 94 void startRecursive() throws Exception , IllegalStateException ; 95 96 110 void stop() throws Exception , IllegalStateException ; 111 } 112 | Popular Tags |