From 7d87f0276438a04ebb06d31eec75ab106ff6d7b1 Mon Sep 17 00:00:00 2001 From: antelder Date: Tue, 12 Aug 2008 14:01:14 +0000 Subject: Remove unused class git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@685156 13f79535-47bb-0310-9956-ffa450edef68 --- .../helloworld-jsp/src/main/java/sample/Proxy.java | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 java/sca/samples/helloworld-jsp/src/main/java/sample/Proxy.java (limited to 'java/sca/samples/helloworld-jsp/src') 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); - } - - -} -- cgit v1.2.3