From 9f395ebf3ec27f89c8dc63137bc99c8d6b0cff6d Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 11 Nov 2009 23:07:37 +0000 Subject: Moving 1.x branches git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835125 13f79535-47bb-0310-9956-ffa450edef68 --- .../recursive/src/main/java/test/Aggregator.java | 27 ----------- .../src/main/java/test/AggregatorImpl.java | 55 ---------------------- .../src/main/java/test/InnerSourceImpl.java | 34 ------------- .../src/main/java/test/OuterSourceImpl.java | 34 ------------- .../itest/recursive/src/main/java/test/Source.java | 30 ------------ 5 files changed, 180 deletions(-) delete mode 100644 branches/sca-java-1.2/itest/recursive/src/main/java/test/Aggregator.java delete mode 100644 branches/sca-java-1.2/itest/recursive/src/main/java/test/AggregatorImpl.java delete mode 100644 branches/sca-java-1.2/itest/recursive/src/main/java/test/InnerSourceImpl.java delete mode 100644 branches/sca-java-1.2/itest/recursive/src/main/java/test/OuterSourceImpl.java delete mode 100644 branches/sca-java-1.2/itest/recursive/src/main/java/test/Source.java (limited to 'branches/sca-java-1.2/itest/recursive/src/main/java/test') diff --git a/branches/sca-java-1.2/itest/recursive/src/main/java/test/Aggregator.java b/branches/sca-java-1.2/itest/recursive/src/main/java/test/Aggregator.java deleted file mode 100644 index 88b3bed1b2..0000000000 --- a/branches/sca-java-1.2/itest/recursive/src/main/java/test/Aggregator.java +++ /dev/null @@ -1,27 +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 test; - -/** - * @version $Rev$ $Date$ - */ -public interface Aggregator { - String getAggregatedData(); -} diff --git a/branches/sca-java-1.2/itest/recursive/src/main/java/test/AggregatorImpl.java b/branches/sca-java-1.2/itest/recursive/src/main/java/test/AggregatorImpl.java deleted file mode 100644 index f6ac6c8741..0000000000 --- a/branches/sca-java-1.2/itest/recursive/src/main/java/test/AggregatorImpl.java +++ /dev/null @@ -1,55 +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 test; - -import java.util.List; - -import org.osoa.sca.annotations.Reference; -import org.osoa.sca.annotations.Service; - -/** - * @version $Rev$ $Date$ - */ -@Service(Aggregator.class) -public class AggregatorImpl implements Aggregator { - - @Reference(name = "uniSource") - protected Source source; - - @Reference(name = "multiSource") - protected List sources; - - public String getAggregatedData() { - System.out.println("uniSource: " + source.getData()); - StringBuffer sb = new StringBuffer(); - int i = 0; - for (Source s : sources) { - if (i != 0) { - sb.append(", "); - } else { - sb.append("multiSource: "); - } - sb.append(s.getData()); - i++; - } - return sb.toString(); - } - -} diff --git a/branches/sca-java-1.2/itest/recursive/src/main/java/test/InnerSourceImpl.java b/branches/sca-java-1.2/itest/recursive/src/main/java/test/InnerSourceImpl.java deleted file mode 100644 index c8dad5ae35..0000000000 --- a/branches/sca-java-1.2/itest/recursive/src/main/java/test/InnerSourceImpl.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 test; - -import org.osoa.sca.annotations.Service; - -/** - * @version $Rev$ $Date$ - */ -@Service(Source.class) -public class InnerSourceImpl implements Source { - - public String getData() { - return "InnerSource"; - } - -} diff --git a/branches/sca-java-1.2/itest/recursive/src/main/java/test/OuterSourceImpl.java b/branches/sca-java-1.2/itest/recursive/src/main/java/test/OuterSourceImpl.java deleted file mode 100644 index 11816e82cf..0000000000 --- a/branches/sca-java-1.2/itest/recursive/src/main/java/test/OuterSourceImpl.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 test; - -import org.osoa.sca.annotations.Service; - -/** - * @version $Rev$ $Date$ - */ -@Service(Source.class) -public class OuterSourceImpl implements Source { - - public String getData() { - return "OuterSource"; - } - -} diff --git a/branches/sca-java-1.2/itest/recursive/src/main/java/test/Source.java b/branches/sca-java-1.2/itest/recursive/src/main/java/test/Source.java deleted file mode 100644 index 9b93740d9d..0000000000 --- a/branches/sca-java-1.2/itest/recursive/src/main/java/test/Source.java +++ /dev/null @@ -1,30 +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 test; - -import org.osoa.sca.annotations.Remotable; - -/** - * @version $Rev$ $Date$ - */ -@Remotable -public interface Source { - String getData(); -} -- cgit v1.2.3