Package org.jboss.as.ejb3.iiop
Interface ReferenceFactory
-
public interface ReferenceFactoryInterface of a CORBA reference factory. Such a factory encapsulates a POA and provides reference creation methods.- Author:
- Francisco Reverbel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.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 Detail
-
createReference
org.omg.CORBA.Object createReference(String inferfId) throws Exception
Creates a reference with a null id in its "reference data" and with object type information given by theinterfIdparameter.- Throws:
Exception
-
createReferenceWithId
org.omg.CORBA.Object createReferenceWithId(byte[] id, String interfId) throws ExceptionCreates 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.
-
-