org.directwebremoting.extend.InitializingBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dwr Show documentation
Show all versions of dwr Show documentation
DWR is easy Ajax for Java. It makes it simple to call Java code directly from Javascript.
It gets rid of almost all the boilerplate code between the web browser and your Java code.
This version 4.0.2 works with Jakarta Servlet 4.0.2.
package org.directwebremoting.extend;
import org.directwebremoting.Container;
/**
* Interface to be implemented by beans that need to react once all their
* properties have been set by a {@link Container}: for example, to perform
* custom initialization.
* This is similar in concept to the Spring
* org.springframework.beans.factory.InitializingBean.
* @author Joe Walker [joe at getahead dot ltd dot uk]
*/
public interface InitializingBean
{
/**
*
This method allows the bean instance to perform initialization only
* possible when all bean properties have been set
* @param container The container that is doing the initialization
*/
void afterContainerSetup(Container container);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy