From 31d794be59cb2d1bf264df79f471b0c8d5f5a457 Mon Sep 17 00:00:00 2001 From: lresende Date: Sat, 21 Nov 2009 07:40:26 +0000 Subject: Moving to site trunk git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@882841 13f79535-47bb-0310-9956-ffa450edef68 --- .../sca/host/http/DefaultResourceServlet.html | 293 +++++++++++++ .../http/DefaultServletHostExtensionPoint.html | 314 +++++++++++++ .../sca/host/http/ExtensibleServletHost.html | 488 +++++++++++++++++++++ .../apache/tuscany/sca/host/http/ServletHost.html | 410 +++++++++++++++++ .../sca/host/http/ServletHostExtensionPoint.html | 256 +++++++++++ .../sca/host/http/ServletMappingException.html | 287 ++++++++++++ .../tuscany/sca/host/http/package-frame.html | 60 +++ .../tuscany/sca/host/http/package-summary.html | 197 +++++++++ .../apache/tuscany/sca/host/http/package-tree.html | 167 +++++++ 9 files changed, 2472 insertions(+) create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/DefaultResourceServlet.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/DefaultServletHostExtensionPoint.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ExtensibleServletHost.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletHost.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletHostExtensionPoint.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletMappingException.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-frame.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-summary.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-tree.html (limited to 'site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http') diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/DefaultResourceServlet.html b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/DefaultResourceServlet.html new file mode 100644 index 0000000000..4ef45bc551 --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/DefaultResourceServlet.html @@ -0,0 +1,293 @@ + + + + + + +DefaultResourceServlet + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.host.http +
+Class DefaultResourceServlet

+
+java.lang.Object
+  extended by HttpServlet
+      extended by org.apache.tuscany.sca.host.http.DefaultResourceServlet
+
+
+
+
public class DefaultResourceServlet
extends HttpServlet
+ + +

+A minimal implementation of a Servlet that serves documents in a document root + directory. + + A Servlet host implementation is not required to use this implementation and can map + the URI and document root to a more complete and more efficient implementation of + a resource Servlet, for example the Tomcat or Jetty default Servlets. +

+ +

+


+ +

+ + + + + + + + + + + +
+Constructor Summary
DefaultResourceServlet(java.lang.String documentRoot) + +
+          Constructs a new ResourceServlet
+  + + + + + + + + + + + + + + + +
+Method Summary
+protected  voiddoGet(HttpServletRequest request, + HttpServletResponse response) + +
+           
+ java.lang.StringgetDocumentRoot() + +
+          Returns the document root.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+DefaultResourceServlet

+
+public DefaultResourceServlet(java.lang.String documentRoot)
+
+
Constructs a new ResourceServlet +

+

+
Parameters:
documentRoot - the document root
+
+ + + + + + + + +
+Method Detail
+ +

+getDocumentRoot

+
+public java.lang.String getDocumentRoot()
+
+
Returns the document root. +

+

+ +
Returns:
the document root
+
+
+
+ +

+doGet

+
+protected void doGet(HttpServletRequest request,
+                     HttpServletResponse response)
+              throws ServletException,
+                     java.io.IOException
+
+
+ +
Throws: +
ServletException +
java.io.IOException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/DefaultServletHostExtensionPoint.html b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/DefaultServletHostExtensionPoint.html new file mode 100644 index 0000000000..280bdc410b --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/DefaultServletHostExtensionPoint.html @@ -0,0 +1,314 @@ + + + + + + +DefaultServletHostExtensionPoint + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.host.http +
+Class DefaultServletHostExtensionPoint

+
+java.lang.Object
+  extended by org.apache.tuscany.sca.host.http.DefaultServletHostExtensionPoint
+
+
+
All Implemented Interfaces:
ServletHostExtensionPoint
+
+
+
+
public class DefaultServletHostExtensionPoint
extends java.lang.Object
implements ServletHostExtensionPoint
+ + +

+Default implementation of a Servlet host extension point. +

+ +

+


+ +

+ + + + + + + + + + + +
+Constructor Summary
DefaultServletHostExtensionPoint() + +
+           
+  + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voidaddServletHost(ServletHost servletHost) + +
+          Adds a Servlet host extension.
+ java.util.List<ServletHost>getServletHosts() + +
+          Returns a list of Servlet host extensions.
+ voidremoveServletHost(ServletHost servletHost) + +
+          Removes a Servlet host extension.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+DefaultServletHostExtensionPoint

+
+public DefaultServletHostExtensionPoint()
+
+
+ + + + + + + + +
+Method Detail
+ +

+addServletHost

+
+public void addServletHost(ServletHost servletHost)
+
+
Description copied from interface: ServletHostExtensionPoint
+
Adds a Servlet host extension. +

+

+
Specified by:
addServletHost in interface ServletHostExtensionPoint
+
+
+
+
+
+
+ +

+removeServletHost

+
+public void removeServletHost(ServletHost servletHost)
+
+
Description copied from interface: ServletHostExtensionPoint
+
Removes a Servlet host extension. +

+

+
Specified by:
removeServletHost in interface ServletHostExtensionPoint
+
+
+
+
+
+
+ +

+getServletHosts

+
+public java.util.List<ServletHost> getServletHosts()
+
+
Description copied from interface: ServletHostExtensionPoint
+
Returns a list of Servlet host extensions. +

+

+
Specified by:
getServletHosts in interface ServletHostExtensionPoint
+
+
+ +
Returns:
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ExtensibleServletHost.html b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ExtensibleServletHost.html new file mode 100644 index 0000000000..3a745d48eb --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ExtensibleServletHost.html @@ -0,0 +1,488 @@ + + + + + + +ExtensibleServletHost + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.host.http +
+Class ExtensibleServletHost

+
+java.lang.Object
+  extended by org.apache.tuscany.sca.host.http.ExtensibleServletHost
+
+
+
All Implemented Interfaces:
ServletHost
+
+
+
+
public class ExtensibleServletHost
extends java.lang.Object
implements ServletHost
+ + +

+Default implementation of an extensible Servlet host. +

+ +

+


+ +

+ + + + + + + + + + + +
+Constructor Summary
ExtensibleServletHost(ServletHostExtensionPoint servletHosts) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voidaddServletMapping(java.lang.String uri, + Servlet servlet) + +
+          Add a mapping for an instance of a Servlet.
+ java.lang.StringgetContextPath() + +
+          Returns the portion of the request URI that indicates the context of the request
+ intgetDefaultPort() + +
+          Returns the default port for the server.
+ RequestDispatchergetRequestDispatcher(java.lang.String uri) + +
+          Returns a Servlet request dispatcher for the Servlet mapped to the specified URI.
+ ServletgetServletMapping(java.lang.String uri) + +
+          Returns the Servlet mapped to the given URI.
+ java.net.URLgetURLMapping(java.lang.String uri) + +
+          Returns the complete URL mapped to the specified URI.
+ ServletremoveServletMapping(java.lang.String uri) + +
+          Remove a Servlet mapping.
+ voidsetContextPath(java.lang.String path) + +
+          Sets the portion of the request URI that indicates the context of the request
+ voidsetDefaultPort(int port) + +
+          Sets the default port for the server.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ExtensibleServletHost

+
+public ExtensibleServletHost(ServletHostExtensionPoint servletHosts)
+
+
+ + + + + + + + +
+Method Detail
+ +

+setDefaultPort

+
+public void setDefaultPort(int port)
+
+
Description copied from interface: ServletHost
+
Sets the default port for the server. +

+

+
Specified by:
setDefaultPort in interface ServletHost
+
+
+
Parameters:
port - the default port
+
+
+
+ +

+getDefaultPort

+
+public int getDefaultPort()
+
+
Description copied from interface: ServletHost
+
Returns the default port for the server. +

+

+
Specified by:
getDefaultPort in interface ServletHost
+
+
+ +
Returns:
the default port
+
+
+
+ +

+addServletMapping

+
+public void addServletMapping(java.lang.String uri,
+                              Servlet servlet)
+                       throws ServletMappingException
+
+
Description copied from interface: ServletHost
+
Add a mapping for an instance of a Servlet. This requests that the + Servlet container direct all requests to the designated mapping to the + supplied Servlet instance. +

+

+
Specified by:
addServletMapping in interface ServletHost
+
+
+
Parameters:
uri - the URI-mapping for the Servlet
servlet - the Servlet that should be invoked +
Throws: +
ServletMappingException
+
+
+
+ +

+getServletMapping

+
+public Servlet getServletMapping(java.lang.String uri)
+                          throws ServletMappingException
+
+
Description copied from interface: ServletHost
+
Returns the Servlet mapped to the given URI. +

+

+
Specified by:
getServletMapping in interface ServletHost
+
+
+
Parameters:
uri - the URI-mapping for the Servlet +
Returns:
the Servlet registered with the mapping +
Throws: +
ServletMappingException
+
+
+
+ +

+removeServletMapping

+
+public Servlet removeServletMapping(java.lang.String uri)
+                             throws ServletMappingException
+
+
Description copied from interface: ServletHost
+
Remove a Servlet mapping. This directs the Servlet container not to direct + any more requests to a previously registered Servlet. +

+

+
Specified by:
removeServletMapping in interface ServletHost
+
+
+
Parameters:
uri - the URI-mapping for the Servlet +
Returns:
the Servlet that was registered to the mapping, null if nothing + was registered to the mapping +
Throws: +
ServletMappingException
+
+
+
+ +

+getRequestDispatcher

+
+public RequestDispatcher getRequestDispatcher(java.lang.String uri)
+                                       throws ServletMappingException
+
+
Description copied from interface: ServletHost
+
Returns a Servlet request dispatcher for the Servlet mapped to the specified URI. +

+

+
Specified by:
getRequestDispatcher in interface ServletHost
+
+
+
Parameters:
uri - the URI mapped to a Servlet +
Returns:
a RequestDispatcher that can be used to dispatch requests to + that Servlet +
Throws: +
ServletMappingException
+
+
+
+ +

+getContextPath

+
+public java.lang.String getContextPath()
+
+
Description copied from interface: ServletHost
+
Returns the portion of the request URI that indicates the context of the request +

+

+
Specified by:
getContextPath in interface ServletHost
+
+
+ +
Returns:
a String specifying the portion of the request URI that indicates the context of the request
+
+
+
+ +

+getURLMapping

+
+public java.net.URL getURLMapping(java.lang.String uri)
+
+
Description copied from interface: ServletHost
+
Returns the complete URL mapped to the specified URI. +

+

+
Specified by:
getURLMapping in interface ServletHost
+
+
+ +
Returns:
the URL mapped to the specified URI
+
+
+
+ +

+setContextPath

+
+public void setContextPath(java.lang.String path)
+
+
Description copied from interface: ServletHost
+
Sets the portion of the request URI that indicates the context of the request +

+

+
Specified by:
setContextPath in interface ServletHost
+
+
+
Parameters:
path - the context path
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletHost.html b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletHost.html new file mode 100644 index 0000000000..ba423e6b3e --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletHost.html @@ -0,0 +1,410 @@ + + + + + + +ServletHost + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.host.http +
+Interface ServletHost

+
+
All Known Implementing Classes:
ExtensibleServletHost, JettyServer, NodeWebAppServletHost, TomcatServer, WebAppServletHost
+
+
+
+
public interface ServletHost
+ + +

+Interface implemented by host environments that allow Servlets to be + registered. +

+ This interface allows a system service to register a Servlet + to handle inbound requests. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voidaddServletMapping(java.lang.String uri, + Servlet servlet) + +
+          Add a mapping for an instance of a Servlet.
+ java.lang.StringgetContextPath() + +
+          Returns the portion of the request URI that indicates the context of the request
+ intgetDefaultPort() + +
+          Returns the default port for the server.
+ RequestDispatchergetRequestDispatcher(java.lang.String uri) + +
+          Returns a Servlet request dispatcher for the Servlet mapped to the specified URI.
+ ServletgetServletMapping(java.lang.String uri) + +
+          Returns the Servlet mapped to the given URI.
+ java.net.URLgetURLMapping(java.lang.String uri) + +
+          Returns the complete URL mapped to the specified URI.
+ ServletremoveServletMapping(java.lang.String uri) + +
+          Remove a Servlet mapping.
+ voidsetContextPath(java.lang.String path) + +
+          Sets the portion of the request URI that indicates the context of the request
+ voidsetDefaultPort(int port) + +
+          Sets the default port for the server.
+  +

+ + + + + + + + +
+Method Detail
+ +

+setDefaultPort

+
+void setDefaultPort(int port)
+
+
Sets the default port for the server. +

+

+
Parameters:
port - the default port
+
+
+
+ +

+getDefaultPort

+
+int getDefaultPort()
+
+
Returns the default port for the server. +

+

+ +
Returns:
the default port
+
+
+
+ +

+addServletMapping

+
+void addServletMapping(java.lang.String uri,
+                       Servlet servlet)
+                       throws ServletMappingException
+
+
Add a mapping for an instance of a Servlet. This requests that the + Servlet container direct all requests to the designated mapping to the + supplied Servlet instance. +

+

+
Parameters:
uri - the URI-mapping for the Servlet
servlet - the Servlet that should be invoked +
Throws: +
ServletMappingException
+
+
+
+ +

+removeServletMapping

+
+Servlet removeServletMapping(java.lang.String uri)
+                             throws ServletMappingException
+
+
Remove a Servlet mapping. This directs the Servlet container not to direct + any more requests to a previously registered Servlet. +

+

+
Parameters:
uri - the URI-mapping for the Servlet +
Returns:
the Servlet that was registered to the mapping, null if nothing + was registered to the mapping +
Throws: +
ServletMappingException
+
+
+
+ +

+getServletMapping

+
+Servlet getServletMapping(java.lang.String uri)
+                          throws ServletMappingException
+
+
Returns the Servlet mapped to the given URI. +

+

+
Parameters:
uri - the URI-mapping for the Servlet +
Returns:
the Servlet registered with the mapping +
Throws: +
ServletMappingException
+
+
+
+ +

+getRequestDispatcher

+
+RequestDispatcher getRequestDispatcher(java.lang.String uri)
+                                       throws ServletMappingException
+
+
Returns a Servlet request dispatcher for the Servlet mapped to the specified URI. +

+

+
Parameters:
uri - the URI mapped to a Servlet +
Returns:
a RequestDispatcher that can be used to dispatch requests to + that Servlet +
Throws: +
ServletMappingException
+
+
+
+ +

+getContextPath

+
+java.lang.String getContextPath()
+
+
Returns the portion of the request URI that indicates the context of the request +

+

+ +
Returns:
a String specifying the portion of the request URI that indicates the context of the request
+
+
+
+ +

+setContextPath

+
+void setContextPath(java.lang.String path)
+
+
Sets the portion of the request URI that indicates the context of the request +

+

+
Parameters:
path - the context path
+
+
+
+ +

+getURLMapping

+
+java.net.URL getURLMapping(java.lang.String uri)
+
+
Returns the complete URL mapped to the specified URI. +

+

+ +
Returns:
the URL mapped to the specified URI
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletHostExtensionPoint.html b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletHostExtensionPoint.html new file mode 100644 index 0000000000..4ab55668a3 --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletHostExtensionPoint.html @@ -0,0 +1,256 @@ + + + + + + +ServletHostExtensionPoint + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.host.http +
+Interface ServletHostExtensionPoint

+
+
All Known Implementing Classes:
DefaultServletHostExtensionPoint
+
+
+
+
public interface ServletHostExtensionPoint
+ + +

+An extension point for Servlet hosts. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voidaddServletHost(ServletHost servletHost) + +
+          Adds a Servlet host extension.
+ java.util.List<ServletHost>getServletHosts() + +
+          Returns a list of Servlet host extensions.
+ voidremoveServletHost(ServletHost servletHost) + +
+          Removes a Servlet host extension.
+  +

+ + + + + + + + +
+Method Detail
+ +

+addServletHost

+
+void addServletHost(ServletHost servletHost)
+
+
Adds a Servlet host extension. +

+

+
Parameters:
servletHost -
+
+
+
+ +

+removeServletHost

+
+void removeServletHost(ServletHost servletHost)
+
+
Removes a Servlet host extension. +

+

+
Parameters:
servletHost -
+
+
+
+ +

+getServletHosts

+
+java.util.List<ServletHost> getServletHosts()
+
+
Returns a list of Servlet host extensions. +

+

+ +
Returns:
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletMappingException.html b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletMappingException.html new file mode 100644 index 0000000000..70750ca026 --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/ServletMappingException.html @@ -0,0 +1,287 @@ + + + + + + +ServletMappingException + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.host.http +
+Class ServletMappingException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by org.apache.tuscany.sca.host.http.ServletMappingException
+
+
+
All Implemented Interfaces:
java.io.Serializable
+
+
+
+
public class ServletMappingException
extends java.lang.RuntimeException
+ + +

+Indicates an exception while registering a Servlet mapping. +

+ +

+

+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + + + + + + + + + + +
+Constructor Summary
ServletMappingException() + +
+           
ServletMappingException(java.lang.String message) + +
+           
ServletMappingException(java.lang.String message, + java.lang.Throwable cause) + +
+           
ServletMappingException(java.lang.Throwable cause) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ServletMappingException

+
+public ServletMappingException()
+
+
+
+ +

+ServletMappingException

+
+public ServletMappingException(java.lang.String message)
+
+
+
+ +

+ServletMappingException

+
+public ServletMappingException(java.lang.String message,
+                               java.lang.Throwable cause)
+
+
+
+ +

+ServletMappingException

+
+public ServletMappingException(java.lang.Throwable cause)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-frame.html b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-frame.html new file mode 100644 index 0000000000..d4070501ce --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-frame.html @@ -0,0 +1,60 @@ + + + + + + +org.apache.tuscany.sca.host.http + + + + + + + + + + + +org.apache.tuscany.sca.host.http + + + + +
+Interfaces  + +
+ServletHost +
+ServletHostExtensionPoint
+ + + + + + +
+Classes  + +
+DefaultResourceServlet +
+DefaultServletHostExtensionPoint +
+ExtensibleServletHost
+ + + + + + +
+Exceptions  + +
+ServletMappingException
+ + + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-summary.html b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-summary.html new file mode 100644 index 0000000000..7c1c2dcda4 --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-summary.html @@ -0,0 +1,197 @@ + + + + + + +org.apache.tuscany.sca.host.http + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+

+Package org.apache.tuscany.sca.host.http +

+ + + + + + + + + + + + + +
+Interface Summary
ServletHostInterface implemented by host environments that allow Servlets to be + registered.
ServletHostExtensionPointAn extension point for Servlet hosts.
+  + +

+ + + + + + + + + + + + + + + + + +
+Class Summary
DefaultResourceServletA minimal implementation of a Servlet that serves documents in a document root + directory.
DefaultServletHostExtensionPointDefault implementation of a Servlet host extension point.
ExtensibleServletHostDefault implementation of an extensible Servlet host.
+  + +

+ + + + + + + + + +
+Exception Summary
ServletMappingExceptionIndicates an exception while registering a Servlet mapping.
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-tree.html b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-tree.html new file mode 100644 index 0000000000..5d7ed74103 --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-1.4/org/apache/tuscany/sca/host/http/package-tree.html @@ -0,0 +1,167 @@ + + + + + + +org.apache.tuscany.sca.host.http Class Hierarchy + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Hierarchy For Package org.apache.tuscany.sca.host.http +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +

+Interface Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + -- cgit v1.2.3