1 17 18 package org.apache.geronimo.kernel.management; 19 20 21 26 public interface StateManageable { 27 34 int getState(); 35 36 41 State getStateInstance(); 42 43 48 long getStartTime(); 49 50 51 62 void start() throws Exception , IllegalStateException ; 63 64 77 void startRecursive() throws Exception , IllegalStateException ; 78 79 93 void stop() throws Exception , IllegalStateException ; 94 95 } 96 | Popular Tags |