diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-07-28 10:58:07 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2011-07-28 10:58:07 +0000 |
commit | 04dcd09976ecc5aa2948993b9a9a2d90d239ee44 (patch) | |
tree | f3d3148a4c4ae6d56185cbd55333aaf119532d26 /sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle | |
parent | 19aadc9a267456fe8b84a9a4d3afca74ba9ef969 (diff) |
Delete old beta3 branch as its going to be recreated from the current trunk
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1151789 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle')
28 files changed, 0 insertions, 2099 deletions
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/pom.xml b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/pom.xml deleted file mode 100644 index 072bda865f..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/pom.xml +++ /dev/null @@ -1,43 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * 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.
--->
-<project>
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-itest</artifactId>
- <version>2.0-Beta3-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>itest-lifecycle</artifactId>
- <name>Apache Tuscany SCA iTest Lifecycle</name>
- <version>2.0-Beta3-SNAPSHOT</version>
-
- <dependencies>
-
- <dependency>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-base-runtime-pom</artifactId>
- <type>pom</type>
- <version>2.0-Beta3-SNAPSHOT</version>
- </dependency>
-
- </dependencies>
-
-</project>
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleBinding.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleBinding.java deleted file mode 100644 index ecd4393e4d..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleBinding.java +++ /dev/null @@ -1,49 +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 binding.lifecycle;
-
-import javax.xml.namespace.QName;
-
-import org.apache.tuscany.sca.provider.BaseBindingImpl;
-
-/**
- * Represents a binding to a Sample service.
- */
-public class LifecycleBinding extends BaseBindingImpl {
-
- public static final QName TYPE = new QName(SCA11_TUSCANY_NS, "binding.lifecycle");
-
- private String someAttr;
-
- public LifecycleBinding() {
- }
-
- public QName getType() {
- return TYPE;
- }
-
- public String getSomeAttr() {
- return someAttr;
- }
-
- public void setSomeAttr(String someAttr) {
- this.someAttr = someAttr;
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleBindingFactory.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleBindingFactory.java deleted file mode 100644 index 4fdf09bdf0..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleBindingFactory.java +++ /dev/null @@ -1,32 +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 binding.lifecycle;
-
-
-/**
- * Factory implementation to create Sample Models
- */
-public class LifecycleBindingFactory {
-
- public LifecycleBinding createLifecycleBinding() {
- return new LifecycleBinding();
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleBindingProviderFactory.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleBindingProviderFactory.java deleted file mode 100644 index f197578e84..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleBindingProviderFactory.java +++ /dev/null @@ -1,47 +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 binding.lifecycle;
-
-import binding.lifecycle.LifecycleBinding;
-import org.apache.tuscany.sca.core.ExtensionPointRegistry;
-import org.apache.tuscany.sca.provider.BindingProviderFactory;
-import org.apache.tuscany.sca.provider.ReferenceBindingProvider;
-import org.apache.tuscany.sca.provider.ServiceBindingProvider;
-import org.apache.tuscany.sca.runtime.RuntimeEndpoint;
-import org.apache.tuscany.sca.runtime.RuntimeEndpointReference;
-
-public class LifecycleBindingProviderFactory implements BindingProviderFactory<LifecycleBinding> {
-
- public LifecycleBindingProviderFactory(ExtensionPointRegistry extensionPoints) {
- }
-
- public Class<LifecycleBinding> getModelType() {
- return LifecycleBinding.class;
- }
-
- public ReferenceBindingProvider createReferenceBindingProvider(RuntimeEndpointReference endpoint) {
- return new LifecycleReferenceBindingProvider(endpoint);
- }
-
- public ServiceBindingProvider createServiceBindingProvider(RuntimeEndpoint endpoint) {
- return new LifecycleServiceBindingProvider(endpoint);
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleReferenceBindingProvider.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleReferenceBindingProvider.java deleted file mode 100644 index 5c2ca0bf77..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleReferenceBindingProvider.java +++ /dev/null @@ -1,63 +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 binding.lifecycle;
-
-import helloworld.StatusImpl;
-
-import org.apache.tuscany.sca.assembly.EndpointReference;
-import org.apache.tuscany.sca.assembly.impl.EndpointImpl;
-import org.apache.tuscany.sca.assembly.impl.EndpointReferenceImpl;
-import org.apache.tuscany.sca.interfacedef.InterfaceContract;
-import org.apache.tuscany.sca.interfacedef.Operation;
-import org.apache.tuscany.sca.invocation.Invoker;
-import org.apache.tuscany.sca.provider.ReferenceBindingProvider;
-
-public class LifecycleReferenceBindingProvider implements ReferenceBindingProvider {
-
- private EndpointReference endpoint;
- private InterfaceContract contract;
-
- public LifecycleReferenceBindingProvider(EndpointReference endpoint) {
- this.endpoint = endpoint;
- }
-
- public Invoker createInvoker(Operation operation) {
- return new LifecycleReferenceInvoker(operation, endpoint);
- }
-
- public void start() {
- StatusImpl.appendStatus("Reference binding start",
- ((EndpointReferenceImpl)endpoint).toStringWithoutHash());
- }
-
- public void stop() {
- StatusImpl.appendStatus("Reference binding stop",
- ((EndpointReferenceImpl)endpoint).toStringWithoutHash());
- }
-
- public InterfaceContract getBindingInterfaceContract() {
- return contract;
- }
-
- public boolean supportsOneWayInvocation() {
- return false;
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleReferenceInvoker.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleReferenceInvoker.java deleted file mode 100644 index 023be8613b..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleReferenceInvoker.java +++ /dev/null @@ -1,48 +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 binding.lifecycle;
-
-import org.apache.tuscany.sca.assembly.EndpointReference;
-import org.apache.tuscany.sca.interfacedef.Operation;
-import org.apache.tuscany.sca.invocation.Invoker;
-import org.apache.tuscany.sca.invocation.Message;
-
-public class LifecycleReferenceInvoker implements Invoker {
-
- protected Operation operation;
- protected EndpointReference endpoint;
-
- public LifecycleReferenceInvoker(Operation operation, EndpointReference endpoint) {
- this.operation = operation;
- this.endpoint = endpoint;
- }
-
- public Message invoke(Message msg) {
- try {
- Object[] body = msg.getBody();
- msg.setBody(body[0]);
- return msg;
-
- } catch (Exception e) {
- throw new RuntimeException(e);
- }
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleServiceBindingProvider.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleServiceBindingProvider.java deleted file mode 100644 index 158aa27201..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleServiceBindingProvider.java +++ /dev/null @@ -1,56 +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 binding.lifecycle;
-
-import helloworld.StatusImpl;
-
-import org.apache.tuscany.sca.assembly.impl.EndpointImpl;
-import org.apache.tuscany.sca.interfacedef.InterfaceContract;
-import org.apache.tuscany.sca.provider.ServiceBindingProvider;
-import org.apache.tuscany.sca.runtime.RuntimeEndpoint;
-
-public class LifecycleServiceBindingProvider implements ServiceBindingProvider {
-
- private RuntimeEndpoint endpoint;
- private InterfaceContract contract;
-
- public LifecycleServiceBindingProvider(RuntimeEndpoint endpoint) {
- this.endpoint = endpoint;
- }
-
- public void start() {
- StatusImpl.appendStatus("Service binding start",
- ((EndpointImpl)endpoint).toStringWithoutHash());
- }
-
- public void stop() {
- StatusImpl.appendStatus("Service binding stop",
- ((EndpointImpl)endpoint).toStringWithoutHash());
- }
-
- public InterfaceContract getBindingInterfaceContract() {
- return contract;
- }
-
- public boolean supportsOneWayInvocation() {
- return false;
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleServiceInvoker.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleServiceInvoker.java deleted file mode 100644 index 09ca7a051e..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/binding/lifecycle/LifecycleServiceInvoker.java +++ /dev/null @@ -1,40 +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 binding.lifecycle;
-
-import org.apache.tuscany.sca.invocation.Message;
-import org.apache.tuscany.sca.runtime.RuntimeEndpoint;
-
-public class LifecycleServiceInvoker {
-
- private RuntimeEndpoint wire;
-
- public LifecycleServiceInvoker(RuntimeEndpoint wire) {
- this.wire = wire;
- }
-
- /**
- * Send the request down the wire to invoke the service
- */
- public Message invokeService(Message msg) {
- return wire.invoke(msg);
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/Helloworld.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/Helloworld.java deleted file mode 100644 index 7b9c17cf59..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/Helloworld.java +++ /dev/null @@ -1,31 +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 helloworld;
-
-import org.oasisopen.sca.annotation.Remotable;
-
-@Remotable
-public interface Helloworld {
-
- String sayHello(String name) throws Exception;
-
- String throwException(String name) throws Exception;
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldClientImplC.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldClientImplC.java deleted file mode 100644 index 931e61677d..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldClientImplC.java +++ /dev/null @@ -1,78 +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 helloworld;
-
-import org.oasisopen.sca.annotation.Destroy;
-import org.oasisopen.sca.annotation.Init;
-import org.oasisopen.sca.annotation.Reference;
-import org.oasisopen.sca.annotation.Scope;
-
-/*
- * C = a composite scoped component that throws exceptions
- */
-
-@Scope("COMPOSITE")
-public class HelloworldClientImplC implements Helloworld {
-
- public static boolean throwTestExceptionOnConstruction = false;
- public static boolean throwTestExceptionOnInit = false;
- public static boolean throwTestExceptionOnDestroy = false;
-
-
- @Reference
- public Helloworld service;
-
- public HelloworldClientImplC() throws Exception {
- if(throwTestExceptionOnConstruction){
- StatusImpl.appendStatus("Exception on construction", "HelloworldClientImplC");
- throw new Exception("Exception on construction");
- }
- }
-
- @Init
- public void initialize() throws Exception{
- if (throwTestExceptionOnInit) {
- StatusImpl.appendStatus("Exception on init", "HelloworldClientImplC");
- throw new Exception("Exception on init");
- }
-
- StatusImpl.appendStatus("Init", "HelloworldClientImplC");
- System.out.println(">>>>>> " + sayHello("init"));
- }
-
- @Destroy
- public void destroy() throws Exception{
- if (throwTestExceptionOnDestroy) {
- StatusImpl.appendStatus("Exception on destroy", "HelloworldClientImplC");
- throw new Exception("Exception on destroy");
- }
-
- StatusImpl.appendStatus("Destroy", "HelloworldClientImplC");
- }
-
- public String sayHello(String name) throws Exception {
- return "Hi " + service.sayHello(name);
- }
-
- public String throwException(String name) throws Exception {
- throw new Exception("test exception");
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldClientImplCE.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldClientImplCE.java deleted file mode 100644 index af97452ee9..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldClientImplCE.java +++ /dev/null @@ -1,80 +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 helloworld;
-
-import org.oasisopen.sca.annotation.Destroy;
-import org.oasisopen.sca.annotation.EagerInit;
-import org.oasisopen.sca.annotation.Init;
-import org.oasisopen.sca.annotation.Reference;
-import org.oasisopen.sca.annotation.Scope;
-
-/*
- * CE = a composite scoped component with EagerInit that throws exceptions
- */
-
-@EagerInit
-@Scope("COMPOSITE")
-public class HelloworldClientImplCE implements Helloworld {
-
- public static boolean throwTestExceptionOnConstruction = false;
- public static boolean throwTestExceptionOnInit = false;
- public static boolean throwTestExceptionOnDestroy = false;
-
-
- @Reference
- public Helloworld service;
-
- public HelloworldClientImplCE() throws Exception {
- if(throwTestExceptionOnConstruction){
- StatusImpl.appendStatus("Exception on construction", "HelloworldClientImplCE");
- throw new Exception("Exception on construction");
- }
- }
-
- @Init
- public void initialize() throws Exception{
- if (throwTestExceptionOnInit) {
- StatusImpl.appendStatus("Exception on init", "HelloworldClientImplCE");
- throw new Exception("Exception on init");
- }
-
- StatusImpl.appendStatus("Init", "HelloworldClientImplCE");
- System.out.println(">>>>>> " + sayHello("init"));
- }
-
- @Destroy
- public void destroy() throws Exception{
- if (throwTestExceptionOnDestroy) {
- StatusImpl.appendStatus("Exception on destroy", "HelloworldClientImplCE");
- throw new Exception("Exception on destroy");
- }
-
- StatusImpl.appendStatus("Destroy", "HelloworldClientImplCE");
- }
-
- public String sayHello(String name) throws Exception {
- return "Hi " + service.sayHello(name);
- }
-
- public String throwException(String name) throws Exception {
- throw new Exception("test exception");
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldClientImplS.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldClientImplS.java deleted file mode 100644 index 493ccca972..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldClientImplS.java +++ /dev/null @@ -1,78 +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 helloworld;
-
-import org.oasisopen.sca.annotation.Destroy;
-import org.oasisopen.sca.annotation.Init;
-import org.oasisopen.sca.annotation.Reference;
-import org.oasisopen.sca.annotation.Scope;
-
-/*
- * S = a stateless scoped component that throws exceptions
- */
-
-@Scope("STATELESS")
-public class HelloworldClientImplS implements Helloworld {
-
- public static boolean throwTestExceptionOnConstruction = false;
- public static boolean throwTestExceptionOnInit = false;
- public static boolean throwTestExceptionOnDestroy = false;
-
-
- @Reference
- public Helloworld service;
-
- public HelloworldClientImplS() throws Exception {
- if(throwTestExceptionOnConstruction){
- StatusImpl.appendStatus("Exception on construction", "HelloworldClientImplS");
- throw new Exception("Exception on construction");
- }
- }
-
- @Init
- public void initialize() throws Exception{
- if (throwTestExceptionOnInit) {
- StatusImpl.appendStatus("Exception on init", "HelloworldClientImplS");
- throw new Exception("Exception on init");
- }
-
- StatusImpl.appendStatus("Init", "HelloworldClientImplS");
- System.out.println(">>>>>> " + sayHello("init"));
- }
-
- @Destroy
- public void destroy() throws Exception{
- if (throwTestExceptionOnDestroy) {
- StatusImpl.appendStatus("Exception on destroy", "HelloworldClientImplS");
- throw new Exception("Exception on destroy");
- }
-
- StatusImpl.appendStatus("Destroy", "HelloworldClientImplS");
- }
-
- public String sayHello(String name) throws Exception {
- return "Hi " + service.sayHello(name);
- }
-
- public String throwException(String name) throws Exception {
- throw new Exception("test exception");
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldServiceImpl.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldServiceImpl.java deleted file mode 100644 index 2d27ec8f58..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/HelloworldServiceImpl.java +++ /dev/null @@ -1,35 +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 helloworld;
-
-public class HelloworldServiceImpl implements Helloworld {
-
- public String sayHello(String name) {
- String response = "Hello " + name;
- System.out.println("At service - " + response);
- return response;
- }
-
- public String throwException(String name) throws Exception {
- // not used
- return null;
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/StatusImpl.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/StatusImpl.java deleted file mode 100644 index 644853d6c2..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/helloworld/StatusImpl.java +++ /dev/null @@ -1,32 +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 helloworld;
-
-public class StatusImpl {
-
- public static String statusString = "";
-
- public static void appendStatus(String event, String location){
- // remove any addresses from the strings
- location = location.replaceAll("\\(@.*Endpoint", "Endpoint");
- statusString += event + " - " + location + "\n";
- }
-
-}
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleImplementation.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleImplementation.java deleted file mode 100644 index ebed204b87..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleImplementation.java +++ /dev/null @@ -1,41 +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 implementation.lifecycle; - -import javax.xml.namespace.QName; - -import org.apache.tuscany.sca.assembly.impl.ImplementationImpl; - -/** - * Model representing a Sample implementation in an SCA assembly. - * - * @version $Rev$ $Date$ - */ -public class LifecycleImplementation extends ImplementationImpl { - static final QName QN = new QName(SCA11_TUSCANY_NS, "implementation.lifecycle"); - - final String name; - Class<?> clazz; - - LifecycleImplementation(final String name) { - super(QN); - this.name = name; - } - -} diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleImplementationProcessor.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleImplementationProcessor.java deleted file mode 100644 index c7989b291c..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleImplementationProcessor.java +++ /dev/null @@ -1,105 +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 implementation.lifecycle; - -import static javax.xml.stream.XMLStreamConstants.END_ELEMENT; - -import java.lang.annotation.Annotation; -import java.lang.reflect.Field; - -import javax.wsdl.PortType; -import javax.xml.namespace.QName; -import javax.xml.stream.XMLStreamException; -import javax.xml.stream.XMLStreamReader; -import javax.xml.stream.XMLStreamWriter; - -import org.apache.tuscany.sca.assembly.AssemblyFactory; -import org.apache.tuscany.sca.assembly.Service; -import org.apache.tuscany.sca.contribution.processor.BaseStAXArtifactProcessor; -import org.apache.tuscany.sca.contribution.processor.ContributionReadException; -import org.apache.tuscany.sca.contribution.processor.ContributionResolveException; -import org.apache.tuscany.sca.contribution.processor.ContributionWriteException; -import org.apache.tuscany.sca.contribution.processor.ProcessorContext; -import org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor; -import org.apache.tuscany.sca.contribution.resolver.ClassReference; -import org.apache.tuscany.sca.contribution.resolver.ModelResolver; -import org.apache.tuscany.sca.core.ExtensionPointRegistry; -import org.apache.tuscany.sca.core.FactoryExtensionPoint; -import org.apache.tuscany.sca.databinding.xml.DOMDataBinding; -import org.apache.tuscany.sca.interfacedef.InvalidInterfaceException; -import org.apache.tuscany.sca.interfacedef.java.JavaInterfaceContract; -import org.apache.tuscany.sca.interfacedef.java.JavaInterfaceFactory; -import org.apache.tuscany.sca.interfacedef.wsdl.WSDLDefinition; -import org.apache.tuscany.sca.interfacedef.wsdl.WSDLFactory; -import org.apache.tuscany.sca.interfacedef.wsdl.WSDLInterface; -import org.apache.tuscany.sca.interfacedef.wsdl.WSDLObject; - -/** - * StAX artifact processor for Sample implementations. - * - * @version $Rev$ $Date$ - */ -public class LifecycleImplementationProcessor extends BaseStAXArtifactProcessor implements StAXArtifactProcessor<LifecycleImplementation> { - final AssemblyFactory af; - final JavaInterfaceFactory jif; - final WSDLFactory wf; - - public LifecycleImplementationProcessor(final ExtensionPointRegistry ep) { - final FactoryExtensionPoint fep = ep.getExtensionPoint(FactoryExtensionPoint.class); - this.af = fep.getFactory(AssemblyFactory.class); - this.jif = fep.getFactory(JavaInterfaceFactory.class); - this.wf = fep.getFactory(WSDLFactory.class); - } - - public QName getArtifactType() { - return LifecycleImplementation.QN; - } - - public Class<LifecycleImplementation> getModelType() { - return LifecycleImplementation.class; - } - - public LifecycleImplementation read(final XMLStreamReader r, final ProcessorContext ctx) throws ContributionReadException, XMLStreamException { - // not actually going to read any config for this test - // so just create a model - LifecycleImplementation impl = new LifecycleImplementation("helloworld.Helloworld"); - impl.setUnresolved(true); - return impl; - } - - public void resolve(final LifecycleImplementation impl, final ModelResolver res, final ProcessorContext ctx) throws ContributionResolveException { - try { - Class c = Class.forName("helloworld.Helloworld"); - Service s = af.createService(); - s.setName("Helloworld"); - JavaInterfaceContract ic = jif.createJavaInterfaceContract(); - ic.setInterface(jif.createJavaInterface(c)); - s.setInterfaceContract(ic); - impl.getServices().add(s); - impl.setUnresolved(false); - } catch (Exception ex){ - throw new ContributionResolveException(ex); - } - } - - public void write(final LifecycleImplementation impl, final XMLStreamWriter w, final ProcessorContext ctx) throws ContributionWriteException, XMLStreamException { - // not required for this test - } - -} diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleJavaInvoker.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleJavaInvoker.java deleted file mode 100644 index ac750fe040..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleJavaInvoker.java +++ /dev/null @@ -1,46 +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 implementation.lifecycle; - -import java.lang.reflect.Method; - -import org.apache.tuscany.sca.interfacedef.java.JavaOperation; -import org.apache.tuscany.sca.invocation.Invoker; -import org.apache.tuscany.sca.invocation.Message; - -/** - * Invoker for Sample components that implement a Java interface. - * - * @version $Rev$ $Date$ - */ -class SampleJavaInvoker implements Invoker { - final Object instance; - final Method method; - - SampleJavaInvoker(final JavaOperation op, final Class<?> clazz, final Object instance) throws SecurityException, NoSuchMethodException { - this.instance = instance; - this.method = clazz.getMethod(op.getJavaMethod().getName(), op.getJavaMethod().getParameterTypes()); - } - - public Message invoke(final Message msg) { - // we don't actually do anything here - return msg; - } -} diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleProvider.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleProvider.java deleted file mode 100644 index f1e303882f..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleProvider.java +++ /dev/null @@ -1,77 +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 implementation.lifecycle; - -import helloworld.StatusImpl; - -import java.util.HashMap; -import java.util.Map; - -import org.apache.tuscany.sca.core.ExtensionPointRegistry; -import org.apache.tuscany.sca.core.invocation.ProxyFactory; -import org.apache.tuscany.sca.interfacedef.Operation; -import org.apache.tuscany.sca.interfacedef.java.JavaOperation; -import org.apache.tuscany.sca.invocation.Invoker; -import org.apache.tuscany.sca.provider.ImplementationProvider; -import org.apache.tuscany.sca.runtime.RuntimeComponent; -import org.apache.tuscany.sca.runtime.RuntimeComponentService; - -/** - * Implementation provider for Sample component implementations. - * - * @version $Rev$ $Date$ - */ -class LifecycleProvider implements ImplementationProvider { - final RuntimeComponent comp; - final LifecycleImplementation impl; - final ProxyFactory pxf; - final ExtensionPointRegistry ep; - Object instance; - - // make this static rather than worrying about persistence on the reference side - static Map<String, Object> asyncMessageMap = new HashMap<String, Object>(); - - LifecycleProvider(final RuntimeComponent comp, final LifecycleImplementation impl, ProxyFactory pf, ExtensionPointRegistry ep) { - this.comp = comp; - this.impl = impl; - this.pxf = pf; - this.ep = ep; - } - - public void start() { - StatusImpl.appendStatus("Implementation start", comp.getName()); - } - - public void stop() { - StatusImpl.appendStatus("Implementation stop", comp.getName()); - } - - public boolean supportsOneWayInvocation() { - return false; - } - - public Invoker createInvoker(final RuntimeComponentService s, final Operation op) { - try { - return new SampleJavaInvoker((JavaOperation)op, impl.clazz, instance); - } catch(Exception e) { - throw new RuntimeException(e); - } - } -} diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleProviderFactory.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleProviderFactory.java deleted file mode 100644 index dfd39716fd..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/java/implementation/lifecycle/LifecycleProviderFactory.java +++ /dev/null @@ -1,50 +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 implementation.lifecycle; - -import org.apache.tuscany.sca.core.ExtensionPointRegistry; -import org.apache.tuscany.sca.core.invocation.ExtensibleProxyFactory; -import org.apache.tuscany.sca.core.invocation.ProxyFactory; -import org.apache.tuscany.sca.provider.ImplementationProvider; -import org.apache.tuscany.sca.provider.ImplementationProviderFactory; -import org.apache.tuscany.sca.runtime.RuntimeComponent; - -/** - * Factory for Sample implementation providers. - * - * @version $Rev$ $Date$ - */ -public class LifecycleProviderFactory implements ImplementationProviderFactory<LifecycleImplementation> { - final ProxyFactory pxf; - final ExtensionPointRegistry ep; - - public LifecycleProviderFactory(final ExtensionPointRegistry ep) { - this.ep = ep; - pxf = ExtensibleProxyFactory.getInstance(ep); - } - - public ImplementationProvider createImplementationProvider(final RuntimeComponent comp, final LifecycleImplementation impl) { - return new LifecycleProvider(comp, impl, pxf, ep); - } - - public Class<LifecycleImplementation> getModelType() { - return LifecycleImplementation.class; - } -} diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/binding.lifecycle.BindingFactory b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/binding.lifecycle.BindingFactory deleted file mode 100644 index 357cf65727..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/binding.lifecycle.BindingFactory +++ /dev/null @@ -1,20 +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.
-
-# Implementation class for model factory
-binding.lifecycle.LifecycleBindingFactory
-
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor deleted file mode 100644 index 09a474a567..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor +++ /dev/null @@ -1,21 +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.
-
-# Implementation class for the artifact processor extension
-org.apache.tuscany.sca.assembly.xml.DefaultBeanModelProcessor;qname=http://tuscany.apache.org/xmlns/sca/1.1#binding.lifecycle,model=binding.lifecycle.LifecycleBinding,factory=binding.lifecycle.LifecycleBindingFactory
-implementation.lifecycle.LifecycleImplementationProcessor;qname=http://tuscany.apache.org/xmlns/sca/1.1#implementation.lifecycle,model=implementation.lifecycle.LifecycleImplementation
-
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema deleted file mode 100644 index e436702181..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.contribution.processor.ValidationSchema +++ /dev/null @@ -1,21 +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.
-#
-implementation-lifecycle.xsd
-binding-lifecycle.xsd
-
-
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.BindingProviderFactory b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.BindingProviderFactory deleted file mode 100644 index 9a814793b2..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.BindingProviderFactory +++ /dev/null @@ -1,20 +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.
-
-# Implementation class for the binding extension
-binding.lifecycle.LifecycleBindingProviderFactory;model=binding.lifecycle.LifecycleBinding
-
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.ImplementationProviderFactory b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.ImplementationProviderFactory deleted file mode 100644 index c9b5077888..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.ImplementationProviderFactory +++ /dev/null @@ -1,20 +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.
-
-# Implementation provider for Sample components
-implementation.lifecycle.LifecycleProviderFactory;model=implementation.lifecycle.LifecycleImplementation
-
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/binding-lifecycle.xsd b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/binding-lifecycle.xsd deleted file mode 100644 index b798446c26..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/binding-lifecycle.xsd +++ /dev/null @@ -1,37 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * 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.
--->
-<schema xmlns="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://tuscany.apache.org/xmlns/sca/1.1"
- xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1"
- elementFormDefault="qualified">
-
- <import namespace="http://docs.oasis-open.org/ns/opencsa/sca/200912" />
-
- <element name="binding.lifecycle" type="t:BindingLifecycle" substitutionGroup="sca:binding"/>
-
- <complexType name="BindingLifecycle">
- <complexContent>
- <extension base="sca:Binding">
- <attribute name="someAttr" type="string" use="optional"/>
- </extension>
- </complexContent>
- </complexType>
-</schema>
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/implementation-lifecycle.xsd b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/implementation-lifecycle.xsd deleted file mode 100644 index c029a43922..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/implementation-lifecycle.xsd +++ /dev/null @@ -1,38 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - * 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. ---> -<schema xmlns="http://www.w3.org/2001/XMLSchema" - targetNamespace="http://tuscany.apache.org/xmlns/sca/1.1" - xmlns:sca="http://docs.oasis-open.org/ns/opencsa/sca/200912" - xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1" - elementFormDefault="qualified"> - - <import namespace="http://docs.oasis-open.org/ns/opencsa/sca/200912"/> - - <element name="implementation.lifecycle" type="t:LifecycleImplementation" substitutionGroup="sca:implementation"/> - - <complexType name="LifecycleImplementation"> - <complexContent> - <extension base="sca:Implementation"> - <attribute name="class" type="string" use="required"/> - </extension> - </complexContent> - </complexType> - -</schema> diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/lifecycle.composite b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/lifecycle.composite deleted file mode 100644 index f08f6fe57b..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/main/resources/lifecycle.composite +++ /dev/null @@ -1,55 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * 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.
--->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1"
- targetNamespace="http://sample"
- name="lifecycle">
-
- <component name="HelloworldService">
- <implementation.java class="helloworld.HelloworldServiceImpl"/>
- <service name="Helloworld">
- <tuscany:binding.lifecycle name="lifecycle"/>
- </service>
- </component>
-
-
- <component name="HelloworldServiceTestImpl">
- <tuscany:implementation.lifecycle class="helloworld.HelloworldServiceImpl"/>
- <service name="Helloworld">
- <tuscany:binding.lifecycle name="lifecycle"/>
- </service>
- </component>
-
- <component name="HelloworldClientC">
- <implementation.java class="helloworld.HelloworldClientImplC"/>
- <reference name="service" target="HelloworldService"/>
- </component>
-
- <component name="HelloworldClientCE">
- <implementation.java class="helloworld.HelloworldClientImplCE"/>
- <reference name="service" target="HelloworldService"/>
- </component>
-
- <component name="HelloworldClientS">
- <implementation.java class="helloworld.HelloworldClientImplS"/>
- <reference name="service" target="HelloworldService"/>
- </component>
-
-</composite>
diff --git a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/test/java/org/apache/tuscany/sca/itest/lifecycle/LifecycleTestCase.java b/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/test/java/org/apache/tuscany/sca/itest/lifecycle/LifecycleTestCase.java deleted file mode 100644 index b1b0c84376..0000000000 --- a/sca-java-2.x/branches/2.0-Beta3/testing/itest/lifecycle/src/test/java/org/apache/tuscany/sca/itest/lifecycle/LifecycleTestCase.java +++ /dev/null @@ -1,836 +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 org.apache.tuscany.sca.itest.lifecycle;
-
-
-import helloworld.Helloworld;
-import helloworld.HelloworldClientImplC;
-import helloworld.HelloworldClientImplCE;
-import helloworld.HelloworldClientImplS;
-import helloworld.StatusImpl;
-import junit.framework.Assert;
-
-import org.apache.tuscany.sca.Node;
-import org.apache.tuscany.sca.TuscanyRuntime;
-import org.junit.After;
-import org.junit.Before;
-import org.junit.Test;
-
-
-public class LifecycleTestCase {
-
- public Node node = null;
-
-
- @Before
- public void setUp() throws Exception {
- StatusImpl.statusString = "";
- }
-
- @After
- public void tearDown() throws Exception {
-
- }
-
- /*
- * Start up the composite and don't send any messages. No exception
- * should be thrown.
- */
- @Test
- public void testNoExceptionNoMessageShutdown() throws Exception{
-
- StatusImpl.statusString = "";
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- node.startComposite("HelloworldContrib", "lifecycle.composite");
-
- // we don't send any messages in this case and just shut down directly
-
- // stop a composite
- node.stopComposite("HelloworldContrib", "lifecycle.composite");
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplCE\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplCE\n",
- StatusImpl.statusString);
- }
-
- /*
- * Start up the composite and send a message. No exception
- * should be thrown.
- */
- @Test
- public void testNoExceptionMessageShutdown() throws Exception{
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- node.startComposite("HelloworldContrib", "lifecycle.composite");
-
- // send a message to each client
- Helloworld hwCE = node.getService(Helloworld.class, "HelloworldClientCE");
- System.out.println(hwCE.sayHello("name"));
- Helloworld hwC = node.getService(Helloworld.class, "HelloworldClientC");
- System.out.println(hwC.sayHello("name"));
- Helloworld hwS = node.getService(Helloworld.class, "HelloworldClientC");
- System.out.println(hwS.sayHello("name"));
-
- // stop a composite
- node.stopComposite("HelloworldContrib", "lifecycle.composite");
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplCE\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplC\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientC#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientC#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplC\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplCE\n",
- StatusImpl.statusString);
-
- /*$self$ reference of client is not stopped here - should it be? */
- }
-
- /*
- * Start up the composite. Exception thrown in constructor of composite
- * scoped component with eager init set
- */
- @Test
- public void testConstructorExceptionShutdownCE() throws Exception{
-
- HelloworldClientImplCE.throwTestExceptionOnConstruction = true;
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- try {
- node.startComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it's thrown from the HelloworldClientImpl @Init method
- StatusImpl.appendStatus("Exception caught on node.startComposite", "LifecycleTestCase.testConstructorExceptionShutdownCE");
- }
-
- // don't need to send a message as eager init ensures that
- // the component instance is created at start time
-
- // stop a composite
- try {
- // not required in this test as the exception during EagerInit will cause the stop
- //node.stopComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it will complain about the composite not being started
- StatusImpl.appendStatus("Exception caught on node.stopComposite", "LifecycleTestCase.testConstructorExceptionShutdownCE");
- }
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- HelloworldClientImplCE.throwTestExceptionOnConstruction = false;
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Exception on construction - HelloworldClientImplCE\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Exception caught on node.startComposite - LifecycleTestCase.testConstructorExceptionShutdownCE\n",
- StatusImpl.statusString);
- }
-
- /*
- * Start up the composite. Exception thrown in constructor of composite
- * scoped component
- */
- @Test
- public void testConstructorExceptionShutdownC() throws Exception{
-
- HelloworldClientImplC.throwTestExceptionOnConstruction = true;
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- try {
- node.startComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it's thrown from the HelloworldClientImpl @Init method
- StatusImpl.appendStatus("Exception caught on node.startComposite", "LifecycleTestCase.testConstructorExceptionShutdownC");
- }
-
- // send a message to the appropriate client
- try {
- Helloworld hwCE = node.getService(Helloworld.class, "HelloworldClientC");
- System.out.println(hwCE.sayHello("name"));
- } catch (Exception exception) {
- // the component throws an error on construction
- StatusImpl.appendStatus("Exception caught on sayHello()", "LifecycleTestCase.testConstructorExceptionShutdownC");
- }
-
- // stop a composite
- try {
- node.stopComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it will complain about the composite not being started
- StatusImpl.appendStatus("Exception caught on node.stopComposite", "LifecycleTestCase.testConstructorExceptionShutdownC");
- }
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- HelloworldClientImplC.throwTestExceptionOnConstruction = false;
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplCE\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Exception on construction - HelloworldClientImplC\n" +
- "Exception caught on sayHello() - LifecycleTestCase.testConstructorExceptionShutdownC\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplCE\n",
- StatusImpl.statusString);
- }
-
- /*
- * Start up the composite. Exception thrown in constructor of stateless
- * scoped component
- */
- @Test
- public void testConstructorExceptionShutdownS() throws Exception{
-
- HelloworldClientImplS.throwTestExceptionOnConstruction = true;
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- try {
- node.startComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it's thrown from the HelloworldClientImpl @Init method
- StatusImpl.appendStatus("Exception caught on node.startComposite", "LifecycleTestCase.testConstructorExceptionShutdownS");
- }
-
- // send a message to the appropriate client
- try {
- Helloworld hwCE = node.getService(Helloworld.class, "HelloworldClientS");
- System.out.println(hwCE.sayHello("name"));
- } catch (Exception exception) {
- // the component throws an error on construction
- StatusImpl.appendStatus("Exception caught on sayHello()", "LifecycleTestCase.testConstructorExceptionShutdownS");
- }
-
- // stop a composite
- try {
- node.stopComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it will complain about the composite not being started
- StatusImpl.appendStatus("Exception caught on node.stopComposite", "LifecycleTestCase.testConstructorExceptionShutdownS");
- }
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- HelloworldClientImplS.throwTestExceptionOnConstruction = false;
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplCE\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Exception on construction - HelloworldClientImplS\n" +
- "Exception caught on sayHello() - LifecycleTestCase.testConstructorExceptionShutdownS\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplCE\n",
- StatusImpl.statusString);
- }
-
- /*
- * Start up the composite. Exception thrown in init of composite
- * scoped component with eager init
- */
- @Test
- public void testInitExceptionShutdownCE() throws Exception{
-
- HelloworldClientImplCE.throwTestExceptionOnInit = true;
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- try {
- node.startComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it's thrown from the HelloworldClientImpl @Init method
- StatusImpl.appendStatus("Exception caught on node.startComposite", "LifecycleTestCase.testInitExceptionShutdownCE");
- }
-
- // don't need to send a message as eager init ensures that
- // the component instance is created and inited at start time
-
- // stop a composite
- try {
- // not required in this test as the exception during EagerInit will cause the stop
- //node.stopComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it will complain about the composite not being started
- StatusImpl.appendStatus("Exception caught on node.stopComposite", "LifecycleTestCase.testInitExceptionShutdownCE");
- }
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- HelloworldClientImplCE.throwTestExceptionOnInit = false;
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n"+
- "Implementation start - HelloworldServiceTestImpl\n"+
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n"+
- "Exception on init - HelloworldClientImplCE\n"+
- "Destroy - HelloworldClientImplCE\n"+
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n"+
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n"+
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Exception caught on node.startComposite - LifecycleTestCase.testInitExceptionShutdownCE\n",
- StatusImpl.statusString);
- }
-
- /*
- * Start up the composite. Exception thrown in init of composite
- * scoped component
- */
- @Test
- public void testInitExceptionShutdownC() throws Exception{
-
- HelloworldClientImplC.throwTestExceptionOnInit = true;
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- try {
- node.startComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it's thrown from the HelloworldClientImpl @Init method
- StatusImpl.appendStatus("Exception caught on node.startComposite", "LifecycleTestCase.testInitExceptionShutdownC");
- }
-
- // send a message to the appropriate client
- try {
- Helloworld hwCE = node.getService(Helloworld.class, "HelloworldClientC");
- System.out.println(hwCE.sayHello("name"));
- } catch (Exception exception) {
- // the component throws an error on init
- StatusImpl.appendStatus("Exception caught on sayHello()", "LifecycleTestCase.testInitExceptionShutdownC");
- }
-
- // stop a composite
- try {
- node.stopComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it will complain about the composite not being started
- StatusImpl.appendStatus("Exception caught on node.stopComposite", "LifecycleTestCase.testInitExceptionShutdownC");
- }
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- HelloworldClientImplC.throwTestExceptionOnInit = false;
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplCE\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Exception on init - HelloworldClientImplC\n" +
- "Destroy - HelloworldClientImplC\n" +
- "Exception caught on sayHello() - LifecycleTestCase.testInitExceptionShutdownC\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplCE\n",
- StatusImpl.statusString);
- }
-
- /*
- * Start up the composite. Exception thrown in init of stateless
- * scoped component
- */
- @Test
- public void testInitExceptionShutdownS() throws Exception{
-
- HelloworldClientImplS.throwTestExceptionOnInit = true;
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- try {
- node.startComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it's thrown from the HelloworldClientImpl @Init method
- StatusImpl.appendStatus("Exception caught on node.startComposite", "LifecycleTestCase.testInitExceptionShutdownS");
- }
-
- // send a message to the appropriate client
- try {
- Helloworld hwCE = node.getService(Helloworld.class, "HelloworldClientS");
- System.out.println(hwCE.sayHello("name"));
- } catch (Exception exception) {
- // the component throws an error on init
- StatusImpl.appendStatus("Exception caught on sayHello()", "LifecycleTestCase.testInitExceptionShutdownS");
- }
-
- // stop a composite
- try {
- node.stopComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it will complain about the composite not being started
- StatusImpl.appendStatus("Exception caught on node.stopComposite", "LifecycleTestCase.testInitExceptionShutdownS");
- }
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- HelloworldClientImplS.throwTestExceptionOnInit = false;
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplCE\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Exception on init - HelloworldClientImplS\n" +
- "Destroy - HelloworldClientImplS\n" +
- "Exception caught on sayHello() - LifecycleTestCase.testInitExceptionShutdownS\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplCE\n",
- StatusImpl.statusString);
- }
-
- /*
- * Start up the composite and then stop it. Exception thrown in destory of composite
- * scoped component with eager init set
- */
- @Test
- public void testDestroyExceptionShutdownCE() throws Exception{
-
- HelloworldClientImplCE.throwTestExceptionOnDestroy = true;
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- try {
- node.startComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it's thrown from the HelloworldClientImpl @Destroy method
- StatusImpl.appendStatus("Exception caught on node.startComposite", "LifecycleTestCase.testDestroyExceptionShutdownCE");
- }
-
- // don't need to send a message as eager init ensures that
- // the component instance is created start time and hence should
- // be destroyed
-
- // stop a composite
- try {
- // not required in this test as the exception during EagerInit will cause the stop
- //node.stopComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it will complain about the composite not being started
- StatusImpl.appendStatus("Exception caught on node.stopComposite", "LifecycleTestCase.testDestroyExceptionShutdownCE");
- }
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- HelloworldClientImplCE.throwTestExceptionOnDestroy = false;
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplCE\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Exception on destroy - HelloworldClientImplCE\n",
- StatusImpl.statusString);
- }
-
- /*
- * Start up the composite and then stop it. Exception thrown in destory of composite
- * scoped component
- */
- @Test
- public void testDestroyExceptionShutdownC() throws Exception{
-
- HelloworldClientImplC.throwTestExceptionOnDestroy = true;
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- try {
- node.startComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it's thrown from the HelloworldClientImpl @Destroy method
- StatusImpl.appendStatus("Exception caught on node.startComposite", "LifecycleTestCase.testDestroyExceptionShutdownC");
- }
-
- // send a message to the appropriate client
- Helloworld hwCE = node.getService(Helloworld.class, "HelloworldClientC");
- System.out.println(hwCE.sayHello("name"));
- // don't need to catch exception here as the component instance won't
- // be destroyed until shutdown
-
- // stop a composite
- try {
- node.stopComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it will complain about the composite not being started
- StatusImpl.appendStatus("Exception caught on node.stopComposite", "LifecycleTestCase.testDestroyExceptionShutdownC");
- }
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- HelloworldClientImplC.throwTestExceptionOnDestroy = false;
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplCE\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplC\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientC#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientC#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Exception on destroy - HelloworldClientImplC\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplCE\n",
- StatusImpl.statusString);
- }
-
- /*
- * Start up the composite and then stop it. Exception thrown in destory of stateless
- * scoped component
- */
- @Test
- public void testDestroyExceptionShutdownS() throws Exception{
-
- HelloworldClientImplS.throwTestExceptionOnDestroy = true;
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- try {
- node.startComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it's thrown from the HelloworldClientImpl @Destroy method
- StatusImpl.appendStatus("Exception caught on node.startComposite", "LifecycleTestCase.testDestroyExceptionShutdownS");
- }
-
- // send a message to the appropriate client
- try {
- Helloworld hwCE = node.getService(Helloworld.class, "HelloworldClientS");
- System.out.println(hwCE.sayHello("name"));
- } catch (Exception exception) {
- // exception will be thrown when component instance is discarded
- // after the message has been processed
- }
-
- // stop a composite
- try {
- node.stopComposite("HelloworldContrib", "lifecycle.composite");
- } catch (Exception exception) {
- // it will complain about the composite not being started
- StatusImpl.appendStatus("Exception caught on sayHello()", "LifecycleTestCase.testDestroyExceptionShutdownS");
- }
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- HelloworldClientImplS.throwTestExceptionOnDestroy = false;
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplCE\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplS\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientS#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Exception on destroy - HelloworldClientImplS\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplCE\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientS#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n",
- StatusImpl.statusString);
- }
-
- /*
- * Start up the composite. Send a message where the processing sends an
- * exception. App exception has no material affect and the scenario is the
- * same as just sending normal messages and stopping the runtime
- */
- @Test
- public void testAppExceptionShutdown() throws Exception{
-
- TuscanyRuntime tuscanyRuntime = TuscanyRuntime.newInstance();
-
- // create a Tuscany node
- node = tuscanyRuntime.createNode();
-
- // install a contribution
- node.installContribution("HelloworldContrib", "target/classes", null, null);
-
- // start a composite
- node.startComposite("HelloworldContrib", "lifecycle.composite");
-
- // send a message to each client. The last one throws and exception
- Helloworld hwCE = node.getService(Helloworld.class, "HelloworldClientCE");
- System.out.println(hwCE.sayHello("name"));
- Helloworld hwC = node.getService(Helloworld.class, "HelloworldClientC");
- System.out.println(hwC.sayHello("name"));
- Helloworld hwS = node.getService(Helloworld.class, "HelloworldClientC");
- System.out.println(hwS.sayHello("name"));
- try {
- Helloworld hw = node.getService(Helloworld.class, "HelloworldC");
- hw.throwException("name");
- } catch (Exception ex) {
- // do nothing
- StatusImpl.appendStatus("Exception caught on throwException()", "LifecycleTestCase.testAppExceptionShutdown");
- }
-
- // stop a composite
- node.stopComposite("HelloworldContrib", "lifecycle.composite");
-
- // uninstall a constribution
- node.uninstallContribution("HelloworldContrib");
-
- // stop a Tuscany node
- node.stop();
-
- // stop the runtime
- tuscanyRuntime.stop();
-
- // see what happened
- System.out.println(StatusImpl.statusString);
- Assert.assertEquals("Service binding start - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Implementation start - HelloworldServiceTestImpl\n" +
- "Service binding start - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplCE\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Init - HelloworldClientImplC\n" +
- "Reference binding start - EndpointReference: URI = HelloworldClientC#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Exception caught on throwException() - LifecycleTestCase.testAppExceptionShutdown\n" +
- "Service binding stop - Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Service binding stop - Endpoint: URI = HelloworldServiceTestImpl#service-binding(Helloworld/lifecycle)\n" +
- "Implementation stop - HelloworldServiceTestImpl\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientC#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplC\n" +
- "Reference binding stop - EndpointReference: URI = HelloworldClientCE#reference-binding(service/lifecycle) WIRED_TARGET_FOUND_AND_MATCHED Target = Endpoint: URI = HelloworldService#service-binding(Helloworld/lifecycle)\n" +
- "Destroy - HelloworldClientImplCE\n",
- StatusImpl.statusString);
- }
-
-}
|