1 17 package org.apache.geronimo.kernel.config; 18 19 import org.apache.geronimo.gbean.AbstractName; 20 import org.apache.geronimo.gbean.GBeanData; 21 import org.apache.geronimo.kernel.GBeanNotFoundException; 22 import org.apache.geronimo.kernel.repository.Artifact; 23 24 30 public interface EditableConfigurationManager extends ConfigurationManager { 31 37 void addGBeanToConfiguration(Artifact configID, GBeanData gbean, boolean start) throws InvalidConfigException; 38 39 46 void addGBeanToConfiguration(Artifact configID, String name, GBeanData gbean, boolean start) throws InvalidConfigException; 47 48 55 void removeGBeanFromConfiguration(Artifact configID, AbstractName gbean) throws InvalidConfigException, GBeanNotFoundException; 56 } 57 | Popular Tags |