Package com.sun.xml.rpc.spi.runtime
Class ServletSecondDelegate
- java.lang.Object
-
- com.sun.xml.rpc.spi.runtime.ServletSecondDelegate
-
public abstract class ServletSecondDelegate extends Object
This is the delegate of the ServletDelegate, which allows some implementation of the ServletDelegate to be overwritten. Though it screams for a better name. ServletDelegateDelegate??S1AS will extend this class provide its implementation of the ServletDelegate behavior.
-
-
Constructor Summary
Constructors Constructor Description ServletSecondDelegate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImplementorCachecreateImplementorCache(javax.servlet.ServletConfig config)voiddoGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)voidpostInit(javax.servlet.ServletConfig config)This method should be called after ServletDelegate.init() is done.voidwarnMissingContextInformation()
-
-
-
Method Detail
-
doGet
public void doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException- Throws:
javax.servlet.ServletException
-
postInit
public void postInit(javax.servlet.ServletConfig config) throws javax.servlet.ServletExceptionThis method should be called after ServletDelegate.init() is done. Any initialization needed by the second delegate should be done by overriding this method, i.e. the implementation of ServletDelegate should call _secondDelegate.postInit() at the end of its init() call.- Throws:
javax.servlet.ServletException- See Also:
ServletDelegate
-
warnMissingContextInformation
public void warnMissingContextInformation()
-
createImplementorCache
public ImplementorCache createImplementorCache(javax.servlet.ServletConfig config)
-
-