From bdd0a41aed7edf21ec2a65cfa17a86af2ef8c48a Mon Sep 17 00:00:00 2001 From: dims Date: Tue, 17 Jun 2008 00:23:01 +0000 Subject: Move Tuscany from Incubator to top level. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@668359 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/sca-node/tutorial/catalog-ejb/pom.xml | 110 ++++++++ .../src/main/java/services/ejb/CatalogEJBHome.java | 28 ++ .../main/java/services/ejb/CatalogEJBRemote.java | 28 ++ .../src/main/java/services/ejb/Vegetable.java | 54 ++++ .../ejb/VegetablesCatalogEJBSessionBean.java | 62 +++++ .../src/main/resources/META-INF/ejb-jar.xml | 35 +++ .../src/main/resources/META-INF/openejb-jar.xml | 78 ++++++ .../main/resources/META-INF/sca-contribution.xml | 24 ++ .../resources/VegetablesCatalogEJB.componentType | 26 ++ .../src/main/resources/catalog-ejb.composite | 31 +++ .../test/java/client/CatalogEJBClientTestCase.java | 67 +++++ .../java/org/omg/stub/javax/ejb/_EJBHome_Stub.java | 223 ++++++++++++++++ .../org/omg/stub/javax/ejb/_EJBObject_Stub.java | 252 ++++++++++++++++++ .../java/org/omg/stub/javax/ejb/_Handle_Stub.java | 89 +++++++ .../org/omg/stub/javax/ejb/_HomeHandle_Stub.java | 89 +++++++ .../java/services/ejb/_CatalogEJBHome_Stub.java | 269 +++++++++++++++++++ .../java/services/ejb/_CatalogEJBRemote_Stub.java | 292 +++++++++++++++++++++ 17 files changed, 1757 insertions(+) create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/pom.xml create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/CatalogEJBHome.java create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/CatalogEJBRemote.java create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/Vegetable.java create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/VegetablesCatalogEJBSessionBean.java create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/ejb-jar.xml create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/openejb-jar.xml create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/sca-contribution.xml create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/VegetablesCatalogEJB.componentType create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/catalog-ejb.composite create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/client/CatalogEJBClientTestCase.java create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_EJBHome_Stub.java create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_EJBObject_Stub.java create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_Handle_Stub.java create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_HomeHandle_Stub.java create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/services/ejb/_CatalogEJBHome_Stub.java create mode 100644 sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/services/ejb/_CatalogEJBRemote_Stub.java (limited to 'sandbox/sebastien/java/sca-node/tutorial/catalog-ejb') diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/pom.xml b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/pom.xml new file mode 100644 index 0000000000..574b53b110 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/pom.xml @@ -0,0 +1,110 @@ + + + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-tutorial + 2.0-incubating-SNAPSHOT + ../pom.xml + + + tutorial-catalog-ejb + Apache Tuscany SCA Tutorial Catalog EJB + jar + + + + org.apache.geronimo.specs + geronimo-ejb_3.0_spec + 1.0 + provided + + + + junit + junit + 4.2 + test + + + + org.apache.geronimo.modules + geronimo-openejb + 2.1.1 + test + + + org.apache.geronimo.modules + geronimo-connector + + + org.apache.geronimo.modules + geronimo-persistence-jpa10 + + + org.apache.openejb + openejb-ejbd + + + org.apache.openejb + openejb-server + + + org.apache.openejb + openejb-loader + + + org.apache.openejb + openejb-jee + + + org.apache.openejb + openejb-ejbd + + + org.apache.openejb + openejb-javaagent + + + com.sun.xml.bind + jaxb-impl + + + + + + + + ${artifactId} + + + ${pom.basedir}/src/main/resources + true + + + + + + diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/CatalogEJBHome.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/CatalogEJBHome.java new file mode 100644 index 0000000000..c7ad31b682 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/CatalogEJBHome.java @@ -0,0 +1,28 @@ +/* + * 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 services.ejb; + +import javax.ejb.EJBHome; + +public interface CatalogEJBHome extends EJBHome { + + CatalogEJBRemote create() throws javax.ejb.CreateException, java.rmi.RemoteException; + +} diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/CatalogEJBRemote.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/CatalogEJBRemote.java new file mode 100644 index 0000000000..7e79fc8b9d --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/CatalogEJBRemote.java @@ -0,0 +1,28 @@ +/* + * 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 services.ejb; + +import java.rmi.RemoteException; + +import javax.ejb.EJBObject; + +public interface CatalogEJBRemote extends EJBObject { + Vegetable[] get() throws RemoteException; +} diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/Vegetable.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/Vegetable.java new file mode 100644 index 0000000000..cf81539ba5 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/Vegetable.java @@ -0,0 +1,54 @@ +/* + * 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 services.ejb; + +import java.io.Serializable; + +public class Vegetable implements Serializable { + private static final long serialVersionUID = -5847326138627338217L; + + private String name; + private String price; + + public Vegetable() { + } + + public Vegetable(String name, String price) { + this.name = name; + this.price = price; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getPrice() { + return price; + } + + public void setPrice(String price) { + this.price = price; + } + +} diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/VegetablesCatalogEJBSessionBean.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/VegetablesCatalogEJBSessionBean.java new file mode 100644 index 0000000000..ff2004fe1b --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/java/services/ejb/VegetablesCatalogEJBSessionBean.java @@ -0,0 +1,62 @@ +/* + * 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 services.ejb; + +import java.rmi.RemoteException; +import java.util.ArrayList; +import java.util.List; + +import javax.ejb.CreateException; +import javax.ejb.EJBException; +import javax.ejb.SessionBean; +import javax.ejb.SessionContext; + +public class VegetablesCatalogEJBSessionBean implements SessionBean { + private static final long serialVersionUID = -7421020241291271838L; + + private List catalog = new ArrayList(); + + public VegetablesCatalogEJBSessionBean() { + catalog.add(new Vegetable("Broccoli", "$2.99")); + catalog.add(new Vegetable("Asparagus", "$3.55")); + catalog.add(new Vegetable("Cauliflower", "$1.55")); + } + + public Vegetable[] get() { + Vegetable[] catalogArray = new Vegetable[catalog.size()]; + catalog.toArray(catalogArray); + return catalogArray; + } + + public void ejbCreate() throws CreateException { + } + + public void ejbActivate() throws EJBException, RemoteException { + } + + public void ejbPassivate() throws EJBException, RemoteException { + } + + public void ejbRemove() throws EJBException, RemoteException { + } + + public void setSessionContext(SessionContext arg0) throws EJBException, RemoteException { + } +} diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/ejb-jar.xml b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/ejb-jar.xml new file mode 100644 index 0000000000..a0a7adf6fa --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/ejb-jar.xml @@ -0,0 +1,35 @@ + + + + + Apache Tuscany SCA Tutorial Catalog EJB + + + VegetablesCatalogEJB + services.ejb.CatalogEJBHome + services.ejb.CatalogEJBRemote + services.ejb.VegetablesCatalogEJBSessionBean + Stateless + Container + + + diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/openejb-jar.xml b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/openejb-jar.xml new file mode 100644 index 0000000000..04d77ee39e --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/openejb-jar.xml @@ -0,0 +1,78 @@ + + + + + + ${pom.groupId} + ${pom.artifactId} + ${version} + jar + + + + org.apache.geronimo.configs + j2ee-corba-yoko + + car + + + + + + + + + VegetablesCatalogEJB + VegetablesCatalogEJB + IdentityTokenNoSecurity + + + + + + IdentityTokenNoSecurity + + UnprotectedServer + + + + + + + + + + + + + + + + + + + diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/sca-contribution.xml b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..2e46b31047 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,24 @@ + + + + + + \ No newline at end of file diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/VegetablesCatalogEJB.componentType b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/VegetablesCatalogEJB.componentType new file mode 100644 index 0000000000..bc57b35e79 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/VegetablesCatalogEJB.componentType @@ -0,0 +1,26 @@ + + + + + + + + + diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/catalog-ejb.composite b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/catalog-ejb.composite new file mode 100644 index 0000000000..f733524809 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/main/resources/catalog-ejb.composite @@ -0,0 +1,31 @@ + + + + + + + + + + + + diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/client/CatalogEJBClientTestCase.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/client/CatalogEJBClientTestCase.java new file mode 100644 index 0000000000..f9bd16f050 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/client/CatalogEJBClientTestCase.java @@ -0,0 +1,67 @@ +/* + * 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 client; + +import javax.naming.InitialContext; +import javax.rmi.PortableRemoteObject; + +import org.junit.Ignore; +import org.junit.Test; + +import services.ejb.CatalogEJBHome; +import services.ejb.CatalogEJBRemote; +import services.ejb.Vegetable; + +/** + * A test client for the catalog EJB. + * + * @version $Rev$ $Date$ + */ +public class CatalogEJBClientTestCase { + + @Test + @Ignore // Ignore the test case for maven build, remove it if you want to run + public void testCatalogEJB() throws Exception { + InitialContext context = new InitialContext(); + + Object o = context.lookup("corbaname:iiop:1.2@localhost:1050#VegetablesCatalogEJB"); + + // The narrow(...) call requires generated EJB stubs. Tuscany binding.ejb doesn't the stubs + CatalogEJBHome home = (CatalogEJBHome)PortableRemoteObject.narrow(o, CatalogEJBHome.class); + + // The following call will hang with SUN jdk1.6.0_05, please use SUN or IBM jdk 1.5.x instead + CatalogEJBRemote catalog = home.create(); + + Vegetable items[] = catalog.get(); + for (Vegetable item : items) { + System.out.println(item.getName() + " " + item.getPrice()); + } + } + + public static void main(String args[]) throws Exception { + String javaVersion = System.getProperty("java.version"); + String javaVendor = System.getProperty("java.vendor"); + + if (javaVendor.toUpperCase().contains("SUN") && javaVersion.startsWith("1.6.")) { + System.err.println("The EJB invocation may hang due to a bug in " + javaVendor + ":" + javaVersion); + } + new CatalogEJBClientTestCase().testCatalogEJB(); + } + +} diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_EJBHome_Stub.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_EJBHome_Stub.java new file mode 100644 index 0000000000..6930093042 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_EJBHome_Stub.java @@ -0,0 +1,223 @@ +/* + * 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. + */ +// Stub class generated by rmic, do not edit. +// Contents subject to change without notice. + +package org.omg.stub.javax.ejb; + +import java.rmi.RemoteException; +import java.rmi.UnexpectedException; + +import javax.ejb.EJBHome; +import javax.ejb.EJBMetaData; +import javax.ejb.Handle; +import javax.ejb.HomeHandle; +import javax.ejb.RemoveException; +import javax.rmi.CORBA.Stub; +import javax.rmi.CORBA.Util; + +import org.omg.CORBA.SystemException; +import org.omg.CORBA.portable.ApplicationException; +import org.omg.CORBA.portable.OutputStream; +import org.omg.CORBA.portable.RemarshalException; +import org.omg.CORBA.portable.ServantObject; +import org.omg.CORBA_2_3.portable.InputStream; + +public class _EJBHome_Stub extends Stub implements EJBHome { + + private static final String[] _type_ids = { + "RMI:javax.ejb.EJBHome:0000000000000000" + }; + + public String[] _ids() { + return _type_ids; + } + + public EJBMetaData getEJBMetaData() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("_get_EJBMetaData", true); + in = (InputStream)_invoke(out); + return (EJBMetaData) in.read_value(EJBMetaData.class); + } catch (ApplicationException ex) { + in = (InputStream) ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_EJBMetaData",javax.ejb.EJBHome.class); + if (so == null) { + continue; + } + try { + EJBMetaData result = ((javax.ejb.EJBHome)so.servant).getEJBMetaData(); + return (EJBMetaData)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public HomeHandle getHomeHandle() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("_get_homeHandle", true); + in = (InputStream)_invoke(out); + return (HomeHandle) in.read_abstract_interface(HomeHandle.class); + } catch (ApplicationException ex) { + in = (InputStream) ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_homeHandle",javax.ejb.EJBHome.class); + if (so == null) { + continue; + } + try { + HomeHandle result = ((javax.ejb.EJBHome)so.servant).getHomeHandle(); + return (HomeHandle)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public void remove(Handle arg0) throws RemoteException, RemoveException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("remove__javax_ejb_Handle", true); + Util.writeAbstractObject(out,arg0); + _invoke(out); + return; + } catch (ApplicationException ex) { + in = (InputStream) ex.getInputStream(); + String id = in.read_string(); + if (id.equals("IDL:javax/ejb/RemoveEx:1.0")) { + throw (RemoveException) in.read_value(RemoveException.class); + } + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("remove__javax_ejb_Handle",javax.ejb.EJBHome.class); + if (so == null) { + continue; + } + try { + Handle arg0Copy = (Handle) Util.copyObject(arg0,_orb()); + ((javax.ejb.EJBHome)so.servant).remove(arg0Copy); + return; + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + if (exCopy instanceof RemoveException) { + throw (RemoveException)exCopy; + } + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public void remove(Object arg0) throws RemoteException, RemoveException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("remove__java_lang_Object", true); + Util.writeAny(out,arg0); + _invoke(out); + return; + } catch (ApplicationException ex) { + in = (InputStream) ex.getInputStream(); + String id = in.read_string(); + if (id.equals("IDL:javax/ejb/RemoveEx:1.0")) { + throw (RemoveException) in.read_value(RemoveException.class); + } + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("remove__java_lang_Object",javax.ejb.EJBHome.class); + if (so == null) { + continue; + } + try { + Object arg0Copy = (Object) Util.copyObject(arg0,_orb()); + ((javax.ejb.EJBHome)so.servant).remove(arg0Copy); + return; + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + if (exCopy instanceof RemoveException) { + throw (RemoveException)exCopy; + } + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } +} diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_EJBObject_Stub.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_EJBObject_Stub.java new file mode 100644 index 0000000000..3482ebb9ec --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_EJBObject_Stub.java @@ -0,0 +1,252 @@ +/* + * 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. + */ +// Stub class generated by rmic, do not edit. +// Contents subject to change without notice. + +package org.omg.stub.javax.ejb; + +import java.rmi.RemoteException; +import java.rmi.UnexpectedException; + +import javax.ejb.EJBHome; +import javax.ejb.EJBObject; +import javax.ejb.Handle; +import javax.ejb.RemoveException; +import javax.rmi.CORBA.Stub; +import javax.rmi.CORBA.Util; + +import org.omg.CORBA.SystemException; +import org.omg.CORBA.portable.ApplicationException; +import org.omg.CORBA.portable.InputStream; +import org.omg.CORBA.portable.OutputStream; +import org.omg.CORBA.portable.RemarshalException; +import org.omg.CORBA.portable.ServantObject; + +public class _EJBObject_Stub extends Stub implements EJBObject { + + private static final String[] _type_ids = { + "RMI:javax.ejb.EJBObject:0000000000000000" + }; + + public String[] _ids() { + return _type_ids; + } + + public EJBHome getEJBHome() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("_get_EJBHome", true); + in = _invoke(out); + return (EJBHome) in.read_Object(EJBHome.class); + } catch (ApplicationException ex) { + in = ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_EJBHome",javax.ejb.EJBObject.class); + if (so == null) { + continue; + } + try { + EJBHome result = ((javax.ejb.EJBObject)so.servant).getEJBHome(); + return (EJBHome)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public Handle getHandle() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + org.omg.CORBA_2_3.portable.InputStream in = null; + try { + try { + OutputStream out = _request("_get_handle", true); + in = (org.omg.CORBA_2_3.portable.InputStream)_invoke(out); + return (Handle) in.read_abstract_interface(Handle.class); + } catch (ApplicationException ex) { + in = (org.omg.CORBA_2_3.portable.InputStream) ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_handle",javax.ejb.EJBObject.class); + if (so == null) { + continue; + } + try { + Handle result = ((javax.ejb.EJBObject)so.servant).getHandle(); + return (Handle)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public Object getPrimaryKey() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("_get_primaryKey", true); + in = _invoke(out); + return Util.readAny(in); + } catch (ApplicationException ex) { + in = ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_primaryKey",javax.ejb.EJBObject.class); + if (so == null) { + continue; + } + try { + Object result = ((javax.ejb.EJBObject)so.servant).getPrimaryKey(); + return (Object)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public boolean isIdentical(EJBObject arg0) throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("isIdentical", true); + Util.writeRemoteObject(out,arg0); + in = _invoke(out); + return in.read_boolean(); + } catch (ApplicationException ex) { + in = ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("isIdentical",javax.ejb.EJBObject.class); + if (so == null) { + continue; + } + try { + EJBObject arg0Copy = (EJBObject) Util.copyObject(arg0,_orb()); + return ((javax.ejb.EJBObject)so.servant).isIdentical(arg0Copy); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public void remove() throws RemoteException, RemoveException { + while(true) { + if (!Util.isLocal(this)) { + org.omg.CORBA_2_3.portable.InputStream in = null; + try { + try { + OutputStream out = _request("remove", true); + _invoke(out); + return; + } catch (ApplicationException ex) { + in = (org.omg.CORBA_2_3.portable.InputStream) ex.getInputStream(); + String id = in.read_string(); + if (id.equals("IDL:javax/ejb/RemoveEx:1.0")) { + throw (RemoveException) in.read_value(RemoveException.class); + } + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("remove",javax.ejb.EJBObject.class); + if (so == null) { + continue; + } + try { + ((javax.ejb.EJBObject)so.servant).remove(); + return; + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + if (exCopy instanceof RemoveException) { + throw (RemoveException)exCopy; + } + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } +} diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_Handle_Stub.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_Handle_Stub.java new file mode 100644 index 0000000000..d848fbb280 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_Handle_Stub.java @@ -0,0 +1,89 @@ +/* + * 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. + */ +// Stub class generated by rmic, do not edit. +// Contents subject to change without notice. + +package org.omg.stub.javax.ejb; + +import java.rmi.Remote; +import java.rmi.RemoteException; +import java.rmi.UnexpectedException; + +import javax.ejb.EJBObject; +import javax.ejb.Handle; +import javax.rmi.CORBA.Stub; +import javax.rmi.CORBA.Util; + +import org.omg.CORBA.SystemException; +import org.omg.CORBA.portable.ApplicationException; +import org.omg.CORBA.portable.InputStream; +import org.omg.CORBA.portable.OutputStream; +import org.omg.CORBA.portable.RemarshalException; +import org.omg.CORBA.portable.ServantObject; + +public class _Handle_Stub extends Stub implements Handle, +Remote { + + private static final String[] _type_ids = { + "RMI:javax.ejb.Handle:0000000000000000" + }; + + public String[] _ids() { + return _type_ids; + } + + public EJBObject getEJBObject() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("_get_EJBObject", true); + in = _invoke(out); + return (EJBObject) in.read_Object(EJBObject.class); + } catch (ApplicationException ex) { + in = ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_EJBObject",javax.ejb.Handle.class); + if (so == null) { + continue; + } + try { + EJBObject result = ((javax.ejb.Handle)so.servant).getEJBObject(); + return (EJBObject)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } +} diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_HomeHandle_Stub.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_HomeHandle_Stub.java new file mode 100644 index 0000000000..6efc86b608 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/org/omg/stub/javax/ejb/_HomeHandle_Stub.java @@ -0,0 +1,89 @@ +/* + * 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. + */ +// Stub class generated by rmic, do not edit. +// Contents subject to change without notice. + +package org.omg.stub.javax.ejb; + +import java.rmi.Remote; +import java.rmi.RemoteException; +import java.rmi.UnexpectedException; + +import javax.ejb.EJBHome; +import javax.ejb.HomeHandle; +import javax.rmi.CORBA.Stub; +import javax.rmi.CORBA.Util; + +import org.omg.CORBA.SystemException; +import org.omg.CORBA.portable.ApplicationException; +import org.omg.CORBA.portable.InputStream; +import org.omg.CORBA.portable.OutputStream; +import org.omg.CORBA.portable.RemarshalException; +import org.omg.CORBA.portable.ServantObject; + +public class _HomeHandle_Stub extends Stub implements HomeHandle, +Remote { + + private static final String[] _type_ids = { + "RMI:javax.ejb.HomeHandle:0000000000000000" + }; + + public String[] _ids() { + return _type_ids; + } + + public EJBHome getEJBHome() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("_get_EJBHome", true); + in = _invoke(out); + return (EJBHome) in.read_Object(EJBHome.class); + } catch (ApplicationException ex) { + in = ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_EJBHome",javax.ejb.HomeHandle.class); + if (so == null) { + continue; + } + try { + EJBHome result = ((javax.ejb.HomeHandle)so.servant).getEJBHome(); + return (EJBHome)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } +} diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/services/ejb/_CatalogEJBHome_Stub.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/services/ejb/_CatalogEJBHome_Stub.java new file mode 100644 index 0000000000..bdc1a5cfd5 --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/services/ejb/_CatalogEJBHome_Stub.java @@ -0,0 +1,269 @@ +/* + * 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. + */ +// Stub class generated by rmic, do not edit. +// Contents subject to change without notice. + +package services.ejb; + +import java.rmi.RemoteException; +import java.rmi.UnexpectedException; + +import javax.ejb.CreateException; +import javax.ejb.EJBMetaData; +import javax.ejb.Handle; +import javax.ejb.HomeHandle; +import javax.ejb.RemoveException; +import javax.rmi.CORBA.Stub; +import javax.rmi.CORBA.Util; + +import org.omg.CORBA.SystemException; +import org.omg.CORBA.portable.ApplicationException; +import org.omg.CORBA.portable.OutputStream; +import org.omg.CORBA.portable.RemarshalException; +import org.omg.CORBA.portable.ServantObject; +import org.omg.CORBA_2_3.portable.InputStream; + +public class _CatalogEJBHome_Stub extends Stub implements CatalogEJBHome { + + private static final String[] _type_ids = { + "RMI:services.ejb.CatalogEJBHome:0000000000000000", + "RMI:javax.ejb.EJBHome:0000000000000000" + }; + + public String[] _ids() { + return _type_ids; + } + + public EJBMetaData getEJBMetaData() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("_get_EJBMetaData", true); + in = (InputStream)_invoke(out); + return (EJBMetaData) in.read_value(EJBMetaData.class); + } catch (ApplicationException ex) { + in = (InputStream) ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_EJBMetaData",javax.ejb.EJBHome.class); + if (so == null) { + continue; + } + try { + EJBMetaData result = ((javax.ejb.EJBHome)so.servant).getEJBMetaData(); + return (EJBMetaData)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public HomeHandle getHomeHandle() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("_get_homeHandle", true); + in = (InputStream)_invoke(out); + return (HomeHandle) in.read_abstract_interface(HomeHandle.class); + } catch (ApplicationException ex) { + in = (InputStream) ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_homeHandle",javax.ejb.EJBHome.class); + if (so == null) { + continue; + } + try { + HomeHandle result = ((javax.ejb.EJBHome)so.servant).getHomeHandle(); + return (HomeHandle)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public void remove(Handle arg0) throws RemoteException, RemoveException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("remove__javax_ejb_Handle", true); + Util.writeAbstractObject(out,arg0); + _invoke(out); + return; + } catch (ApplicationException ex) { + in = (InputStream) ex.getInputStream(); + String id = in.read_string(); + if (id.equals("IDL:javax/ejb/RemoveEx:1.0")) { + throw (RemoveException) in.read_value(RemoveException.class); + } + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("remove__javax_ejb_Handle",javax.ejb.EJBHome.class); + if (so == null) { + continue; + } + try { + Handle arg0Copy = (Handle) Util.copyObject(arg0,_orb()); + ((javax.ejb.EJBHome)so.servant).remove(arg0Copy); + return; + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + if (exCopy instanceof RemoveException) { + throw (RemoveException)exCopy; + } + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public void remove(Object arg0) throws RemoteException, RemoveException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("remove__java_lang_Object", true); + Util.writeAny(out,arg0); + _invoke(out); + return; + } catch (ApplicationException ex) { + in = (InputStream) ex.getInputStream(); + String id = in.read_string(); + if (id.equals("IDL:javax/ejb/RemoveEx:1.0")) { + throw (RemoveException) in.read_value(RemoveException.class); + } + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("remove__java_lang_Object",javax.ejb.EJBHome.class); + if (so == null) { + continue; + } + try { + Object arg0Copy = (Object) Util.copyObject(arg0,_orb()); + ((javax.ejb.EJBHome)so.servant).remove(arg0Copy); + return; + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + if (exCopy instanceof RemoveException) { + throw (RemoveException)exCopy; + } + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public CatalogEJBRemote create() throws CreateException, RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("create", true); + in = (InputStream)_invoke(out); + return (CatalogEJBRemote) in.read_Object(CatalogEJBRemote.class); + } catch (ApplicationException ex) { + in = (InputStream) ex.getInputStream(); + String id = in.read_string(); + if (id.equals("IDL:javax/ejb/CreateEx:1.0")) { + throw (CreateException) in.read_value(CreateException.class); + } + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("create",services.ejb.CatalogEJBHome.class); + if (so == null) { + continue; + } + try { + CatalogEJBRemote result = ((services.ejb.CatalogEJBHome)so.servant).create(); + return (CatalogEJBRemote)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + if (exCopy instanceof CreateException) { + throw (CreateException)exCopy; + } + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } +} diff --git a/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/services/ejb/_CatalogEJBRemote_Stub.java b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/services/ejb/_CatalogEJBRemote_Stub.java new file mode 100644 index 0000000000..a24108714e --- /dev/null +++ b/sandbox/sebastien/java/sca-node/tutorial/catalog-ejb/src/test/java/services/ejb/_CatalogEJBRemote_Stub.java @@ -0,0 +1,292 @@ +/* + * 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. + */ +// Stub class generated by rmic, do not edit. +// Contents subject to change without notice. + +package services.ejb; + +import java.rmi.RemoteException; +import java.rmi.UnexpectedException; + +import javax.ejb.EJBHome; +import javax.ejb.EJBObject; +import javax.ejb.Handle; +import javax.ejb.RemoveException; +import javax.rmi.CORBA.Stub; +import javax.rmi.CORBA.Util; + +import org.omg.CORBA.SystemException; +import org.omg.CORBA.portable.ApplicationException; +import org.omg.CORBA.portable.InputStream; +import org.omg.CORBA.portable.OutputStream; +import org.omg.CORBA.portable.RemarshalException; +import org.omg.CORBA.portable.ServantObject; + +public class _CatalogEJBRemote_Stub extends Stub implements CatalogEJBRemote { + + private static final String[] _type_ids = { + "RMI:services.ejb.CatalogEJBRemote:0000000000000000", + "RMI:javax.ejb.EJBObject:0000000000000000" + }; + + public String[] _ids() { + return _type_ids; + } + + public EJBHome getEJBHome() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("_get_EJBHome", true); + in = _invoke(out); + return (EJBHome) in.read_Object(EJBHome.class); + } catch (ApplicationException ex) { + in = ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_EJBHome",javax.ejb.EJBObject.class); + if (so == null) { + continue; + } + try { + EJBHome result = ((javax.ejb.EJBObject)so.servant).getEJBHome(); + return (EJBHome)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public Handle getHandle() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + org.omg.CORBA_2_3.portable.InputStream in = null; + try { + try { + OutputStream out = _request("_get_handle", true); + in = (org.omg.CORBA_2_3.portable.InputStream)_invoke(out); + return (Handle) in.read_abstract_interface(Handle.class); + } catch (ApplicationException ex) { + in = (org.omg.CORBA_2_3.portable.InputStream) ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_handle",javax.ejb.EJBObject.class); + if (so == null) { + continue; + } + try { + Handle result = ((javax.ejb.EJBObject)so.servant).getHandle(); + return (Handle)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public Object getPrimaryKey() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("_get_primaryKey", true); + in = _invoke(out); + return Util.readAny(in); + } catch (ApplicationException ex) { + in = ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("_get_primaryKey",javax.ejb.EJBObject.class); + if (so == null) { + continue; + } + try { + Object result = ((javax.ejb.EJBObject)so.servant).getPrimaryKey(); + return (Object)Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public boolean isIdentical(EJBObject arg0) throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + InputStream in = null; + try { + try { + OutputStream out = _request("isIdentical", true); + Util.writeRemoteObject(out,arg0); + in = _invoke(out); + return in.read_boolean(); + } catch (ApplicationException ex) { + in = ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("isIdentical",javax.ejb.EJBObject.class); + if (so == null) { + continue; + } + try { + EJBObject arg0Copy = (EJBObject) Util.copyObject(arg0,_orb()); + return ((javax.ejb.EJBObject)so.servant).isIdentical(arg0Copy); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public void remove() throws RemoteException, RemoveException { + while(true) { + if (!Util.isLocal(this)) { + org.omg.CORBA_2_3.portable.InputStream in = null; + try { + try { + OutputStream out = _request("remove", true); + _invoke(out); + return; + } catch (ApplicationException ex) { + in = (org.omg.CORBA_2_3.portable.InputStream) ex.getInputStream(); + String id = in.read_string(); + if (id.equals("IDL:javax/ejb/RemoveEx:1.0")) { + throw (RemoveException) in.read_value(RemoveException.class); + } + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("remove",javax.ejb.EJBObject.class); + if (so == null) { + continue; + } + try { + ((javax.ejb.EJBObject)so.servant).remove(); + return; + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + if (exCopy instanceof RemoveException) { + throw (RemoveException)exCopy; + } + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } + + public Vegetable[] get() throws RemoteException { + while(true) { + if (!Util.isLocal(this)) { + org.omg.CORBA_2_3.portable.InputStream in = null; + try { + try { + OutputStream out = _request("get", true); + in = (org.omg.CORBA_2_3.portable.InputStream)_invoke(out); + return (Vegetable[]) in.read_value(Vegetable[].class); + } catch (ApplicationException ex) { + in = (org.omg.CORBA_2_3.portable.InputStream) ex.getInputStream(); + String id = in.read_string(); + throw new UnexpectedException(id); + } catch (RemarshalException ex) { + continue; + } + } catch (SystemException ex) { + throw Util.mapSystemException(ex); + } finally { + _releaseReply(in); + } + } else { + ServantObject so = _servant_preinvoke("get",services.ejb.CatalogEJBRemote.class); + if (so == null) { + continue; + } + try { + Vegetable[] result = ((services.ejb.CatalogEJBRemote)so.servant).get(); + return (Vegetable[])Util.copyObject(result,_orb()); + } catch (Throwable ex) { + Throwable exCopy = (Throwable)Util.copyObject(ex,_orb()); + throw Util.wrapException(exCopy); + } finally { + _servant_postinvoke(so); + } + } + } + } +} -- cgit v1.2.3