Methods Summary |
---|
public static AlternateIIOPAddressComponent | makeAlternateIIOPAddressComponent(com.sun.corba.se.spi.ior.iiop.IIOPAddress addr)
return new AlternateIIOPAddressComponentImpl( addr ) ;
|
public static com.sun.corba.se.spi.ior.IdentifiableFactory | makeAlternateIIOPAddressComponentFactory()
return new EncapsulationFactoryBase(TAG_ALTERNATE_IIOP_ADDRESS.value) {
public Identifiable readContents( InputStream in )
{
IIOPAddress addr = new IIOPAddressImpl( in ) ;
Identifiable comp =
new AlternateIIOPAddressComponentImpl( addr ) ;
return comp ;
}
} ;
|
public static CodeSetsComponent | makeCodeSetsComponent(com.sun.corba.se.spi.orb.ORB orb)
return new CodeSetsComponentImpl( orb ) ;
|
public static com.sun.corba.se.spi.ior.IdentifiableFactory | makeCodeSetsComponentFactory()
return new EncapsulationFactoryBase(TAG_CODE_SETS.value) {
public Identifiable readContents( InputStream in )
{
return new CodeSetsComponentImpl( in ) ;
}
} ;
|
public static com.sun.corba.se.spi.ior.iiop.IIOPAddress | makeIIOPAddress(com.sun.corba.se.spi.orb.ORB orb, java.lang.String host, int port)
return new IIOPAddressImpl( orb, host, port ) ;
|
public static com.sun.corba.se.spi.ior.iiop.IIOPAddress | makeIIOPAddress(org.omg.CORBA_2_3.portable.InputStream is)
return new IIOPAddressImpl( is ) ;
|
public static IIOPProfile | makeIIOPProfile(com.sun.corba.se.spi.orb.ORB orb, com.sun.corba.se.spi.ior.ObjectKeyTemplate oktemp, com.sun.corba.se.spi.ior.ObjectId oid, com.sun.corba.se.spi.ior.iiop.IIOPProfileTemplate ptemp)
return new IIOPProfileImpl( orb, oktemp, oid, ptemp ) ;
|
public static IIOPProfile | makeIIOPProfile(com.sun.corba.se.spi.orb.ORB orb, org.omg.IOP.TaggedProfile profile)
return new IIOPProfileImpl( orb, profile ) ;
|
public static com.sun.corba.se.spi.ior.IdentifiableFactory | makeIIOPProfileFactory()
return new EncapsulationFactoryBase(TAG_INTERNET_IOP.value) {
public Identifiable readContents( InputStream in )
{
Identifiable result = new IIOPProfileImpl( in ) ;
return result ;
}
} ;
|
public static com.sun.corba.se.spi.ior.iiop.IIOPProfileTemplate | makeIIOPProfileTemplate(com.sun.corba.se.spi.orb.ORB orb, com.sun.corba.se.spi.ior.iiop.GIOPVersion version, com.sun.corba.se.spi.ior.iiop.IIOPAddress primary)
return new IIOPProfileTemplateImpl( orb, version, primary ) ;
|
public static com.sun.corba.se.spi.ior.IdentifiableFactory | makeIIOPProfileTemplateFactory()
return new EncapsulationFactoryBase(TAG_INTERNET_IOP.value) {
public Identifiable readContents( InputStream in )
{
Identifiable result = new IIOPProfileTemplateImpl( in ) ;
return result ;
}
} ;
|
public static JavaCodebaseComponent | makeJavaCodebaseComponent(java.lang.String codebase)
return new JavaCodebaseComponentImpl( codebase ) ;
|
public static com.sun.corba.se.spi.ior.IdentifiableFactory | makeJavaCodebaseComponentFactory()
return new EncapsulationFactoryBase(TAG_JAVA_CODEBASE.value) {
public Identifiable readContents( InputStream in )
{
String url = in.read_string() ;
Identifiable comp = new JavaCodebaseComponentImpl( url ) ;
return comp ;
}
} ;
|
public static com.sun.corba.se.impl.ior.iiop.JavaSerializationComponent | makeJavaSerializationComponent()
return JavaSerializationComponent.singleton();
|
public static com.sun.corba.se.spi.ior.IdentifiableFactory | makeJavaSerializationComponentFactory()
return new EncapsulationFactoryBase(
ORBConstants.TAG_JAVA_SERIALIZATION_ID) {
public Identifiable readContents(InputStream in) {
byte version = in.read_octet();
Identifiable cmp = new JavaSerializationComponent(version);
return cmp;
}
};
|
public static MaxStreamFormatVersionComponent | makeMaxStreamFormatVersionComponent()
return new MaxStreamFormatVersionComponentImpl() ;
|
public static com.sun.corba.se.spi.ior.IdentifiableFactory | makeMaxStreamFormatVersionComponentFactory()
return new EncapsulationFactoryBase(TAG_RMI_CUSTOM_MAX_STREAM_FORMAT.value) {
public Identifiable readContents(InputStream in)
{
byte version = in.read_octet() ;
Identifiable comp = new MaxStreamFormatVersionComponentImpl(version);
return comp ;
}
};
|
public static ORBTypeComponent | makeORBTypeComponent(int type)
return new ORBTypeComponentImpl( type ) ;
|
public static com.sun.corba.se.spi.ior.IdentifiableFactory | makeORBTypeComponentFactory()
return new EncapsulationFactoryBase(TAG_ORB_TYPE.value) {
public Identifiable readContents( InputStream in )
{
int type = in.read_ulong() ;
Identifiable comp = new ORBTypeComponentImpl( type ) ;
return comp ;
}
} ;
|
public static RequestPartitioningComponent | makeRequestPartitioningComponent(int threadPoolToUse)
return new RequestPartitioningComponentImpl(threadPoolToUse);
|
public static com.sun.corba.se.spi.ior.IdentifiableFactory | makeRequestPartitioningComponentFactory()
return new EncapsulationFactoryBase(ORBConstants.TAG_REQUEST_PARTITIONING_ID) {
public Identifiable readContents(InputStream in)
{
int threadPoolToUse = in.read_ulong();
Identifiable comp =
new RequestPartitioningComponentImpl(threadPoolToUse);
return comp;
}
};
|