Revision: 106
http://statelessfilter.svn.sourceforge.net/statelessfilter/?rev=106&view=rev
Author: nricheton
Date: 2012-08-30 21:40:47 +0000 (Thu, 30 Aug 2012)
Log Message:
-----------
Javadoc
Modified Paths:
--------------
trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/filter/IObjectInstantiationListener.java
Modified: trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/filter/IObjectInstantiationListener.java
===================================================================
--- trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/filter/IObjectInstantiationListener.java 2012-08-30 21:38:37 UTC (rev 105)
+++ trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/filter/IObjectInstantiationListener.java 2012-08-30 21:40:47 UTC (rev 106)
@@ -21,7 +21,7 @@
* Object instantiation listener.
*
* This allows to delegate object (backend) creation to a custom class. Can be
- * used to create backends with spring instead of default Class#newInstance().
+ * used to create backends with Spring instead of default Class#newInstance().
*
* @author Nicolas Richeton
*
@@ -32,11 +32,15 @@
* Try to instantiate the 'className' object. If object cannot be created,
* the StatusService will try to create it by itself.
*
- *
* @param className
* @return object instance or null.
*/
Object getInstance(String className);
+ /**
+ * Servlet context will be automatically injected through this method.
+ *
+ * @param context
+ */
void setServletContext(ServletContext context);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|