1 package org.apache.turbine.services; 2 3 18 19 import org.apache.commons.configuration.Configuration; 20 21 44 public interface ServiceBroker 45 { 46 53 boolean isRegistered(String serviceName); 54 55 62 void initService(String name) throws InitializationException; 63 64 72 void shutdownService(String name); 73 74 80 void shutdownServices(); 81 82 90 Service getService(String name) throws InstantiationException ; 91 92 99 Configuration getConfiguration(String name); 100 } 101 | Popular Tags |