View Javadoc
1 /* 2 * Created on 2004.09.23. 3 * 4 * In p2p project 5 */ 6 7 8 package net.sf.bigyo.container.config; 9 10 import net.sf.bigyo.container.ReconfigurationFailedException; 11 import net.sf.bigyo.model.ComponentConfig; 12 13 /*** 14 * @author zsombor 15 * 16 * Created at 1:35:41 net.sf.bigyo.container.config.ConfigurationStrategy 17 * 18 */ 19 public interface ConfigurationStrategy { 20 21 public Object initConfigurationBean(Object bean); 22 23 public Object getSerializableConfigurationBean(Object bean); 24 25 public void reconfigureService(Object service, ComponentConfig oldConfigBean, ComponentConfig newConfigBean) 26 throws ReconfigurationFailedException, ReconfigurationNotSupportedException; 27 28 public boolean isModifiedSince(ComponentConfig configBean); 29 }

This page was automatically generated by Maven