Package org.jboss.as.ejb3.iiop
Interface ReferenceFactory
public interface ReferenceFactory
Interface of a CORBA reference factory. Such a factory encapsulates a POA
and provides reference creation methods.
- Author:
- Francisco Reverbel
-
Method Summary
Modifier and TypeMethodDescriptionorg.omg.CORBA.ObjectcreateReference(String inferfId) Creates a reference with a null id in its "reference data" and with object type information given by theinterfIdparameter.org.omg.CORBA.ObjectcreateReferenceWithId(byte[] id, String interfId) Creates a reference with the specifiedidin its "reference data" and with object type information given by theinterfIdparameter.org.omg.PortableServer.POAgetPOA()Returns a reference to the POA encapsulated by thisReferenceFactory.
-
Method Details
-
createReference
Creates a reference with a null id in its "reference data" and with object type information given by theinterfIdparameter.- Throws:
Exception
-
createReferenceWithId
Creates a reference with the specifiedidin its "reference data" and with object type information given by theinterfIdparameter.- Throws:
Exception
-
getPOA
org.omg.PortableServer.POA getPOA()Returns a reference to the POA encapsulated by thisReferenceFactory.
-