├── .github └── dependabot.yml ├── .gitignore ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE.md ├── NOTICE.md ├── README ├── README.md ├── csiv2-idl ├── pom.xml └── src │ └── main │ ├── idl │ ├── CSI.idl │ ├── CSIIOP.idl │ └── GSSUP.idl │ └── java │ └── module-info.java ├── exception-annotation-processor ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── module-info.java │ │ └── org │ │ │ └── glassfish │ │ │ └── corba │ │ │ └── annotation │ │ │ └── processing │ │ │ ├── ExceptionWrapperProcessor.java │ │ │ └── FileGenerator.java │ └── resources │ │ └── META-INF │ │ └── services │ │ └── javax.annotation.processing.Processor │ └── test │ └── java │ └── org │ └── glassfish │ └── corba │ └── annotation │ └── processing │ └── ExceptionWrapperProcessorTestCase.java ├── functional-tests ├── README ├── pom.xml └── src │ └── test │ ├── idl │ ├── adapteractivator.idl │ ├── clientinterceptor.idl │ ├── clientrequestinfo.idl │ ├── codeset.idl │ ├── corba │ │ ├── connectintercept_1_4 │ │ │ └── Ex.idl │ │ ├── exceptiondetailsc │ │ │ └── idlI.idl │ │ ├── folb_8_1 │ │ │ └── folb.idl │ │ ├── hcks │ │ │ └── hcks.idl │ │ ├── islocal │ │ │ └── idlI.idl │ │ ├── poapolicies │ │ │ └── Hello.idl │ │ ├── repid │ │ │ └── BoxedValueTypes.idl │ │ └── requestpartitioning │ │ │ └── Tester.idl │ ├── fwddecl_legal.idl │ ├── idlj_ConstantsAndTypedefs.idl │ ├── idlj_NestedTypeDeclsAndInheritedTypes.idl │ ├── iorinterceptor.idl │ ├── iorintsockfact.idl │ ├── legacy │ │ ├── activation.idl │ │ ├── clientinterceptor.idl │ │ ├── clientrequestinfo.idl │ │ ├── corba │ │ │ ├── invocation │ │ │ │ └── hello.idl │ │ │ └── tcpreadtimeout │ │ │ │ └── idlI.idl │ │ ├── exceptiondetailsc.idl │ │ ├── hcks.idl │ │ ├── islocal.idl │ │ ├── legacybootstrapserver.idl │ │ ├── oneway.idl │ │ └── orbinit.idl │ ├── mantis_m4764130_SendingContext.idl │ ├── multiorb_policy.idl │ ├── ort-iorinterceptor.idl │ ├── pi │ │ └── serverinterceptor │ │ │ └── serverinterceptor.idl │ ├── poaandequals_wombat.idl │ ├── poacallback1.idl │ ├── poacallback2.idl │ ├── poamanager.idl │ ├── poatest.idl │ ├── purgecalls.idl │ ├── serverrequestinfo.idl │ ├── serviceexample.idl │ ├── systemexceptions.idl │ └── unarrow.idl │ └── java │ ├── com │ └── sun │ │ └── corba │ │ └── ee │ │ ├── impl │ │ ├── activation │ │ │ ├── CommandHandler.java │ │ │ ├── NameServiceStartThread.java │ │ │ ├── ORBConfiguratorPersistentImpl.java │ │ │ ├── ORBD.java │ │ │ ├── ProcessMonitorThread.java │ │ │ ├── RepositoryImpl.java │ │ │ ├── ServerMain.java │ │ │ ├── ServerManagerImpl.java │ │ │ ├── ServerTableEntry.java │ │ │ └── ServerTool.java │ │ └── naming │ │ │ └── pcosnaming │ │ │ ├── InternalBindingKey.java │ │ │ ├── InternalBindingValue.java │ │ │ ├── NameServer.java │ │ │ ├── NameService.java │ │ │ ├── NamingContextImpl.java │ │ │ ├── PersistentBindingIterator.java │ │ │ └── ServantManagerImpl.java │ │ ├── internal │ │ ├── CosNaming │ │ │ └── BootstrapServer.java │ │ ├── Interceptors │ │ │ └── PIORB.java │ │ ├── POA │ │ │ └── POAORB.java │ │ ├── corba │ │ │ └── ORBSingleton.java │ │ └── iiop │ │ │ └── ORB.java │ │ └── spi │ │ └── JndiConstants.java │ ├── corba │ ├── Client.java │ ├── LegacyBootstrapServerTest.java │ ├── Server.java │ ├── adapteractivator │ │ ├── AdapterActivator.java │ │ ├── AdapterActivatorClient.java │ │ ├── AdapterActivatorServer.java │ │ └── HelloImpl.java │ ├── codeset │ │ ├── CharGenerator.java │ │ ├── Client.java │ │ ├── CodeSetTest.java │ │ ├── CustomMarshaledValueImpl.java │ │ └── Server.java │ ├── connectintercept_1_4 │ │ ├── CRI.java │ │ ├── CRIOrdered.java │ │ ├── Client.java │ │ ├── ClientORBInitializer.java │ │ ├── Common.java │ │ ├── ConnectIntercept_1_4Test.java │ │ ├── MyPIORB.java │ │ ├── MySocketFactory.java │ │ ├── ORBDBadServerIdHandler.java │ │ ├── ORBDListenPortsComponent.java │ │ ├── README.txt │ │ ├── SRI.java │ │ ├── SRIOrdered.java │ │ ├── ServerCommon.java │ │ ├── ServerIORInterceptor.java │ │ ├── ServerORBInitializer.java │ │ ├── ServerPersistent.java │ │ ├── ServerTransient.java │ │ └── TODO.txt │ ├── exceptiondetailsc │ │ ├── Client.java │ │ ├── ColocatedClientServer.java │ │ ├── ExceptionDetailSCTest.java │ │ ├── Server.java │ │ ├── idlIServantConnect.java │ │ ├── idlIServantPOA.java │ │ ├── rmiiException.java │ │ ├── rmiiI.java │ │ ├── rmiiIServantConnect.java │ │ └── rmiiIServantPOA.java │ ├── folb_8_1 │ │ ├── Client.java │ │ ├── ClientForTiming.java │ │ ├── ClientForTiming_Fs_F_C.java │ │ ├── ClientForTiming_Fs_F_NoC.java │ │ ├── ClientForTiming_Fs_NoF_C.java │ │ ├── ClientForTiming_Fs_NoF_NoC.java │ │ ├── ClientForTiming_NoFs_NoF_NoC.java │ │ ├── ClientTwoRefs.java │ │ ├── ClientWithSticky.java │ │ ├── ColocatedCS.java │ │ ├── ColocatedCSWithSticky.java │ │ ├── ColocatedClientTwoRefs.java │ │ ├── Common.java │ │ ├── FolbTest.java │ │ ├── IIOPPrimaryToContactInfoImpl.java │ │ ├── IORInterceptorImpl.java │ │ ├── IORToSocketInfoImpl.java │ │ ├── README.txt │ │ ├── Server.java │ │ ├── SocketFactoryImpl.java │ │ ├── ZeroPortServer1.java │ │ └── ZeroPortServer2.java │ ├── framework │ │ ├── CORBATest.java │ │ ├── CORBAUtil.java │ │ ├── Compiler.java │ │ ├── Controller.java │ │ ├── ControllerAdapter.java │ │ ├── DebugExec.java │ │ ├── EmmaControl.java │ │ ├── ExternalExec.java │ │ ├── FileOutputDecorator.java │ │ ├── GetID.java │ │ ├── IDLCompiler.java │ │ ├── InternalExec.java │ │ ├── InternalProcess.java │ │ ├── JavaCompiler.java │ │ ├── Loader.java │ │ ├── MethodEvent.java │ │ ├── MethodEventListener.java │ │ ├── ODebugExec.java │ │ ├── Options.java │ │ ├── PRO.java │ │ ├── Port.java │ │ ├── Post.java │ │ ├── Pre.java │ │ ├── ProxyInterceptor.java │ │ ├── RDebugExec.java │ │ ├── RMICompiler.java │ │ ├── RTMConstants.java │ │ ├── RTMUtilities.java │ │ ├── ReflectiveExec.java │ │ ├── ReflectiveWrapper.java │ │ ├── ResolveNS.java │ │ ├── TestngRunner.java │ │ ├── ThreadExec.java │ │ ├── ThreadProcess.java │ │ ├── TimedTest.java │ │ ├── TraceAccumulator.java │ │ ├── TraceElement.java │ │ ├── package.html │ │ └── statusU.java │ ├── fwddecl │ │ ├── Client.java │ │ └── ForwardDeclTest.java │ ├── giopheaderpadding │ │ ├── Client.java │ │ ├── ColocatedClientServer.java │ │ ├── GIOPHeaderPaddingTest.java │ │ ├── ServantLocator.java │ │ ├── Server.java │ │ ├── rmiiI.java │ │ └── rmiiIServantPOA.java │ ├── hcks │ │ ├── C.java │ │ ├── Client.java │ │ ├── ClientGrow.java │ │ ├── Client_1_1.java │ │ ├── ColocatedClientServer.java │ │ ├── ErrorAccumulator.java │ │ ├── HcksTest.java │ │ ├── MyInterceptor.java │ │ ├── MyORBInitializer.java │ │ ├── MyPOAORB.java │ │ ├── MyServantActivator.java │ │ ├── MyServantLocator.java │ │ ├── NonSerializableObject.java │ │ ├── README.txt │ │ ├── SendRecursiveTypePOAServant.java │ │ ├── SerializableObject.java │ │ ├── Server.java │ │ ├── ServerGrow.java │ │ ├── Server_1_1.java │ │ ├── SsPicInterceptor.java │ │ ├── U.java │ │ ├── idlControllerStaticServant.java │ │ ├── idlDeprecatedDynamicServant.java │ │ ├── idlDynInvokeHelper.java │ │ ├── idlDynamicServant.java │ │ ├── idlHEADERIServant.java │ │ ├── idlPOAServant.java │ │ ├── idlSAIServant.java │ │ ├── idlSLIServant.java │ │ ├── idlStaticServant.java │ │ ├── idlValueTypeAImpl.java │ │ ├── idlValueTypeBImpl.java │ │ ├── idlValueTypeCImpl.java │ │ ├── idlValueTypeDImpl.java │ │ ├── idlValueTypeEImpl.java │ │ ├── rmiiAttributesI.java │ │ ├── rmiiAttributesIServantPOA.java │ │ ├── rmiiI.java │ │ ├── rmiiIServant.java │ │ ├── rmiiIServantPOA.java │ │ └── rmiiMyException.java │ ├── invocation │ │ ├── Client.java │ │ └── InvocationTest.java │ ├── iorintsockfact │ │ ├── Client.java │ │ ├── Common.java │ │ ├── ExampleMakefile │ │ ├── IORInterceptor.java │ │ ├── IorIntSockFactTest.java │ │ ├── README.txt │ │ ├── Server.java │ │ ├── ServerORBInitializer.java │ │ └── SocketFactory.java │ ├── islocal │ │ ├── Client.java │ │ ├── ColocatedClientServer.java │ │ ├── CustomClassLoader.java │ │ ├── IsLocalTest.java │ │ ├── MyServantLocator.java │ │ ├── Server.java │ │ ├── idlIServantConnect.java │ │ ├── idlIServantPOA.java │ │ ├── rmiiI.java │ │ ├── rmiiIServantConnect.java │ │ └── rmiiIServantPOA.java │ ├── multiorb │ │ ├── MultiORBTest.java │ │ ├── policy2Client.java │ │ └── policy2Server.java │ ├── oneway │ │ ├── OneWayTest.java │ │ ├── helloClient.java │ │ └── helloServer.java │ ├── poaandequals │ │ ├── POAAndEquals.java │ │ ├── WombatClient.java │ │ ├── WombatImpl.java │ │ └── WombatServer.java │ ├── poacallback │ │ ├── Client.java │ │ ├── POACallbackTest.java │ │ ├── Server.java │ │ ├── idlI1Servant.java │ │ ├── idlI1ServantLocator.java │ │ ├── idlI2Servant.java │ │ ├── idlI2ServantLocator.java │ │ └── readme.txt │ ├── poamanager │ │ ├── FactoryImpl.java │ │ ├── HelloClient.java │ │ ├── HelloImpl.java │ │ ├── HelloServer.java │ │ ├── POAManagerTest.java │ │ └── Utility.java │ ├── poapolicies │ │ ├── BasicObjectFactoryImpl.java │ │ ├── FactoryForRetainAndUseActiveMapOnly.java │ │ ├── FactoryForRetainAndUseServantManager.java │ │ ├── HelloClient.java │ │ ├── HelloImpl.java │ │ ├── HelloServer.java │ │ ├── ObjectFactoryUsingServantManager.java │ │ ├── POAFactory.java │ │ ├── POAPoliciesTest.java │ │ ├── ServantActivatorImpl.java │ │ └── Utility.java │ ├── poatest │ │ ├── OneWayTest.java │ │ ├── helloClient.java │ │ └── helloServer.java │ ├── preinvokepostinvoke │ │ ├── Interface.java │ │ ├── MyServant.java │ │ ├── MyServantLocator.java │ │ ├── PreInvokePostInvokeTest.java │ │ ├── TestAssert.java │ │ └── readme.txt │ ├── purgecalls │ │ ├── Client.java │ │ ├── ClientInterceptor.java │ │ ├── ClientORBInitializer.java │ │ ├── PurgecallsTest.java │ │ ├── Server.java │ │ └── ServerSideServant.java │ ├── repid │ │ ├── Client.java │ │ └── RepIdTest.java │ ├── requestpartitioning │ │ ├── Client.java │ │ ├── RequestPartitioningTest.java │ │ ├── Server.java │ │ ├── TestThreadPoolManager.java │ │ └── TesterImpl.java │ ├── rmipoacounter │ │ ├── RMIPOACounterTest.java │ │ ├── counterClient.java │ │ ├── counterIF.java │ │ └── counterImpl.java │ ├── rogueclient │ │ ├── Client.java │ │ ├── RogueClient.java │ │ ├── RogueClientTest.java │ │ ├── Server.java │ │ ├── Tester.java │ │ └── TesterImpl.java │ ├── systemexceptions │ │ ├── Client.java │ │ ├── ColocatedClientServer.java │ │ ├── Server.java │ │ └── SystemExceptionsTest.java │ └── unarrow │ │ ├── Client.java │ │ ├── Server.java │ │ └── UncheckedNarrowTest.java │ ├── javax │ └── rmi │ │ ├── CORBA │ │ └── serialization │ │ │ ├── BitSet.java │ │ │ ├── BudgetSummary.java │ │ │ ├── Cloneable.java │ │ │ ├── ComplexTestObjectFour.java │ │ │ ├── ComplexTestObjectOne.java │ │ │ ├── ComplexTestObjectThree.java │ │ │ ├── ComplexTestObjectTwo.java │ │ │ ├── ComplexTestObjectTwoDelta.java │ │ │ ├── ComplexTestObjectTwoSubclass.java │ │ │ ├── ComplexTestObjectTwoSubclassDefaults.java │ │ │ ├── ComplexTestObjectXXX.java │ │ │ ├── Date.java │ │ │ ├── DateDefaultFactory.java │ │ │ ├── DateHelper.java │ │ │ ├── DateImpl.java │ │ │ ├── DateValueFactory.java │ │ │ ├── EmptyTestObject.java │ │ │ ├── Graph.java │ │ │ ├── IDLValue.java │ │ │ ├── IDLValueHelper.java │ │ │ ├── IIOPPerformance.java │ │ │ ├── IsSerializable.java │ │ │ ├── JRMPPerformance.java │ │ │ ├── NotSerializable.java │ │ │ ├── NotSerializableChild.java │ │ │ ├── OBVTestObjectCustom.java │ │ │ ├── OBVTestObjectCustomDefaultFactory.java │ │ │ ├── OBVTestObjectCustomHelper.java │ │ │ ├── OBVTestObjectCustomImpl.java │ │ │ ├── OBVTestObjectOne.java │ │ │ ├── OBVTestObjectOneDefaultFactory.java │ │ │ ├── OBVTestObjectOneHelper.java │ │ │ ├── OBVTestObjectOneImpl.java │ │ │ ├── SerializationTest.java │ │ │ ├── Stock.java │ │ │ ├── StockDefaultFactory.java │ │ │ ├── StockHelper.java │ │ │ ├── StockImpl.java │ │ │ ├── StockValueFactory.java │ │ │ ├── TestOBV.java │ │ │ ├── TestOBV2.java │ │ │ └── seq1_StockHelper.java │ │ ├── PortableContext.java │ │ └── download │ │ ├── ContainerOfBadVal.java │ │ ├── IIOPTestSerializable.java │ │ ├── SecurityManager.java │ │ ├── Servant.java │ │ ├── ServantImpl.java │ │ ├── TheBadException.java │ │ ├── TheClient.java │ │ ├── TheErrorValue.java │ │ ├── TheServer.java │ │ ├── TheTest.java │ │ ├── TheValue.java │ │ └── TheValueImpl.java │ ├── mantis │ └── m4764130 │ │ ├── Client.java │ │ ├── Interceptor.java │ │ ├── SendingContextTest.java │ │ └── Server.java │ ├── pi │ ├── clientinterceptor │ │ ├── ClientCommon.java │ │ ├── ClientInterceptorTest.java │ │ ├── DIIPOAClient.java │ │ ├── DIIPOALocalClient.java │ │ ├── DIIRMILocalClient.java │ │ ├── OldRMILocalServer.java │ │ ├── OldRMIServer.java │ │ ├── POAClient.java │ │ ├── POALocalClient.java │ │ ├── POALocalServer.java │ │ ├── POAServer.java │ │ ├── RMIClient.java │ │ ├── RMILocalClient.java │ │ ├── RMILocalServer.java │ │ ├── RMIServer.java │ │ ├── SampleClientRequestInterceptor.java │ │ ├── TestInitializer.java │ │ ├── helloDIIClientStub.java │ │ ├── helloDelegate.java │ │ ├── helloIF.java │ │ ├── helloOldRMIIIOP.java │ │ ├── helloRMIIIOP.java │ │ └── helloServant.java │ ├── clientrequestinfo │ │ ├── AttributesValidStrategy.java │ │ ├── ClientCommon.java │ │ ├── ClientRequestInfoTest.java │ │ ├── DIIPOAClient.java │ │ ├── DIIPOALocalClient.java │ │ ├── DIIRMILocalClient.java │ │ ├── DynamicStrategy.java │ │ ├── EffectiveProfileStrategy.java │ │ ├── ExceptionStrategy.java │ │ ├── ForwardReferenceStrategy.java │ │ ├── InterceptorStrategy.java │ │ ├── InvokeDynamic.java │ │ ├── InvokeExceptions.java │ │ ├── InvokeOneWay.java │ │ ├── InvokeRecursive.java │ │ ├── InvokeStrategy.java │ │ ├── InvokeVisitAll.java │ │ ├── InvokeVisitAllForward.java │ │ ├── OldRMILocalServer.java │ │ ├── OldRMIServer.java │ │ ├── OneWayStrategy.java │ │ ├── POAClient.java │ │ ├── POALocalClient.java │ │ ├── POALocalServer.java │ │ ├── POAServer.java │ │ ├── RMIClient.java │ │ ├── RMILocalClient.java │ │ ├── RMILocalServer.java │ │ ├── RMIServer.java │ │ ├── RequestId1Strategy.java │ │ ├── RequestId2Strategy.java │ │ ├── SampleClientRequestInterceptor.java │ │ ├── ServiceContextStrategy.java │ │ ├── TestInitializer.java │ │ ├── helloDIIClientStub.java │ │ ├── helloDelegate.java │ │ ├── helloIF.java │ │ ├── helloOldRMIIIOP.java │ │ ├── helloRMIIIOP.java │ │ └── helloServant.java │ ├── iorinterceptor │ │ ├── Client.java │ │ ├── IORInterceptorTest.java │ │ ├── NPEIORInterceptor.java │ │ ├── PolicyFactoryHundred.java │ │ ├── PolicyHundred.java │ │ ├── SampleIORInterceptor.java │ │ ├── Server.java │ │ ├── ServerTestInitializer.java │ │ └── SimpleServant.java │ ├── orbinit │ │ ├── ClientCommon.java │ │ ├── ClientTestInitializer.java │ │ ├── ORBInitTest.java │ │ ├── PropsClient.java │ │ ├── SampleClientRequestInterceptor.java │ │ ├── SampleIORInterceptor.java │ │ ├── SampleObjectImpl.java │ │ ├── SampleServerRequestInterceptor.java │ │ └── SystemClient.java │ ├── ort │ │ ├── Constants.java │ │ ├── DelayServant.java │ │ ├── ORTStateChangeEvaluator.java │ │ ├── ORTTest.java │ │ ├── Readme.txt │ │ ├── SampleIORInterceptor.java │ │ ├── Server.java │ │ └── ServerTestInitializer.java │ ├── serverinterceptor │ │ ├── ClientCommon.java │ │ ├── DSIImpl.java │ │ ├── DSIPOALocalServer.java │ │ ├── DSIPOARemoteServer.java │ │ ├── DSIPOAServer.java │ │ ├── DSIRMIClient.java │ │ ├── DSIRMILocalClient.java │ │ ├── DSIRMILocalServer.java │ │ ├── DSIRMIRemoteClient.java │ │ ├── DSIRMIRemoteServer.java │ │ ├── DSIRMIServer.java │ │ ├── POAClient.java │ │ ├── POALocalClient.java │ │ ├── POALocalServer.java │ │ ├── POARemoteClient.java │ │ ├── POARemoteServer.java │ │ ├── POAServer.java │ │ ├── RMIClient.java │ │ ├── RMILocalClient.java │ │ ├── RMILocalServer.java │ │ ├── RMIRemoteClient.java │ │ ├── RMIRemoteServer.java │ │ ├── RMIServer.java │ │ ├── SampleServerRequestInterceptor.java │ │ ├── ServerCommon.java │ │ ├── ServerInterceptorTest.java │ │ ├── TestInitializer.java │ │ ├── TestServantLocator.java │ │ ├── helloDSIDeprecatedServant.java │ │ ├── helloDSIServant.java │ │ ├── helloDelegate.java │ │ ├── helloIF.java │ │ ├── helloRMIIIOP.java │ │ └── helloServant.java │ ├── serverrequestinfo │ │ ├── AdapterIdStrategy.java │ │ ├── AttributesValidStrategy.java │ │ ├── ClientCommon.java │ │ ├── DSIImpl.java │ │ ├── DSIPOALocalServer.java │ │ ├── DSIPOARemoteServer.java │ │ ├── DSIRMIClient.java │ │ ├── DSIRMILocalClient.java │ │ ├── DSIRMILocalServer.java │ │ ├── DSIRMIRemoteClient.java │ │ ├── DSIRMIRemoteServer.java │ │ ├── DSIRMIServer.java │ │ ├── ExceptionStrategy.java │ │ ├── ForwardReferenceStrategy.java │ │ ├── GetServerPolicyStrategy.java │ │ ├── InterceptorStrategy.java │ │ ├── InvokeExceptions.java │ │ ├── InvokeOneWay.java │ │ ├── InvokeStrategy.java │ │ ├── InvokeVisitAll.java │ │ ├── InvokeVisitAllForward.java │ │ ├── OneWayStrategy.java │ │ ├── POAClient.java │ │ ├── POALocalClient.java │ │ ├── POALocalServer.java │ │ ├── POARemoteClient.java │ │ ├── POARemoteServer.java │ │ ├── POAServer.java │ │ ├── PolicyFactoryHundred.java │ │ ├── PolicyHundred.java │ │ ├── RMIClient.java │ │ ├── RMILocalClient.java │ │ ├── RMILocalServer.java │ │ ├── RMIRemoteClient.java │ │ ├── RMIRemoteServer.java │ │ ├── RMIServer.java │ │ ├── RequestId1Strategy.java │ │ ├── RequestInfoStackStrategy.java │ │ ├── SampleServerRequestInterceptor.java │ │ ├── ServerCommon.java │ │ ├── ServerRequestInfoTest.java │ │ ├── ServiceContextStrategy.java │ │ ├── TestInitializer.java │ │ ├── helloDSIDeprecatedServant.java │ │ ├── helloDSIServant.java │ │ ├── helloDelegate.java │ │ ├── helloIF.java │ │ ├── helloRMIIIOP.java │ │ └── helloServant.java │ └── serviceexample │ │ ├── AServiceIORInterceptor.java │ │ ├── AServiceImpl.java │ │ ├── AServiceInterceptor.java │ │ ├── AServiceORBInitializer.java │ │ ├── ArbitraryObjectImpl.java │ │ ├── Client.java │ │ ├── ColocatedServers.java │ │ ├── LoggingServiceClientInterceptor.java │ │ ├── LoggingServiceClientORBInitializer.java │ │ ├── LoggingServiceImpl.java │ │ ├── LoggingServiceServerInterceptor.java │ │ ├── LoggingServiceServerORBInitializer.java │ │ ├── Makefile.example │ │ ├── README.txt │ │ ├── ServiceExampleTest.java │ │ └── doc │ │ ├── AService.vthought │ │ ├── LoggingService.vthought │ │ ├── LoggingServiceColocated.vthought │ │ └── README.txt │ ├── rmic │ ├── AbstractObject.java │ ├── AppletServer.java │ ├── Base.java │ ├── BaseImpl.java │ ├── CORBAUserException.java │ ├── CORBAUserException2.java │ ├── CORBAUserException2Helper.java │ ├── CORBAUserExceptionHelper.java │ ├── Cat.java │ ├── CharValue.java │ ├── ClassEnumerator.java │ ├── DefaultPackage.java │ ├── DefaultPackageImpl.java │ ├── DerivedImpl.java │ ├── Diamond.java │ ├── DiamondServer.java │ ├── EmptyInterface.java │ ├── Hello.java │ ├── HelloException.java │ ├── HelloImpl.java │ ├── HelloTest.java │ ├── Hi.java │ ├── HiServant.java │ ├── IDLEntityException.java │ ├── IDLEntityValue.java │ ├── IDLReferenceTest.java │ ├── IDLTest.java │ ├── InnerTest.java │ ├── InvalidNC.java │ ├── Left.java │ ├── LocalHello.java │ ├── LocalHelloServant.java │ ├── LocalStubTest.java │ ├── MangleMethods.java │ ├── MangleMethodsFail1.java │ ├── MangleMethodsFail2.java │ ├── MangleMethodsFail3.java │ ├── MapType.java │ ├── MethodOverload1.java │ ├── NCIOException.java │ ├── NCRemoteException.java │ ├── NCRuntimeException.java │ ├── NoMethods.java │ ├── NoMethodsImpl.java │ ├── NonRemoteOuterRemoteInner.java │ ├── ObjectByValue.java │ ├── OnlyRemoteServant.java │ ├── ParseTest.java │ ├── PassIDLEntityException.java │ ├── PassImplInterface.java │ ├── PassImplValue.java │ ├── PrivateMethodCollision.java │ ├── RMICTest.java │ ├── RemoteObject.java │ ├── RemoteObjectServer.java │ ├── RemoteOuterNonRemoteInner.java │ ├── RemoteOuterRemoteInner.java │ ├── ReservedMethod.java │ ├── ReturnImplInterface.java │ ├── ReturnVector.java │ ├── Right.java │ ├── SRInner.java │ ├── Simple.java │ ├── SimpleServant.java │ ├── StaticStringsHashTest.java │ ├── StressParseIIOP.java │ ├── StubReferenceTest.java │ ├── StubTest.java │ ├── SwapMember.java │ ├── TestEnv.java │ ├── TestException.java │ ├── TestExecutor.java │ ├── ThrowCORBAUserExServant.java │ ├── ThrowCORBAUserException.java │ ├── ThrowNCException.java │ ├── ThrowNCIOException.java │ ├── Typedef.java │ ├── UID.java │ ├── ValueObject.java │ └── ValueWithInvalidNC.java │ └── test │ ├── Alarm.java │ ├── AlarmHandler.java │ ├── ClassUtils.java │ ├── Debug.java │ ├── DistributedSet.java │ ├── DistributedSetMonitor.java │ ├── DistributedSetNotifier.java │ ├── Hello.java │ ├── HelloClient.java │ ├── HelloServant.java │ ├── InstallTest.java │ ├── ProcessMonitor.java │ ├── RemoteTest.java │ ├── RemoteTestExample.java │ ├── ServantContext.java │ ├── ServantManager.java │ ├── ServantManagerImpl.java │ ├── ShutdownHook.java │ ├── StartRMIRegistry.java │ ├── StreamReader.java │ ├── Test.java │ ├── Util.java │ └── WebServer.java ├── idl ├── ir.idl ├── orb.idl └── rt.idl ├── idlj ├── README ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── com │ │ │ └── sun │ │ │ │ └── tools │ │ │ │ └── corba │ │ │ │ └── ee │ │ │ │ └── idl │ │ │ │ ├── Arguments.java │ │ │ │ ├── AttributeEntry.java │ │ │ │ ├── AttributeGen.java │ │ │ │ ├── Comment.java │ │ │ │ ├── Compile.java │ │ │ │ ├── ConstEntry.java │ │ │ │ ├── ConstGen.java │ │ │ │ ├── DefaultSymtabFactory.java │ │ │ │ ├── EnumEntry.java │ │ │ │ ├── EnumGen.java │ │ │ │ ├── ExceptionEntry.java │ │ │ │ ├── ExceptionGen.java │ │ │ │ ├── Factories.java │ │ │ │ ├── ForwardEntry.java │ │ │ │ ├── ForwardGen.java │ │ │ │ ├── ForwardValueEntry.java │ │ │ │ ├── ForwardValueGen.java │ │ │ │ ├── GenFactory.java │ │ │ │ ├── GenFileStream.java │ │ │ │ ├── Generator.java │ │ │ │ ├── IDLID.java │ │ │ │ ├── IncludeEntry.java │ │ │ │ ├── IncludeGen.java │ │ │ │ ├── InterfaceEntry.java │ │ │ │ ├── InterfaceGen.java │ │ │ │ ├── InterfaceState.java │ │ │ │ ├── InterfaceType.java │ │ │ │ ├── InvalidArgument.java │ │ │ │ ├── InvalidCharacter.java │ │ │ │ ├── MethodEntry.java │ │ │ │ ├── MethodGen.java │ │ │ │ ├── ModuleEntry.java │ │ │ │ ├── ModuleGen.java │ │ │ │ ├── NativeEntry.java │ │ │ │ ├── NativeGen.java │ │ │ │ ├── NoPragma.java │ │ │ │ ├── Noop.java │ │ │ │ ├── ParameterEntry.java │ │ │ │ ├── ParameterGen.java │ │ │ │ ├── ParseException.java │ │ │ │ ├── Parser.java │ │ │ │ ├── PragmaEntry.java │ │ │ │ ├── PragmaGen.java │ │ │ │ ├── PragmaHandler.java │ │ │ │ ├── Preprocessor.java │ │ │ │ ├── PrimitiveEntry.java │ │ │ │ ├── PrimitiveGen.java │ │ │ │ ├── RepositoryID.java │ │ │ │ ├── ResourceBundleUtil.java │ │ │ │ ├── Scanner.java │ │ │ │ ├── SequenceEntry.java │ │ │ │ ├── SequenceGen.java │ │ │ │ ├── StringEntry.java │ │ │ │ ├── StringGen.java │ │ │ │ ├── StructEntry.java │ │ │ │ ├── StructGen.java │ │ │ │ ├── SymtabEntry.java │ │ │ │ ├── SymtabFactory.java │ │ │ │ ├── Token.java │ │ │ │ ├── TokenBuffer.java │ │ │ │ ├── TypedefEntry.java │ │ │ │ ├── TypedefGen.java │ │ │ │ ├── UnionBranch.java │ │ │ │ ├── UnionEntry.java │ │ │ │ ├── UnionGen.java │ │ │ │ ├── Util.java │ │ │ │ ├── ValueBoxEntry.java │ │ │ │ ├── ValueBoxGen.java │ │ │ │ ├── ValueEntry.java │ │ │ │ ├── ValueGen.java │ │ │ │ ├── ValueRepositoryId.java │ │ │ │ ├── constExpr │ │ │ │ ├── And.java │ │ │ │ ├── BinaryExpr.java │ │ │ │ ├── BooleanAnd.java │ │ │ │ ├── BooleanNot.java │ │ │ │ ├── BooleanOr.java │ │ │ │ ├── DefaultExprFactory.java │ │ │ │ ├── Divide.java │ │ │ │ ├── Equal.java │ │ │ │ ├── EvaluationException.java │ │ │ │ ├── ExprFactory.java │ │ │ │ ├── Expression.java │ │ │ │ ├── GreaterEqual.java │ │ │ │ ├── GreaterThan.java │ │ │ │ ├── LessEqual.java │ │ │ │ ├── LessThan.java │ │ │ │ ├── Minus.java │ │ │ │ ├── Modulo.java │ │ │ │ ├── Negative.java │ │ │ │ ├── Not.java │ │ │ │ ├── NotEqual.java │ │ │ │ ├── Or.java │ │ │ │ ├── Plus.java │ │ │ │ ├── Positive.java │ │ │ │ ├── ShiftLeft.java │ │ │ │ ├── ShiftRight.java │ │ │ │ ├── Terminal.java │ │ │ │ ├── Times.java │ │ │ │ ├── UnaryExpr.java │ │ │ │ └── Xor.java │ │ │ │ ├── first.set │ │ │ │ ├── follow.set │ │ │ │ ├── grammar.idl │ │ │ │ ├── grammar3.idl │ │ │ │ ├── ir.idl │ │ │ │ ├── keywords.txt │ │ │ │ ├── orb.idl │ │ │ │ ├── som │ │ │ │ ├── cff │ │ │ │ │ ├── FileLocator.java │ │ │ │ │ └── Messages.java │ │ │ │ └── idlemit │ │ │ │ │ └── MetaPragma.java │ │ │ │ └── toJavaPortable │ │ │ │ ├── Arguments.java │ │ │ │ ├── AttributeGen.java │ │ │ │ ├── AttributeGen24.java │ │ │ │ ├── AuxGen.java │ │ │ │ ├── Compile.java │ │ │ │ ├── ConstGen.java │ │ │ │ ├── DefaultFactory.java │ │ │ │ ├── EnumGen.java │ │ │ │ ├── ExceptionGen.java │ │ │ │ ├── Factories.java │ │ │ │ ├── ForwardValueGen.java │ │ │ │ ├── GenFactory.java │ │ │ │ ├── Helper.java │ │ │ │ ├── Helper24.java │ │ │ │ ├── Holder.java │ │ │ │ ├── InterfaceGen.java │ │ │ │ ├── JavaGenerator.java │ │ │ │ ├── MethodGen.java │ │ │ │ ├── MethodGen24.java │ │ │ │ ├── MethodGenClone24.java │ │ │ │ ├── ModuleGen.java │ │ │ │ ├── NameModifier.java │ │ │ │ ├── NameModifierImpl.java │ │ │ │ ├── NativeGen.java │ │ │ │ ├── PrimitiveGen.java │ │ │ │ ├── SequenceGen.java │ │ │ │ ├── Skeleton.java │ │ │ │ ├── StringGen.java │ │ │ │ ├── StructGen.java │ │ │ │ ├── Stub.java │ │ │ │ ├── TCOffsets.java │ │ │ │ ├── TypedefGen.java │ │ │ │ ├── UnionGen.java │ │ │ │ ├── Util.java │ │ │ │ ├── ValueBoxGen.java │ │ │ │ ├── ValueBoxGen24.java │ │ │ │ ├── ValueFactory.java │ │ │ │ ├── ValueGen.java │ │ │ │ └── ValueGen24.java │ │ └── module-info.java │ └── resources │ │ ├── com │ │ └── sun │ │ │ └── tools │ │ │ └── corba │ │ │ └── ee │ │ │ └── idl │ │ │ ├── idl.properties │ │ │ ├── idl_ja.properties │ │ │ └── toJavaPortable │ │ │ ├── toJavaPortable.properties │ │ │ └── toJavaPortable_ja.properties │ │ └── includes │ │ ├── ir.idl │ │ └── orb.idl │ └── test │ ├── idl │ └── CorbaServerTest.idl │ ├── java │ └── com │ │ └── sun │ │ └── tools │ │ └── corba │ │ └── ee │ │ └── idl │ │ ├── UtilTest.java │ │ └── toJavaPortable │ │ ├── IdljGenerationTest.java │ │ └── TestUtils.java │ └── masters │ ├── README │ ├── ir │ └── org │ │ └── omg │ │ └── CORBA │ │ ├── AliasDef.java │ │ ├── AliasDefHelper.java │ │ ├── AliasDefHolder.java │ │ ├── AliasDefOperations.java │ │ ├── ArrayDef.java │ │ ├── ArrayDefHelper.java │ │ ├── ArrayDefHolder.java │ │ ├── ArrayDefOperations.java │ │ ├── AttrDescriptionSeqHelper.java │ │ ├── AttrDescriptionSeqHolder.java │ │ ├── AttributeDef.java │ │ ├── AttributeDefHelper.java │ │ ├── AttributeDefHolder.java │ │ ├── AttributeDefOperations.java │ │ ├── AttributeDescription.java │ │ ├── AttributeDescriptionHelper.java │ │ ├── AttributeDescriptionHolder.java │ │ ├── AttributeMode.java │ │ ├── AttributeModeHelper.java │ │ ├── AttributeModeHolder.java │ │ ├── ConstantDef.java │ │ ├── ConstantDefHelper.java │ │ ├── ConstantDefHolder.java │ │ ├── ConstantDefOperations.java │ │ ├── ConstantDescription.java │ │ ├── ConstantDescriptionHelper.java │ │ ├── ConstantDescriptionHolder.java │ │ ├── Contained.java │ │ ├── ContainedHelper.java │ │ ├── ContainedHolder.java │ │ ├── ContainedOperations.java │ │ ├── ContainedPackage │ │ ├── Description.java │ │ ├── DescriptionHelper.java │ │ └── DescriptionHolder.java │ │ ├── ContainedSeqHelper.java │ │ ├── ContainedSeqHolder.java │ │ ├── Container.java │ │ ├── ContainerHelper.java │ │ ├── ContainerHolder.java │ │ ├── ContainerOperations.java │ │ ├── ContainerPackage │ │ ├── Description.java │ │ ├── DescriptionHelper.java │ │ ├── DescriptionHolder.java │ │ ├── DescriptionSeqHelper.java │ │ └── DescriptionSeqHolder.java │ │ ├── ContextIdSeqHelper.java │ │ ├── ContextIdSeqHolder.java │ │ ├── ContextIdentifierHelper.java │ │ ├── DefinitionKind.java │ │ ├── DefinitionKindHelper.java │ │ ├── DefinitionKindHolder.java │ │ ├── EnumDef.java │ │ ├── EnumDefHelper.java │ │ ├── EnumDefHolder.java │ │ ├── EnumDefOperations.java │ │ ├── EnumMemberSeqHelper.java │ │ ├── EnumMemberSeqHolder.java │ │ ├── ExcDescriptionSeqHelper.java │ │ ├── ExcDescriptionSeqHolder.java │ │ ├── ExceptionDef.java │ │ ├── ExceptionDefHelper.java │ │ ├── ExceptionDefHolder.java │ │ ├── ExceptionDefOperations.java │ │ ├── ExceptionDefSeqHelper.java │ │ ├── ExceptionDefSeqHolder.java │ │ ├── ExceptionDescription.java │ │ ├── ExceptionDescriptionHelper.java │ │ ├── ExceptionDescriptionHolder.java │ │ ├── IDLType.java │ │ ├── IDLTypeHelper.java │ │ ├── IDLTypeHolder.java │ │ ├── IDLTypeOperations.java │ │ ├── IRObject.java │ │ ├── IRObjectHelper.java │ │ ├── IRObjectHolder.java │ │ ├── IRObjectOperations.java │ │ ├── IdentifierHelper.java │ │ ├── Initializer.java │ │ ├── InitializerHelper.java │ │ ├── InitializerHolder.java │ │ ├── InitializerSeqHelper.java │ │ ├── InitializerSeqHolder.java │ │ ├── InterfaceDef.java │ │ ├── InterfaceDefHelper.java │ │ ├── InterfaceDefHolder.java │ │ ├── InterfaceDefOperations.java │ │ ├── InterfaceDefPackage │ │ ├── FullInterfaceDescription.java │ │ ├── FullInterfaceDescriptionHelper.java │ │ └── FullInterfaceDescriptionHolder.java │ │ ├── InterfaceDefSeqHelper.java │ │ ├── InterfaceDefSeqHolder.java │ │ ├── InterfaceDescription.java │ │ ├── InterfaceDescriptionHelper.java │ │ ├── InterfaceDescriptionHolder.java │ │ ├── ModuleDef.java │ │ ├── ModuleDefHelper.java │ │ ├── ModuleDefHolder.java │ │ ├── ModuleDefOperations.java │ │ ├── ModuleDescription.java │ │ ├── ModuleDescriptionHelper.java │ │ ├── ModuleDescriptionHolder.java │ │ ├── NativeDef.java │ │ ├── NativeDefHelper.java │ │ ├── NativeDefHolder.java │ │ ├── NativeDefOperations.java │ │ ├── OpDescriptionSeqHelper.java │ │ ├── OpDescriptionSeqHolder.java │ │ ├── OperationDef.java │ │ ├── OperationDefHelper.java │ │ ├── OperationDefHolder.java │ │ ├── OperationDefOperations.java │ │ ├── OperationDescription.java │ │ ├── OperationDescriptionHelper.java │ │ ├── OperationDescriptionHolder.java │ │ ├── OperationMode.java │ │ ├── OperationModeHelper.java │ │ ├── OperationModeHolder.java │ │ ├── PRIVATE_MEMBER.java │ │ ├── PUBLIC_MEMBER.java │ │ ├── ParDescriptionSeqHelper.java │ │ ├── ParDescriptionSeqHolder.java │ │ ├── ParameterDescription.java │ │ ├── ParameterDescriptionHelper.java │ │ ├── ParameterDescriptionHolder.java │ │ ├── ParameterMode.java │ │ ├── ParameterModeHelper.java │ │ ├── ParameterModeHolder.java │ │ ├── PrimitiveDef.java │ │ ├── PrimitiveDefHelper.java │ │ ├── PrimitiveDefHolder.java │ │ ├── PrimitiveDefOperations.java │ │ ├── PrimitiveKind.java │ │ ├── PrimitiveKindHelper.java │ │ ├── PrimitiveKindHolder.java │ │ ├── Repository.java │ │ ├── RepositoryHelper.java │ │ ├── RepositoryHolder.java │ │ ├── RepositoryIdHelper.java │ │ ├── RepositoryIdSeqHelper.java │ │ ├── RepositoryIdSeqHolder.java │ │ ├── RepositoryOperations.java │ │ ├── ScopedNameHelper.java │ │ ├── SequenceDef.java │ │ ├── SequenceDefHelper.java │ │ ├── SequenceDefHolder.java │ │ ├── SequenceDefOperations.java │ │ ├── StringDef.java │ │ ├── StringDefHelper.java │ │ ├── StringDefHolder.java │ │ ├── StringDefOperations.java │ │ ├── StructDef.java │ │ ├── StructDefHelper.java │ │ ├── StructDefHolder.java │ │ ├── StructDefOperations.java │ │ ├── StructMember.java │ │ ├── StructMemberHelper.java │ │ ├── StructMemberHolder.java │ │ ├── StructMemberSeqHelper.java │ │ ├── StructMemberSeqHolder.java │ │ ├── TypeDescription.java │ │ ├── TypeDescriptionHelper.java │ │ ├── TypeDescriptionHolder.java │ │ ├── TypedefDef.java │ │ ├── TypedefDefHelper.java │ │ ├── TypedefDefHolder.java │ │ ├── TypedefDefOperations.java │ │ ├── UnionDef.java │ │ ├── UnionDefHelper.java │ │ ├── UnionDefHolder.java │ │ ├── UnionDefOperations.java │ │ ├── UnionMember.java │ │ ├── UnionMemberHelper.java │ │ ├── UnionMemberHolder.java │ │ ├── UnionMemberSeqHelper.java │ │ ├── UnionMemberSeqHolder.java │ │ ├── ValueBoxDef.java │ │ ├── ValueBoxDefHelper.java │ │ ├── ValueBoxDefHolder.java │ │ ├── ValueBoxDefOperations.java │ │ ├── ValueDef.java │ │ ├── ValueDefHelper.java │ │ ├── ValueDefHolder.java │ │ ├── ValueDefOperations.java │ │ ├── ValueDefPackage │ │ ├── FullValueDescription.java │ │ ├── FullValueDescriptionHelper.java │ │ └── FullValueDescriptionHolder.java │ │ ├── ValueDefSeqHelper.java │ │ ├── ValueDefSeqHolder.java │ │ ├── ValueDescription.java │ │ ├── ValueDescriptionHelper.java │ │ ├── ValueDescriptionHolder.java │ │ ├── ValueMember.java │ │ ├── ValueMemberDef.java │ │ ├── ValueMemberDefHelper.java │ │ ├── ValueMemberDefHolder.java │ │ ├── ValueMemberDefOperations.java │ │ ├── ValueMemberHelper.java │ │ ├── ValueMemberHolder.java │ │ ├── ValueMemberSeqHelper.java │ │ ├── ValueMemberSeqHolder.java │ │ ├── VersionSpecHelper.java │ │ ├── VisibilityHelper.java │ │ ├── _AliasDefStub.java │ │ ├── _ArrayDefStub.java │ │ ├── _AttributeDefStub.java │ │ ├── _ConstantDefStub.java │ │ ├── _ContainedStub.java │ │ ├── _ContainerStub.java │ │ ├── _EnumDefStub.java │ │ ├── _ExceptionDefStub.java │ │ ├── _IDLTypeStub.java │ │ ├── _IRObjectStub.java │ │ ├── _InterfaceDefStub.java │ │ ├── _ModuleDefStub.java │ │ ├── _NativeDefStub.java │ │ ├── _OperationDefStub.java │ │ ├── _PrimitiveDefStub.java │ │ ├── _RepositoryStub.java │ │ ├── _SequenceDefStub.java │ │ ├── _StringDefStub.java │ │ ├── _StructDefStub.java │ │ ├── _TypedefDefStub.java │ │ ├── _UnionDefStub.java │ │ ├── _ValueBoxDefStub.java │ │ ├── _ValueDefStub.java │ │ └── _ValueMemberDefStub.java │ └── structures │ └── org │ └── glassfish │ └── idlj │ ├── AnyStruct.java │ ├── AnyStructHelper.java │ ├── AnyStructHolder.java │ ├── CORBAEnum.java │ ├── CORBAEnumHelper.java │ ├── CORBAEnumHolder.java │ ├── CORBASeqHelper.java │ ├── CORBASeqHolder.java │ ├── CORBAServerTest.java │ ├── CORBAServerTestHelper.java │ ├── CORBAServerTestHolder.java │ ├── CORBAServerTestOperations.java │ ├── CORBAServerTestPackage │ ├── AnException.java │ ├── AnExceptionHelper.java │ ├── AnExceptionHolder.java │ ├── MungedException.java │ ├── MungedExceptionHelper.java │ └── MungedExceptionHolder.java │ ├── CORBAStruct.java │ ├── CORBAStructHelper.java │ ├── CORBAStructHolder.java │ ├── CORBAUnion.java │ ├── CORBAUnionHelper.java │ ├── CORBAUnionHolder.java │ ├── DummyCORBAServer.java │ ├── DummyCORBAServerHelper.java │ ├── DummyCORBAServerHolder.java │ ├── DummyCORBAServerOperations.java │ ├── LongSeqHelper.java │ ├── LongSeqHolder.java │ ├── _CORBAServerTestImplBase.java │ ├── _CORBAServerTestStub.java │ ├── _DummyCORBAServerImplBase.java │ └── _DummyCORBAServerStub.java ├── iiop-folb-dev-test ├── OLD │ ├── createLog.1 │ ├── createconfig.sh │ ├── setup.sh │ ├── test-debug.sh │ ├── test-fo.sh │ ├── test-lb.sh │ └── testsac.sh ├── README ├── README.html ├── hudsonsetup.sh ├── logging.properties ├── pom.xml ├── run.sh ├── samplerun.sh ├── scripts │ ├── installgfejbsec │ ├── installgfnaming │ ├── installgforb │ ├── installgfv3 │ ├── installorb │ ├── kill │ └── killgf ├── setup.sh ├── test │ └── OrbFailOver │ │ ├── OrbFailOver-app-client │ │ ├── build.xml │ │ ├── nbproject │ │ │ ├── ant-deploy.xml │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ ├── src │ │ │ ├── conf │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── application-client.xml │ │ │ └── java │ │ │ │ ├── argparser │ │ │ │ ├── ArgParser.java │ │ │ │ ├── CompositeInvocationHandler.java │ │ │ │ ├── CompositeInvocationHandlerImpl.java │ │ │ │ ├── DefaultValue.java │ │ │ │ ├── ElementParser.java │ │ │ │ ├── ElementParserImpl.java │ │ │ │ ├── Help.java │ │ │ │ ├── Pair.java │ │ │ │ ├── Separator.java │ │ │ │ └── UnaryFunction.java │ │ │ │ ├── glassfish │ │ │ │ ├── AdminCommand.java │ │ │ │ ├── GlassFishCluster.java │ │ │ │ ├── GlassFishInstallation.java │ │ │ │ ├── StandardPorts.java │ │ │ │ └── WeightedCircularIterator.java │ │ │ │ ├── orb │ │ │ │ └── folb │ │ │ │ │ ├── Location.java │ │ │ │ │ ├── LocationBean.java │ │ │ │ │ ├── LocationBeanRemote.java │ │ │ │ │ ├── StatefullLocationBean.java │ │ │ │ │ └── StatefullLocationBeanRemote.java │ │ │ │ ├── orbfailover │ │ │ │ └── Main.java │ │ │ │ └── testtools │ │ │ │ ├── Base.java │ │ │ │ ├── Post.java │ │ │ │ ├── Pre.java │ │ │ │ └── Test.java │ │ └── testtest │ │ ├── OrbFailOver-ejb │ │ ├── build.xml │ │ ├── nbproject │ │ │ ├── ant-deploy.xml │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ └── src │ │ │ ├── conf │ │ │ └── MANIFEST.MF │ │ │ └── java │ │ │ └── orb │ │ │ └── folb │ │ │ ├── Location.java │ │ │ ├── LocationBean.java │ │ │ ├── LocationBeanRemote.java │ │ │ ├── StatefullLocationBean.java │ │ │ └── StatefullLocationBeanRemote.java │ │ ├── build.xml │ │ ├── nbproject │ │ ├── ant-deploy.xml │ │ ├── build-impl.xml │ │ ├── genfiles.properties │ │ ├── project.properties │ │ └── project.xml │ │ └── src │ │ └── conf │ │ └── MANIFEST.MF └── testcommands.txt ├── internal-api ├── pom.xml └── src │ ├── main │ └── java │ │ ├── com │ │ └── sun │ │ │ └── corba │ │ │ └── ee │ │ │ ├── impl │ │ │ └── threadpool │ │ │ │ ├── Exceptions.java │ │ │ │ ├── ThreadPoolImpl.java │ │ │ │ ├── ThreadPoolManagerImpl.java │ │ │ │ ├── WorkQueueImpl.java │ │ │ │ └── WorkerThreadNotNeededException.java │ │ │ └── spi │ │ │ ├── logex │ │ │ └── stdcorba │ │ │ │ └── StandardLogger.java │ │ │ └── threadpool │ │ │ ├── NoSuchThreadPoolException.java │ │ │ ├── NoSuchWorkQueueException.java │ │ │ ├── ThreadPool.java │ │ │ ├── ThreadPoolChooser.java │ │ │ ├── ThreadPoolFactory.java │ │ │ ├── ThreadPoolManager.java │ │ │ ├── ThreadStateValidator.java │ │ │ ├── Work.java │ │ │ └── WorkQueue.java │ │ └── module-info.java │ └── test │ └── java │ └── com │ └── sun │ └── corba │ └── ee │ └── impl │ └── threadpool │ └── ThreadPoolImplTest.java ├── make ├── BundleNotes.txt ├── build.properties ├── build.xml ├── copyright-information │ ├── copyright-exclude.txt │ ├── copyright.txt │ └── file_suffix_classification.txt ├── findbugs-filter.xml ├── runtest ├── src-build-notes.txt └── src-build.xml ├── omgapi ├── pom.xml └── src │ ├── main │ ├── idl-includes │ │ ├── corba.idl │ │ ├── manual-ir.idl │ │ └── orb.idl │ ├── idl │ │ ├── CORBAX.idl │ │ ├── CosTSInteroperation.idl │ │ ├── CosTransactions.idl │ │ ├── Dynamic.idl │ │ ├── DynamicAny.idl │ │ ├── IOP.idl │ │ ├── Interceptors.idl │ │ ├── Messaging.idl │ │ ├── SendingContext.idl │ │ ├── TimeBase.idl │ │ ├── ir.idl │ │ ├── nameservice.idl │ │ └── poa.idl │ └── java │ │ ├── com │ │ └── sun │ │ │ └── corba │ │ │ └── ee │ │ │ └── org │ │ │ └── omg │ │ │ └── CORBA │ │ │ ├── GetPropertyAction.java │ │ │ ├── ORB.java │ │ │ └── SUNVMCID.java │ │ ├── javax │ │ └── rmi │ │ │ ├── CORBA │ │ │ ├── ClassDesc.java │ │ │ ├── EnumDesc.java │ │ │ ├── GetORBPropertiesFileAction.java │ │ │ ├── PortableRemoteObjectDelegate.java │ │ │ ├── ProxyDesc.java │ │ │ ├── Stub.java │ │ │ ├── StubDelegate.java │ │ │ ├── Tie.java │ │ │ ├── Util.java │ │ │ ├── UtilDelegate.java │ │ │ ├── ValueHandler.java │ │ │ ├── ValueHandlerMultiFormat.java │ │ │ └── package.html │ │ │ ├── PortableRemoteObject.java │ │ │ └── package.html │ │ ├── module-info.java │ │ └── org │ │ └── omg │ │ ├── CORBA │ │ ├── ACTIVITY_COMPLETED.java │ │ ├── ACTIVITY_REQUIRED.java │ │ ├── ARG_IN.java │ │ ├── ARG_INOUT.java │ │ ├── ARG_OUT.java │ │ ├── Any.java │ │ ├── AnyHolder.java │ │ ├── AnySeqHelper.java │ │ ├── AnySeqHolder.java │ │ ├── BAD_CONTEXT.java │ │ ├── BAD_INV_ORDER.java │ │ ├── BAD_OPERATION.java │ │ ├── BAD_PARAM.java │ │ ├── BAD_POLICY.java │ │ ├── BAD_POLICY_TYPE.java │ │ ├── BAD_POLICY_VALUE.java │ │ ├── BAD_QOS.java │ │ ├── BAD_TYPECODE.java │ │ ├── BooleanHolder.java │ │ ├── BooleanSeqHelper.java │ │ ├── BooleanSeqHolder.java │ │ ├── Bounds.java │ │ ├── ByteHolder.java │ │ ├── CODESET_INCOMPATIBLE.java │ │ ├── COMM_FAILURE.java │ │ ├── CTX_RESTRICT_SCOPE.java │ │ ├── CharHolder.java │ │ ├── CharSeqHelper.java │ │ ├── CharSeqHolder.java │ │ ├── CompletionStatus.java │ │ ├── CompletionStatusHelper.java │ │ ├── Context.java │ │ ├── ContextList.java │ │ ├── Current.java │ │ ├── CurrentHelper.java │ │ ├── CurrentHolder.java │ │ ├── CurrentOperations.java │ │ ├── CustomMarshal.java │ │ ├── DATA_CONVERSION.java │ │ ├── DataInputStream.java │ │ ├── DataOutputStream.java │ │ ├── DefinitionKind.java │ │ ├── DefinitionKindHelper.java │ │ ├── DomainManager.java │ │ ├── DomainManagerOperations.java │ │ ├── DoubleHolder.java │ │ ├── DoubleSeqHelper.java │ │ ├── DoubleSeqHolder.java │ │ ├── DynAny.java │ │ ├── DynAnyPackage │ │ │ ├── Invalid.java │ │ │ ├── InvalidSeq.java │ │ │ ├── InvalidValue.java │ │ │ ├── TypeMismatch.java │ │ │ └── package.html │ │ ├── DynArray.java │ │ ├── DynEnum.java │ │ ├── DynFixed.java │ │ ├── DynSequence.java │ │ ├── DynStruct.java │ │ ├── DynUnion.java │ │ ├── DynValue.java │ │ ├── DynamicImplementation.java │ │ ├── Environment.java │ │ ├── ExceptionList.java │ │ ├── FREE_MEM.java │ │ ├── FieldNameHelper.java │ │ ├── FixedHolder.java │ │ ├── FloatHolder.java │ │ ├── FloatSeqHelper.java │ │ ├── FloatSeqHolder.java │ │ ├── IDLType.java │ │ ├── IDLTypeHelper.java │ │ ├── IDLTypeOperations.java │ │ ├── IMP_LIMIT.java │ │ ├── INITIALIZE.java │ │ ├── INTERNAL.java │ │ ├── INTF_REPOS.java │ │ ├── INVALID_ACTIVITY.java │ │ ├── INVALID_TRANSACTION.java │ │ ├── INV_FLAG.java │ │ ├── INV_IDENT.java │ │ ├── INV_OBJREF.java │ │ ├── INV_POLICY.java │ │ ├── IRObject.java │ │ ├── IRObjectOperations.java │ │ ├── IdentifierHelper.java │ │ ├── IntHolder.java │ │ ├── LocalObject.java │ │ ├── LongHolder.java │ │ ├── LongLongSeqHelper.java │ │ ├── LongLongSeqHolder.java │ │ ├── LongSeqHelper.java │ │ ├── LongSeqHolder.java │ │ ├── MARSHAL.java │ │ ├── NO_IMPLEMENT.java │ │ ├── NO_MEMORY.java │ │ ├── NO_PERMISSION.java │ │ ├── NO_RESOURCES.java │ │ ├── NO_RESPONSE.java │ │ ├── NVList.java │ │ ├── NameValuePair.java │ │ ├── NameValuePairHelper.java │ │ ├── NamedValue.java │ │ ├── OBJECT_NOT_EXIST.java │ │ ├── OBJ_ADAPTER.java │ │ ├── OMGVMCID.java │ │ ├── ORB.java │ │ ├── ORBPackage │ │ │ ├── InconsistentTypeCode.java │ │ │ ├── InvalidName.java │ │ │ └── package.html │ │ ├── Object.java │ │ ├── ObjectHelper.java │ │ ├── ObjectHolder.java │ │ ├── PERSIST_STORE.java │ │ ├── PRIVATE_MEMBER.java │ │ ├── PUBLIC_MEMBER.java │ │ ├── Policy.java │ │ ├── PolicyHelper.java │ │ ├── PolicyHolder.java │ │ ├── PolicyListHelper.java │ │ ├── PolicyListHolder.java │ │ ├── PolicyOperations.java │ │ ├── PolicyTypeHelper.java │ │ ├── Principal.java │ │ ├── PrincipalHolder.java │ │ ├── REBIND.java │ │ ├── Request.java │ │ ├── ServerRequest.java │ │ ├── ServiceDetail.java │ │ ├── ServiceDetailHelper.java │ │ ├── ServiceInformation.java │ │ ├── ServiceInformationHelper.java │ │ ├── ServiceInformationHolder.java │ │ ├── SetOverrideType.java │ │ ├── SetOverrideTypeHelper.java │ │ ├── ShortHolder.java │ │ ├── ShortSeqHelper.java │ │ ├── ShortSeqHolder.java │ │ ├── StringHolder.java │ │ ├── StringValueHelper.java │ │ ├── StructMember.java │ │ ├── StructMemberHelper.java │ │ ├── SystemException.java │ │ ├── TCKind.java │ │ ├── TIMEOUT.java │ │ ├── TRANSACTION_MODE.java │ │ ├── TRANSACTION_REQUIRED.java │ │ ├── TRANSACTION_ROLLEDBACK.java │ │ ├── TRANSACTION_UNAVAILABLE.java │ │ ├── TRANSIENT.java │ │ ├── TSIdentification.java │ │ ├── TSIdentificationPackage │ │ │ ├── AlreadyIdentified.java │ │ │ ├── NotAvailable.java │ │ │ └── package.html │ │ ├── TypeCode.java │ │ ├── TypeCodeHolder.java │ │ ├── TypeCodePackage │ │ │ ├── BadKind.java │ │ │ ├── Bounds.java │ │ │ └── package.html │ │ ├── ULongLongSeqHelper.java │ │ ├── ULongLongSeqHolder.java │ │ ├── ULongSeqHelper.java │ │ ├── ULongSeqHolder.java │ │ ├── UNKNOWN.java │ │ ├── UNSUPPORTED_POLICY.java │ │ ├── UNSUPPORTED_POLICY_VALUE.java │ │ ├── UShortSeqHelper.java │ │ ├── UShortSeqHolder.java │ │ ├── UnionMember.java │ │ ├── UnionMemberHelper.java │ │ ├── UnknownUserException.java │ │ ├── UnknownUserExceptionHelper.java │ │ ├── UnknownUserExceptionHolder.java │ │ ├── UserException.java │ │ ├── VM_ABSTRACT.java │ │ ├── VM_CUSTOM.java │ │ ├── VM_NONE.java │ │ ├── VM_TRUNCATABLE.java │ │ ├── ValueBaseHelper.java │ │ ├── ValueBaseHolder.java │ │ ├── ValueMember.java │ │ ├── ValueMemberHelper.java │ │ ├── VersionSpecHelper.java │ │ ├── VisibilityHelper.java │ │ ├── WCharSeqHelper.java │ │ ├── WCharSeqHolder.java │ │ ├── WStringValueHelper.java │ │ ├── WrongTransaction.java │ │ ├── WrongTransactionHelper.java │ │ ├── WrongTransactionHolder.java │ │ ├── _IDLTypeStub.java │ │ ├── _PolicyStub.java │ │ ├── package.html │ │ └── portable │ │ │ ├── ApplicationException.java │ │ │ ├── BoxedValueHelper.java │ │ │ ├── CustomValue.java │ │ │ ├── Delegate.java │ │ │ ├── IDLEntity.java │ │ │ ├── IndirectionException.java │ │ │ ├── InputStream.java │ │ │ ├── InvokeHandler.java │ │ │ ├── ObjectImpl.java │ │ │ ├── OutputStream.java │ │ │ ├── RemarshalException.java │ │ │ ├── ResponseHandler.java │ │ │ ├── ServantObject.java │ │ │ ├── Streamable.java │ │ │ ├── StreamableValue.java │ │ │ ├── UnknownException.java │ │ │ ├── ValueBase.java │ │ │ ├── ValueFactory.java │ │ │ ├── ValueInputStream.java │ │ │ ├── ValueOutputStream.java │ │ │ └── package.html │ │ ├── CORBA_2_3 │ │ ├── ORB.java │ │ ├── package.html │ │ └── portable │ │ │ ├── Delegate.java │ │ │ ├── InputStream.java │ │ │ ├── ObjectImpl.java │ │ │ ├── OutputStream.java │ │ │ └── package.html │ │ ├── CosTSPortability │ │ ├── Receiver.java │ │ ├── ReceiverHolder.java │ │ ├── Sender.java │ │ └── SenderHolder.java │ │ ├── PortableServer │ │ ├── DynamicImplementation.java │ │ ├── POAHelper.java │ │ ├── Servant.java │ │ ├── ServantLocatorPackage │ │ │ └── CookieHolder.java │ │ └── portable │ │ │ └── Delegate.java │ │ └── stub │ │ └── java │ │ └── rmi │ │ ├── _Remote_Stub.java │ │ └── package.html │ └── test │ └── java │ └── org │ └── omg │ └── CORBA │ └── ORBTest.java ├── orbmain ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── com │ │ │ └── sun │ │ │ │ ├── corba │ │ │ │ └── ee │ │ │ │ │ ├── impl │ │ │ │ │ ├── copyobject │ │ │ │ │ │ ├── CopierManagerImpl.java │ │ │ │ │ │ ├── JavaStreamORBObjectCopierImpl.java │ │ │ │ │ │ ├── ORBStreamObjectCopierImpl.java │ │ │ │ │ │ ├── OldReflectObjectCopierImpl.java │ │ │ │ │ │ ├── ReferenceObjectCopierImpl.java │ │ │ │ │ │ └── ReflectObjectCopierImpl.java │ │ │ │ │ ├── corba │ │ │ │ │ │ ├── AnyImpl.java │ │ │ │ │ │ ├── AnyImplHelper.java │ │ │ │ │ │ ├── AsynchInvoke.java │ │ │ │ │ │ ├── CORBAObjectImpl.java │ │ │ │ │ │ ├── ContextImpl.java │ │ │ │ │ │ ├── ContextListImpl.java │ │ │ │ │ │ ├── EnvironmentImpl.java │ │ │ │ │ │ ├── ExceptionListImpl.java │ │ │ │ │ │ ├── NVListImpl.java │ │ │ │ │ │ ├── NamedValueImpl.java │ │ │ │ │ │ ├── PrincipalImpl.java │ │ │ │ │ │ ├── RequestImpl.java │ │ │ │ │ │ ├── ServerRequestImpl.java │ │ │ │ │ │ ├── TCUtility.java │ │ │ │ │ │ ├── TypeCodeFactory.java │ │ │ │ │ │ ├── TypeCodeImpl.java │ │ │ │ │ │ ├── TypeCodeImplHelper.java │ │ │ │ │ │ └── orb_config_design.txt │ │ │ │ │ ├── dynamicany │ │ │ │ │ │ ├── DynAnyBasicImpl.java │ │ │ │ │ │ ├── DynAnyCollectionImpl.java │ │ │ │ │ │ ├── DynAnyComplexImpl.java │ │ │ │ │ │ ├── DynAnyConstructedImpl.java │ │ │ │ │ │ ├── DynAnyFactoryImpl.java │ │ │ │ │ │ ├── DynAnyImpl.java │ │ │ │ │ │ ├── DynAnyUtil.java │ │ │ │ │ │ ├── DynArrayImpl.java │ │ │ │ │ │ ├── DynEnumImpl.java │ │ │ │ │ │ ├── DynFixedImpl.java │ │ │ │ │ │ ├── DynSequenceImpl.java │ │ │ │ │ │ ├── DynStructImpl.java │ │ │ │ │ │ ├── DynUnionImpl.java │ │ │ │ │ │ ├── DynValueBoxImpl.java │ │ │ │ │ │ ├── DynValueCommonImpl.java │ │ │ │ │ │ └── DynValueImpl.java │ │ │ │ │ ├── encoding │ │ │ │ │ │ ├── BufferManagerFactory.java │ │ │ │ │ │ ├── BufferManagerRead.java │ │ │ │ │ │ ├── BufferManagerReadGrow.java │ │ │ │ │ │ ├── BufferManagerReadStream.java │ │ │ │ │ │ ├── BufferManagerWrite.java │ │ │ │ │ │ ├── BufferManagerWriteGrow.java │ │ │ │ │ │ ├── BufferManagerWriteStream.java │ │ │ │ │ │ ├── BufferQueue.java │ │ │ │ │ │ ├── CDRInputObject.java │ │ │ │ │ │ ├── CDRInputStreamBase.java │ │ │ │ │ │ ├── CDRInputStream_1_0.java │ │ │ │ │ │ ├── CDRInputStream_1_1.java │ │ │ │ │ │ ├── CDRInputStream_1_2.java │ │ │ │ │ │ ├── CDROutputObject.java │ │ │ │ │ │ ├── CDROutputStreamBase.java │ │ │ │ │ │ ├── CDROutputStream_1_0.java │ │ │ │ │ │ ├── CDROutputStream_1_1.java │ │ │ │ │ │ ├── CDROutputStream_1_2.java │ │ │ │ │ │ ├── CachedCodeBase.java │ │ │ │ │ │ ├── CodeSetCache.java │ │ │ │ │ │ ├── CodeSetComponentInfo.java │ │ │ │ │ │ ├── CodeSetConversion.java │ │ │ │ │ │ ├── EncapsInputStream.java │ │ │ │ │ │ ├── EncapsInputStreamFactory.java │ │ │ │ │ │ ├── EncapsOutputStream.java │ │ │ │ │ │ ├── MarkAndResetHandler.java │ │ │ │ │ │ ├── MarshalInputStream.java │ │ │ │ │ │ ├── MarshalOutputStream.java │ │ │ │ │ │ ├── OSFCodeSetRegistry.java │ │ │ │ │ │ ├── OutputStreamFactory.java │ │ │ │ │ │ ├── RestorableInputStream.java │ │ │ │ │ │ ├── TypeCodeInputStream.java │ │ │ │ │ │ ├── TypeCodeOutputStream.java │ │ │ │ │ │ ├── TypeCodeReader.java │ │ │ │ │ │ └── WrapperInputStream.java │ │ │ │ │ ├── folb │ │ │ │ │ │ ├── CSIv2SSLTaggedComponentHandler.java │ │ │ │ │ │ ├── ClientGroupManager.java │ │ │ │ │ │ ├── GroupInfoServiceBase.java │ │ │ │ │ │ ├── InitialGroupInfoService.java │ │ │ │ │ │ └── ServerGroupManager.java │ │ │ │ │ ├── interceptors │ │ │ │ │ │ ├── CDREncapsCodec.java │ │ │ │ │ │ ├── ClientRequestInfoImpl.java │ │ │ │ │ │ ├── CodecFactoryImpl.java │ │ │ │ │ │ ├── IORInfoImpl.java │ │ │ │ │ │ ├── InterceptorInvoker.java │ │ │ │ │ │ ├── InterceptorList.java │ │ │ │ │ │ ├── ORBInitInfoImpl.java │ │ │ │ │ │ ├── PICurrent.java │ │ │ │ │ │ ├── PIHandlerImpl.java │ │ │ │ │ │ ├── PINoOpHandlerImpl.java │ │ │ │ │ │ ├── RequestInfoImpl.java │ │ │ │ │ │ ├── ServerRequestInfoImpl.java │ │ │ │ │ │ ├── SlotTable.java │ │ │ │ │ │ └── SlotTableStack.java │ │ │ │ │ ├── io │ │ │ │ │ │ ├── Exceptions.java │ │ │ │ │ │ ├── FVDCodeBaseImpl.java │ │ │ │ │ │ ├── IIOPInputStream.java │ │ │ │ │ │ ├── IIOPOutputStream.java │ │ │ │ │ │ ├── InputStreamHook.java │ │ │ │ │ │ ├── JavaCorbaAccess.java │ │ │ │ │ │ ├── ObjectStreamClass.java │ │ │ │ │ │ ├── ObjectStreamClassCorbaExt.java │ │ │ │ │ │ ├── ObjectStreamField.java │ │ │ │ │ │ ├── OptionalDataException.java │ │ │ │ │ │ ├── OutputStreamHook.java │ │ │ │ │ │ ├── SharedSecrets.java │ │ │ │ │ │ ├── TypeMismatchException.java │ │ │ │ │ │ ├── ValueHandlerImpl.java │ │ │ │ │ │ └── ValueUtility.java │ │ │ │ │ ├── ior │ │ │ │ │ │ ├── ByteBuffer.java │ │ │ │ │ │ ├── EncapsulationUtility.java │ │ │ │ │ │ ├── FreezableList.java │ │ │ │ │ │ ├── GenericIdentifiable.java │ │ │ │ │ │ ├── GenericTaggedComponent.java │ │ │ │ │ │ ├── GenericTaggedProfile.java │ │ │ │ │ │ ├── IORImpl.java │ │ │ │ │ │ ├── IORTemplateImpl.java │ │ │ │ │ │ ├── IORTemplateListImpl.java │ │ │ │ │ │ ├── IdentifiableFactoryFinderBase.java │ │ │ │ │ │ ├── JIDLObjectKeyTemplate.java │ │ │ │ │ │ ├── NewObjectKeyTemplateBase.java │ │ │ │ │ │ ├── ObjectAdapterIdArray.java │ │ │ │ │ │ ├── ObjectAdapterIdBase.java │ │ │ │ │ │ ├── ObjectAdapterIdNumber.java │ │ │ │ │ │ ├── ObjectIdImpl.java │ │ │ │ │ │ ├── ObjectKeyFactoryImpl.java │ │ │ │ │ │ ├── ObjectKeyImpl.java │ │ │ │ │ │ ├── ObjectKeyTemplateBase.java │ │ │ │ │ │ ├── ObjectReferenceFactoryImpl.java │ │ │ │ │ │ ├── ObjectReferenceProducerBase.java │ │ │ │ │ │ ├── ObjectReferenceTemplateImpl.java │ │ │ │ │ │ ├── OldJIDLObjectKeyTemplate.java │ │ │ │ │ │ ├── OldObjectKeyTemplateBase.java │ │ │ │ │ │ ├── OldPOAObjectKeyTemplate.java │ │ │ │ │ │ ├── POAObjectKeyTemplate.java │ │ │ │ │ │ ├── StubIORImpl.java │ │ │ │ │ │ ├── TaggedComponentFactoryFinderImpl.java │ │ │ │ │ │ ├── TaggedProfileFactoryFinderImpl.java │ │ │ │ │ │ ├── TaggedProfileTemplateFactoryFinderImpl.java │ │ │ │ │ │ ├── TestAssertions.txt │ │ │ │ │ │ ├── WireObjectKeyTemplate.java │ │ │ │ │ │ ├── iiop │ │ │ │ │ │ │ ├── AlternateIIOPAddressComponentImpl.java │ │ │ │ │ │ │ ├── ClusterInstanceInfoComponentImpl.java │ │ │ │ │ │ │ ├── CodeSetsComponentImpl.java │ │ │ │ │ │ │ ├── IIOPAddressBase.java │ │ │ │ │ │ │ ├── IIOPAddressClosureImpl.java │ │ │ │ │ │ │ ├── IIOPAddressImpl.java │ │ │ │ │ │ │ ├── IIOPProfileImpl.java │ │ │ │ │ │ │ ├── IIOPProfileTemplateImpl.java │ │ │ │ │ │ │ ├── JavaCodebaseComponentImpl.java │ │ │ │ │ │ │ ├── JavaSerializationComponent.java │ │ │ │ │ │ │ ├── LoadBalancingComponentImpl.java │ │ │ │ │ │ │ ├── MaxStreamFormatVersionComponentImpl.java │ │ │ │ │ │ │ ├── ORBTypeComponentImpl.java │ │ │ │ │ │ │ └── RequestPartitioningComponentImpl.java │ │ │ │ │ │ └── notes.txt │ │ │ │ │ ├── javax │ │ │ │ │ │ └── rmi │ │ │ │ │ │ │ ├── CORBA │ │ │ │ │ │ │ ├── StubDelegateImpl.java │ │ │ │ │ │ │ └── Util.java │ │ │ │ │ │ │ └── PortableRemoteObject.java │ │ │ │ │ ├── legacy │ │ │ │ │ │ └── connection │ │ │ │ │ │ │ ├── DefaultSocketFactory.java │ │ │ │ │ │ │ ├── EndPointInfoImpl.java │ │ │ │ │ │ │ ├── LegacyServerSocketManagerImpl.java │ │ │ │ │ │ │ ├── SocketFactoryAcceptorImpl.java │ │ │ │ │ │ │ ├── SocketFactoryConnectionImpl.java │ │ │ │ │ │ │ ├── SocketFactoryContactInfoImpl.java │ │ │ │ │ │ │ ├── SocketFactoryContactInfoListImpl.java │ │ │ │ │ │ │ ├── SocketFactoryContactInfoListIteratorImpl.java │ │ │ │ │ │ │ └── USLPort.java │ │ │ │ │ ├── misc │ │ │ │ │ │ ├── ByteArrayWrapper.java │ │ │ │ │ │ ├── CacheTable.java │ │ │ │ │ │ ├── ClassInfoCache.java │ │ │ │ │ │ ├── CorbaResourceUtil.java │ │ │ │ │ │ ├── HexOutputStream.java │ │ │ │ │ │ ├── LegacyHookGetFields.java │ │ │ │ │ │ ├── LegacyHookPutFields.java │ │ │ │ │ │ ├── LogKeywords.java │ │ │ │ │ │ ├── ORBUtility.java │ │ │ │ │ │ ├── RepIdDelegator.java │ │ │ │ │ │ ├── RepositoryIdFactory.java │ │ │ │ │ │ ├── RepositoryIdInterface.java │ │ │ │ │ │ ├── RepositoryIdStrings.java │ │ │ │ │ │ └── RepositoryIdUtility.java │ │ │ │ │ ├── naming │ │ │ │ │ │ ├── cosnaming │ │ │ │ │ │ │ ├── BindingIteratorImpl.java │ │ │ │ │ │ │ ├── InterOperableNamingImpl.java │ │ │ │ │ │ │ ├── InternalBindingKey.java │ │ │ │ │ │ │ ├── InternalBindingValue.java │ │ │ │ │ │ │ ├── NamingContextDataStore.java │ │ │ │ │ │ │ ├── NamingContextImpl.java │ │ │ │ │ │ │ ├── NamingUtils.java │ │ │ │ │ │ │ ├── TransientBindingIterator.java │ │ │ │ │ │ │ ├── TransientNameServer.java │ │ │ │ │ │ │ ├── TransientNameService.java │ │ │ │ │ │ │ └── TransientNamingContext.java │ │ │ │ │ │ └── namingutil │ │ │ │ │ │ │ ├── CorbalocURL.java │ │ │ │ │ │ │ ├── CorbanameURL.java │ │ │ │ │ │ │ ├── IIOPEndpointInfo.java │ │ │ │ │ │ │ ├── INSURL.java │ │ │ │ │ │ │ ├── INSURLBase.java │ │ │ │ │ │ │ ├── INSURLHandler.java │ │ │ │ │ │ │ ├── NamingConstants.java │ │ │ │ │ │ │ └── Utility.java │ │ │ │ │ ├── oa │ │ │ │ │ │ ├── NullServantImpl.java │ │ │ │ │ │ ├── poa │ │ │ │ │ │ │ ├── AOMEntry.java │ │ │ │ │ │ │ ├── ActiveObjectMap.java │ │ │ │ │ │ │ ├── BadServerIdHandler.java │ │ │ │ │ │ │ ├── DelegateImpl.java │ │ │ │ │ │ │ ├── IdAssignmentPolicyImpl.java │ │ │ │ │ │ │ ├── IdUniquenessPolicyImpl.java │ │ │ │ │ │ │ ├── ImplicitActivationPolicyImpl.java │ │ │ │ │ │ │ ├── LifespanPolicyImpl.java │ │ │ │ │ │ │ ├── POACurrent.java │ │ │ │ │ │ │ ├── POAFactory.java │ │ │ │ │ │ │ ├── POAImpl.java │ │ │ │ │ │ │ ├── POAManagerImpl.java │ │ │ │ │ │ │ ├── POAPolicyMediator.java │ │ │ │ │ │ │ ├── POAPolicyMediatorBase.java │ │ │ │ │ │ │ ├── POAPolicyMediatorBase_R.java │ │ │ │ │ │ │ ├── POAPolicyMediatorFactory.java │ │ │ │ │ │ │ ├── POAPolicyMediatorImpl_NR_UDS.java │ │ │ │ │ │ │ ├── POAPolicyMediatorImpl_NR_USM.java │ │ │ │ │ │ │ ├── POAPolicyMediatorImpl_R_AOM.java │ │ │ │ │ │ │ ├── POAPolicyMediatorImpl_R_UDS.java │ │ │ │ │ │ │ ├── POAPolicyMediatorImpl_R_USM.java │ │ │ │ │ │ │ ├── Policies.java │ │ │ │ │ │ │ ├── RequestProcessingPolicyImpl.java │ │ │ │ │ │ │ ├── ServantRetentionPolicyImpl.java │ │ │ │ │ │ │ ├── ThreadPolicyImpl.java │ │ │ │ │ │ │ ├── minor_code_example.txt │ │ │ │ │ │ │ └── standard_minor_codes.txt │ │ │ │ │ │ ├── rfm │ │ │ │ │ │ │ ├── ReferenceFactoryImpl.java │ │ │ │ │ │ │ ├── ReferenceFactoryManagerImpl.java │ │ │ │ │ │ │ └── ReferenceManagerConfigurator.java │ │ │ │ │ │ └── toa │ │ │ │ │ │ │ ├── TOA.java │ │ │ │ │ │ │ ├── TOAFactory.java │ │ │ │ │ │ │ ├── TOAImpl.java │ │ │ │ │ │ │ └── TransientObjectManager.java │ │ │ │ │ ├── orb │ │ │ │ │ │ ├── AppletDataCollector.java │ │ │ │ │ │ ├── DataCollectorBase.java │ │ │ │ │ │ ├── DataCollectorFactory.java │ │ │ │ │ │ ├── NormalDataCollector.java │ │ │ │ │ │ ├── NormalParserAction.java │ │ │ │ │ │ ├── NormalParserData.java │ │ │ │ │ │ ├── ORBConfiguratorImpl.java │ │ │ │ │ │ ├── ORBDataParserImpl.java │ │ │ │ │ │ ├── ORBImpl.java │ │ │ │ │ │ ├── ORBSingleton.java │ │ │ │ │ │ ├── ORBVersionImpl.java │ │ │ │ │ │ ├── ObjectKeyCacheEntryBase.java │ │ │ │ │ │ ├── ObjectKeyCacheEntryImpl.java │ │ │ │ │ │ ├── ObjectKeyCacheEntryNoObjectAdapterImpl.java │ │ │ │ │ │ ├── ParserAction.java │ │ │ │ │ │ ├── ParserActionBase.java │ │ │ │ │ │ ├── ParserActionFactory.java │ │ │ │ │ │ ├── ParserDataBase.java │ │ │ │ │ │ ├── ParserTable.java │ │ │ │ │ │ ├── PrefixParserAction.java │ │ │ │ │ │ ├── PrefixParserData.java │ │ │ │ │ │ ├── PropertyOnlyDataCollector.java │ │ │ │ │ │ └── parsing_combinators.txt │ │ │ │ │ ├── osgi │ │ │ │ │ │ └── loader │ │ │ │ │ │ │ └── OSGIListener.java │ │ │ │ │ ├── plugin │ │ │ │ │ │ └── hwlb │ │ │ │ │ │ │ ├── NoConnectionCacheImpl.java │ │ │ │ │ │ │ ├── RetryClientRequestInterceptor.java │ │ │ │ │ │ │ ├── RetryServerRequestInterceptor.java │ │ │ │ │ │ │ └── VirtualAddressAgentImpl.java │ │ │ │ │ ├── presentation │ │ │ │ │ │ └── rmi │ │ │ │ │ │ │ ├── DynamicMethodMarshallerImpl.java │ │ │ │ │ │ │ ├── DynamicStubImpl.java │ │ │ │ │ │ │ ├── ExceptionHandler.java │ │ │ │ │ │ │ ├── ExceptionHandlerImpl.java │ │ │ │ │ │ │ ├── Exceptions.java │ │ │ │ │ │ │ ├── IDLNameTranslatorImpl.java │ │ │ │ │ │ │ ├── IDLType.java │ │ │ │ │ │ │ ├── IDLTypeException.java │ │ │ │ │ │ │ ├── IDLTypesUtil.java │ │ │ │ │ │ │ ├── InvocationHandlerFactoryImpl.java │ │ │ │ │ │ │ ├── JNDIStateFactoryImpl.java │ │ │ │ │ │ │ ├── PresentationManagerImpl.java │ │ │ │ │ │ │ ├── ReflectiveTie.java │ │ │ │ │ │ │ ├── StubConnectImpl.java │ │ │ │ │ │ │ ├── StubFactoryBase.java │ │ │ │ │ │ │ ├── StubFactoryDynamicBase.java │ │ │ │ │ │ │ ├── StubFactoryFactoryBase.java │ │ │ │ │ │ │ ├── StubFactoryFactoryDynamicBase.java │ │ │ │ │ │ │ ├── StubFactoryFactoryStaticImpl.java │ │ │ │ │ │ │ ├── StubFactoryStaticImpl.java │ │ │ │ │ │ │ ├── StubInvocationHandlerImpl.java │ │ │ │ │ │ │ ├── codegen │ │ │ │ │ │ │ ├── CodegenProxyCreator.java │ │ │ │ │ │ │ ├── CodegenStubBase.java │ │ │ │ │ │ │ ├── StubFactoryCodegenImpl.java │ │ │ │ │ │ │ └── StubFactoryFactoryCodegenImpl.java │ │ │ │ │ │ │ ├── jndi.properties │ │ │ │ │ │ │ └── proxy │ │ │ │ │ │ │ ├── StubFactoryFactoryProxyImpl.java │ │ │ │ │ │ │ └── StubFactoryProxyImpl.java │ │ │ │ │ ├── protocol │ │ │ │ │ │ ├── AddressingDispositionException.java │ │ │ │ │ │ ├── BootstrapServerRequestDispatcher.java │ │ │ │ │ │ ├── ClientDelegateImpl.java │ │ │ │ │ │ ├── ClientRequestDispatcherImpl.java │ │ │ │ │ │ ├── FullServantCacheLocalCRDImpl.java │ │ │ │ │ │ ├── INSServerRequestDispatcher.java │ │ │ │ │ │ ├── InfoOnlyServantCacheLocalCRDImpl.java │ │ │ │ │ │ ├── InvocationInfo.java │ │ │ │ │ │ ├── JIDLLocalCRDImpl.java │ │ │ │ │ │ ├── LocalClientRequestDispatcherBase.java │ │ │ │ │ │ ├── MessageMediatorImpl.java │ │ │ │ │ │ ├── MessageParserImpl.java │ │ │ │ │ │ ├── MinimalServantCacheLocalCRDImpl.java │ │ │ │ │ │ ├── NotLocalLocalCRDImpl.java │ │ │ │ │ │ ├── POALocalCRDImpl.java │ │ │ │ │ │ ├── RequestCanceledException.java │ │ │ │ │ │ ├── RequestDispatcherRegistryImpl.java │ │ │ │ │ │ ├── RequestIdImpl.java │ │ │ │ │ │ ├── ServantCacheLocalCRDBase.java │ │ │ │ │ │ ├── ServerRequestDispatcherImpl.java │ │ │ │ │ │ ├── SharedCDRClientRequestDispatcherImpl.java │ │ │ │ │ │ ├── SpecialMethod.java │ │ │ │ │ │ └── giopmsgheaders │ │ │ │ │ │ │ ├── AddressingDispositionHelper.java │ │ │ │ │ │ │ ├── CancelRequestMessage.java │ │ │ │ │ │ │ ├── CancelRequestMessage_1_0.java │ │ │ │ │ │ │ ├── CancelRequestMessage_1_1.java │ │ │ │ │ │ │ ├── CancelRequestMessage_1_2.java │ │ │ │ │ │ │ ├── FragmentMessage.java │ │ │ │ │ │ │ ├── FragmentMessage_1_1.java │ │ │ │ │ │ │ ├── FragmentMessage_1_2.java │ │ │ │ │ │ │ ├── IORAddressingInfo.java │ │ │ │ │ │ │ ├── IORAddressingInfoHelper.java │ │ │ │ │ │ │ ├── KeyAddr.java │ │ │ │ │ │ │ ├── LocateReplyMessage.java │ │ │ │ │ │ │ ├── LocateReplyMessage_1_0.java │ │ │ │ │ │ │ ├── LocateReplyMessage_1_1.java │ │ │ │ │ │ │ ├── LocateReplyMessage_1_2.java │ │ │ │ │ │ │ ├── LocateReplyOrReplyMessage.java │ │ │ │ │ │ │ ├── LocateRequestMessage.java │ │ │ │ │ │ │ ├── LocateRequestMessage_1_0.java │ │ │ │ │ │ │ ├── LocateRequestMessage_1_1.java │ │ │ │ │ │ │ ├── LocateRequestMessage_1_2.java │ │ │ │ │ │ │ ├── Message.java │ │ │ │ │ │ │ ├── MessageBase.java │ │ │ │ │ │ │ ├── MessageHandler.java │ │ │ │ │ │ │ ├── Message_1_0.java │ │ │ │ │ │ │ ├── Message_1_1.java │ │ │ │ │ │ │ ├── Message_1_2.java │ │ │ │ │ │ │ ├── ProfileAddr.java │ │ │ │ │ │ │ ├── ReferenceAddr.java │ │ │ │ │ │ │ ├── ReplyMessage.java │ │ │ │ │ │ │ ├── ReplyMessage_1_0.java │ │ │ │ │ │ │ ├── ReplyMessage_1_1.java │ │ │ │ │ │ │ ├── ReplyMessage_1_2.java │ │ │ │ │ │ │ ├── RequestMessage.java │ │ │ │ │ │ │ ├── RequestMessage_1_0.java │ │ │ │ │ │ │ ├── RequestMessage_1_1.java │ │ │ │ │ │ │ ├── RequestMessage_1_2.java │ │ │ │ │ │ │ ├── TargetAddress.java │ │ │ │ │ │ │ └── TargetAddressHelper.java │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── BootstrapResolverImpl.java │ │ │ │ │ │ ├── CompositeResolverImpl.java │ │ │ │ │ │ ├── FileResolverImpl.java │ │ │ │ │ │ ├── INSURLOperationImpl.java │ │ │ │ │ │ ├── LocalResolverImpl.java │ │ │ │ │ │ ├── ORBDefaultInitRefResolverImpl.java │ │ │ │ │ │ ├── ORBInitRefResolverImpl.java │ │ │ │ │ │ └── SplitLocalResolverImpl.java │ │ │ │ │ ├── servicecontext │ │ │ │ │ │ ├── CodeSetServiceContextImpl.java │ │ │ │ │ │ ├── MaxStreamFormatVersionServiceContextImpl.java │ │ │ │ │ │ ├── ORBVersionServiceContextImpl.java │ │ │ │ │ │ ├── SendingContextServiceContextImpl.java │ │ │ │ │ │ ├── ServiceContextFactoryRegistryImpl.java │ │ │ │ │ │ ├── ServiceContextsImpl.java │ │ │ │ │ │ ├── UEInfoServiceContextImpl.java │ │ │ │ │ │ └── UnknownServiceContextImpl.java │ │ │ │ │ ├── transport │ │ │ │ │ │ ├── AcceptorAcceptOnlyImpl.java │ │ │ │ │ │ ├── AcceptorBase.java │ │ │ │ │ │ ├── AcceptorImpl.java │ │ │ │ │ │ ├── AcceptorLazyImpl.java │ │ │ │ │ │ ├── ByteBufferPoolImpl.java │ │ │ │ │ │ ├── ConnectionCacheBase.java │ │ │ │ │ │ ├── ConnectionImpl.java │ │ │ │ │ │ ├── ContactInfoBase.java │ │ │ │ │ │ ├── ContactInfoImpl.java │ │ │ │ │ │ ├── ContactInfoListImpl.java │ │ │ │ │ │ ├── ContactInfoListIteratorImpl.java │ │ │ │ │ │ ├── DefaultIORToSocketInfoImpl.java │ │ │ │ │ │ ├── DefaultSocketFactoryImpl.java │ │ │ │ │ │ ├── EventHandlerBase.java │ │ │ │ │ │ ├── InboundConnectionCacheImpl.java │ │ │ │ │ │ ├── InboundConnectionCacheProbeProvider.java │ │ │ │ │ │ ├── ListenerThreadImpl.java │ │ │ │ │ │ ├── MessageTraceManagerImpl.java │ │ │ │ │ │ ├── NioBufferWriter.java │ │ │ │ │ │ ├── OutboundConnectionCacheImpl.java │ │ │ │ │ │ ├── OutboundConnectionCacheProbeProvider.java │ │ │ │ │ │ ├── ReaderThreadImpl.java │ │ │ │ │ │ ├── ResponseWaitingRoomImpl.java │ │ │ │ │ │ ├── SelectorImpl.java │ │ │ │ │ │ ├── SharedCDRContactInfoImpl.java │ │ │ │ │ │ ├── SocketChannelReader.java │ │ │ │ │ │ ├── TcpTimeoutsImpl.java │ │ │ │ │ │ ├── TemporarySelector.java │ │ │ │ │ │ ├── TemporarySelectorClosedException.java │ │ │ │ │ │ ├── TemporarySelectorStateClosed.java │ │ │ │ │ │ ├── TemporarySelectorStateOpen.java │ │ │ │ │ │ ├── Timeoutable.java │ │ │ │ │ │ ├── TransportManagerImpl.java │ │ │ │ │ │ ├── concurrent │ │ │ │ │ │ │ ├── ConcurrentQueueBlockingImpl.java │ │ │ │ │ │ │ ├── ConcurrentQueueImpl.java │ │ │ │ │ │ │ ├── ConcurrentQueueNonBlockingImpl.java │ │ │ │ │ │ │ └── LMSQueue.java │ │ │ │ │ │ └── connection │ │ │ │ │ │ │ ├── ConnectionCacheBase.java │ │ │ │ │ │ │ ├── ConnectionCacheBlockingBase.java │ │ │ │ │ │ │ ├── ConnectionCacheNonBlockingBase.java │ │ │ │ │ │ │ ├── InboundConnectionCacheBlockingImpl.java │ │ │ │ │ │ │ ├── InboundConnectionCacheImpl.java │ │ │ │ │ │ │ ├── OutboundCacheEntry.java │ │ │ │ │ │ │ ├── OutboundConnectionCacheBlockingImpl.java │ │ │ │ │ │ │ ├── OutboundConnectionCacheImpl.java │ │ │ │ │ │ │ └── OutboundConnectionState.java │ │ │ │ │ ├── txpoa │ │ │ │ │ │ └── TSIdentificationImpl.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── JDKBridge.java │ │ │ │ │ │ ├── JDKClassLoader.java │ │ │ │ │ │ ├── ORBProperties.java │ │ │ │ │ │ ├── PackagePrefixChecker.java │ │ │ │ │ │ ├── RepositoryId.java │ │ │ │ │ │ ├── RepositoryIdCache.java │ │ │ │ │ │ ├── Utility.java │ │ │ │ │ │ └── Version.java │ │ │ │ │ └── spi │ │ │ │ │ ├── copyobject │ │ │ │ │ ├── CopierManager.java │ │ │ │ │ └── CopyobjectDefaults.java │ │ │ │ │ ├── extension │ │ │ │ │ ├── CopyObjectPolicy.java │ │ │ │ │ ├── LoadBalancingPolicy.java │ │ │ │ │ ├── RequestPartitioningPolicy.java │ │ │ │ │ ├── ServantCachingPolicy.java │ │ │ │ │ └── ZeroPortPolicy.java │ │ │ │ │ ├── folb │ │ │ │ │ ├── ClusterInstanceInfo.java │ │ │ │ │ ├── GroupInfoService.java │ │ │ │ │ ├── GroupInfoServiceObserver.java │ │ │ │ │ └── SocketInfo.java │ │ │ │ │ ├── ior │ │ │ │ │ ├── EncapsulationFactoryBase.java │ │ │ │ │ ├── IOR.java │ │ │ │ │ ├── IORFactories.java │ │ │ │ │ ├── IORFactory.java │ │ │ │ │ ├── IORTemplate.java │ │ │ │ │ ├── IORTemplateList.java │ │ │ │ │ ├── IOR_classes.html │ │ │ │ │ ├── Identifiable.java │ │ │ │ │ ├── IdentifiableBase.java │ │ │ │ │ ├── IdentifiableContainerBase.java │ │ │ │ │ ├── IdentifiableFactory.java │ │ │ │ │ ├── IdentifiableFactoryFinder.java │ │ │ │ │ ├── MakeImmutable.java │ │ │ │ │ ├── ObjectAdapterId.java │ │ │ │ │ ├── ObjectId.java │ │ │ │ │ ├── ObjectKey.java │ │ │ │ │ ├── ObjectKeyFactory.java │ │ │ │ │ ├── ObjectKeyTemplate.java │ │ │ │ │ ├── TaggedComponent.java │ │ │ │ │ ├── TaggedComponentBase.java │ │ │ │ │ ├── TaggedComponentFactoryFinder.java │ │ │ │ │ ├── TaggedProfile.java │ │ │ │ │ ├── TaggedProfileTemplate.java │ │ │ │ │ ├── TaggedProfileTemplateBase.java │ │ │ │ │ ├── WriteContents.java │ │ │ │ │ ├── Writeable.java │ │ │ │ │ ├── iiop │ │ │ │ │ │ ├── AlternateIIOPAddressComponent.java │ │ │ │ │ │ ├── ClusterInstanceInfoComponent.java │ │ │ │ │ │ ├── CodeSetsComponent.java │ │ │ │ │ │ ├── GIOPVersion.java │ │ │ │ │ │ ├── IIOPAddress.java │ │ │ │ │ │ ├── IIOPFactories.java │ │ │ │ │ │ ├── IIOPProfile.java │ │ │ │ │ │ ├── IIOPProfileTemplate.java │ │ │ │ │ │ ├── JavaCodebaseComponent.java │ │ │ │ │ │ ├── LoadBalancingComponent.java │ │ │ │ │ │ ├── MaxStreamFormatVersionComponent.java │ │ │ │ │ │ ├── ORBTypeComponent.java │ │ │ │ │ │ └── RequestPartitioningComponent.java │ │ │ │ │ ├── iornotes.txt │ │ │ │ │ └── package.html │ │ │ │ │ ├── legacy │ │ │ │ │ ├── connection │ │ │ │ │ │ ├── Connection.java │ │ │ │ │ │ ├── GetEndPointInfoAgainException.java │ │ │ │ │ │ ├── LegacyServerSocketEndPointInfo.java │ │ │ │ │ │ ├── LegacyServerSocketManager.java │ │ │ │ │ │ ├── ORBSocketFactory.java │ │ │ │ │ │ └── README.txt │ │ │ │ │ └── interceptor │ │ │ │ │ │ ├── IORInfoExt.java │ │ │ │ │ │ ├── ORBInitInfoExt.java │ │ │ │ │ │ ├── RequestInfoExt.java │ │ │ │ │ │ ├── ServerRequestInfoExt.java │ │ │ │ │ │ └── UnknownType.java │ │ │ │ │ ├── logex │ │ │ │ │ └── corba │ │ │ │ │ │ ├── CS.java │ │ │ │ │ │ ├── CSValue.java │ │ │ │ │ │ ├── CorbaExtension.java │ │ │ │ │ │ └── ORBException.java │ │ │ │ │ ├── logging │ │ │ │ │ ├── ActivationSystemException.java │ │ │ │ │ ├── IORSystemException.java │ │ │ │ │ ├── InterceptorsSystemException.java │ │ │ │ │ ├── NamingSystemException.java │ │ │ │ │ ├── OMGSystemException.java │ │ │ │ │ ├── ORBUtilSystemException.java │ │ │ │ │ ├── POASystemException.java │ │ │ │ │ └── UtilSystemException.java │ │ │ │ │ ├── misc │ │ │ │ │ ├── ORBClassLoader.java │ │ │ │ │ └── ORBConstants.java │ │ │ │ │ ├── oa │ │ │ │ │ ├── NullServant.java │ │ │ │ │ ├── OADefault.java │ │ │ │ │ ├── OADestroyed.java │ │ │ │ │ ├── OAInvocationInfo.java │ │ │ │ │ ├── ObjectAdapter.java │ │ │ │ │ ├── ObjectAdapterBase.java │ │ │ │ │ ├── ObjectAdapterFactory.java │ │ │ │ │ └── rfm │ │ │ │ │ │ ├── ReferenceFactory.java │ │ │ │ │ │ └── ReferenceFactoryManager.java │ │ │ │ │ ├── orb │ │ │ │ │ ├── ClassCodeBaseHandler.java │ │ │ │ │ ├── DataCollector.java │ │ │ │ │ ├── ORB.java │ │ │ │ │ ├── ORBConfigurator.java │ │ │ │ │ ├── ORBData.java │ │ │ │ │ ├── ORBVersion.java │ │ │ │ │ ├── ORBVersionFactory.java │ │ │ │ │ ├── ObjectKeyCacheEntry.java │ │ │ │ │ ├── Operation.java │ │ │ │ │ ├── OperationFactory.java │ │ │ │ │ ├── OperationFactoryExt.java │ │ │ │ │ ├── ParserData.java │ │ │ │ │ ├── ParserDataFactory.java │ │ │ │ │ ├── ParserImplBase.java │ │ │ │ │ ├── ParserImplTableBase.java │ │ │ │ │ └── PropertyParser.java │ │ │ │ │ ├── osgi │ │ │ │ │ └── ORBFactory.java │ │ │ │ │ ├── presentation │ │ │ │ │ └── rmi │ │ │ │ │ │ ├── DynamicMethodMarshaller.java │ │ │ │ │ │ ├── DynamicStub.java │ │ │ │ │ │ ├── IDLNameTranslator.java │ │ │ │ │ │ ├── InvocationInterceptor.java │ │ │ │ │ │ ├── PresentationDefaults.java │ │ │ │ │ │ ├── PresentationManager.java │ │ │ │ │ │ ├── StubAdapter.java │ │ │ │ │ │ └── StubWrapper.java │ │ │ │ │ ├── protocol │ │ │ │ │ ├── ClientDelegate.java │ │ │ │ │ ├── ClientDelegateFactory.java │ │ │ │ │ ├── ClientInvocationInfo.java │ │ │ │ │ ├── ClientRequestDispatcher.java │ │ │ │ │ ├── ForwardException.java │ │ │ │ │ ├── InitialServerRequestDispatcher.java │ │ │ │ │ ├── LocalClientRequestDispatcher.java │ │ │ │ │ ├── LocalClientRequestDispatcherFactory.java │ │ │ │ │ ├── MessageMediator.java │ │ │ │ │ ├── MessageParser.java │ │ │ │ │ ├── PIHandler.java │ │ │ │ │ ├── ProtocolHandler.java │ │ │ │ │ ├── RequestDispatcherDefault.java │ │ │ │ │ ├── RequestDispatcherRegistry.java │ │ │ │ │ ├── RequestId.java │ │ │ │ │ ├── RetryType.java │ │ │ │ │ ├── ServerRequestDispatcher.java │ │ │ │ │ └── protocol.zargo │ │ │ │ │ ├── resolver │ │ │ │ │ ├── LocalResolver.java │ │ │ │ │ ├── Resolver.java │ │ │ │ │ └── ResolverDefault.java │ │ │ │ │ ├── servicecontext │ │ │ │ │ ├── CodeSetServiceContext.java │ │ │ │ │ ├── MaxStreamFormatVersionServiceContext.java │ │ │ │ │ ├── ORBVersionServiceContext.java │ │ │ │ │ ├── SendingContextServiceContext.java │ │ │ │ │ ├── ServiceContext.java │ │ │ │ │ ├── ServiceContextBase.java │ │ │ │ │ ├── ServiceContextDefaults.java │ │ │ │ │ ├── ServiceContextFactoryRegistry.java │ │ │ │ │ ├── ServiceContexts.java │ │ │ │ │ ├── ServiceContextsCache.java │ │ │ │ │ ├── UEInfoServiceContext.java │ │ │ │ │ └── UnknownServiceContext.java │ │ │ │ │ ├── trace │ │ │ │ │ ├── Cdr.java │ │ │ │ │ ├── CdrRead.java │ │ │ │ │ ├── CdrWrite.java │ │ │ │ │ ├── DynamicType.java │ │ │ │ │ ├── Folb.java │ │ │ │ │ ├── Giop.java │ │ │ │ │ ├── IsLocal.java │ │ │ │ │ ├── MonitorRead.java │ │ │ │ │ ├── MonitorWrite.java │ │ │ │ │ ├── Naming.java │ │ │ │ │ ├── OrbLifeCycle.java │ │ │ │ │ ├── Orbd.java │ │ │ │ │ ├── Osgi.java │ │ │ │ │ ├── Poa.java │ │ │ │ │ ├── PoaFSM.java │ │ │ │ │ ├── PrimitiveRead.java │ │ │ │ │ ├── PrimitiveWrite.java │ │ │ │ │ ├── Shutdown.java │ │ │ │ │ ├── StreamFormatVersion.java │ │ │ │ │ ├── Subcontract.java │ │ │ │ │ ├── TraceInterceptor.java │ │ │ │ │ ├── TraceServiceContext.java │ │ │ │ │ ├── TraceValueHandler.java │ │ │ │ │ ├── TransientObjectManager.java │ │ │ │ │ ├── Transport.java │ │ │ │ │ ├── ValueHandlerRead.java │ │ │ │ │ └── ValueHandlerWrite.java │ │ │ │ │ └── transport │ │ │ │ │ ├── Acceptor.java │ │ │ │ │ ├── ByteBufferPool.java │ │ │ │ │ ├── Connection.java │ │ │ │ │ ├── ConnectionCache.java │ │ │ │ │ ├── ContactInfo.java │ │ │ │ │ ├── ContactInfoList.java │ │ │ │ │ ├── ContactInfoListFactory.java │ │ │ │ │ ├── ContactInfoListIterator.java │ │ │ │ │ ├── EventHandler.java │ │ │ │ │ ├── IIOPPrimaryToContactInfo.java │ │ │ │ │ ├── IORToSocketInfo.java │ │ │ │ │ ├── IORTransformer.java │ │ │ │ │ ├── InboundConnectionCache.java │ │ │ │ │ ├── ListenerThread.java │ │ │ │ │ ├── MessageData.java │ │ │ │ │ ├── MessageTraceManager.java │ │ │ │ │ ├── ORBSocketFactory.java │ │ │ │ │ ├── OutboundConnectionCache.java │ │ │ │ │ ├── ReaderThread.java │ │ │ │ │ ├── ResponseWaitingRoom.java │ │ │ │ │ ├── Selector.java │ │ │ │ │ ├── SocketInfo.java │ │ │ │ │ ├── TcpTimeouts.java │ │ │ │ │ ├── TemporarySelectorState.java │ │ │ │ │ ├── TransportDefault.java │ │ │ │ │ ├── TransportManager.java │ │ │ │ │ ├── concurrent │ │ │ │ │ ├── ConcurrentQueue.java │ │ │ │ │ └── ConcurrentQueueFactory.java │ │ │ │ │ └── connection │ │ │ │ │ ├── Connection.java │ │ │ │ │ ├── ConnectionCache.java │ │ │ │ │ ├── ConnectionCacheFactory.java │ │ │ │ │ ├── ConnectionFinder.java │ │ │ │ │ ├── ContactInfo.java │ │ │ │ │ ├── InboundConnectionCache.java │ │ │ │ │ └── OutboundConnectionCache.java │ │ │ │ └── org │ │ │ │ └── omg │ │ │ │ ├── CORBA │ │ │ │ ├── AttrDescriptionSeqHelper.java │ │ │ │ ├── AttributeDescription.java │ │ │ │ ├── AttributeDescriptionHelper.java │ │ │ │ ├── AttributeMode.java │ │ │ │ ├── AttributeModeHelper.java │ │ │ │ ├── ContextIdSeqHelper.java │ │ │ │ ├── ContextIdentifierHelper.java │ │ │ │ ├── DefinitionKindHelper.java │ │ │ │ ├── ExcDescriptionSeqHelper.java │ │ │ │ ├── ExceptionDescription.java │ │ │ │ ├── ExceptionDescriptionHelper.java │ │ │ │ ├── IDLTypeHelper.java │ │ │ │ ├── IDLTypeOperations.java │ │ │ │ ├── IRObjectOperations.java │ │ │ │ ├── IdentifierHelper.java │ │ │ │ ├── Initializer.java │ │ │ │ ├── InitializerHelper.java │ │ │ │ ├── InitializerSeqHelper.java │ │ │ │ ├── OpDescriptionSeqHelper.java │ │ │ │ ├── OperationDescription.java │ │ │ │ ├── OperationDescriptionHelper.java │ │ │ │ ├── OperationMode.java │ │ │ │ ├── OperationModeHelper.java │ │ │ │ ├── ParDescriptionSeqHelper.java │ │ │ │ ├── ParameterDescription.java │ │ │ │ ├── ParameterDescriptionHelper.java │ │ │ │ ├── ParameterMode.java │ │ │ │ ├── ParameterModeHelper.java │ │ │ │ ├── Repository.java │ │ │ │ ├── RepositoryHelper.java │ │ │ │ ├── RepositoryIdHelper.java │ │ │ │ ├── RepositoryIdSeqHelper.java │ │ │ │ ├── StructMemberHelper.java │ │ │ │ ├── StructMemberSeqHelper.java │ │ │ │ ├── ValueDefPackage │ │ │ │ │ ├── FullValueDescription.java │ │ │ │ │ └── FullValueDescriptionHelper.java │ │ │ │ ├── ValueMemberHelper.java │ │ │ │ ├── ValueMemberSeqHelper.java │ │ │ │ ├── VersionSpecHelper.java │ │ │ │ ├── VisibilityHelper.java │ │ │ │ └── portable │ │ │ │ │ └── ValueHelper.java │ │ │ │ └── SendingContext │ │ │ │ ├── CodeBase.java │ │ │ │ ├── CodeBaseHelper.java │ │ │ │ ├── CodeBaseOperations.java │ │ │ │ ├── CodeBasePackage │ │ │ │ ├── URLHelper.java │ │ │ │ ├── URLSeqHelper.java │ │ │ │ └── ValueDescSeqHelper.java │ │ │ │ ├── _CodeBaseImplBase.java │ │ │ │ └── _CodeBaseStub.java │ │ ├── module-info.java │ │ └── org │ │ │ └── glassfish │ │ │ ├── corba │ │ │ ├── BridgePermission.java │ │ │ ├── org │ │ │ │ └── omg │ │ │ │ │ └── CORBA │ │ │ │ │ └── _IDLTypeStub.java │ │ │ └── package.html │ │ │ └── jndi │ │ │ ├── cosnaming │ │ │ ├── CNBindingEnumeration.java │ │ │ ├── CNCtx.java │ │ │ ├── CNCtxFactory.java │ │ │ ├── CNNameParser.java │ │ │ ├── CorbanameUrl.java │ │ │ ├── ExceptionMapper.java │ │ │ ├── IiopUrl.java │ │ │ ├── OrbReuseTracker.java │ │ │ ├── RemoteToCorba.java │ │ │ └── jndiprovider.properties │ │ │ └── toolkit │ │ │ └── corba │ │ │ └── CorbaUtils.java │ └── resources │ │ └── com │ │ └── sun │ │ └── corba │ │ └── ee │ │ └── impl │ │ └── resources │ │ ├── sunorb.properties │ │ ├── sunorb_de.properties │ │ ├── sunorb_es.properties │ │ ├── sunorb_fr.properties │ │ ├── sunorb_it.properties │ │ ├── sunorb_ja.properties │ │ ├── sunorb_ko.properties │ │ ├── sunorb_sv.properties │ │ ├── sunorb_zh_CN.properties │ │ └── sunorb_zh_TW.properties │ └── test │ ├── idl │ └── codec.idl │ └── java │ ├── com │ └── sun │ │ └── corba │ │ └── ee │ │ ├── StandardClassesTest.java │ │ ├── impl │ │ ├── corba │ │ │ ├── AnyEqualityTest.java │ │ │ ├── AnyImplTest.java │ │ │ ├── Enum1.java │ │ │ ├── Enum1Helper.java │ │ │ └── javax │ │ │ │ └── TestTransactionRemoteException.java │ │ ├── encoding │ │ │ ├── AllTypesFields.java │ │ │ ├── CDRInputTest.java │ │ │ ├── CDRInputValueTest.java │ │ │ ├── CDRMemoryManagementTest.java │ │ │ ├── CDROutputTest.java │ │ │ ├── CDROutputValueTest.java │ │ │ ├── ComplexValue.java │ │ │ ├── CustomMarshalledValue.java │ │ │ ├── CustomReadClass.java │ │ │ ├── CustomWriteClass.java │ │ │ ├── DerivedValue.java │ │ │ ├── EncodingTestBase.java │ │ │ ├── Enum1.java │ │ │ ├── FVDBuilder.java │ │ │ ├── FVDInputValueTest.java │ │ │ ├── FieldsIOValueTest.java │ │ │ ├── Gender.java │ │ │ ├── IDLValue.java │ │ │ ├── IDLValueHelper.java │ │ │ ├── Profession.java │ │ │ ├── Value1.java │ │ │ ├── Value1DefaultFactory.java │ │ │ ├── Value1Helper.java │ │ │ ├── Value2.java │ │ │ └── ValueTestBase.java │ │ ├── folb │ │ │ ├── GroupManagerServiceInterceptorsTest.java │ │ │ ├── StubObject.java │ │ │ └── TestIOR.java │ │ ├── interceptors │ │ │ └── CodecFactoryImplTest.java │ │ ├── io │ │ │ └── ValueHandlerTest.java │ │ ├── ior │ │ │ ├── IORImplTest.java │ │ │ └── iiop │ │ │ │ ├── IIOPProfileImplTest.java │ │ │ │ └── IIOPProfileTemplateImplTest.java │ │ ├── presentation │ │ │ └── rmi │ │ │ │ ├── JNDIStateFactoryImplTest.java │ │ │ │ ├── StubInvocationHandlerImplTest.java │ │ │ │ ├── TestIDLNameTranslator.java │ │ │ │ └── TestRMIIDLTypes.java │ │ ├── protocol │ │ │ ├── ClientRequestDispatcherImplTest.java │ │ │ └── MessageParserTest.java │ │ └── transport │ │ │ ├── ConnectionImplTest.java │ │ │ ├── SelectorImplTest.java │ │ │ ├── SocketChannelReaderTest.java │ │ │ └── TransportTestBase.java │ │ └── spi │ │ ├── ior │ │ └── iiop │ │ │ └── IIOPFactoriesTest.java │ │ └── presentation │ │ └── rmi │ │ └── PresentationDefaultsTest.java │ ├── corba │ └── dynamicrmiiiop │ │ └── testclasses │ │ ├── ContainerClash1.java │ │ ├── ContainerClash2.java │ │ ├── Default.java │ │ ├── IDLCaseSensitivityTest.java │ │ ├── IDLComboTest1.java │ │ ├── IDLDefaultTest.java │ │ ├── IDLIdentifiersTest.java │ │ ├── IDLKeywordsTest.java │ │ ├── IDLLeadingUnderscoresTest.java │ │ ├── IDLMultipleInterfaceTest.java │ │ ├── IDLOverloadedTest.java │ │ ├── IDLPropertiesTest.java │ │ ├── InvalidEntities.java │ │ ├── InvalidExceptions.java │ │ ├── InvalidObjRefs.java │ │ ├── InvalidRemotes.java │ │ ├── InvalidValues.java │ │ ├── Raises.java │ │ ├── TestStruct.java │ │ ├── ValidEntities.java │ │ ├── ValidExceptions.java │ │ ├── ValidObjRefs.java │ │ ├── ValidRemotes.java │ │ ├── ValidValues.java │ │ ├── _ContainerClash3.java │ │ ├── _ContainerClash4.java │ │ ├── _Default.java │ │ ├── _Raises.java │ │ ├── _upackage │ │ └── Foo.java │ │ └── typedef │ │ └── Foo.java │ └── org │ └── glassfish │ └── corba │ └── testutils │ ├── HexBuffer.java │ └── StubCorbaObject.java ├── pom.xml ├── rmic ├── README ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── module-info.java │ │ ├── org │ │ │ └── glassfish │ │ │ │ └── rmic │ │ │ │ ├── BatchEnvironment.java │ │ │ │ ├── BatchEnvironmentError.java │ │ │ │ ├── Constants.java │ │ │ │ ├── Generator.java │ │ │ │ ├── IndentingWriter.java │ │ │ │ ├── Main.java │ │ │ │ ├── Names.java │ │ │ │ ├── RMIConstants.java │ │ │ │ ├── RMIGenerator.java │ │ │ │ ├── RemoteClass.java │ │ │ │ ├── TypeCode.java │ │ │ │ ├── Util.java │ │ │ │ ├── asm │ │ │ │ ├── AsmClass.java │ │ │ │ ├── AsmClassFactory.java │ │ │ │ ├── AsmMemberDefinition.java │ │ │ │ └── TypeFactory.java │ │ │ │ ├── iiop │ │ │ │ ├── AbstractType.java │ │ │ │ ├── ArrayType.java │ │ │ │ ├── BatchEnvironment.java │ │ │ │ ├── ClassPathLoader.java │ │ │ │ ├── ClassType.java │ │ │ │ ├── CompoundType.java │ │ │ │ ├── Constants.java │ │ │ │ ├── ContextElement.java │ │ │ │ ├── ContextStack.java │ │ │ │ ├── DirectoryLoader.java │ │ │ │ ├── Generator.java │ │ │ │ ├── IDLGenerator.java │ │ │ │ ├── IDLNames.java │ │ │ │ ├── ImplementationType.java │ │ │ │ ├── InterfaceType.java │ │ │ │ ├── NCClassType.java │ │ │ │ ├── NCInterfaceType.java │ │ │ │ ├── NameContext.java │ │ │ │ ├── PrimitiveType.java │ │ │ │ ├── PrintGenerator.java │ │ │ │ ├── RemoteType.java │ │ │ │ ├── SpecialClassType.java │ │ │ │ ├── SpecialInterfaceType.java │ │ │ │ ├── StaticStringsHash.java │ │ │ │ ├── StubGenerator.java │ │ │ │ ├── Type.java │ │ │ │ ├── Util.java │ │ │ │ └── ValueType.java │ │ │ │ └── tools │ │ │ │ ├── asm │ │ │ │ ├── ArrayData.java │ │ │ │ ├── Assembler.java │ │ │ │ ├── CatchData.java │ │ │ │ ├── ClassConstantData.java │ │ │ │ ├── ConstantPool.java │ │ │ │ ├── ConstantPoolData.java │ │ │ │ ├── Cover.java │ │ │ │ ├── FieldConstantData.java │ │ │ │ ├── Instruction.java │ │ │ │ ├── Label.java │ │ │ │ ├── LocalVariable.java │ │ │ │ ├── LocalVariableTable.java │ │ │ │ ├── NameAndTypeConstantData.java │ │ │ │ ├── NameAndTypeData.java │ │ │ │ ├── NumberConstantData.java │ │ │ │ ├── StringConstantData.java │ │ │ │ ├── StringExpressionConstantData.java │ │ │ │ ├── SwitchData.java │ │ │ │ └── TryData.java │ │ │ │ ├── binaryclass │ │ │ │ ├── BinaryAttribute.java │ │ │ │ ├── BinaryClass.java │ │ │ │ ├── BinaryClassFactory.java │ │ │ │ ├── BinaryConstantPool.java │ │ │ │ └── BinaryMember.java │ │ │ │ ├── java │ │ │ │ ├── AmbiguousClass.java │ │ │ │ ├── AmbiguousMember.java │ │ │ │ ├── ArrayType.java │ │ │ │ ├── ClassDeclaration.java │ │ │ │ ├── ClassDefinition.java │ │ │ │ ├── ClassDefinitionFactory.java │ │ │ │ ├── ClassFile.java │ │ │ │ ├── ClassNotFound.java │ │ │ │ ├── ClassPath.java │ │ │ │ ├── ClassType.java │ │ │ │ ├── CompilerError.java │ │ │ │ ├── Constants.java │ │ │ │ ├── Environment.java │ │ │ │ ├── FileClassFile.java │ │ │ │ ├── Identifier.java │ │ │ │ ├── IdentifierToken.java │ │ │ │ ├── Imports.java │ │ │ │ ├── MemberDefinition.java │ │ │ │ ├── MethodSet.java │ │ │ │ ├── MethodType.java │ │ │ │ ├── Package.java │ │ │ │ ├── Parser.java │ │ │ │ ├── ParserActions.java │ │ │ │ ├── PathClassFile.java │ │ │ │ ├── RmicUncheckedIOException.java │ │ │ │ ├── RuntimeConstants.java │ │ │ │ ├── Scanner.java │ │ │ │ ├── ScannerInputReader.java │ │ │ │ ├── SyntaxError.java │ │ │ │ ├── Type.java │ │ │ │ └── ZipClassFile.java │ │ │ │ ├── javac │ │ │ │ ├── BatchEnvironment.java │ │ │ │ ├── BatchParser.java │ │ │ │ ├── CompilerMember.java │ │ │ │ ├── ErrorConsumer.java │ │ │ │ ├── ErrorMessage.java │ │ │ │ ├── Main.java │ │ │ │ ├── SourceClass.java │ │ │ │ └── SourceMember.java │ │ │ │ ├── tree │ │ │ │ ├── AddExpression.java │ │ │ │ ├── AndExpression.java │ │ │ │ ├── ArrayAccessExpression.java │ │ │ │ ├── ArrayExpression.java │ │ │ │ ├── AssignAddExpression.java │ │ │ │ ├── AssignBitAndExpression.java │ │ │ │ ├── AssignBitOrExpression.java │ │ │ │ ├── AssignBitXorExpression.java │ │ │ │ ├── AssignDivideExpression.java │ │ │ │ ├── AssignExpression.java │ │ │ │ ├── AssignMultiplyExpression.java │ │ │ │ ├── AssignOpExpression.java │ │ │ │ ├── AssignRemainderExpression.java │ │ │ │ ├── AssignShiftLeftExpression.java │ │ │ │ ├── AssignShiftRightExpression.java │ │ │ │ ├── AssignSubtractExpression.java │ │ │ │ ├── AssignUnsignedShiftRightExpression.java │ │ │ │ ├── BinaryArithmeticExpression.java │ │ │ │ ├── BinaryAssignExpression.java │ │ │ │ ├── BinaryBitExpression.java │ │ │ │ ├── BinaryCompareExpression.java │ │ │ │ ├── BinaryEqualityExpression.java │ │ │ │ ├── BinaryExpression.java │ │ │ │ ├── BinaryLogicalExpression.java │ │ │ │ ├── BinaryShiftExpression.java │ │ │ │ ├── BitAndExpression.java │ │ │ │ ├── BitNotExpression.java │ │ │ │ ├── BitOrExpression.java │ │ │ │ ├── BitXorExpression.java │ │ │ │ ├── BooleanExpression.java │ │ │ │ ├── BreakStatement.java │ │ │ │ ├── ByteExpression.java │ │ │ │ ├── CaseStatement.java │ │ │ │ ├── CastExpression.java │ │ │ │ ├── CatchStatement.java │ │ │ │ ├── CharExpression.java │ │ │ │ ├── CheckContext.java │ │ │ │ ├── CodeContext.java │ │ │ │ ├── CommaExpression.java │ │ │ │ ├── CompoundStatement.java │ │ │ │ ├── ConditionVars.java │ │ │ │ ├── ConditionalExpression.java │ │ │ │ ├── ConstantExpression.java │ │ │ │ ├── Context.java │ │ │ │ ├── ContinueStatement.java │ │ │ │ ├── ConvertExpression.java │ │ │ │ ├── DeclarationStatement.java │ │ │ │ ├── DivRemExpression.java │ │ │ │ ├── DivideExpression.java │ │ │ │ ├── DoStatement.java │ │ │ │ ├── DoubleExpression.java │ │ │ │ ├── EqualExpression.java │ │ │ │ ├── ExprExpression.java │ │ │ │ ├── Expression.java │ │ │ │ ├── ExpressionStatement.java │ │ │ │ ├── FieldExpression.java │ │ │ │ ├── FieldUpdater.java │ │ │ │ ├── FinallyStatement.java │ │ │ │ ├── FloatExpression.java │ │ │ │ ├── ForStatement.java │ │ │ │ ├── GreaterExpression.java │ │ │ │ ├── GreaterOrEqualExpression.java │ │ │ │ ├── IdentifierExpression.java │ │ │ │ ├── IfStatement.java │ │ │ │ ├── IncDecExpression.java │ │ │ │ ├── InlineMethodExpression.java │ │ │ │ ├── InlineNewInstanceExpression.java │ │ │ │ ├── InlineReturnStatement.java │ │ │ │ ├── InstanceOfExpression.java │ │ │ │ ├── IntExpression.java │ │ │ │ ├── IntegerExpression.java │ │ │ │ ├── LengthExpression.java │ │ │ │ ├── LessExpression.java │ │ │ │ ├── LessOrEqualExpression.java │ │ │ │ ├── LocalMember.java │ │ │ │ ├── LongExpression.java │ │ │ │ ├── MethodExpression.java │ │ │ │ ├── MultiplyExpression.java │ │ │ │ ├── NaryExpression.java │ │ │ │ ├── NegativeExpression.java │ │ │ │ ├── NewArrayExpression.java │ │ │ │ ├── NewInstanceExpression.java │ │ │ │ ├── Node.java │ │ │ │ ├── NotEqualExpression.java │ │ │ │ ├── NotExpression.java │ │ │ │ ├── NullExpression.java │ │ │ │ ├── OrExpression.java │ │ │ │ ├── PositiveExpression.java │ │ │ │ ├── PostDecExpression.java │ │ │ │ ├── PostIncExpression.java │ │ │ │ ├── PreDecExpression.java │ │ │ │ ├── PreIncExpression.java │ │ │ │ ├── RemainderExpression.java │ │ │ │ ├── ReturnStatement.java │ │ │ │ ├── ShiftLeftExpression.java │ │ │ │ ├── ShiftRightExpression.java │ │ │ │ ├── ShortExpression.java │ │ │ │ ├── Statement.java │ │ │ │ ├── StringExpression.java │ │ │ │ ├── SubtractExpression.java │ │ │ │ ├── SuperExpression.java │ │ │ │ ├── SwitchStatement.java │ │ │ │ ├── SynchronizedStatement.java │ │ │ │ ├── ThisExpression.java │ │ │ │ ├── ThrowStatement.java │ │ │ │ ├── TryStatement.java │ │ │ │ ├── TypeExpression.java │ │ │ │ ├── UnaryExpression.java │ │ │ │ ├── UnsignedShiftRightExpression.java │ │ │ │ ├── UplevelReference.java │ │ │ │ ├── VarDeclarationStatement.java │ │ │ │ ├── Vset.java │ │ │ │ └── WhileStatement.java │ │ │ │ └── util │ │ │ │ ├── CommandLine.java │ │ │ │ └── ModifierFilter.java │ │ └── sun │ │ │ └── rmi │ │ │ └── rmic │ │ │ └── Main.java │ └── resources │ │ └── org │ │ └── glassfish │ │ └── rmic │ │ ├── resources │ │ ├── rmic.properties │ │ ├── rmic_ja.properties │ │ └── rmic_zh_CN.properties │ │ └── tools │ │ └── javac │ │ └── resources │ │ ├── javac.properties │ │ ├── javac_ja.properties │ │ └── javac_zh_CN.properties │ └── test │ ├── README │ ├── java │ ├── TopLevelClass.java │ └── org │ │ └── glassfish │ │ └── rmic │ │ ├── BatchEnvironmentTest.java │ │ ├── MainTest.java │ │ ├── RmicGenerationTest.java │ │ ├── TestUtils.java │ │ ├── asm │ │ ├── AsmClassFactoryTest.java │ │ └── TypeFactoryTest.java │ │ ├── classes │ │ ├── covariantReturn │ │ │ ├── Animal.java │ │ │ ├── AnimalFinder.java │ │ │ ├── Dog.java │ │ │ └── DogFinder.java │ │ ├── errorClasses │ │ │ ├── InterfaceWithNonRemoteMethod.java │ │ │ ├── NotRemoteClass.java │ │ │ └── PackageInterface.java │ │ ├── exceptiondetailsc │ │ │ ├── ExceptionSource.java │ │ │ ├── ExceptionSourceServantPOA.java │ │ │ └── RmiIException.java │ │ ├── giopheaderpadding │ │ │ ├── Foo.java │ │ │ └── FooServantPOA.java │ │ ├── hcks │ │ │ ├── RmiII.java │ │ │ ├── RmiIIServant.java │ │ │ ├── RmiIIServantPOA.java │ │ │ └── RmiIMyException.java │ │ ├── inneraccess │ │ │ ├── ColorChecker.java │ │ │ └── Rainbow.java │ │ ├── islocal │ │ │ ├── MessageBuilder.java │ │ │ └── MessageBuilderServantPOA.java │ │ ├── nestedClasses │ │ │ └── TwoLevelNested.java │ │ ├── preinvokepostinvoke │ │ │ ├── Interface.java │ │ │ └── MyServant.java │ │ ├── primitives │ │ │ ├── InterfaceWithConstantArray.java │ │ │ ├── InterfaceWithNonPrimitiveConstant.java │ │ │ ├── NonFinalInterface.java │ │ │ ├── RmiTestRemote.java │ │ │ └── RmiTestRemoteImpl.java │ │ ├── rmipoacounter │ │ │ ├── CounterIF.java │ │ │ └── CounterImpl.java │ │ └── systemexceptions │ │ │ ├── Server.java │ │ │ ├── ServerInvoker.java │ │ │ └── ServerInvokerServantPOA.java │ │ └── tools │ │ ├── binaryclass │ │ └── BinaryClassTest.java │ │ ├── java │ │ ├── ClassDefinitionFactoryTest.java │ │ └── ClassPathTest.java │ │ └── javac │ │ └── BatchEnvironmentTest.java │ └── masters │ ├── README │ ├── idl │ └── org │ │ └── glassfish │ │ └── rmic │ │ └── classes │ │ └── inneraccess │ │ └── Rainbow__CheckerImpl.idl │ ├── primitives │ └── org │ │ └── glassfish │ │ └── rmic │ │ └── classes │ │ └── primitives │ │ ├── _RmiTestRemoteImpl_Tie.java │ │ └── _RmiTestRemote_Stub.java │ ├── stub_from_interface │ └── org │ │ └── glassfish │ │ └── rmic │ │ └── classes │ │ └── hcks │ │ └── _RmiII_Stub.java │ ├── with_poas │ └── org │ │ └── glassfish │ │ └── rmic │ │ └── classes │ │ ├── exceptiondetailsc │ │ ├── _ExceptionSourceServantPOA_Tie.java │ │ └── _ExceptionSource_Stub.java │ │ ├── giopheaderpadding │ │ ├── _FooServantPOA_Tie.java │ │ └── _Foo_Stub.java │ │ ├── hcks │ │ ├── _RmiIIServantPOA_Tie.java │ │ └── _RmiII_Stub.java │ │ ├── islocal │ │ ├── _MessageBuilderServantPOA_Tie.java │ │ └── _MessageBuilder_Stub.java │ │ ├── preinvokepostinvoke │ │ ├── _Interface_Stub.java │ │ └── _MyServant_Tie.java │ │ ├── rmipoacounter │ │ ├── _CounterIF_Stub.java │ │ └── _CounterImpl_Tie.java │ │ └── systemexceptions │ │ ├── _ServerInvokerServantPOA_Tie.java │ │ └── _ServerInvoker_Stub.java │ └── without_poas │ └── org │ └── glassfish │ └── rmic │ └── classes │ └── hcks │ ├── _RmiIIServant_Tie.java │ └── _RmiII_Stub.java ├── src ├── share │ └── classes │ │ ├── com │ │ └── sun │ │ │ ├── corba │ │ │ └── ee │ │ │ │ ├── GiopIDL │ │ │ │ ├── GIOP.idl │ │ │ │ └── messages.idl │ │ │ │ ├── impl │ │ │ │ └── osgi │ │ │ │ │ └── main │ │ │ │ │ └── ORBFactoryTest.java │ │ │ │ ├── internal │ │ │ │ └── io │ │ │ │ │ ├── IIOPInputStream.java │ │ │ │ │ ├── IIOPOutputStream.java │ │ │ │ │ ├── LibraryManager.java │ │ │ │ │ └── ObjectStreamClass.java │ │ │ │ ├── pept │ │ │ │ └── package.html │ │ │ │ └── tool │ │ │ │ ├── IORDump.java │ │ │ │ └── OrbPing.java │ │ │ └── tools │ │ │ └── corba │ │ │ └── se │ │ │ └── timer │ │ │ ├── timing.dtd │ │ │ └── timing.xml │ │ ├── org │ │ └── omg │ │ │ ├── CORBA │ │ │ ├── OctetSeqHelper.java │ │ │ ├── OctetSeqHolder.java │ │ │ ├── PolicyError.java │ │ │ └── RepositoryIdHelper.java │ │ │ ├── CosNaming │ │ │ ├── _BindingIteratorImplBase.java │ │ │ ├── _NamingContextImplBase.java │ │ │ └── package.html │ │ │ ├── CosTSPortability │ │ │ └── CosTSPortability.idl │ │ │ ├── CosTransactions │ │ │ ├── CORBAX.idl │ │ │ ├── CurrentHelper.java │ │ │ └── CurrentHolder.java │ │ │ ├── DynamicAny │ │ │ ├── DynAnyFactoryPackage │ │ │ │ └── package.html │ │ │ ├── DynAnyPackage │ │ │ │ └── package.html │ │ │ └── package.html │ │ │ ├── PortableInterceptor │ │ │ ├── ORBInitInfoPackage │ │ │ │ └── package.html │ │ │ └── package.html │ │ │ └── PortableServer │ │ │ ├── CurrentHelper.java │ │ │ ├── CurrentPackage │ │ │ └── package.html │ │ │ ├── DynamicImplementation.java │ │ │ ├── POAHelper.java │ │ │ ├── POAManagerPackage │ │ │ └── package.html │ │ │ ├── POAPackage │ │ │ └── package.html │ │ │ ├── Servant.java │ │ │ ├── ServantLocatorPackage │ │ │ ├── CookieHolder.java │ │ │ └── package.html │ │ │ ├── package.html │ │ │ └── portable │ │ │ ├── Delegate.java │ │ │ └── package.html │ │ └── sun │ │ └── rmi │ │ └── rmic │ │ ├── BatchEnvironment.java │ │ ├── Constants.java │ │ ├── Generator.java │ │ ├── IndentingWriter.java │ │ ├── Main.java │ │ ├── Names.java │ │ ├── RMIConstants.java │ │ ├── RMIGenerator.java │ │ ├── RemoteClass.java │ │ ├── Util.java │ │ ├── iiop │ │ ├── AbstractType.java │ │ ├── ArrayType.java │ │ ├── BatchEnvironment.java │ │ ├── ClassPathLoader.java │ │ ├── ClassType.java │ │ ├── CompoundType.java │ │ ├── Constants.java │ │ ├── ContextElement.java │ │ ├── ContextStack.java │ │ ├── DirectoryLoader.java │ │ ├── Generator.java │ │ ├── IDLGenerator.java │ │ ├── IDLNames.java │ │ ├── ImplementationType.java │ │ ├── InterfaceType.java │ │ ├── NCClassType.java │ │ ├── NCInterfaceType.java │ │ ├── NameContext.java │ │ ├── PrimitiveType.java │ │ ├── PrintGenerator.java │ │ ├── RemoteType.java │ │ ├── SpecialClassType.java │ │ ├── SpecialInterfaceType.java │ │ ├── StaticStringsHash.java │ │ ├── StubGenerator.java │ │ ├── Type.java │ │ ├── Util.java │ │ └── ValueType.java │ │ └── resources │ │ └── rmic.properties └── site │ └── apt │ └── index.apt ├── test ├── .cvsignore ├── disabled │ └── performance │ │ ├── eesample │ │ ├── SampleData.java │ │ ├── StandardTest.java │ │ ├── echoArray.xml │ │ ├── echoArrayFragmentSize.xml │ │ ├── results_with_fragment_size.txt │ │ ├── test.xml │ │ └── wspex │ │ │ ├── Address.java │ │ │ ├── ArrayOfLineItem.java │ │ │ ├── Customer.java │ │ │ ├── EchoOrderRequest.java │ │ │ ├── EchoOrderResponse.java │ │ │ ├── Item.java │ │ │ ├── ItemArrayType.java │ │ │ ├── LineItem.java │ │ │ ├── Location.java │ │ │ ├── Order.java │ │ │ ├── Struct.java │ │ │ ├── Synthetic.java │ │ │ └── components │ │ │ └── OrderBL.java │ │ └── simpleperf │ │ └── counterClient.java └── src │ └── share │ └── classes │ ├── alpha │ └── bravo │ │ ├── A.idlref │ │ ├── A.java │ │ ├── AB.idlref │ │ ├── AB.java │ │ ├── B.idlref │ │ ├── B.java │ │ ├── Bear.idlref │ │ ├── Bear.java │ │ ├── Charlie.idlref │ │ ├── Charlie.java │ │ ├── DuckBill.idlref │ │ ├── DuckBill.java │ │ ├── Hedgehog.idlref │ │ ├── Hedgehog.java │ │ ├── Kangaroo.idlref │ │ ├── Kangaroo.java │ │ ├── Mammal.idlref │ │ ├── Mammal.java │ │ ├── Multi.java │ │ ├── Platypus.idlref │ │ ├── Platypus.java │ │ ├── Platypus__Marsupial.idlref │ │ ├── PolarBear.idlref │ │ ├── PolarBear.java │ │ ├── Porcupine.idlref │ │ ├── Porcupine.java │ │ ├── Wallaby.idlref │ │ ├── Wallaby.java │ │ ├── Warthog.idlref │ │ ├── Warthog.java │ │ ├── Wombat.idlref │ │ └── Wombat.java │ ├── corba │ ├── CORBATests.tdesc │ ├── CopyObjectTests.tdesc │ ├── acceptorandcontactinfo │ │ ├── AcceptorAndContactInfoTest.java │ │ ├── Client.java │ │ ├── ColocatedClientServer.java │ │ ├── ServantLocator.java │ │ ├── Server.java │ │ ├── rmiiI.java │ │ └── rmiiIServantPOA.java │ ├── cdrext │ │ ├── AbsTester.java │ │ ├── CDRExtTest.java │ │ ├── CheckedException.java │ │ ├── Client.java │ │ ├── CustomMarshalTester.java │ │ ├── DataCorruptedException.java │ │ ├── MarshalChecker.java │ │ ├── MarshalTester.java │ │ ├── ReplaceSubClass.java │ │ ├── ReplaceSuperClass.java │ │ ├── Server.java │ │ ├── Status.java │ │ ├── SubClass.java │ │ ├── SuperClass.java │ │ ├── TestClass.java │ │ ├── TestExternalizable.java │ │ ├── TestObject.java │ │ ├── Tester.java │ │ └── UncheckedException.java │ ├── cdrstreams │ │ ├── CDRTests.java │ │ ├── Client.java │ │ ├── CustomMarshaled.java │ │ ├── GraphProcessor.java │ │ ├── GraphProcessorImpl.java │ │ ├── InvalidGraphException.java │ │ ├── MarkResetTester.java │ │ ├── Node.java │ │ └── Server.java │ ├── cmvt │ │ ├── CMVTTest.java │ │ ├── Client.java │ │ ├── CustomMarshalledValueType.java │ │ ├── GIOPCombo.java │ │ ├── GIOPComboImpl.java │ │ └── Server.java │ ├── codebase │ │ ├── Client.java │ │ ├── CodeBaseTest.java │ │ ├── NoSecurityManager.java │ │ ├── Server.java │ │ ├── TestValue.java │ │ ├── Tester.java │ │ └── WebServer.java │ ├── connectioncache │ │ ├── Client.java │ │ ├── ConnectionCacheStressTest.java │ │ ├── ConnectionCacheTest.java │ │ ├── ConnectionImpl.java │ │ ├── ContactInfoImpl.java │ │ ├── RandomDelay.java │ │ └── StressClient.java │ ├── connections │ │ ├── Client.java │ │ ├── Client1.java │ │ ├── Client2.java │ │ ├── ConnectionStatistics.java │ │ ├── ConnectionsTest.java │ │ ├── RemoteInterface.java │ │ ├── RemoteService.java │ │ ├── Server.java │ │ ├── Server1.java │ │ ├── Server2.java │ │ └── Struct.java │ ├── copyobjectpolicy │ │ ├── Client.java │ │ ├── CopyObjectPolicyTest.java │ │ ├── Echo.java │ │ ├── EchoImpl.java │ │ └── UserConfigurator.java │ ├── custom │ │ ├── ArrayListNode.java │ │ ├── CharGenerator.java │ │ ├── Client.java │ │ ├── CustomTest.java │ │ ├── Node.java │ │ ├── Server.java │ │ ├── Verifier.java │ │ └── VerifierImpl.java │ ├── dynamicrmiiiop │ │ ├── Client.java │ │ ├── DynamicRmiIIOPTest.java │ │ ├── TestClientDelegate.java │ │ ├── TestCodegenProxyCreator.java │ │ ├── TestTransport.java │ │ └── testclasses │ │ │ ├── A.java │ │ │ ├── B.java │ │ │ ├── C.java │ │ │ ├── C1.java │ │ │ ├── C2.java │ │ │ ├── C3.java │ │ │ ├── C4.java │ │ │ ├── C5.java │ │ │ ├── C6.java │ │ │ ├── D.java │ │ │ ├── DMMImplTestClasses.java │ │ │ ├── DefaultInterface.java │ │ │ ├── E.java │ │ │ ├── F.java │ │ │ ├── G.java │ │ │ ├── H.java │ │ │ ├── MyApplicationException.java │ │ │ ├── MyApplicationExceptionBase.java │ │ │ ├── TieTest.java │ │ │ ├── TieTestImpl.java │ │ │ └── exception │ │ │ └── TestException.java │ ├── enuminterop │ │ ├── Client.java │ │ ├── Echo.java │ │ ├── EchoServant.java │ │ ├── EnumTest.java │ │ └── Server.java │ ├── example │ │ ├── Client.java │ │ ├── Example.java │ │ ├── Server.java │ │ └── hello.idl │ ├── folb │ │ ├── CSIv2SSLTaggedComponentHandlerImpl.java │ │ ├── Client.java │ │ ├── ClientBase.java │ │ ├── ClientCircular.java │ │ ├── ClientMulti.java │ │ ├── ClientWaitTimeout.java │ │ ├── Common.java │ │ ├── EchoTest.java │ │ ├── EchoTestServant.java │ │ ├── FolbTest.java │ │ ├── GroupInfoServiceImpl.java │ │ ├── GroupInfoServiceTest.java │ │ ├── GroupInfoServiceTestServant.java │ │ ├── README-AS.txt │ │ ├── README.txt │ │ ├── Server.java │ │ └── TODO.txt │ ├── fragment │ │ ├── BadArrayException.java │ │ ├── Client.java │ │ ├── FragmentTest.java │ │ ├── FragmentTester.java │ │ ├── FragmentTesterImpl.java │ │ └── Server.java │ ├── fragment2 │ │ ├── BadArrayException.java │ │ ├── Client.java │ │ ├── FragmentTest.java │ │ ├── FragmentTester.java │ │ ├── FragmentTesterImpl.java │ │ └── Server.java │ ├── fsm │ │ ├── Client.sjava │ │ └── FSMTest.sjava │ ├── giopgen │ │ ├── Client.java │ │ ├── Common.java │ │ ├── GIOPGenTest.java │ │ ├── Server.java │ │ ├── Test.java │ │ └── TestServant.java │ ├── ior │ │ ├── Client.java │ │ └── IORTests.java │ ├── lb │ │ ├── Client.java │ │ ├── Common.java │ │ ├── LB.java │ │ ├── LBTest.java │ │ ├── Server.java │ │ ├── Test.java │ │ └── TestServant.java │ ├── lbq │ │ ├── ClientControl.java │ │ ├── CommandQueue.java │ │ ├── Common.java │ │ ├── LBControl.java │ │ ├── Server.java │ │ ├── ServerControl.java │ │ ├── ServerReporter.java │ │ ├── Test.java │ │ ├── TestServant.java │ │ └── notes.txt │ ├── legacyorbclasses │ │ ├── Client.java │ │ └── LegacyORBClassesTest.java │ ├── messagetrace │ │ ├── Client.java │ │ └── MessageTraceTest.java │ ├── misc │ │ ├── Buck.java │ │ ├── BuckPasserAL.java │ │ ├── BuckPasserV.java │ │ ├── Client.java │ │ └── MiscTest.java │ ├── mixedorb │ │ ├── Client.java │ │ ├── Echo.java │ │ ├── EchoImpl.java │ │ ├── MixedOrbTest.java │ │ └── Notes.txt │ ├── msgtypes │ │ ├── BadArrayException.java │ │ ├── Client.java │ │ ├── FragmentTester.java │ │ ├── FragmentTesterImpl.java │ │ ├── MsgTypesTest.java │ │ └── Server.java │ ├── nortel │ │ ├── Client.java │ │ ├── Echo.java │ │ ├── EchoImpl.java │ │ ├── NortelSocketFactory.java │ │ ├── Test.java │ │ └── UserInfo.java │ ├── orbconfig │ │ ├── Client.java │ │ ├── MyConfigurator.java │ │ ├── NewORBTests.java │ │ └── TestSession.java │ ├── orbconfigappserv │ │ ├── ORBConfigAppServTest.java │ │ ├── ORBInitializerImpl.java │ │ ├── ORBManager.java │ │ ├── SocketFactoryImpl.java │ │ └── UserORBConfiguratorImpl.java │ ├── ortremote │ │ ├── ORTEcho.java │ │ ├── ORTEchoImpl.java │ │ ├── ORTRemoteTest.java │ │ ├── Test.java │ │ └── TestSession.java │ ├── preinvokepostinvoke │ │ └── Server.java │ ├── prlb │ │ └── Notes.txt │ ├── resolve_deadlock │ │ ├── ResolveDeadlock.java │ │ └── ResolveDeadlockTest.java │ ├── retryplugin │ │ ├── Client.java │ │ ├── Common.java │ │ ├── README.txt │ │ ├── RetryPluginTest.java │ │ ├── Server.java │ │ ├── Test.java │ │ └── TestServant.java │ ├── rfm │ │ ├── TestClient.java │ │ └── TestRFM.java │ ├── rmic │ │ ├── A.java │ │ ├── B.java │ │ ├── C.java │ │ ├── CImpl.java │ │ └── RmicTest.java │ ├── rmipoacounter │ │ └── counterServer.java │ ├── security │ │ ├── Client.java │ │ └── PermissionTest.java │ ├── serialization │ │ ├── good │ │ │ ├── GoodRepIdTest.java │ │ │ └── ShowRepid.java │ │ ├── proxy │ │ │ ├── Client.java │ │ │ ├── Frobnicator.java │ │ │ ├── FrobnicatorProvider.java │ │ │ ├── FrobnicatorProviderBean.java │ │ │ ├── Handler.java │ │ │ ├── NoSecurityManager.java │ │ │ ├── ProxySerializationTest.java │ │ │ └── Server.java │ │ └── zerolengthstring │ │ │ ├── ClassWithZeroLengthStrings.java │ │ │ ├── MainTest.java │ │ │ └── ZeroLengthStringTest.java │ ├── shutdown │ │ ├── Client.sjava │ │ ├── Example.java │ │ ├── Server.sjava │ │ ├── Test.java │ │ └── TestImpl.java │ ├── simpledynamic │ │ ├── BuckPasserVectorOriginal.java │ │ ├── Client.java │ │ ├── Echo.java │ │ ├── EchoImpl.java │ │ ├── Framework.java │ │ ├── FrameworkClient.java │ │ ├── InterceptorTester.java │ │ ├── NewAcceptor.java │ │ ├── NewAcceptorClient.java │ │ └── SimpleDynamic.java │ ├── strm2 │ │ ├── Client.java │ │ ├── Server.java │ │ ├── Strm2Test.java │ │ ├── Testable.java │ │ ├── Tester.java │ │ ├── TesterImpl.java │ │ ├── Versions.java │ │ ├── class0 │ │ │ └── TestObject.java │ │ ├── class1 │ │ │ ├── TestObject.java │ │ │ └── TestObjectSuper.java │ │ ├── class2 │ │ │ ├── TestObject.java │ │ │ └── TestObjectSuper.java │ │ ├── class3 │ │ │ ├── TestObject.java │ │ │ └── TestObjectSuper.java │ │ ├── class4 │ │ │ ├── TestObject.java │ │ │ └── TestObjectSuper.java │ │ ├── class5 │ │ │ ├── TestObject.java │ │ │ └── TestObjectSuper.java │ │ ├── class6 │ │ │ ├── TestObject.java │ │ │ ├── TestObjectSuper.java │ │ │ ├── TestObjectSuperSub.java │ │ │ └── TestObjectSuperSuper.java │ │ └── class7 │ │ │ ├── TestObject.java │ │ │ ├── TestObjectSuper.java │ │ │ ├── TestObjectSuperSub.java │ │ │ └── TestObjectSuperSuper.java │ ├── stubserialization │ │ ├── Client.java │ │ ├── Constants.java │ │ ├── Echo.java │ │ ├── EchoServant.java │ │ ├── Hello.java │ │ ├── HelloServant.java │ │ ├── Server.java │ │ └── StubSerializationTest.java │ ├── tbbc │ │ └── Sample.java │ ├── testngrunner │ │ ├── Client.java │ │ ├── Second.java │ │ └── TestngRunnerTest.java │ ├── travelmuse │ │ ├── Client.java │ │ ├── TravelMuseTest.java │ │ └── mtm.bin │ └── util │ │ └── TransportManagerUtil.java │ ├── fake │ └── omega │ │ ├── Juliet.java │ │ ├── JulietHelper.java │ │ ├── Kilo.java │ │ └── KiloHelper.java │ ├── hopper │ ├── HopperTests.tdesc │ ├── h4486041 │ │ ├── Client.java │ │ ├── ORBInitErrorTest.java │ │ ├── ORBInitException.java │ │ └── TestORB.java │ ├── h4515953 │ │ ├── Processor.java │ │ ├── ProcessorImpl.java │ │ ├── RMICIDLEntityTest.java │ │ └── TestInterface.java │ ├── h4549085 │ │ ├── Client.java │ │ ├── LockedCodeSetTest.java │ │ ├── Server.java │ │ └── Tester.idl │ ├── h4620926 │ │ ├── Client.java │ │ ├── ConcurrentServantActivatorTest.java │ │ ├── Hello.idl │ │ └── Server.java │ ├── h4645953 │ │ ├── ValidateIdlModules.java │ │ └── service.idl │ ├── h4647746 │ │ ├── Client.java │ │ └── POAAppletTest.java │ ├── h4655388 │ │ ├── Client.java │ │ └── POAHierarchyTest.java │ ├── h4661596 │ │ └── WStringValueHelperTest.java │ └── h4670827 │ │ ├── Client.java │ │ ├── HelloImpl.java │ │ ├── INSServer.java │ │ ├── INSTest.java │ │ ├── TestConstants.java │ │ └── hello.idl │ ├── ibmspace │ ├── client │ │ ├── ActionSource.java │ │ ├── Arrow.java │ │ ├── BarControl.java │ │ ├── BarGroup.java │ │ ├── GalaxyView.java │ │ ├── GameSurrogate.java │ │ ├── GameUI.java │ │ ├── JourneyArrow.java │ │ ├── LabeledBarControl.java │ │ ├── PercentLayout.java │ │ ├── PieControl.java │ │ ├── PlanetStatsView.java │ │ ├── PlanetViewUI.java │ │ ├── ResourceLevelsPanel.java │ │ ├── ShipListPanel.java │ │ ├── SpaceFrame.java │ │ ├── TechLevelsPanel.java │ │ ├── TurnTaker.java │ │ ├── good.gif │ │ ├── logo.gif │ │ ├── selection.gif │ │ ├── ugly.gif │ │ └── unknown.gif │ ├── common │ │ ├── BudgetSummary.java │ │ ├── Fleet.java │ │ ├── GameProfile.java │ │ ├── GameView.java │ │ ├── ID.java │ │ ├── Identifiable.java │ │ ├── Journey.java │ │ ├── Planet.java │ │ ├── PlanetView.java │ │ ├── RemoteGameView.java │ │ ├── ShipDesign.java │ │ ├── SpaceConquest.java │ │ └── TechProfile.java │ ├── server │ │ ├── Battle.java │ │ ├── Budget.java │ │ ├── BudgetItem.java │ │ ├── FleetImpl.java │ │ ├── Galaxy.java │ │ ├── GalaxyProfile.java │ │ ├── Game.java │ │ ├── GameViewImpl.java │ │ ├── GameViewServer.java │ │ ├── Investment.java │ │ ├── JourneyImpl.java │ │ ├── Mining.java │ │ ├── PlanetImpl.java │ │ ├── PlanetNames.java │ │ ├── PlanetViewImpl.java │ │ ├── Player.java │ │ ├── Population.java │ │ ├── ResearchLab.java │ │ ├── Settlement.java │ │ ├── ShipSavings.java │ │ ├── SpaceConquestServer.java │ │ ├── Technology.java │ │ └── Terraforming.java │ └── spacetest │ │ └── SpaceTest.java │ ├── javax │ └── rmi │ │ ├── ClassLoadTest.java │ │ ├── Dog.java │ │ ├── DogImpl.java │ │ ├── DogServer.java │ │ ├── HashCode.java │ │ ├── HashCodeA.java │ │ ├── HashCodeAImpl.java │ │ ├── HashCodeImpl.java │ │ ├── PROHello.java │ │ ├── PROImpl.java │ │ ├── PROImpl2.java │ │ ├── PROTest.java │ │ ├── PortableREmoteOBject.java │ │ ├── RemoteDog.java │ │ ├── SInner.java │ │ ├── ServantInner.java │ │ ├── ServantOuter.java │ │ ├── fvd │ │ ├── Log.java │ │ ├── LogImpl.java │ │ ├── ParentClass.java │ │ ├── SecurityManager.java │ │ ├── Servant.java │ │ ├── ServantImpl.java │ │ ├── TheClient.java │ │ ├── TheServer.java │ │ └── TheTest.java │ │ └── test1 │ │ ├── ComboInterface.java │ │ ├── ComboInterfaceImpl.java │ │ ├── RemoteInterface1.java │ │ ├── RemoteInterface1Impl.java │ │ ├── RemoteInterface2.java │ │ ├── RemoteInterface2Impl.java │ │ ├── RemoteInterface3.java │ │ ├── RemoteInterface3Impl.java │ │ ├── SingleRemoteInterface.java │ │ ├── SingleRemoteInterfaceImpl.java │ │ ├── TheServer.java │ │ └── TheTest.java │ ├── mantis │ └── MantisTests.tdesc │ ├── naming │ ├── NamingTests.tdesc │ ├── cosnaming │ │ ├── Test.java │ │ └── naming_client.java │ ├── instest │ │ ├── Client.java │ │ ├── HelloImpl.java │ │ ├── INSServer.java │ │ ├── INSTest.java │ │ ├── TestConstants.java │ │ └── hello.idl │ ├── pcosnaming │ │ ├── PCOSNamingTest.java │ │ ├── hello.idl │ │ ├── helloClient.java │ │ └── helloServer.java │ └── rinameservice │ │ ├── NameServer.java │ │ ├── NameServiceClient.java │ │ ├── RINameServiceTest.java │ │ └── TestConstants.java │ ├── omega │ ├── A.java │ ├── AB.java │ ├── B.java │ ├── Bert.idlref │ ├── Bert.java │ ├── Bert__Fred.idlref │ ├── Climax.java │ ├── Constants.java │ ├── Dolphin.idlref │ ├── Dolphin.java │ ├── Dromedary.java │ ├── Foxtrot.java │ ├── FruitbatEx.idlref │ ├── FruitbatException.java │ ├── Golf.java │ ├── GolfOperations.java │ ├── Hotel.java │ ├── HotelHelper.java │ ├── India.java │ ├── MammalEx.idlref │ ├── MammalException.java │ ├── MammalOverload.idlref │ ├── MammalOverload.java │ ├── MammalOverloadEx.idlref │ ├── NCRemoteException.java │ ├── RedHerring.java │ ├── Thrower.idlref │ ├── Thrower.java │ ├── Wallaby.idlref │ └── Wallaby.java │ ├── performance │ ├── Tests.tdesc │ ├── simpleperf │ │ ├── SimplePerfTest.java │ │ ├── counterIF.java │ │ ├── counterImpl.java │ │ └── counterServer.java │ └── simpleperf2 │ │ ├── SimplePerfTest.java │ │ ├── counterClient.java │ │ ├── counterIF.java │ │ ├── counterImpl.java │ │ └── counterServer.java │ ├── pi │ ├── PITests.tdesc │ ├── assertions.html │ └── policyfactory │ │ ├── Client.java │ │ ├── PolicyFactoryHundred.java │ │ ├── PolicyFactoryTest.java │ │ ├── PolicyFactoryThousandPlus.java │ │ ├── PolicyHundred.java │ │ ├── PolicyTenThousand.java │ │ ├── PolicyThousand.java │ │ └── TestORBInitializer.java │ ├── rmic │ ├── IDLReferenceTest.classlist │ ├── StubReferenceTest.classlist │ ├── _BaseImpl_Tie.javaref │ ├── _Base_Stub.javaref │ ├── _DerivedImpl_Tie.javaref │ ├── _NoMethodsImpl_Tie.javaref │ ├── _NoMethods_Stub.javaref │ ├── _SimpleServant_Tie.javaref │ ├── _ThrowCORBAUserExServant_Tie.javaref │ └── _ThrowCORBAUserException_Stub.javaref │ ├── test.policy │ ├── test.policy.secure │ ├── test │ └── AllTests.tdesc │ ├── test12 │ ├── ARectangle.java │ ├── SerialPersistent.java │ └── SerializationTest.java │ ├── test_cases.txt │ ├── values1 │ └── javax │ │ └── rmi │ │ └── download │ │ └── values │ │ ├── ClassA.java │ │ ├── ClassB.java │ │ ├── ClassC.java │ │ ├── ClassE.java │ │ ├── ClientA.java │ │ ├── DownloadA.java │ │ ├── DownloadB.java │ │ ├── MissingContainer.java │ │ └── TheValueImpl.java │ └── values2 │ └── javax │ └── rmi │ └── download │ └── values │ ├── ClassA.java │ ├── ClassC.java │ ├── ClassD.java │ ├── ClassE.java │ ├── ClientA.java │ ├── MissingClass.java │ └── MissingContainer.java ├── tools ├── classcmp │ ├── ClassComparer.java │ ├── Makefile │ ├── tst1 │ │ └── TestClass.java │ └── tst2 │ │ └── TestClass.java ├── ior │ ├── CONV_FRAME.idl │ ├── CodeBaseHandler.java │ ├── DecodingException.java │ ├── EncapsHandler.java │ ├── IIOP.idl │ ├── IIOPProfileHandler.java │ ├── IOP.idl │ ├── IORDecoder.java │ ├── InitializationException.java │ ├── Makefile │ ├── README.txt │ ├── Rules.jmk │ ├── TagHelperHandler.java │ ├── TaggedMapFileReader.java │ ├── TextOutputHandler.java │ ├── Utility.java │ ├── tagcomps.txt │ └── tagprofs.txt └── pp │ └── msg_parser.txt └── www ├── TestCases.sxc ├── architecture.html ├── contents.html ├── corba-gf-tips.html ├── design ├── 6763340_diffs.txt ├── FOLB │ ├── AS9.0-RMI-IIOP-FOLB-FS.odt │ ├── AS9.0-RMI-IIOP-FOLB-FS.pdf │ ├── FODynamicCluster.pdf │ └── IIOPFOLBOnePager.html ├── GIOP_blunders.html ├── IIOPGroupAgent │ └── ORTExchangeAgent-2003 │ │ ├── IORProfiles.gif │ │ ├── IORProfiles.vthought │ │ ├── ORBD_EE_fsd.sxw │ │ ├── architecture.sxw │ │ ├── dataModel.gif │ │ ├── exampleEE.gif │ │ ├── exampleEE.vthought │ │ ├── exampleFirstInvokeRunning.gif │ │ ├── exampleFirstInvokeRunning.vthought │ │ ├── exampleRegister.gif │ │ ├── exampleRegister.vthought │ │ ├── exampleSecondInvokeRunning.gif │ │ ├── exampleSecondInvokeRunning.vthought │ │ ├── exampleThirdInvokeNotRunning.gif │ │ ├── exampleThirdInvokeNotRunning.vthought │ │ ├── objectModelExample.gif │ │ ├── objectModelExample.vthought │ │ ├── objectModelExample2.gif │ │ ├── orbd.zargo │ │ ├── stubFields.gif │ │ ├── stubFields.vthought │ │ ├── stubIORProfiles.gif │ │ ├── stubIORProfiles.vthought │ │ ├── stubInitial.gif │ │ ├── stubInitial.vthought │ │ ├── stubLocationForward.gif │ │ └── stubLocationForward.vthought ├── OutboundConnectionCacheImpl.png ├── SAF │ ├── SAF_class.mif │ ├── activation.idl │ ├── current.doc │ ├── extending.doc │ ├── imr.doc │ ├── init_order.txt │ ├── interceptor_usage.text │ ├── introduction.book │ ├── introduction.doc │ ├── introduction.pdf │ ├── introductionTOC.fm │ ├── old_activation_interaction.vthought │ ├── old_imr_class.vthought │ ├── portable.doc │ ├── server_activation.mif │ └── server_activation.vthought ├── ThreadPool.html ├── copyobject.htm ├── corba_testing_extensions.htm ├── dynamic_rmi_iiop.htm ├── dynamic_rmi_iiop_optimization.html ├── everett │ ├── casestudies │ │ └── giop1.txt │ └── serial_pres │ │ ├── pres1 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── img5.html │ │ ├── img5.jpg │ │ ├── img6.html │ │ ├── img6.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial1pres.html │ │ ├── serial1pres.odp │ │ ├── serial1pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text2.html │ │ ├── text3.html │ │ ├── text4.html │ │ ├── text5.html │ │ └── text6.html │ │ ├── pres2 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img10.html │ │ ├── img10.jpg │ │ ├── img11.html │ │ ├── img11.jpg │ │ ├── img12.html │ │ ├── img12.jpg │ │ ├── img13.html │ │ ├── img13.jpg │ │ ├── img14.html │ │ ├── img14.jpg │ │ ├── img15.html │ │ ├── img15.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── img5.html │ │ ├── img5.jpg │ │ ├── img6.html │ │ ├── img6.jpg │ │ ├── img7.html │ │ ├── img7.jpg │ │ ├── img8.html │ │ ├── img8.jpg │ │ ├── img9.html │ │ ├── img9.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial2pres.html │ │ ├── serial2pres.odp │ │ ├── serial2pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text10.html │ │ ├── text11.html │ │ ├── text12.html │ │ ├── text13.html │ │ ├── text14.html │ │ ├── text15.html │ │ ├── text2.html │ │ ├── text3.html │ │ ├── text4.html │ │ ├── text5.html │ │ ├── text6.html │ │ ├── text7.html │ │ ├── text8.html │ │ └── text9.html │ │ ├── pres3 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial3pres.html │ │ ├── serial3pres.odp │ │ ├── serial3pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text2.html │ │ ├── text3.html │ │ └── text4.html │ │ ├── pres4 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── img5.html │ │ ├── img5.jpg │ │ ├── img6.html │ │ ├── img6.jpg │ │ ├── img7.html │ │ ├── img7.jpg │ │ ├── img8.html │ │ ├── img8.jpg │ │ ├── img9.html │ │ ├── img9.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial4pres.html │ │ ├── serial4pres.odp │ │ ├── serial4pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text2.html │ │ ├── text3.html │ │ ├── text4.html │ │ ├── text5.html │ │ ├── text6.html │ │ ├── text7.html │ │ ├── text8.html │ │ └── text9.html │ │ ├── pres5 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img10.html │ │ ├── img10.jpg │ │ ├── img11.html │ │ ├── img11.jpg │ │ ├── img12.html │ │ ├── img12.jpg │ │ ├── img13.html │ │ ├── img13.jpg │ │ ├── img14.html │ │ ├── img14.jpg │ │ ├── img15.html │ │ ├── img15.jpg │ │ ├── img16.html │ │ ├── img16.jpg │ │ ├── img17.html │ │ ├── img17.jpg │ │ ├── img18.html │ │ ├── img18.jpg │ │ ├── img19.html │ │ ├── img19.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img20.html │ │ ├── img20.jpg │ │ ├── img21.html │ │ ├── img21.jpg │ │ ├── img22.html │ │ ├── img22.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── img5.html │ │ ├── img5.jpg │ │ ├── img6.html │ │ ├── img6.jpg │ │ ├── img7.html │ │ ├── img7.jpg │ │ ├── img8.html │ │ ├── img8.jpg │ │ ├── img9.html │ │ ├── img9.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial5pres.html │ │ ├── serial5pres.odp │ │ ├── serial5pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text10.html │ │ ├── text11.html │ │ ├── text12.html │ │ ├── text13.html │ │ ├── text14.html │ │ ├── text15.html │ │ ├── text16.html │ │ ├── text17.html │ │ ├── text18.html │ │ ├── text19.html │ │ ├── text2.html │ │ ├── text20.html │ │ ├── text21.html │ │ ├── text22.html │ │ ├── text3.html │ │ ├── text4.html │ │ ├── text5.html │ │ ├── text6.html │ │ ├── text7.html │ │ ├── text8.html │ │ └── text9.html │ │ └── pres6 │ │ ├── first0.jpg │ │ ├── first1.jpg │ │ ├── img0.html │ │ ├── img0.jpg │ │ ├── img1.html │ │ ├── img1.jpg │ │ ├── img10.html │ │ ├── img10.jpg │ │ ├── img11.html │ │ ├── img11.jpg │ │ ├── img12.html │ │ ├── img12.jpg │ │ ├── img13.html │ │ ├── img13.jpg │ │ ├── img14.html │ │ ├── img14.jpg │ │ ├── img15.html │ │ ├── img15.jpg │ │ ├── img16.html │ │ ├── img16.jpg │ │ ├── img17.html │ │ ├── img17.jpg │ │ ├── img18.html │ │ ├── img18.jpg │ │ ├── img19.html │ │ ├── img19.jpg │ │ ├── img2.html │ │ ├── img2.jpg │ │ ├── img20.html │ │ ├── img20.jpg │ │ ├── img21.html │ │ ├── img21.jpg │ │ ├── img22.html │ │ ├── img22.jpg │ │ ├── img23.html │ │ ├── img23.jpg │ │ ├── img3.html │ │ ├── img3.jpg │ │ ├── img4.html │ │ ├── img4.jpg │ │ ├── img5.html │ │ ├── img5.jpg │ │ ├── img6.html │ │ ├── img6.jpg │ │ ├── img7.html │ │ ├── img7.jpg │ │ ├── img8.html │ │ ├── img8.jpg │ │ ├── img9.html │ │ ├── img9.jpg │ │ ├── index.jpg │ │ ├── last0.jpg │ │ ├── last1.jpg │ │ ├── next0.jpg │ │ ├── next1.jpg │ │ ├── prev0.jpg │ │ ├── prev1.jpg │ │ ├── serial6pres.html │ │ ├── serial6pres.odp │ │ ├── serial6pres.sxi │ │ ├── text.jpg │ │ ├── text0.html │ │ ├── text1.html │ │ ├── text10.html │ │ ├── text11.html │ │ ├── text12.html │ │ ├── text13.html │ │ ├── text14.html │ │ ├── text15.html │ │ ├── text16.html │ │ ├── text17.html │ │ ├── text18.html │ │ ├── text19.html │ │ ├── text2.html │ │ ├── text20.html │ │ ├── text21.html │ │ ├── text22.html │ │ ├── text23.html │ │ ├── text3.html │ │ ├── text4.html │ │ ├── text5.html │ │ ├── text6.html │ │ ├── text7.html │ │ ├── text8.html │ │ └── text9.html ├── general_exception.html ├── monitoring.html ├── orb_notes.html ├── orb_notes.pdf ├── orb_notes001.png ├── orb_notes002.png ├── orb_notes003.png ├── orb_notes004.png ├── orbdArchitecture.html ├── orbdArchitecture.sxw ├── orbdArchitecture_html_14a23ee7.gif ├── orbdArchitecture_html_1d6149dc.gif ├── orbdArchitecture_html_20a9079b.gif ├── orbdArchitecture_html_3330d434.gif ├── orbdArchitecture_html_3472b4d5.gif ├── orbdArchitecture_html_49d410e2.gif ├── orbdArchitecture_html_7394932c.gif ├── orbdArchitecture_html_77bcdcbf.gif ├── orbdArchitecture_html_m2abb7fe1.gif ├── orbdArchitecture_html_m3f9af29d.gif ├── orbdArchitecture_html_m431c1580.gif ├── orbdArchitecture_html_m6a2efbbb.gif ├── orbdArchitecture_html_m6f0b4e4.gif ├── orbdArchitecture_html_md67d953.gif ├── stubs.gif ├── testing_giop.html └── versioning.html ├── index.html ├── procedures.html └── schedule.html /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "maven" 4 | directory: "/" 5 | schedule: 6 | interval: "daily" 7 | time: "02:00" 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build/** 3 | .gradle/** 4 | target/ 5 | .idea/** 6 | *.iml 7 | 8 | .settings 9 | .classpath 10 | .project 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Glassfish CORBA ORB 2 | 3 | This is the [glassfish-corba project](https://javaee.github.io/glassfish-corba/). 4 | 5 | ## Releasing 6 | 7 | * Make sure `gpg-agent` is running. 8 | * Execute `mvn -B release:prepare release:perform` 9 | 10 | For publishing the site do the following: 11 | 12 | ``` 13 | cd target/checkout 14 | mvn verify site site:stage scm-publish:publish-scm 15 | ``` 16 | -------------------------------------------------------------------------------- /csiv2-idl/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2025 Contributors to the Eclipse Foundation 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | module org.glassfish.corba.idl { 18 | 19 | requires org.glassfish.corba.omgapi; 20 | 21 | exports com.sun.corba.ee.org.omg.CSI; 22 | exports com.sun.corba.ee.org.omg.CSIIOP; 23 | exports com.sun.corba.ee.org.omg.GSSUP; 24 | } 25 | -------------------------------------------------------------------------------- /exception-annotation-processor/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2025 Contributors to the Eclipse Foundation 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | module org.glassfish.corba.annotation.processing { 18 | 19 | requires java.compiler; 20 | requires org.glassfish.pfl.basic; 21 | } 22 | -------------------------------------------------------------------------------- /exception-annotation-processor/src/main/resources/META-INF/services/javax.annotation.processing.Processor: -------------------------------------------------------------------------------- 1 | org.glassfish.corba.annotation.processing.ExceptionWrapperProcessor 2 | -------------------------------------------------------------------------------- /functional-tests/README: -------------------------------------------------------------------------------- 1 | Note: the functional tests are old, and have not been maintained in years. They use a combination of test frameworks, including some home-grown; don't pass reliably, and do not run with Java 9 and later. 2 | They are retained here to be run as an occasional reality check, and most should pass with Java 8. -------------------------------------------------------------------------------- /functional-tests/src/test/idl/legacy/oneway.idl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | module HelloApp 21 | { 22 | interface hello 23 | { 24 | oneway void sayHello(); 25 | oneway void shutdown(); 26 | }; 27 | }; 28 | 29 | -------------------------------------------------------------------------------- /functional-tests/src/test/idl/legacy/orbinit.idl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | module ORBInitTest 21 | { 22 | interface SampleObject { 23 | attribute short x; 24 | attribute short y; 25 | }; 26 | 27 | }; 28 | 29 | -------------------------------------------------------------------------------- /functional-tests/src/test/idl/multiorb_policy.idl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | module examples { 21 | interface policy_2 22 | { 23 | long increment(); 24 | }; 25 | }; 26 | -------------------------------------------------------------------------------- /functional-tests/src/test/idl/poaandequals_wombat.idl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | module WombatStuff { 21 | interface Wombat { 22 | string squawk(); 23 | }; 24 | }; 25 | -------------------------------------------------------------------------------- /functional-tests/src/test/idl/poatest.idl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | module HelloA { 21 | interface hello 22 | { 23 | oneway void sayHello(); 24 | oneway void shutdown(); 25 | 26 | }; 27 | }; 28 | -------------------------------------------------------------------------------- /functional-tests/src/test/java/corba/connectintercept_1_4/TODO.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0 which is available at 6 | # http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | # v. 1.0 which is available at 8 | # http://www.eclipse.org/org/documents/edl-v10.php. 9 | # 10 | # This Source Code may also be made available under the following Secondary 11 | # Licenses when the conditions for such availability set forth in the Eclipse 12 | # Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | # w/Classpath exception which is available at 14 | # https://www.gnu.org/software/classpath/license.html. 15 | # 16 | # SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | # Classpath-exception-2.0 18 | # 19 | 20 | Add running of persistent version of test to framework. 21 | -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/EmptyInterface.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package rmic; 22 | public interface EmptyInterface { 23 | } 24 | -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/NoMethods.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package rmic; 22 | public interface NoMethods extends java.rmi.Remote { 23 | } 24 | -------------------------------------------------------------------------------- /functional-tests/src/test/java/rmic/TestException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package rmic; 22 | public class TestException extends java.lang.Exception { 23 | } 24 | -------------------------------------------------------------------------------- /idlj/README: -------------------------------------------------------------------------------- 1 | With the ORB removed from the JDK, the include files orb.idl and ir.idl, which were located at $JAVA_HOME/lib are 2 | no longer available. They are now being packaged in the idlj.jar file, under the top-level "includes" directory. 3 | Users will need to extract them to a local directory in order to use them. -------------------------------------------------------------------------------- /idlj/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2025 Contributors to the Eclipse Foundation 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | module org.glassfish.corba.idl.compiler { 18 | 19 | // This module does not export any packages 20 | 21 | } 22 | -------------------------------------------------------------------------------- /idlj/src/test/masters/README: -------------------------------------------------------------------------------- 1 | The files in this directory were generated by running the Java built-in idlj against: 2 | 3 | idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 4 | 5 | and are used as 'golden masters' in order to ensure that the Glassfish version is compatible. -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/AliasDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/AliasDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface AliasDef extends AliasDefOperations, org.omg.CORBA.TypedefDef, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface AliasDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/AliasDefHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/AliasDefHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 8 | */ 9 | 10 | public final class AliasDefHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.AliasDef value = null; 13 | 14 | public AliasDefHolder () 15 | { 16 | } 17 | 18 | public AliasDefHolder (org.omg.CORBA.AliasDef initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.AliasDefHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.AliasDefHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.AliasDefHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/AliasDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/AliasDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface AliasDefOperations extends org.omg.CORBA.TypedefDefOperations 12 | { 13 | org.omg.CORBA.IDLType original_type_def (); 14 | void original_type_def (org.omg.CORBA.IDLType newOriginal_type_def); 15 | } // interface AliasDefOperations 16 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ArrayDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ArrayDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface ArrayDef extends ArrayDefOperations, org.omg.CORBA.IDLType, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface ArrayDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ArrayDefHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/ArrayDefHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 8 | */ 9 | 10 | public final class ArrayDefHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.ArrayDef value = null; 13 | 14 | public ArrayDefHolder () 15 | { 16 | } 17 | 18 | public ArrayDefHolder (org.omg.CORBA.ArrayDef initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.ArrayDefHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.ArrayDefHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.ArrayDefHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ArrayDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ArrayDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface ArrayDefOperations extends org.omg.CORBA.IDLTypeOperations 12 | { 13 | int length (); 14 | void length (int newLength); 15 | org.omg.CORBA.TypeCode element_type (); 16 | org.omg.CORBA.IDLType element_type_def (); 17 | void element_type_def (org.omg.CORBA.IDLType newElement_type_def); 18 | } // interface ArrayDefOperations 19 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/AttributeDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/AttributeDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface AttributeDef extends AttributeDefOperations, org.omg.CORBA.Contained, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface AttributeDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/AttributeDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/AttributeDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface AttributeDefOperations extends org.omg.CORBA.ContainedOperations 12 | { 13 | org.omg.CORBA.TypeCode type (); 14 | org.omg.CORBA.IDLType type_def (); 15 | void type_def (org.omg.CORBA.IDLType newType_def); 16 | org.omg.CORBA.AttributeMode mode (); 17 | void mode (org.omg.CORBA.AttributeMode newMode); 18 | } // interface AttributeDefOperations 19 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ConstantDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ConstantDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface ConstantDef extends ConstantDefOperations, org.omg.CORBA.Contained, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface ConstantDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ConstantDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ConstantDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface ConstantDefOperations extends org.omg.CORBA.ContainedOperations 12 | { 13 | org.omg.CORBA.TypeCode type (); 14 | org.omg.CORBA.IDLType type_def (); 15 | void type_def (org.omg.CORBA.IDLType newType_def); 16 | org.omg.CORBA.Any value (); 17 | void value (org.omg.CORBA.Any newValue); 18 | } // interface ConstantDefOperations 19 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/Contained.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/Contained.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public interface Contained extends ContainedOperations, org.omg.CORBA.IRObject, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface Contained 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ContainedHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/ContainedHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 8 | */ 9 | 10 | public final class ContainedHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.Contained value = null; 13 | 14 | public ContainedHolder () 15 | { 16 | } 17 | 18 | public ContainedHolder (org.omg.CORBA.Contained initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.ContainedHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.ContainedHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.ContainedHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ContainedOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ContainedOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public interface ContainedOperations extends org.omg.CORBA.IRObjectOperations 12 | { 13 | 14 | // read/write interface 15 | String id (); 16 | 17 | // read/write interface 18 | void id (String newId); 19 | String name (); 20 | void name (String newName); 21 | String version (); 22 | void version (String newVersion); 23 | 24 | // read interface 25 | org.omg.CORBA.Container defined_in (); 26 | String absolute_name (); 27 | org.omg.CORBA.Repository containing_repository (); 28 | org.omg.CORBA.ContainedPackage.Description describe (); 29 | 30 | // write interface 31 | void move (org.omg.CORBA.Container new_container, String new_name, String new_version); 32 | } // interface ContainedOperations 33 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ContainedPackage/Description.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA.ContainedPackage; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ContainedPackage/Description.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public final class Description implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public org.omg.CORBA.DefinitionKind kind = null; 14 | public org.omg.CORBA.Any value = null; 15 | 16 | public Description () 17 | { 18 | } // ctor 19 | 20 | public Description (org.omg.CORBA.DefinitionKind _kind, org.omg.CORBA.Any _value) 21 | { 22 | kind = _kind; 23 | value = _value; 24 | } // ctor 25 | 26 | } // class Description 27 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/Container.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/Container.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | 12 | // orbos 98-01-18: Objects By Value -- end 13 | public interface Container extends ContainerOperations, org.omg.CORBA.IRObject, org.omg.CORBA.portable.IDLEntity 14 | { 15 | } // interface Container 16 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ContainerPackage/Description.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA.ContainerPackage; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ContainerPackage/Description.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public final class Description implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public org.omg.CORBA.Contained contained_object = null; 14 | public org.omg.CORBA.DefinitionKind kind = null; 15 | public org.omg.CORBA.Any value = null; 16 | 17 | public Description () 18 | { 19 | } // ctor 20 | 21 | public Description (org.omg.CORBA.Contained _contained_object, org.omg.CORBA.DefinitionKind _kind, org.omg.CORBA.Any _value) 22 | { 23 | contained_object = _contained_object; 24 | kind = _kind; 25 | value = _value; 26 | } // ctor 27 | 28 | } // class Description 29 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ContextIdSeqHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ContextIdSeqHolder.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public final class ContextIdSeqHolder implements org.omg.CORBA.portable.Streamable 12 | { 13 | public String value[] = null; 14 | 15 | public ContextIdSeqHolder () 16 | { 17 | } 18 | 19 | public ContextIdSeqHolder (String[] initialValue) 20 | { 21 | value = initialValue; 22 | } 23 | 24 | public void _read (org.omg.CORBA.portable.InputStream i) 25 | { 26 | value = org.omg.CORBA.ContextIdSeqHelper.read (i); 27 | } 28 | 29 | public void _write (org.omg.CORBA.portable.OutputStream o) 30 | { 31 | org.omg.CORBA.ContextIdSeqHelper.write (o, value); 32 | } 33 | 34 | public org.omg.CORBA.TypeCode _type () 35 | { 36 | return org.omg.CORBA.ContextIdSeqHelper.type (); 37 | } 38 | 39 | } 40 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/EnumDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/EnumDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface EnumDef extends EnumDefOperations, org.omg.CORBA.TypedefDef, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface EnumDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/EnumDefHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/EnumDefHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 8 | */ 9 | 10 | public final class EnumDefHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.EnumDef value = null; 13 | 14 | public EnumDefHolder () 15 | { 16 | } 17 | 18 | public EnumDefHolder (org.omg.CORBA.EnumDef initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.EnumDefHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.EnumDefHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.EnumDefHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/EnumDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/EnumDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface EnumDefOperations extends org.omg.CORBA.TypedefDefOperations 12 | { 13 | String[] members (); 14 | void members (String[] newMembers); 15 | } // interface EnumDefOperations 16 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ExceptionDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ExceptionDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface ExceptionDef extends ExceptionDefOperations, org.omg.CORBA.Contained, org.omg.CORBA.Container 12 | { 13 | } // interface ExceptionDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ExceptionDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ExceptionDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface ExceptionDefOperations extends org.omg.CORBA.ContainedOperations, org.omg.CORBA.ContainerOperations 12 | { 13 | org.omg.CORBA.TypeCode type (); 14 | org.omg.CORBA.StructMember[] members (); 15 | void members (org.omg.CORBA.StructMember[] newMembers); 16 | } // interface ExceptionDefOperations 17 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ExceptionDescription.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ExceptionDescription.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public final class ExceptionDescription implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public String name = null; 14 | public String id = null; 15 | public String defined_in = null; 16 | public String version = null; 17 | public org.omg.CORBA.TypeCode type = null; 18 | 19 | public ExceptionDescription () 20 | { 21 | } // ctor 22 | 23 | public ExceptionDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _type) 24 | { 25 | name = _name; 26 | id = _id; 27 | defined_in = _defined_in; 28 | version = _version; 29 | type = _type; 30 | } // ctor 31 | 32 | } // class ExceptionDescription 33 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/IDLType.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/IDLType.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public interface IDLType extends IDLTypeOperations, org.omg.CORBA.IRObject, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface IDLType 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/IDLTypeHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/IDLTypeHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 8 | */ 9 | 10 | public final class IDLTypeHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.IDLType value = null; 13 | 14 | public IDLTypeHolder () 15 | { 16 | } 17 | 18 | public IDLTypeHolder (org.omg.CORBA.IDLType initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.IDLTypeHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.IDLTypeHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.IDLTypeHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/IDLTypeOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/IDLTypeOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public interface IDLTypeOperations extends org.omg.CORBA.IRObjectOperations 12 | { 13 | org.omg.CORBA.TypeCode type (); 14 | } // interface IDLTypeOperations 15 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/IRObject.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/IRObject.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public interface IRObject extends IRObjectOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface IRObject 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/IRObjectHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/IRObjectHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 8 | */ 9 | 10 | public final class IRObjectHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.IRObject value = null; 13 | 14 | public IRObjectHolder () 15 | { 16 | } 17 | 18 | public IRObjectHolder (org.omg.CORBA.IRObject initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.IRObjectHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.IRObjectHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.IRObjectHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/IRObjectOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/IRObjectOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public interface IRObjectOperations 12 | { 13 | 14 | // read interface 15 | org.omg.CORBA.DefinitionKind def_kind (); 16 | 17 | // write interface 18 | void destroy (); 19 | } // interface IRObjectOperations 20 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/Initializer.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/Initializer.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public final class Initializer implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public org.omg.CORBA.StructMember members[] = null; 14 | 15 | public Initializer () 16 | { 17 | } // ctor 18 | 19 | public Initializer (org.omg.CORBA.StructMember[] _members) 20 | { 21 | members = _members; 22 | } // ctor 23 | 24 | } // class Initializer 25 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/InterfaceDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/InterfaceDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface InterfaceDef extends InterfaceDefOperations, org.omg.CORBA.Container, org.omg.CORBA.Contained, org.omg.CORBA.IDLType 12 | { 13 | } // interface InterfaceDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/InterfaceDescription.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/InterfaceDescription.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public final class InterfaceDescription implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public String name = null; 14 | public String id = null; 15 | public String defined_in = null; 16 | public String version = null; 17 | public String base_interfaces[] = null; 18 | 19 | public InterfaceDescription () 20 | { 21 | } // ctor 22 | 23 | public InterfaceDescription (String _name, String _id, String _defined_in, String _version, String[] _base_interfaces) 24 | { 25 | name = _name; 26 | id = _id; 27 | defined_in = _defined_in; 28 | version = _version; 29 | base_interfaces = _base_interfaces; 30 | } // ctor 31 | 32 | } // class InterfaceDescription 33 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ModuleDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ModuleDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface ModuleDef extends ModuleDefOperations, org.omg.CORBA.Container, org.omg.CORBA.Contained 12 | { 13 | } // interface ModuleDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ModuleDefHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/ModuleDefHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 8 | */ 9 | 10 | public final class ModuleDefHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.ModuleDef value = null; 13 | 14 | public ModuleDefHolder () 15 | { 16 | } 17 | 18 | public ModuleDefHolder (org.omg.CORBA.ModuleDef initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.ModuleDefHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.ModuleDefHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.ModuleDefHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ModuleDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ModuleDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface ModuleDefOperations extends org.omg.CORBA.ContainerOperations, org.omg.CORBA.ContainedOperations 12 | { 13 | } // interface ModuleDefOperations 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ModuleDescription.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ModuleDescription.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public final class ModuleDescription implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public String name = null; 14 | public String id = null; 15 | public String defined_in = null; 16 | public String version = null; 17 | 18 | public ModuleDescription () 19 | { 20 | } // ctor 21 | 22 | public ModuleDescription (String _name, String _id, String _defined_in, String _version) 23 | { 24 | name = _name; 25 | id = _id; 26 | defined_in = _defined_in; 27 | version = _version; 28 | } // ctor 29 | 30 | } // class ModuleDescription 31 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/NativeDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/NativeDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:24 PM EST 9 | */ 10 | 11 | 12 | // orbos 98-01-18: Objects By Value -- end 13 | public interface NativeDef extends NativeDefOperations, org.omg.CORBA.TypedefDef, org.omg.CORBA.portable.IDLEntity 14 | { 15 | } // interface NativeDef 16 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/NativeDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/NativeDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:24 PM EST 9 | */ 10 | 11 | 12 | // orbos 98-01-18: Objects By Value -- end 13 | public interface NativeDefOperations extends org.omg.CORBA.TypedefDefOperations 14 | { 15 | } // interface NativeDefOperations 16 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/OperationDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/OperationDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface OperationDef extends OperationDefOperations, org.omg.CORBA.Contained, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface OperationDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/OperationDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/OperationDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface OperationDefOperations extends org.omg.CORBA.ContainedOperations 12 | { 13 | org.omg.CORBA.TypeCode result (); 14 | org.omg.CORBA.IDLType result_def (); 15 | void result_def (org.omg.CORBA.IDLType newResult_def); 16 | org.omg.CORBA.ParameterDescription[] params (); 17 | void params (org.omg.CORBA.ParameterDescription[] newParams); 18 | org.omg.CORBA.OperationMode mode (); 19 | void mode (org.omg.CORBA.OperationMode newMode); 20 | String[] contexts (); 21 | void contexts (String[] newContexts); 22 | org.omg.CORBA.ExceptionDef[] exceptions (); 23 | void exceptions (org.omg.CORBA.ExceptionDef[] newExceptions); 24 | } // interface OperationDefOperations 25 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/PRIVATE_MEMBER.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/PRIVATE_MEMBER.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public interface PRIVATE_MEMBER 12 | { 13 | public static final short value = (short)(0); 14 | } 15 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/PUBLIC_MEMBER.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/PUBLIC_MEMBER.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public interface PUBLIC_MEMBER 12 | { 13 | public static final short value = (short)(1); 14 | } 15 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ParameterDescription.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ParameterDescription.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public final class ParameterDescription implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public String name = null; 14 | public org.omg.CORBA.TypeCode type = null; 15 | public org.omg.CORBA.IDLType type_def = null; 16 | public org.omg.CORBA.ParameterMode mode = null; 17 | 18 | public ParameterDescription () 19 | { 20 | } // ctor 21 | 22 | public ParameterDescription (String _name, org.omg.CORBA.TypeCode _type, org.omg.CORBA.IDLType _type_def, org.omg.CORBA.ParameterMode _mode) 23 | { 24 | name = _name; 25 | type = _type; 26 | type_def = _type_def; 27 | mode = _mode; 28 | } // ctor 29 | 30 | } // class ParameterDescription 31 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/PrimitiveDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/PrimitiveDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface PrimitiveDef extends PrimitiveDefOperations, org.omg.CORBA.IDLType, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface PrimitiveDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/PrimitiveDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/PrimitiveDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface PrimitiveDefOperations extends org.omg.CORBA.IDLTypeOperations 12 | { 13 | org.omg.CORBA.PrimitiveKind kind (); 14 | } // interface PrimitiveDefOperations 15 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/Repository.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/Repository.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface Repository extends RepositoryOperations, org.omg.CORBA.Container, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface Repository 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/RepositoryOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/RepositoryOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface RepositoryOperations extends org.omg.CORBA.ContainerOperations 12 | { 13 | 14 | // read interface 15 | org.omg.CORBA.Contained lookup_id (String search_id); 16 | org.omg.CORBA.PrimitiveDef get_primitive (org.omg.CORBA.PrimitiveKind kind); 17 | 18 | // write interface 19 | org.omg.CORBA.StringDef create_string (int bound); 20 | org.omg.CORBA.SequenceDef create_sequence (int bound, org.omg.CORBA.IDLType element_type); 21 | org.omg.CORBA.ArrayDef create_array (int length, org.omg.CORBA.IDLType element_type); 22 | } // interface RepositoryOperations 23 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/SequenceDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/SequenceDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface SequenceDef extends SequenceDefOperations, org.omg.CORBA.IDLType, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface SequenceDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/SequenceDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/SequenceDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface SequenceDefOperations extends org.omg.CORBA.IDLTypeOperations 12 | { 13 | int bound (); 14 | void bound (int newBound); 15 | org.omg.CORBA.TypeCode element_type (); 16 | org.omg.CORBA.IDLType element_type_def (); 17 | void element_type_def (org.omg.CORBA.IDLType newElement_type_def); 18 | } // interface SequenceDefOperations 19 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/StringDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/StringDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface StringDef extends StringDefOperations, org.omg.CORBA.IDLType, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface StringDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/StringDefHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/StringDefHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 8 | */ 9 | 10 | public final class StringDefHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.StringDef value = null; 13 | 14 | public StringDefHolder () 15 | { 16 | } 17 | 18 | public StringDefHolder (org.omg.CORBA.StringDef initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.StringDefHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.StringDefHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.StringDefHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/StringDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/StringDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface StringDefOperations extends org.omg.CORBA.IDLTypeOperations 12 | { 13 | int bound (); 14 | void bound (int newBound); 15 | } // interface StringDefOperations 16 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/StructDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/StructDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface StructDef extends StructDefOperations, org.omg.CORBA.TypedefDef, org.omg.CORBA.Container 12 | { 13 | } // interface StructDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/StructDefHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/StructDefHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 8 | */ 9 | 10 | public final class StructDefHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.StructDef value = null; 13 | 14 | public StructDefHolder () 15 | { 16 | } 17 | 18 | public StructDefHolder (org.omg.CORBA.StructDef initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.StructDefHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.StructDefHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.StructDefHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/StructDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/StructDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface StructDefOperations extends org.omg.CORBA.TypedefDefOperations, org.omg.CORBA.ContainerOperations 12 | { 13 | org.omg.CORBA.StructMember[] members (); 14 | void members (org.omg.CORBA.StructMember[] newMembers); 15 | } // interface StructDefOperations 16 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/StructMember.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/StructMember.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public final class StructMember implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public String name = null; 14 | public org.omg.CORBA.TypeCode type = null; 15 | public org.omg.CORBA.IDLType type_def = null; 16 | 17 | public StructMember () 18 | { 19 | } // ctor 20 | 21 | public StructMember (String _name, org.omg.CORBA.TypeCode _type, org.omg.CORBA.IDLType _type_def) 22 | { 23 | name = _name; 24 | type = _type; 25 | type_def = _type_def; 26 | } // ctor 27 | 28 | } // class StructMember 29 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/TypeDescription.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/TypeDescription.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public final class TypeDescription implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public String name = null; 14 | public String id = null; 15 | public String defined_in = null; 16 | public String version = null; 17 | public org.omg.CORBA.TypeCode type = null; 18 | 19 | public TypeDescription () 20 | { 21 | } // ctor 22 | 23 | public TypeDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _type) 24 | { 25 | name = _name; 26 | id = _id; 27 | defined_in = _defined_in; 28 | version = _version; 29 | type = _type; 30 | } // ctor 31 | 32 | } // class TypeDescription 33 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/TypedefDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/TypedefDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface TypedefDef extends TypedefDefOperations, org.omg.CORBA.Contained, org.omg.CORBA.IDLType 12 | { 13 | } // interface TypedefDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/TypedefDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/TypedefDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface TypedefDefOperations extends org.omg.CORBA.ContainedOperations, org.omg.CORBA.IDLTypeOperations 12 | { 13 | } // interface TypedefDefOperations 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/UnionDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/UnionDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface UnionDef extends UnionDefOperations, org.omg.CORBA.TypedefDef, org.omg.CORBA.Container 12 | { 13 | } // interface UnionDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/UnionDefHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/UnionDefHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 8 | */ 9 | 10 | public final class UnionDefHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.UnionDef value = null; 13 | 14 | public UnionDefHolder () 15 | { 16 | } 17 | 18 | public UnionDefHolder (org.omg.CORBA.UnionDef initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.UnionDefHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.UnionDefHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.UnionDefHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/UnionDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/UnionDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | public interface UnionDefOperations extends org.omg.CORBA.TypedefDefOperations, org.omg.CORBA.ContainerOperations 12 | { 13 | org.omg.CORBA.TypeCode discriminator_type (); 14 | org.omg.CORBA.IDLType discriminator_type_def (); 15 | void discriminator_type_def (org.omg.CORBA.IDLType newDiscriminator_type_def); 16 | org.omg.CORBA.UnionMember[] members (); 17 | void members (org.omg.CORBA.UnionMember[] newMembers); 18 | } // interface UnionDefOperations 19 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/UnionMember.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/UnionMember.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:22 PM EST 9 | */ 10 | 11 | public final class UnionMember implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public String name = null; 14 | public org.omg.CORBA.Any label = null; 15 | public org.omg.CORBA.TypeCode type = null; 16 | public org.omg.CORBA.IDLType type_def = null; 17 | 18 | public UnionMember () 19 | { 20 | } // ctor 21 | 22 | public UnionMember (String _name, org.omg.CORBA.Any _label, org.omg.CORBA.TypeCode _type, org.omg.CORBA.IDLType _type_def) 23 | { 24 | name = _name; 25 | label = _label; 26 | type = _type; 27 | type_def = _type_def; 28 | } // ctor 29 | 30 | } // class UnionMember 31 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ValueBoxDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ValueBoxDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:24 PM EST 9 | */ 10 | 11 | public interface ValueBoxDef extends ValueBoxDefOperations, org.omg.CORBA.IDLType, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface ValueBoxDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ValueBoxDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ValueBoxDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:24 PM EST 9 | */ 10 | 11 | public interface ValueBoxDefOperations extends org.omg.CORBA.IDLTypeOperations 12 | { 13 | org.omg.CORBA.IDLType original_type_def (); 14 | void original_type_def (org.omg.CORBA.IDLType newOriginal_type_def); 15 | } // interface ValueBoxDefOperations 16 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ValueDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ValueDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:24 PM EST 9 | */ 10 | 11 | public interface ValueDef extends ValueDefOperations, org.omg.CORBA.Container, org.omg.CORBA.Contained, org.omg.CORBA.IDLType 12 | { 13 | } // interface ValueDef 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ValueDefHolder.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | /** 4 | * org/omg/CORBA/ValueDefHolder.java . 5 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 6 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 7 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 8 | */ 9 | 10 | public final class ValueDefHolder implements org.omg.CORBA.portable.Streamable 11 | { 12 | public org.omg.CORBA.ValueDef value = null; 13 | 14 | public ValueDefHolder () 15 | { 16 | } 17 | 18 | public ValueDefHolder (org.omg.CORBA.ValueDef initialValue) 19 | { 20 | value = initialValue; 21 | } 22 | 23 | public void _read (org.omg.CORBA.portable.InputStream i) 24 | { 25 | value = org.omg.CORBA.ValueDefHelper.read (i); 26 | } 27 | 28 | public void _write (org.omg.CORBA.portable.OutputStream o) 29 | { 30 | org.omg.CORBA.ValueDefHelper.write (o, value); 31 | } 32 | 33 | public org.omg.CORBA.TypeCode _type () 34 | { 35 | return org.omg.CORBA.ValueDefHelper.type (); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ValueMemberDef.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ValueMemberDef.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | 12 | // orbos 98-01-18: Objects By Value -- begin 13 | public interface ValueMemberDef extends ValueMemberDefOperations, org.omg.CORBA.Contained, org.omg.CORBA.portable.IDLEntity 14 | { 15 | } // interface ValueMemberDef 16 | -------------------------------------------------------------------------------- /idlj/src/test/masters/ir/org/omg/CORBA/ValueMemberDefOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.CORBA; 2 | 3 | 4 | /** 5 | * org/omg/CORBA/ValueMemberDefOperations.java . 6 | * IGNORE Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from idlj/src/main/java/com/sun/tools/corba/ee/idl/ir.idl 8 | * IGNORE Sunday, January 21, 2018 1:54:23 PM EST 9 | */ 10 | 11 | 12 | // orbos 98-01-18: Objects By Value -- begin 13 | public interface ValueMemberDefOperations extends org.omg.CORBA.ContainedOperations 14 | { 15 | org.omg.CORBA.TypeCode type (); 16 | org.omg.CORBA.IDLType type_def (); 17 | void type_def (org.omg.CORBA.IDLType newType_def); 18 | short access (); 19 | void access (short newAccess); 20 | } // interface ValueMemberDefOperations 21 | -------------------------------------------------------------------------------- /idlj/src/test/masters/structures/org/glassfish/idlj/AnyStruct.java: -------------------------------------------------------------------------------- 1 | package org.glassfish.idlj; 2 | 3 | 4 | /** 5 | * org/glassfish/idlj/AnyStruct.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "4.1" 7 | * from /Users/rgold/projects/glassfish/glassfish-corba/idlj/src/main/idl/org/glassfish/idlj/CORBAServerTest.idl 8 | * Monday, January 29, 2018 11:19:41 AM EST 9 | */ 10 | 11 | public final class AnyStruct implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public org.omg.CORBA.Any a = null; 14 | public org.glassfish.idlj.CORBAStruct s = null; 15 | 16 | public AnyStruct () 17 | { 18 | } // ctor 19 | 20 | public AnyStruct (org.omg.CORBA.Any _a, org.glassfish.idlj.CORBAStruct _s) 21 | { 22 | a = _a; 23 | s = _s; 24 | } // ctor 25 | 26 | } // class AnyStruct 27 | -------------------------------------------------------------------------------- /idlj/src/test/masters/structures/org/glassfish/idlj/CORBAServerTest.java: -------------------------------------------------------------------------------- 1 | package org.glassfish.idlj; 2 | 3 | 4 | /** 5 | * org/glassfish/idlj/CORBAServerTest.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "4.1" 7 | * from /Users/rgold/projects/glassfish/glassfish-corba/idlj/src/main/idl/org/glassfish/idlj/CORBAServerTest.idl 8 | * Monday, January 29, 2018 11:19:41 AM EST 9 | */ 10 | 11 | public interface CORBAServerTest extends CORBAServerTestOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface CORBAServerTest 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/structures/org/glassfish/idlj/CORBAServerTestPackage/AnException.java: -------------------------------------------------------------------------------- 1 | package org.glassfish.idlj.CORBAServerTestPackage; 2 | 3 | 4 | /** 5 | * org/glassfish/idlj/CORBAServerTestPackage/AnException.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "4.1" 7 | * from /Users/rgold/projects/glassfish/glassfish-corba/idlj/src/main/idl/org/glassfish/idlj/CORBAServerTest.idl 8 | * Monday, January 29, 2018 11:19:41 AM EST 9 | */ 10 | 11 | public final class AnException extends org.omg.CORBA.UserException 12 | { 13 | 14 | public AnException () 15 | { 16 | super(AnExceptionHelper.id()); 17 | } // ctor 18 | 19 | 20 | public AnException (String $reason) 21 | { 22 | super(AnExceptionHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class AnException 26 | -------------------------------------------------------------------------------- /idlj/src/test/masters/structures/org/glassfish/idlj/CORBAServerTestPackage/MungedException.java: -------------------------------------------------------------------------------- 1 | package org.glassfish.idlj.CORBAServerTestPackage; 2 | 3 | 4 | /** 5 | * org/glassfish/idlj/CORBAServerTestPackage/MungedException.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "4.1" 7 | * from /Users/rgold/projects/glassfish/glassfish-corba/idlj/src/main/idl/org/glassfish/idlj/CORBAServerTest.idl 8 | * Monday, January 29, 2018 11:19:41 AM EST 9 | */ 10 | 11 | public final class MungedException extends org.omg.CORBA.UserException 12 | { 13 | 14 | public MungedException () 15 | { 16 | super(MungedExceptionHelper.id()); 17 | } // ctor 18 | 19 | 20 | public MungedException (String $reason) 21 | { 22 | super(MungedExceptionHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class MungedException 26 | -------------------------------------------------------------------------------- /idlj/src/test/masters/structures/org/glassfish/idlj/CORBAStruct.java: -------------------------------------------------------------------------------- 1 | package org.glassfish.idlj; 2 | 3 | 4 | /** 5 | * org/glassfish/idlj/CORBAStruct.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "4.1" 7 | * from /Users/rgold/projects/glassfish/glassfish-corba/idlj/src/main/idl/org/glassfish/idlj/CORBAServerTest.idl 8 | * Monday, January 29, 2018 11:19:41 AM EST 9 | */ 10 | 11 | public final class CORBAStruct implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public int l = (int)0; 14 | public long lll = (long)0; 15 | 16 | // The name is 3 chars long to avoid a JDK alignment bug. 17 | public String s = null; 18 | public org.omg.CORBA.Any a = null; 19 | 20 | public CORBAStruct () 21 | { 22 | } // ctor 23 | 24 | public CORBAStruct (int _l, long _lll, String _s, org.omg.CORBA.Any _a) 25 | { 26 | l = _l; 27 | lll = _lll; 28 | s = _s; 29 | a = _a; 30 | } // ctor 31 | 32 | } // class CORBAStruct 33 | -------------------------------------------------------------------------------- /idlj/src/test/masters/structures/org/glassfish/idlj/DummyCORBAServer.java: -------------------------------------------------------------------------------- 1 | package org.glassfish.idlj; 2 | 3 | 4 | /** 5 | * org/glassfish/idlj/DummyCORBAServer.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "4.1" 7 | * from /Users/rgold/projects/glassfish/glassfish-corba/idlj/src/main/idl/org/glassfish/idlj/CORBAServerTest.idl 8 | * Monday, January 29, 2018 11:19:41 AM EST 9 | */ 10 | 11 | public interface DummyCORBAServer extends DummyCORBAServerOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface DummyCORBAServer 14 | -------------------------------------------------------------------------------- /idlj/src/test/masters/structures/org/glassfish/idlj/DummyCORBAServerOperations.java: -------------------------------------------------------------------------------- 1 | package org.glassfish.idlj; 2 | 3 | 4 | /** 5 | * org/glassfish/idlj/DummyCORBAServerOperations.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "4.1" 7 | * from /Users/rgold/projects/glassfish/glassfish-corba/idlj/src/main/idl/org/glassfish/idlj/CORBAServerTest.idl 8 | * Monday, January 29, 2018 11:19:41 AM EST 9 | */ 10 | 11 | public interface DummyCORBAServerOperations 12 | { 13 | } // interface DummyCORBAServerOperations 14 | -------------------------------------------------------------------------------- /iiop-folb-dev-test/README: -------------------------------------------------------------------------------- 1 | This directory contains GlassFish IIOP / Fail Over Load Balance Test. 2 | 3 | To Run the Test: mvn integration-test 4 | 5 | Test Execution Details: 6 | 7 | - Copy the glassfish build to the current directory: ./glassfish.zip 8 | - Run the tests: "source setup.sh ; run.sh" 9 | - samplerun.sh shows how to run a subset of tests of interest. 10 | 11 | README.html has more details about the test suite. 12 | 13 | Dependencies: mvn 3+, ant 1.8.2 +, gawk 3.1.8 + 14 | 15 | -------------------------------------------------------------------------------- /iiop-folb-dev-test/test/OrbFailOver/OrbFailOver-app-client/src/conf/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | X-COMMENT: Main-Class will be added automatically by build 3 | 4 | -------------------------------------------------------------------------------- /iiop-folb-dev-test/test/OrbFailOver/OrbFailOver-ejb/src/conf/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /iiop-folb-dev-test/test/OrbFailOver/src/conf/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | 3 | -------------------------------------------------------------------------------- /iiop-folb-dev-test/testcommands.txt: -------------------------------------------------------------------------------- 1 | This is the basic set of commands needed to set up a cluster for testing: 2 | 3 | start-domain 4 | create-cluster c1 5 | --user admin create-node-ssh --nodehost minas --installdir /volumes/work/GlassFish/v3/glassfish4 minasNA 6 | --user admin create-node-ssh --nodehost apollo --installdir /volumes/work/GlassFish/v3/glassfish4 apolloNA 7 | create-instance --node minasNA --cluster c1 --portbase 9000 --checkports=true in0 8 | create-instance --node apolloNA --cluster c1 --portbase 10000 --checkports=true in1 9 | create-instance --node minasNA --cluster c1 --portbase 11000 --checkports=true in2 10 | start-cluster c1 11 | deploy --target c1 --name TestEJB --force /space/ws/mercurial/CORBA/iiop-folb-test/test/OrbFailOver/OrbFailOver-ejb/dist/OrbFailOver-ejb.jar 12 | -------------------------------------------------------------------------------- /internal-api/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2025 Contributors to the Eclipse Foundation 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | module org.glassfish.corba.internal { 18 | 19 | requires org.glassfish.gmbal.api; 20 | requires org.glassfish.pfl.basic; 21 | 22 | exports com.sun.corba.ee.impl.threadpool; 23 | exports com.sun.corba.ee.spi.logex.stdcorba; 24 | exports com.sun.corba.ee.spi.threadpool; 25 | } 26 | -------------------------------------------------------------------------------- /make/copyright-information/copyright-exclude.txt: -------------------------------------------------------------------------------- 1 | .apt 2 | .bin 3 | .book 4 | .doc 5 | .fm 6 | .gif 7 | .idlref 8 | .javaref 9 | .jpg 10 | .mif 11 | .odp 12 | .odt 13 | .pdf 14 | .png 15 | .sxc 16 | .sxi 17 | .sxw 18 | .txt 19 | .zargo 20 | 21 | /copyright-exclude.txt 22 | /copyright.txt 23 | /META-INF/services/ 24 | /README 25 | /Rainbow__CheckerImpl.idl 26 | -------------------------------------------------------------------------------- /make/copyright-information/copyright.txt: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) YYYY Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ -------------------------------------------------------------------------------- /make/runtest: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | # 3 | # Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved. 4 | # 5 | # This program and the accompanying materials are made available under the 6 | # terms of the Eclipse Public License v. 2.0 which is available at 7 | # http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | # v. 1.0 which is available at 9 | # http://www.eclipse.org/org/documents/edl-v10.php. 10 | # 11 | # This Source Code may also be made available under the following Secondary 12 | # Licenses when the conditions for such availability set forth in the Eclipse 13 | # Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | # w/Classpath exception which is available at 15 | # https://www.gnu.org/software/classpath/license.html. 16 | # 17 | # SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | # Classpath-exception-2.0 19 | # 20 | 21 | export TEST_ARGS 22 | TEST_ARGS=$* 23 | ant run-test-target 24 | -------------------------------------------------------------------------------- /orbmain/src/main/java/com/sun/corba/ee/impl/io/JavaCorbaAccess.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2016, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package com.sun.corba.ee.impl.io; 21 | 22 | public interface JavaCorbaAccess { 23 | public ValueHandlerImpl newValueHandlerImpl(); 24 | } 25 | -------------------------------------------------------------------------------- /orbmain/src/main/java/com/sun/corba/ee/spi/ior/MakeImmutable.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package com.sun.corba.ee.spi.ior ; 21 | 22 | public interface MakeImmutable { 23 | void makeImmutable() ; 24 | } 25 | -------------------------------------------------------------------------------- /orbmain/src/main/java/com/sun/corba/ee/spi/protocol/protocol.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/orbmain/src/main/java/com/sun/corba/ee/spi/protocol/protocol.zargo -------------------------------------------------------------------------------- /orbmain/src/main/java/org/glassfish/jndi/cosnaming/jndiprovider.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0 which is available at 6 | # http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | # v. 1.0 which is available at 8 | # http://www.eclipse.org/org/documents/edl-v10.php. 9 | # 10 | # This Source Code may also be made available under the following Secondary 11 | # Licenses when the conditions for such availability set forth in the Eclipse 12 | # Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | # w/Classpath exception which is available at 14 | # https://www.gnu.org/software/classpath/license.html. 15 | # 16 | # SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | # Classpath-exception-2.0 18 | # 19 | 20 | -------------------------------------------------------------------------------- /orbmain/src/test/java/corba/dynamicrmiiiop/testclasses/_upackage/Foo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses._upackage; 21 | 22 | public class Foo {} 23 | -------------------------------------------------------------------------------- /orbmain/src/test/java/corba/dynamicrmiiiop/testclasses/typedef/Foo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses.typedef; 21 | 22 | public class Foo {} 23 | -------------------------------------------------------------------------------- /rmic/README: -------------------------------------------------------------------------------- 1 | By default, rmic now uses an ASM-based classfile parser. New Java code versions can be supported simply by changing 2 | the dependent ASM version. It is also possible to fall back to the legacy binary classfile parser in 3 | JDK versions 1.8 and 9 by setting the system property org.glassfish.rmic.UseLegacyClassParsing to "true". 4 | 5 | Note that if no version of ASM is in the classpath, rmic will attempt to fallback to the legacy parser in the earlier 6 | JDK versions. -------------------------------------------------------------------------------- /rmic/src/main/java/module-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2025 Contributors to the Eclipse Foundation 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | module org.glassfish.corba.rmic { 18 | 19 | requires java.rmi; 20 | 21 | requires org.objectweb.asm; 22 | requires org.glassfish.corba.omgapi; 23 | requires org.glassfish.corba.orb; 24 | 25 | } 26 | -------------------------------------------------------------------------------- /rmic/src/test/java/TopLevelClass.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2018, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | public class TopLevelClass { 21 | } 22 | -------------------------------------------------------------------------------- /rmic/src/test/java/org/glassfish/rmic/classes/hcks/RmiIMyException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2018, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package org.glassfish.rmic.classes.hcks; 21 | 22 | class RmiIMyException extends Exception { 23 | } 24 | 25 | -------------------------------------------------------------------------------- /rmic/src/test/masters/README: -------------------------------------------------------------------------------- 1 | The files in this directory were generated by the JDK version of RMIC, run against the follow classes, 2 | built under the functional-tests module: 3 | 4 | corba.preinvokepostinvoke.MyServant 5 | corba.systemexceptions.rmiiIServantPOA 6 | corba.hcks.rmiiIServantPOA 7 | corba.giopheaderpadding.rmiiIServantPOA 8 | corba.islocal.rmiiIServantPOA 9 | corba.exceptiondetailsc.rmiiIServantPOA 10 | corba.rmipoacounter.counterImpl 11 | 12 | The resulting source files are used as 'golden masters' to verify that the Glassfish version produces what is expected. 13 | -------------------------------------------------------------------------------- /rmic/src/test/masters/idl/org/glassfish/rmic/classes/inneraccess/Rainbow__CheckerImpl.idl: -------------------------------------------------------------------------------- 1 | /** 2 | * org/glassfish/rmic/classes/inneraccess/Rainbow__CheckerImpl.idl 3 | * Generated by rmic -idl. Do not edit 4 | * IGNORE date line changes with every generation 5 | */ 6 | 7 | #include "orb.idl" 8 | 9 | #ifndef __org_glassfish_rmic_classes_inneraccess_Rainbow__CheckerImpl__ 10 | #define __org_glassfish_rmic_classes_inneraccess_Rainbow__CheckerImpl__ 11 | 12 | 13 | module org { 14 | module glassfish { 15 | module rmic { 16 | module classes { 17 | module inneraccess { 18 | 19 | abstract valuetype Rainbow__CheckerImpl { 20 | 21 | ::CORBA::WStringValue getPreferredColor( ); 22 | 23 | }; 24 | 25 | }; 26 | }; 27 | }; 28 | }; 29 | }; 30 | 31 | #endif 32 | 33 | -------------------------------------------------------------------------------- /test/.cvsignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/A.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/A.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 19 November 1998 12:33:02 GMT+00:00 5 | */ 6 | 7 | #ifndef __alpha_bravo_A__ 8 | #define __alpha_bravo_A__ 9 | 10 | #include "orb.idl" 11 | 12 | module alpha { 13 | module bravo { 14 | 15 | interface A { 16 | }; 17 | 18 | }; 19 | }; 20 | 21 | #endif 22 | 23 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/A.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package alpha.bravo; 22 | 23 | public interface A extends java.rmi.Remote {} 24 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/AB.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/AB.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 19 November 1998 12:33:02 GMT+00:00 5 | */ 6 | 7 | #ifndef __alpha_bravo_AB__ 8 | #define __alpha_bravo_AB__ 9 | 10 | #include "orb.idl" 11 | 12 | #include "alpha/bravo/DuckBill.idl" 13 | #include "alpha/bravo/B.idl" 14 | #include "alpha/bravo/A.idl" 15 | 16 | module alpha { 17 | module bravo { 18 | 19 | interface AB: ::alpha::bravo::DuckBill, ::alpha::bravo::B, ::alpha::bravo::A { 20 | }; 21 | 22 | }; 23 | }; 24 | 25 | #endif 26 | 27 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/B.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/B.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 19 November 1998 12:33:02 GMT+00:00 5 | */ 6 | 7 | #ifndef __alpha_bravo_B__ 8 | #define __alpha_bravo_B__ 9 | 10 | #include "orb.idl" 11 | 12 | module alpha { 13 | module bravo { 14 | 15 | interface B { 16 | }; 17 | 18 | }; 19 | }; 20 | 21 | #endif 22 | 23 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/B.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package alpha.bravo; 22 | 23 | public interface B extends java.rmi.Remote {} 24 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Bear.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/Bear.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 26 November 1998 11:05:54 GMT+00:00 5 | */ 6 | 7 | #ifndef __alpha_bravo_Bear__ 8 | #define __alpha_bravo_Bear__ 9 | 10 | #include "orb.idl" 11 | #include "java/lang/Ex.idl" 12 | 13 | module alpha { 14 | module bravo { 15 | 16 | abstract interface Bear { 17 | 18 | long getSize( ); 19 | void eat( ) raises ( 20 | ::java::lang::Ex ); 21 | void drink( ); 22 | 23 | }; 24 | 25 | }; 26 | }; 27 | 28 | #endif 29 | 30 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Kangaroo.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/Kangaroo.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 26 April 1999 12:39:10 GMT+00:00 5 | */ 6 | 7 | 8 | #ifndef __java_util_Hashtable__ 9 | 10 | module java { 11 | module util { 12 | 13 | valuetype Hashtable; 14 | 15 | }; 16 | }; 17 | 18 | #endif 19 | 20 | #include "java/lang/Cloneable.idl" 21 | #include "alpha/bravo/Wallaby.idl" 22 | #include "orb.idl" 23 | 24 | #ifndef __alpha_bravo_Kangaroo__ 25 | #define __alpha_bravo_Kangaroo__ 26 | 27 | 28 | module alpha { 29 | module bravo { 30 | 31 | custom valuetype Kangaroo: ::alpha::bravo::Wallaby supports ::java::lang::Cloneable { 32 | 33 | public ::java::util::Hashtable aHashtable; 34 | 35 | }; 36 | 37 | #pragma ID Kangaroo "RMI:alpha.bravo.Kangaroo:C5A1BE050F6C3A11:C4ADEC553D368E1B" 38 | 39 | }; 40 | }; 41 | 42 | #include "java/util/Hashtable.idl" 43 | #endif 44 | 45 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Mammal.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/Mammal.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 19 November 1998 12:24:12 GMT+00:00 5 | */ 6 | 7 | #ifndef __alpha_bravo_Mammal__ 8 | #define __alpha_bravo_Mammal__ 9 | 10 | #include "orb.idl" 11 | 12 | 13 | module alpha { 14 | module bravo { 15 | 16 | abstract valuetype Mammal { 17 | }; 18 | 19 | }; 20 | }; 21 | 22 | #endif 23 | 24 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Platypus__Marsupial.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/Platypus__Marsupial.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 19 November 1998 10:26:43 GMT+00:00 5 | */ 6 | 7 | #ifndef __alpha_bravo_Platypus__Marsupial__ 8 | #define __alpha_bravo_Platypus__Marsupial__ 9 | 10 | #include "orb.idl" 11 | 12 | 13 | module alpha { 14 | module bravo { 15 | 16 | valuetype Platypus__Marsupial { 17 | }; 18 | 19 | }; 20 | }; 21 | 22 | #endif 23 | 24 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/PolarBear.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/PolarBear.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 19 March 1999 15:14:35 GMT+00:00 5 | */ 6 | 7 | #ifndef __alpha_bravo_PolarBear__ 8 | #define __alpha_bravo_PolarBear__ 9 | 10 | #include "orb.idl" 11 | 12 | module alpha { 13 | module bravo { 14 | 15 | abstract valuetype PolarBear { 16 | }; 17 | 18 | }; 19 | }; 20 | 21 | #endif 22 | 23 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Porcupine.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/Porcupine.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 20 November 1998 11:28:28 GMT+00:00 5 | */ 6 | 7 | #ifndef __alpha_bravo_Porcupine__ 8 | #define __alpha_bravo_Porcupine__ 9 | 10 | #include "orb.idl" 11 | 12 | 13 | module alpha { 14 | module bravo { 15 | 16 | abstract valuetype Porcupine { 17 | }; 18 | 19 | }; 20 | }; 21 | 22 | #endif 23 | 24 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Wallaby.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/Wallaby.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 20 November 1998 11:28:28 GMT+00:00 5 | */ 6 | 7 | #ifndef __alpha_bravo_Wallaby__ 8 | #define __alpha_bravo_Wallaby__ 9 | 10 | #include "orb.idl" 11 | 12 | 13 | module alpha { 14 | module bravo { 15 | 16 | valuetype Wallaby { 17 | }; 18 | 19 | }; 20 | }; 21 | 22 | #endif 23 | 24 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Wallaby.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package alpha.bravo; 22 | 23 | public class Wallaby {} 24 | 25 | -------------------------------------------------------------------------------- /test/src/share/classes/alpha/bravo/Warthog.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * alpha/bravo/Warthog.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 20 November 1998 11:28:28 GMT+00:00 5 | */ 6 | 7 | #ifndef __alpha_bravo_Warthog__ 8 | #define __alpha_bravo_Warthog__ 9 | 10 | #include "orb.idl" 11 | 12 | module alpha { 13 | module bravo { 14 | 15 | valuetype Warthog { 16 | 17 | private long shoeSize; 18 | 19 | }; 20 | 21 | #pragma ID Warthog "RMI:alpha/bravo/Warthog:2A79FA460407EC1C" 22 | 23 | }; 24 | }; 25 | 26 | #endif 27 | 28 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/cdrext/MarshalChecker.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.cdrext; 21 | 22 | import java.io.*; 23 | import java.util.*; 24 | 25 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/codebase/TestValue.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | // Simple value 21 | import java.io.Serializable; 22 | 23 | public class TestValue implements Serializable 24 | {} 25 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/A.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | public interface A extends B, C 23 | { 24 | } 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/B.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | public interface B extends D 23 | { 24 | } 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/C.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | public interface C extends D 23 | { 24 | } 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/C1.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | public class C1 implements D 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/C4.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | public class C4 extends C3 implements A 23 | { 24 | } 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/C5.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | public class C5 extends C4 implements E 23 | { 24 | } 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/C6.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | public class C6 extends C5 implements H 23 | { 24 | } 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/D.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | import java.rmi.Remote ; 23 | 24 | public interface D extends Remote 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/E.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | public interface E extends F 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/F.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | public interface F extends G 23 | { 24 | } 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/G.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | import java.rmi.Remote ; 23 | 24 | public interface G extends Remote 25 | { 26 | } 27 | 28 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/dynamicrmiiiop/testclasses/H.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.dynamicrmiiiop.testclasses ; 21 | 22 | public interface H extends G, B 23 | { 24 | } 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/example/hello.idl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | module HelloApp 21 | { 22 | interface hello 23 | { 24 | string sayHello(); 25 | }; 26 | }; 27 | 28 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/misc/BuckPasserAL.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.misc ; 21 | 22 | import java.util.ArrayList ; 23 | 24 | public class BuckPasserAL extends ArrayList { 25 | } 26 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/misc/BuckPasserV.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.misc ; 21 | 22 | import java.util.Vector ; 23 | 24 | public class BuckPasserV extends Vector { 25 | } 26 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/rmic/A.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.rmic; 21 | 22 | public interface A extends java.rmi.Remote { 23 | public void f() throws Throwable; 24 | } 25 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/rmic/B.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.rmic; 21 | 22 | public interface B extends A, java.rmi.Remote { 23 | public void f() throws Exception; 24 | } 25 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/serialization/proxy/Frobnicator.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.serialization.proxy; 21 | 22 | public interface Frobnicator { 23 | 24 | public void frobnicate(); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/simpledynamic/BuckPasserVectorOriginal.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package corba.simpledynamic ; 21 | 22 | public class BuckPasserVectorOriginal extends java.util.Vector { 23 | } 24 | -------------------------------------------------------------------------------- /test/src/share/classes/corba/travelmuse/mtm.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/test/src/share/classes/corba/travelmuse/mtm.bin -------------------------------------------------------------------------------- /test/src/share/classes/hopper/h4515953/TestInterface.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | package hopper.h4515953; 21 | 22 | public interface TestInterface extends java.io.Serializable {} 23 | -------------------------------------------------------------------------------- /test/src/share/classes/hopper/h4620926/Hello.idl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | module test { 21 | interface Hello { 22 | string sayHello(); 23 | }; 24 | }; 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/hopper/h4645953/service.idl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | module pi { 21 | module serviceexample { 22 | interface test { 23 | void aMethod( ); 24 | }; 25 | }; 26 | }; 27 | -------------------------------------------------------------------------------- /test/src/share/classes/ibmspace/client/good.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/test/src/share/classes/ibmspace/client/good.gif -------------------------------------------------------------------------------- /test/src/share/classes/ibmspace/client/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/test/src/share/classes/ibmspace/client/logo.gif -------------------------------------------------------------------------------- /test/src/share/classes/ibmspace/client/selection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/test/src/share/classes/ibmspace/client/selection.gif -------------------------------------------------------------------------------- /test/src/share/classes/ibmspace/client/ugly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/test/src/share/classes/ibmspace/client/ugly.gif -------------------------------------------------------------------------------- /test/src/share/classes/ibmspace/client/unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/test/src/share/classes/ibmspace/client/unknown.gif -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/HashCode.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package javax.rmi; 22 | public interface HashCode extends java.rmi.Remote { 23 | } 24 | 25 | -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/HashCodeA.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package javax.rmi; 22 | public interface HashCodeA extends java.rmi.Remote { 23 | } 24 | 25 | -------------------------------------------------------------------------------- /test/src/share/classes/javax/rmi/PortableREmoteOBject.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package javax.rmi; 22 | public class PortableREmoteOBject { 23 | } 24 | -------------------------------------------------------------------------------- /test/src/share/classes/naming/instest/hello.idl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | module naming { 21 | module instest { 22 | interface Hello 23 | { 24 | string sayHello(); 25 | }; 26 | }; 27 | }; 28 | -------------------------------------------------------------------------------- /test/src/share/classes/naming/pcosnaming/hello.idl: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | module HelloApp 21 | { 22 | interface hello 23 | { 24 | void sayHello(); 25 | }; 26 | }; 27 | 28 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/Bert__Fred.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * omega/Bert__Fred.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 19 November 1998 09:19:25 GMT+00:00 5 | */ 6 | 7 | #ifndef __omega_Bert__Fred__ 8 | #define __omega_Bert__Fred__ 9 | 10 | #include "orb.idl" 11 | 12 | 13 | module omega { 14 | 15 | valuetype Bert__Fred { 16 | }; 17 | 18 | }; 19 | 20 | #endif 21 | 22 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/Dolphin.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * omega/Dolphin.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 19 November 1998 11:34:55 GMT+00:00 5 | */ 6 | 7 | #ifndef __omega_Dolphin__ 8 | #define __omega_Dolphin__ 9 | 10 | #include "orb.idl" 11 | 12 | module omega { 13 | 14 | valuetype Dolphin { 15 | }; 16 | 17 | #pragma ID Dolphin "RMI:omega/Dolphin:9F4FEDF346664E1D" 18 | 19 | }; 20 | 21 | #endif 22 | 23 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/Dolphin.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package omega; 22 | 23 | public class Dolphin implements java.io.Serializable{} 24 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/FruitbatEx.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * omega/FruitbatEx.idl 3 | * Generated by rmic -idl. Do not edit 4 | * Thursday, 19 November 1998 14:29:38 GMT 5 | */ 6 | 7 | #ifndef __omega_FruitbatException__ 8 | #define __omega_FruitbatException__ 9 | 10 | #include "orb.idl" 11 | #include "omega/MammalEx.idl" 12 | 13 | module omega { 14 | 15 | valuetype FruitbatException: ::omega::MammalException { 16 | 17 | private long count; 18 | init( 19 | in ::CORBA::WStringValue arg0, 20 | in long arg1 ); 21 | long getCount( ); 22 | 23 | }; 24 | 25 | exception FruitbatEx { 26 | 27 | FruitbatException value; 28 | 29 | }; 30 | 31 | #pragma ID FruitbatException "RMI:omega/FruitbatException:74915202E7A81E44" 32 | 33 | }; 34 | 35 | #endif 36 | 37 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/MammalEx.idlref: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/MammalException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package omega; 22 | 23 | public class MammalException extends java.lang.Exception{} 24 | 25 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/MammalOverload.idlref: -------------------------------------------------------------------------------- 1 | // IDL generated by rmic, do not edit. 2 | 3 | #include "orb.idl" 4 | 5 | #ifndef __omega_MammalOverload__ 6 | #define __omega_MammalOverload__ 7 | #include "java/lang/Exception.idl" 8 | 9 | module omega{ 10 | 11 | value MammalOverload: ::java::lang::Exception { 12 | }; 13 | 14 | exception MammalOverloadEx { 15 | 16 | MammalOverload value; 17 | 18 | }; 19 | 20 | #pragma ID MammalOverload "H:/omega/MammalOverload:F2FFB96AFA008BF6" 21 | 22 | }; 23 | 24 | #endif 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/MammalOverload.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package omega; 22 | 23 | public class MammalOverload 24 | extends java.lang.Exception{} 25 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/MammalOverloadEx.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * omega/MammalOverloadEx.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 19 November 1998 10:49:30 GMT+00:00 5 | */ 6 | 7 | #ifndef __omega_MammalOverload__ 8 | #define __omega_MammalOverload__ 9 | 10 | #include "orb.idl" 11 | #include "java/lang/Ex.idl" 12 | 13 | module omega { 14 | 15 | valuetype MammalOverload: ::java::lang::Exception { 16 | }; 17 | 18 | exception MammalOverloadEx { 19 | 20 | MammalOverload value; 21 | 22 | }; 23 | 24 | #pragma ID MammalOverload "RMI:omega/MammalOverload:F2FFB96AFA008BF6" 25 | 26 | }; 27 | 28 | #endif 29 | 30 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/RedHerring.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * Copyright (c) 1998-1999 IBM Corp. All rights reserved. 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0 which is available at 7 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 8 | * v. 1.0 which is available at 9 | * http://www.eclipse.org/org/documents/edl-v10.php. 10 | * 11 | * This Source Code may also be made available under the following Secondary 12 | * Licenses when the conditions for such availability set forth in the Eclipse 13 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 14 | * w/Classpath exception which is available at 15 | * https://www.gnu.org/software/classpath/license.html. 16 | * 17 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 18 | * Classpath-exception-2.0 19 | */ 20 | 21 | package omega; 22 | 23 | public class RedHerring implements java.io.Serializable {} 24 | 25 | 26 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/Thrower.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * omega/Thrower.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 25 March 1999 15:13:26 GMT+00:00 5 | */ 6 | 7 | #ifndef __omega_Thrower__ 8 | #define __omega_Thrower__ 9 | 10 | #include "orb.idl" 11 | 12 | module omega { 13 | 14 | valuetype FruitbatException; 15 | 16 | }; 17 | 18 | #include "omega/FruitbatEx.idl" 19 | 20 | module omega { 21 | 22 | interface Thrower { 23 | 24 | void doThrowFruitbat( ) raises ( 25 | ::omega::FruitbatEx ); 26 | readonly attribute ::omega::FruitbatException lastException; 27 | 28 | }; 29 | 30 | #pragma ID Thrower "RMI:omega.Thrower:0000000000000000" 31 | 32 | }; 33 | 34 | #include "omega/FruitbatEx.idl" 35 | #endif 36 | 37 | -------------------------------------------------------------------------------- /test/src/share/classes/omega/Wallaby.idlref: -------------------------------------------------------------------------------- 1 | /** 2 | * omega/Wallaby.idl 3 | * Generated by rmic -idl. Do not edit 4 | * 26 November 1998 11:16:33 GMT+00:00 5 | */ 6 | 7 | #ifndef __omega_Wallaby__ 8 | #define __omega_Wallaby__ 9 | 10 | #include "orb.idl" 11 | #include "java/lang/Ex.idl" 12 | 13 | module omega { 14 | 15 | interface Wallaby { 16 | 17 | const long bar = 2; 18 | void bar( ); 19 | void eat( ) raises ( 20 | ::java::lang::Ex ); 21 | void drink( ); 22 | long getFoo( ) raises ( 23 | ::java::lang::Ex ); 24 | void setFoo( 25 | in long arg0 ); 26 | readonly attribute ::CORBA::WStringValue URL; 27 | attribute boolean boo; 28 | 29 | }; 30 | 31 | }; 32 | 33 | #endif 34 | 35 | -------------------------------------------------------------------------------- /test/src/share/classes/performance/Tests.tdesc: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved. 3 | // 4 | // This program and the accompanying materials are made available under the 5 | // terms of the Eclipse Public License v. 2.0 which is available at 6 | // http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | // v. 1.0 which is available at 8 | // http://www.eclipse.org/org/documents/edl-v10.php. 9 | // 10 | // This Source Code may also be made available under the following Secondary 11 | // Licenses when the conditions for such availability set forth in the Eclipse 12 | // Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | // w/Classpath exception which is available at 14 | // https://www.gnu.org/software/classpath/license.html. 15 | // 16 | // SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | // Classpath-exception-2.0 18 | // 19 | 20 | -test performance.simpleperf.SimplePerfTest 21 | -test performance.simpleperf2.SimplePerfTest 22 | -------------------------------------------------------------------------------- /test/src/share/classes/rmic/_NoMethods_Stub.javaref: -------------------------------------------------------------------------------- 1 | // Stub class generated by rmic, do not edit. 2 | // Contents subject to change without notice. 3 | 4 | package rmic; 5 | 6 | import java.io.Serializable; 7 | import java.rmi.Remote; 8 | import java.rmi.RemoteException; 9 | import java.rmi.UnexpectedException; 10 | import javax.rmi.CORBA.Stub; 11 | import javax.rmi.CORBA.Util; 12 | import org.omg.CORBA.ORB; 13 | import org.omg.CORBA.SystemException; 14 | import org.omg.CORBA.portable.ApplicationException; 15 | import org.omg.CORBA.portable.InputStream; 16 | import org.omg.CORBA.portable.OutputStream; 17 | import org.omg.CORBA.portable.RemarshalException; 18 | import org.omg.CORBA.portable.ResponseHandler; 19 | import org.omg.CORBA.portable.ServantObject; 20 | 21 | public class _NoMethods_Stub extends Stub implements NoMethods { 22 | 23 | private static final String[] _type_ids = { 24 | "RMI:rmic.NoMethods:0000000000000000" 25 | }; 26 | 27 | public String[] _ids() { 28 | return (String[]) _type_ids.clone(); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /tools/classcmp/tst1/TestClass.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | public class TestClass 21 | { 22 | public String methodA() { return null; } 23 | 24 | public int methodX() { return 27; } 25 | } 26 | 27 | -------------------------------------------------------------------------------- /tools/classcmp/tst2/TestClass.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 2020 Oracle and/or its affiliates. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0 which is available at 6 | * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | * v. 1.0 which is available at 8 | * http://www.eclipse.org/org/documents/edl-v10.php. 9 | * 10 | * This Source Code may also be made available under the following Secondary 11 | * Licenses when the conditions for such availability set forth in the Eclipse 12 | * Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | * w/Classpath exception which is available at 14 | * https://www.gnu.org/software/classpath/license.html. 15 | * 16 | * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | * Classpath-exception-2.0 18 | */ 19 | 20 | public class TestClass implements java.io.Serializable 21 | { 22 | public String methodA() { return null; } 23 | } 24 | 25 | -------------------------------------------------------------------------------- /tools/ior/tagprofs.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0 which is available at 6 | # http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License 7 | # v. 1.0 which is available at 8 | # http://www.eclipse.org/org/documents/edl-v10.php. 9 | # 10 | # This Source Code may also be made available under the following Secondary 11 | # Licenses when the conditions for such availability set forth in the Eclipse 12 | # Public License v. 2.0 are satisfied: GNU General Public License v2.0 13 | # w/Classpath exception which is available at 14 | # https://www.gnu.org/software/classpath/license.html. 15 | # 16 | # SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause OR GPL-2.0 WITH 17 | # Classpath-exception-2.0 18 | # 19 | 20 | // Contains a map of tagged profile number to 21 | // an EncapsHandler or Helper. 22 | 23 | 0 tools.ior.IIOPProfileHandler 24 | 1 org.omg.IOP.MultipleComponentProfileHelper 25 | -------------------------------------------------------------------------------- /www/TestCases.sxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/TestCases.sxc -------------------------------------------------------------------------------- /www/design/FOLB/AS9.0-RMI-IIOP-FOLB-FS.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/FOLB/AS9.0-RMI-IIOP-FOLB-FS.odt -------------------------------------------------------------------------------- /www/design/FOLB/AS9.0-RMI-IIOP-FOLB-FS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/FOLB/AS9.0-RMI-IIOP-FOLB-FS.pdf -------------------------------------------------------------------------------- /www/design/FOLB/FODynamicCluster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/FOLB/FODynamicCluster.pdf -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/IORProfiles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/IORProfiles.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/ORBD_EE_fsd.sxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/ORBD_EE_fsd.sxw -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/architecture.sxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/architecture.sxw -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/dataModel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/dataModel.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/exampleEE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/exampleEE.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/exampleFirstInvokeRunning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/exampleFirstInvokeRunning.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/exampleRegister.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/exampleRegister.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/exampleSecondInvokeRunning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/exampleSecondInvokeRunning.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/exampleThirdInvokeNotRunning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/exampleThirdInvokeNotRunning.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/objectModelExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/objectModelExample.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/objectModelExample2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/objectModelExample2.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/orbd.zargo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/orbd.zargo -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/stubFields.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/stubFields.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/stubIORProfiles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/stubIORProfiles.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/stubInitial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/stubInitial.gif -------------------------------------------------------------------------------- /www/design/IIOPGroupAgent/ORTExchangeAgent-2003/stubLocationForward.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/IIOPGroupAgent/ORTExchangeAgent-2003/stubLocationForward.gif -------------------------------------------------------------------------------- /www/design/OutboundConnectionCacheImpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/OutboundConnectionCacheImpl.png -------------------------------------------------------------------------------- /www/design/SAF/current.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/SAF/current.doc -------------------------------------------------------------------------------- /www/design/SAF/extending.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/SAF/extending.doc -------------------------------------------------------------------------------- /www/design/SAF/imr.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/SAF/imr.doc -------------------------------------------------------------------------------- /www/design/SAF/introduction.book: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/SAF/introduction.book -------------------------------------------------------------------------------- /www/design/SAF/introduction.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/SAF/introduction.doc -------------------------------------------------------------------------------- /www/design/SAF/introduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/SAF/introduction.pdf -------------------------------------------------------------------------------- /www/design/SAF/introductionTOC.fm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/SAF/introductionTOC.fm -------------------------------------------------------------------------------- /www/design/SAF/portable.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/SAF/portable.doc -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/img5.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/img6.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/serial1pres.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/serial1pres.odp -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/serial1pres.sxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/serial1pres.sxi -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres1/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres1/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img10.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img11.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img12.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img13.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img14.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img15.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img5.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img6.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img7.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img8.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/img9.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/serial2pres.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/serial2pres.odp -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/serial2pres.sxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/serial2pres.sxi -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres2/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres2/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/serial3pres.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/serial3pres.odp -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/serial3pres.sxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/serial3pres.sxi -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres3/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres3/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/img5.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/img6.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/img7.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/img8.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/img9.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/serial4pres.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/serial4pres.odp -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/serial4pres.sxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/serial4pres.sxi -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres4/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres4/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img10.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img11.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img12.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img13.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img14.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img15.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img16.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img17.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img18.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img19.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img20.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img21.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img22.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img5.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img6.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img7.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img8.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/img9.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/serial5pres.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/serial5pres.odp -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/serial5pres.sxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/serial5pres.sxi -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres5/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres5/text.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/first0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/first0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/first1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/first1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img10.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img11.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img12.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img13.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img14.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img15.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img16.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img17.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img18.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img19.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img2.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img20.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img21.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img22.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img23.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img3.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img4.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img5.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img6.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img7.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img8.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/img9.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/index.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/last0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/last0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/last1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/last1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/next0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/next0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/next1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/next1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/prev0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/prev0.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/prev1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/prev1.jpg -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/serial6pres.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/serial6pres.odp -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/serial6pres.sxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/serial6pres.sxi -------------------------------------------------------------------------------- /www/design/everett/serial_pres/pres6/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/everett/serial_pres/pres6/text.jpg -------------------------------------------------------------------------------- /www/design/orb_notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orb_notes.pdf -------------------------------------------------------------------------------- /www/design/orb_notes001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orb_notes001.png -------------------------------------------------------------------------------- /www/design/orb_notes002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orb_notes002.png -------------------------------------------------------------------------------- /www/design/orb_notes003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orb_notes003.png -------------------------------------------------------------------------------- /www/design/orb_notes004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orb_notes004.png -------------------------------------------------------------------------------- /www/design/orbdArchitecture.sxw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture.sxw -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_14a23ee7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_14a23ee7.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_1d6149dc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_1d6149dc.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_20a9079b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_20a9079b.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_3330d434.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_3330d434.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_3472b4d5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_3472b4d5.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_49d410e2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_49d410e2.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_7394932c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_7394932c.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_77bcdcbf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_77bcdcbf.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_m2abb7fe1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_m2abb7fe1.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_m3f9af29d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_m3f9af29d.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_m431c1580.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_m431c1580.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_m6a2efbbb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_m6a2efbbb.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_m6f0b4e4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_m6f0b4e4.gif -------------------------------------------------------------------------------- /www/design/orbdArchitecture_html_md67d953.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/orbdArchitecture_html_md67d953.gif -------------------------------------------------------------------------------- /www/design/stubs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/orb/7bf0c92552c0676cd5d1f8ece26a6a7cf44d27d4/www/design/stubs.gif --------------------------------------------------------------------------------