01: /*
02: * Copyright 2005 Joe Walker
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
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: * <p>This method allows the bean instance to perform initialization only
31: * possible when all bean properties have been set
32: * @param container The container that is doing the initialization
33: */
34: void afterContainerSetup(Container container);
35: }
|