1 22 package org.objectweb.petals; 23 24 25 36 public interface ServiceLifeCycle { 37 38 42 public static final java.lang.String SHUTDOWN = "Shutdown"; 43 44 48 public static final java.lang.String STARTED = "Started"; 49 50 54 public static final java.lang.String STOPPED = "Stopped"; 55 56 60 public static final java.lang.String UNKNOWN = "Unknown"; 61 62 68 public java.lang.String getCurrentState(); 69 70 83 public void init(ServiceContext context) throws PetalsException; 84 85 95 public void shutDown() throws PetalsException; 96 97 111 public void start() throws PetalsException; 112 113 122 public void stop() throws PetalsException; 123 124 } 125 | Popular Tags |