1 /* 2 * Copyright 2005 Joe Walker 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package org.directwebremoting.extend; 17 18 import org.directwebremoting.Container; 19 20 /** 21 * Interface to be implemented by beans that need to react once all their 22 * properties have been set by a {@link Container}: for example, to perform 23 * custom initialization. 24 * <p>This is similar in concept to the Spring 25 * {@link org.springframework.beans.factory.InitializingBean}. 26 * @author Joe Walker [joe at getahead dot ltd dot uk] 27 */ 28 public interface InitializingBean 29 { 30 /** 31 * <p>This method allows the bean instance to perform initialization only 32 * possible when all bean properties have been set 33 * @param container The container that is doing the initialization 34 */ 35 void afterContainerSetup(Container container); 36 } 37