summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-11 23:26:33 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-11 23:26:33 +0000
commita40e527938d76ba71f211da7e327adb50384ba69 (patch)
treecb8f99f1727122b040a3f0fbb6649292b6a74302 /sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http
parent968721109881107520d7aefa91d7fcc0519d7739 (diff)
Moving 1.x tags
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835157 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http')
-rw-r--r--sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/DefaultResourceServlet.java47
-rw-r--r--sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/DefaultServletHostExtensionPoint.java31
-rw-r--r--sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ExtensibleServletHost.java36
-rw-r--r--sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletHost.java34
-rw-r--r--sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletHostExtensionPoint.java31
-rw-r--r--sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletMappingException.java30
6 files changed, 209 insertions, 0 deletions
diff --git a/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/DefaultResourceServlet.java b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/DefaultResourceServlet.java
new file mode 100644
index 0000000000..45708178bd
--- /dev/null
+++ b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/DefaultResourceServlet.java
@@ -0,0 +1,47 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.tuscany.sca.http;
+
+
+/**
+ * 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.
+ *
+ * @deprecated use org.apache.tuscany.sca.host.http
+ *
+ * @version $Rev$ $Date$
+ */
+@Deprecated
+public class DefaultResourceServlet extends org.apache.tuscany.sca.host.http.DefaultResourceServlet {
+ private static final long serialVersionUID = 4118826069821911041L;
+
+ /**
+ * Constructs a new ResourceServlet
+ * @param documentRoot the document root
+ */
+ public DefaultResourceServlet(String documentRoot) {
+ super(documentRoot);
+ }
+
+}
diff --git a/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/DefaultServletHostExtensionPoint.java b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/DefaultServletHostExtensionPoint.java
new file mode 100644
index 0000000000..e4ba57b68c
--- /dev/null
+++ b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/DefaultServletHostExtensionPoint.java
@@ -0,0 +1,31 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.tuscany.sca.http;
+
+
+/**
+ * Default implementation of a servlet host extension point.
+ * @deprecated
+ *
+ * @version $Rev$ $Date$
+ */
+@Deprecated
+public class DefaultServletHostExtensionPoint extends org.apache.tuscany.sca.host.http.DefaultServletHostExtensionPoint {
+}
diff --git a/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ExtensibleServletHost.java b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ExtensibleServletHost.java
new file mode 100644
index 0000000000..99ccefd86c
--- /dev/null
+++ b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ExtensibleServletHost.java
@@ -0,0 +1,36 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.tuscany.sca.http;
+
+import org.apache.tuscany.sca.host.http.ServletHostExtensionPoint;
+
+/**
+ * Default implementation of an extensible servlet host.
+ * @deprecated
+ *
+ * @version $Rev$ $Date$
+ */
+@Deprecated
+public class ExtensibleServletHost extends org.apache.tuscany.sca.host.http.ExtensibleServletHost {
+
+ public ExtensibleServletHost(ServletHostExtensionPoint servletHosts) {
+ super(servletHosts);
+ }
+}
diff --git a/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletHost.java b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletHost.java
new file mode 100644
index 0000000000..15a657f25b
--- /dev/null
+++ b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletHost.java
@@ -0,0 +1,34 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.tuscany.sca.http;
+
+
+/**
+ * Interface implemented by host environments that allow Servlets to be
+ * registered.
+ * <p/>
+ * This interface allows a system service to register a servlet
+ * to handle inbound requests.
+ * @deprecated
+ *
+ * @version $Rev$ $Date$
+ */
+@Deprecated
+public interface ServletHost extends org.apache.tuscany.sca.host.http.ServletHost {
+}
diff --git a/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletHostExtensionPoint.java b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletHostExtensionPoint.java
new file mode 100644
index 0000000000..9b834b48a2
--- /dev/null
+++ b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletHostExtensionPoint.java
@@ -0,0 +1,31 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.tuscany.sca.http;
+
+
+/**
+ * An extension point for servlet hosts.
+ * @deprecated
+ *
+ * @version $Rev$ $Date$
+ */
+@Deprecated
+public interface ServletHostExtensionPoint extends org.apache.tuscany.sca.host.http.ServletHostExtensionPoint {
+
+}
diff --git a/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletMappingException.java b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletMappingException.java
new file mode 100644
index 0000000000..bf73a701e0
--- /dev/null
+++ b/sca-java-1.x/tags/0.99-incubating/modules/host-http/src/main/java/org/apache/tuscany/sca/http/ServletMappingException.java
@@ -0,0 +1,30 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.tuscany.sca.http;
+
+/**
+ * Indicates an exception while registering a servlet mapping.
+ * @deprecated
+ *
+ * @version $Rev$ $Date$
+ */
+@Deprecated
+public class ServletMappingException extends RuntimeException {
+ private static final long serialVersionUID = 5463950431053092670L;
+}