当前位置: 首页>>代码示例>>Java>>正文


Java ORBVersion.FOREIGN属性代码示例

本文整理汇总了Java中com.sun.corba.se.spi.orb.ORBVersion.FOREIGN属性的典型用法代码示例。如果您正苦于以下问题:Java ORBVersion.FOREIGN属性的具体用法?Java ORBVersion.FOREIGN怎么用?Java ORBVersion.FOREIGN使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在com.sun.corba.se.spi.orb.ORBVersion的用法示例。


在下文中一共展示了ORBVersion.FOREIGN属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getRepIdStringsFactory

/**
 * Checks the version of the ORB and returns the appropriate
 * RepositoryIdStrings instance.
 */
public static RepositoryIdStrings getRepIdStringsFactory(ORB orb)
{
    if (orb != null) {
        switch (orb.getORBVersion().getORBType()) {
            case ORBVersion.NEWER:
            case ORBVersion.FOREIGN:
            case ORBVersion.JDK1_3_1_01:
                return currentDelegator;
            case ORBVersion.OLD:
                return legacyDelegator;
            case ORBVersion.NEW:
                return ladybirdDelegator;
            default:
                return currentDelegator;
        }
    } else
        return currentDelegator;
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:22,代码来源:RepositoryIdFactory.java

示例2: getRepIdUtility

/**
 * Checks the version of the ORB and returns the appropriate
 * RepositoryIdUtility instance.
 */
public static RepositoryIdUtility getRepIdUtility(ORB orb)
{
    if (orb != null) {
        switch (orb.getORBVersion().getORBType()) {
            case ORBVersion.NEWER:
            case ORBVersion.FOREIGN:
            case ORBVersion.JDK1_3_1_01:
                return currentDelegator;
            case ORBVersion.OLD:
                return legacyDelegator;
            case ORBVersion.NEW:
                return ladybirdDelegator;
            default:
                return currentDelegator;
        }
    } else
        return currentDelegator;
}
 
开发者ID:aducode,项目名称:openjdk-source-code-learn,代码行数:22,代码来源:RepositoryIdFactory.java

示例3: byteToVersion

private static ORBVersion byteToVersion( byte value )
{
    /* Throwing an exception here would cause this version to be
    * incompatible with future versions of the ORB, to the point
    * that this version could
    * not even unmarshal objrefs from a newer version that uses
    * extended versioning.  Therefore, we will simply treat all
    * unknown versions as the latest version.
    if (value < 0)
        throw new INTERNAL() ;
    */

    /**
     * Update: If we treat all unknown versions as the latest version
     * then when we send an IOR with a PEORB version to an ORB that
     * doesn't know the PEORB version it will treat it as whatever
     * its idea of the latest version is.  Then, if that IOR is
     * sent back to the server and compared with the original
     * the equality check will fail because the versions will be
     * different.
     *
     * Instead, just capture the version bytes.
     */

    switch (value) {
        case ORBVersion.FOREIGN : return ORBVersionImpl.FOREIGN ;
        case ORBVersion.OLD : return ORBVersionImpl.OLD ;
        case ORBVersion.NEW : return ORBVersionImpl.NEW ;
        case ORBVersion.JDK1_3_1_01: return ORBVersionImpl.JDK1_3_1_01 ;
        case ORBVersion.NEWER : return ORBVersionImpl.NEWER ;
        case ORBVersion.PEORB : return ORBVersionImpl.PEORB ;
        default : return new ORBVersionImpl(value);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:34,代码来源:ORBVersionFactory.java


注:本文中的com.sun.corba.se.spi.orb.ORBVersion.FOREIGN属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。