summaryrefslogtreecommitdiffstats
path: root/java/sca/samples/helloworld-jsp/src
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-08-12 14:01:14 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2008-08-12 14:01:14 +0000
commit7d87f0276438a04ebb06d31eec75ab106ff6d7b1 (patch)
tree95e9f93c82c4b5bbaf9a1dd590168634877beee2 /java/sca/samples/helloworld-jsp/src
parent5bdf4bf2c0566127829ac53857ce38b77be4f813 (diff)
Remove unused class
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@685156 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/samples/helloworld-jsp/src')
-rw-r--r--java/sca/samples/helloworld-jsp/src/main/java/sample/Proxy.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/java/sca/samples/helloworld-jsp/src/main/java/sample/Proxy.java b/java/sca/samples/helloworld-jsp/src/main/java/sample/Proxy.java
deleted file mode 100644
index d1d8d9d7ce..0000000000
--- a/java/sca/samples/helloworld-jsp/src/main/java/sample/Proxy.java
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * 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 sample;
-
-import org.osoa.sca.annotations.Reference;
-
-public class Proxy implements HelloworldService {
-
- @Reference
- public HelloworldService theService;
-
- public String sayHello(String name) {
- return theService.sayHello(name);
- }
-
-
-}