Interface PresentationManager.StubFactory
-
- All Known Implementing Classes:
StubFactoryBase
,StubFactoryCodegenImpl
,StubFactoryDynamicBase
,StubFactoryProxyImpl
,StubFactoryStaticImpl
- Enclosing interface:
- PresentationManager
public static interface PresentationManager.StubFactory
Creates the actual stub needed for RMI-IIOP remote references.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
getTypeIds()
Return the repository ID information for all Stubs created by this stub factory.Object
makeStub()
Create a new dynamic stub.
-
-
-
Method Detail
-
makeStub
Object makeStub()
Create a new dynamic stub. It has the type that was used to create this factory.- Returns:
- The dynamic stub
-
getTypeIds
java.lang.String[] getTypeIds()
Return the repository ID information for all Stubs created by this stub factory.- Returns:
- Array of type ids, most derived type first.
-
-