本文整理汇总了Java中com.sun.corba.se.spi.ior.ObjectId类的典型用法代码示例。如果您正苦于以下问题:Java ObjectId类的具体用法?Java ObjectId怎么用?Java ObjectId使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ObjectId类属于com.sun.corba.se.spi.ior包,在下文中一共展示了ObjectId类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: LocalClientRequestDispatcherBase
import com.sun.corba.se.spi.ior.ObjectId; //导入依赖的package包/类
protected LocalClientRequestDispatcherBase(ORB orb, int scid, IOR ior)
{
this.orb = orb ;
TaggedProfile prof = ior.getProfile() ;
servantIsLocal = orb.getORBData().isLocalOptimizationAllowed() &&
prof.isLocal();
ObjectKeyTemplate oktemp = prof.getObjectKeyTemplate() ;
this.scid = oktemp.getSubcontractId() ;
RequestDispatcherRegistry sreg = orb.getRequestDispatcherRegistry() ;
oaf = sreg.getObjectAdapterFactory( scid ) ;
oaid = oktemp.getObjectAdapterId() ;
ObjectId oid = prof.getObjectId() ;
objectId = oid.getId() ;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:17,代码来源:LocalClientRequestDispatcherBase.java
示例2: internalReferenceToId
import com.sun.corba.se.spi.ior.ObjectId; //导入依赖的package包/类
private byte[] internalReferenceToId(
org.omg.CORBA.Object reference ) throws WrongAdapter
{
IOR ior = ORBUtility.getIOR( reference ) ;
IORTemplateList thisTemplate = ior.getIORTemplates() ;
ObjectReferenceFactory orf = getCurrentFactory() ;
IORTemplateList poaTemplate =
IORFactories.getIORTemplateList( orf ) ;
if (!poaTemplate.isEquivalent( thisTemplate ))
throw new WrongAdapter();
// Extract the ObjectId from the first TaggedProfile in the IOR.
// If ior was created in this POA, the same ID was used for
// every profile through the profile templates in the currentFactory,
// so we will get the same result from any profile.
Iterator iter = ior.iterator() ;
if (!iter.hasNext())
throw iorWrapper().noProfilesInIor() ;
TaggedProfile prof = (TaggedProfile)(iter.next()) ;
ObjectId oid = prof.getObjectId() ;
return oid.getId();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:26,代码来源:POAImpl.java
示例3: write
import com.sun.corba.se.spi.ior.ObjectId; //导入依赖的package包/类
public void write( ObjectKeyTemplate okeyTemplate, ObjectId id, OutputStream os)
{
giopVersion.write( os ) ;
primary.write( os ) ;
// Note that this is NOT an encapsulation: do not marshal
// the endianness flag. However, the length is required.
// Note that this cannot be accomplished with a codec!
// Use the byte order of the given stream
OutputStream encapsulatedOS =
sun.corba.OutputStreamFactory.newEncapsOutputStream(
(ORB)os.orb(), ((CDROutputStream)os).isLittleEndian() ) ;
okeyTemplate.write( id, encapsulatedOS ) ;
EncapsulationUtility.writeOutputStream( encapsulatedOS, os ) ;
if (giopVersion.getMinor() > 0)
EncapsulationUtility.writeIdentifiableSequence( this, os ) ;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:21,代码来源:IIOPProfileTemplateImpl.java
示例4: write
import com.sun.corba.se.spi.ior.ObjectId; //导入依赖的package包/类
public void write( ObjectKeyTemplate okeyTemplate, ObjectId id, OutputStream os)
{
giopVersion.write( os ) ;
primary.write( os ) ;
// Note that this is NOT an encapsulation: do not marshal
// the endianness flag. However, the length is required.
// Note that this cannot be accomplished with a codec!
// Use the byte order of the given stream
OutputStream encapsulatedOS = new EncapsOutputStream( (ORB)os.orb(),
((CDROutputStream)os).isLittleEndian() ) ;
okeyTemplate.write( id, encapsulatedOS ) ;
EncapsulationUtility.writeOutputStream( encapsulatedOS, os ) ;
if (giopVersion.getMinor() > 0)
EncapsulationUtility.writeIdentifiableSequence( this, os ) ;
}
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:20,代码来源:IIOPProfileTemplateImpl.java
示例5: write
import com.sun.corba.se.spi.ior.ObjectId; //导入依赖的package包/类
public void write(ObjectId objectId, OutputStream os)
{
super.write(objectId, os);
if (patchVersion != OldJIDLObjectKeyTemplate.NULL_PATCH_VERSION)
os.write_octet( patchVersion ) ;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:OldJIDLObjectKeyTemplate.java
示例6: IORImpl
import com.sun.corba.se.spi.ior.ObjectId; //导入依赖的package包/类
/** Construct an IOR from an IORTemplate by applying the same
* object id to each TaggedProfileTemplate in the IORTemplate.
*/
public IORImpl( ORB orb, String typeId, IORTemplate iortemp, ObjectId id)
{
this( orb, typeId ) ;
this.iortemps = IORFactories.makeIORTemplateList() ;
this.iortemps.add( iortemp ) ;
addTaggedProfiles( iortemp, id ) ;
makeImmutable() ;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:IORImpl.java
示例7: addTaggedProfiles
import com.sun.corba.se.spi.ior.ObjectId; //导入依赖的package包/类
private void addTaggedProfiles( IORTemplate iortemp, ObjectId id )
{
ObjectKeyTemplate oktemp = iortemp.getObjectKeyTemplate() ;
Iterator templateIterator = iortemp.iterator() ;
while (templateIterator.hasNext()) {
TaggedProfileTemplate ptemp =
(TaggedProfileTemplate)(templateIterator.next()) ;
TaggedProfile profile = ptemp.create( oktemp, id ) ;
add( profile ) ;
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:15,代码来源:IORImpl.java
示例8: initializeIORTemplateList
import com.sun.corba.se.spi.ior.ObjectId; //导入依赖的package包/类
private void initializeIORTemplateList()
{
// Maps ObjectKeyTemplate to IORTemplate
Map oktempToIORTemplate = new HashMap() ;
iortemps = IORFactories.makeIORTemplateList() ;
Iterator iter = iterator() ;
ObjectId oid = null ; // used to check that all profiles have the same oid.
while (iter.hasNext()) {
TaggedProfile prof = (TaggedProfile)(iter.next()) ;
TaggedProfileTemplate ptemp = prof.getTaggedProfileTemplate() ;
ObjectKeyTemplate oktemp = prof.getObjectKeyTemplate() ;
// Check that all oids for all profiles are the same: if they are not,
// throw exception.
if (oid == null)
oid = prof.getObjectId() ;
else if (!oid.equals( prof.getObjectId() ))
throw wrapper.badOidInIorTemplateList() ;
// Find or create the IORTemplate for oktemp.
IORTemplate iortemp = (IORTemplate)(oktempToIORTemplate.get( oktemp )) ;
if (iortemp == null) {
iortemp = IORFactories.makeIORTemplate( oktemp ) ;
oktempToIORTemplate.put( oktemp, iortemp ) ;
iortemps.add( iortemp ) ;
}
iortemp.add( ptemp ) ;
}
iortemps.makeImmutable() ;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:34,代码来源:IORImpl.java
示例9: IIOPProfileImpl
import com.sun.corba.se.spi.ior.ObjectId; //导入依赖的package包/类
public IIOPProfileImpl( ORB orb, ObjectKeyTemplate oktemp, ObjectId oid,
IIOPProfileTemplate proftemp )
{
this( orb ) ;
this.oktemp = oktemp ;
this.oid = oid ;
this.proftemp = proftemp ;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:IIOPProfileImpl.java
示例10: make_object
import com.sun.corba.se.spi.ior.ObjectId; //导入依赖的package包/类
public org.omg.CORBA.Object make_object (String repositoryId,
byte[] objectId)
{
ObjectId oid = IORFactories.makeObjectId( objectId ) ;
IOR ior = getIORFactory().makeIOR( orb, repositoryId, oid ) ;
return ORBUtility.makeObjectReference( ior ) ;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:ObjectReferenceProducerBase.java
注:本文中的com.sun.corba.se.spi.ior.ObjectId类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论