Java Code Examples for com.sun.corba.se.spi.presentation.rmi.StubAdapter#getTypeIds()

The following examples show how to use com.sun.corba.se.spi.presentation.rmi.StubAdapter#getTypeIds() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AnyImpl.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * See the description of the <a href="#anyOps">general Any operations.</a>
 */
public void insert_Object(org.omg.CORBA.Object o)
{
    //debug.log ("insert_Object");
    if ( o == null ) {
        typeCode = orb.get_primitive_tc(TCKind._tk_objref);
    } else {
        if (StubAdapter.isStub(o)) {
            String[] ids = StubAdapter.getTypeIds( o ) ;
            typeCode = new TypeCodeImpl(orb, TCKind._tk_objref, ids[0], "");
        } else {
            throw wrapper.badInsertobjParam(
                CompletionStatus.COMPLETED_MAYBE, o.getClass().getName() ) ;
        }
    }

    object = o;
    isInitialized = true;
}
 
Example 2
Source File: AnyImpl.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/**
 * See the description of the <a href="#anyOps">general Any operations.</a>
 */
public void insert_Object(org.omg.CORBA.Object o)
{
    //debug.log ("insert_Object");
    if ( o == null ) {
        typeCode = orb.get_primitive_tc(TCKind._tk_objref);
    } else {
        if (StubAdapter.isStub(o)) {
            String[] ids = StubAdapter.getTypeIds( o ) ;
            typeCode = new TypeCodeImpl(orb, TCKind._tk_objref, ids[0], "");
        } else {
            throw wrapper.badInsertobjParam(
                CompletionStatus.COMPLETED_MAYBE, o.getClass().getName() ) ;
        }
    }

    object = o;
    isInitialized = true;
}
 
Example 3
Source File: AnyImpl.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
/**
 * See the description of the <a href="#anyOps">general Any operations.</a>
 */
public void insert_Object(org.omg.CORBA.Object o)
{
    //debug.log ("insert_Object");
    if ( o == null ) {
        typeCode = orb.get_primitive_tc(TCKind._tk_objref);
    } else {
        if (StubAdapter.isStub(o)) {
            String[] ids = StubAdapter.getTypeIds( o ) ;
            typeCode = new TypeCodeImpl(orb, TCKind._tk_objref, ids[0], "");
        } else {
            throw wrapper.badInsertobjParam(
                CompletionStatus.COMPLETED_MAYBE, o.getClass().getName() ) ;
        }
    }

    object = o;
    isInitialized = true;
}
 
Example 4
Source File: AnyImpl.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * See the description of the <a href="#anyOps">general Any operations.</a>
 */
public void insert_Object(org.omg.CORBA.Object o)
{
    //debug.log ("insert_Object");
    if ( o == null ) {
        typeCode = orb.get_primitive_tc(TCKind._tk_objref);
    } else {
        if (StubAdapter.isStub(o)) {
            String[] ids = StubAdapter.getTypeIds( o ) ;
            typeCode = new TypeCodeImpl(orb, TCKind._tk_objref, ids[0], "");
        } else {
            throw wrapper.badInsertobjParam(
                CompletionStatus.COMPLETED_MAYBE, o.getClass().getName() ) ;
        }
    }

    object = o;
    isInitialized = true;
}
 
Example 5
Source File: StubFactoryBase.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public synchronized String[] getTypeIds()
{
    if (typeIds == null) {
        if (classData == null) {
            org.omg.CORBA.Object stub = makeStub() ;
            typeIds = StubAdapter.getTypeIds( stub ) ;
        } else {
            typeIds = classData.getTypeIds() ;
        }
    }

    return typeIds ;
}
 
Example 6
Source File: StubFactoryBase.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
public synchronized String[] getTypeIds()
{
    if (typeIds == null) {
        if (classData == null) {
            org.omg.CORBA.Object stub = makeStub() ;
            typeIds = StubAdapter.getTypeIds( stub ) ;
        } else {
            typeIds = classData.getTypeIds() ;
        }
    }

    return typeIds ;
}
 
Example 7
Source File: TOAImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public void connect( org.omg.CORBA.Object objref)
{
    // Store the objref and get a userkey allocated by the transient
    // object manager.
    byte[] key = servants.storeServant(objref, null);

    // Find out the repository ID for this objref.
    String id = StubAdapter.getTypeIds( objref )[0] ;

    // Create the new objref
    ObjectReferenceFactory orf = getCurrentFactory() ;
    org.omg.CORBA.Object obj = orf.make_object( id, key ) ;

    // Copy the delegate from the new objref to the argument
    // XXX handle the case of an attempt to connect a local object.

    org.omg.CORBA.portable.Delegate delegate = StubAdapter.getDelegate(
        obj ) ;
    CorbaContactInfoList ccil = (CorbaContactInfoList)
        ((ClientDelegate)delegate).getContactInfoList() ;
    LocalClientRequestDispatcher lcs =
        ccil.getLocalClientRequestDispatcher() ;

    if (lcs instanceof JIDLLocalCRDImpl) {
        JIDLLocalCRDImpl jlcs = (JIDLLocalCRDImpl)lcs ;
        jlcs.setServant( objref ) ;
    } else {
        throw new RuntimeException(
            "TOAImpl.connect can not be called on " + lcs ) ;
    }

    StubAdapter.setDelegate( objref, delegate ) ;
}
 
Example 8
Source File: StubFactoryBase.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
public synchronized String[] getTypeIds()
{
    if (typeIds == null) {
        if (classData == null) {
            org.omg.CORBA.Object stub = makeStub() ;
            typeIds = StubAdapter.getTypeIds( stub ) ;
        } else {
            typeIds = classData.getTypeIds() ;
        }
    }

    return typeIds ;
}
 
Example 9
Source File: TOAImpl.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
public void connect( org.omg.CORBA.Object objref)
{
    // Store the objref and get a userkey allocated by the transient
    // object manager.
    byte[] key = servants.storeServant(objref, null);

    // Find out the repository ID for this objref.
    String id = StubAdapter.getTypeIds( objref )[0] ;

    // Create the new objref
    ObjectReferenceFactory orf = getCurrentFactory() ;
    org.omg.CORBA.Object obj = orf.make_object( id, key ) ;

    // Copy the delegate from the new objref to the argument
    // XXX handle the case of an attempt to connect a local object.

    org.omg.CORBA.portable.Delegate delegate = StubAdapter.getDelegate(
        obj ) ;
    CorbaContactInfoList ccil = (CorbaContactInfoList)
        ((ClientDelegate)delegate).getContactInfoList() ;
    LocalClientRequestDispatcher lcs =
        ccil.getLocalClientRequestDispatcher() ;

    if (lcs instanceof JIDLLocalCRDImpl) {
        JIDLLocalCRDImpl jlcs = (JIDLLocalCRDImpl)lcs ;
        jlcs.setServant( objref ) ;
    } else {
        throw new RuntimeException(
            "TOAImpl.connect can not be called on " + lcs ) ;
    }

    StubAdapter.setDelegate( objref, delegate ) ;
}
 
Example 10
Source File: StubFactoryBase.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public synchronized String[] getTypeIds()
{
    if (typeIds == null) {
        if (classData == null) {
            org.omg.CORBA.Object stub = makeStub() ;
            typeIds = StubAdapter.getTypeIds( stub ) ;
        } else {
            typeIds = classData.getTypeIds() ;
        }
    }

    return typeIds ;
}
 
Example 11
Source File: TOAImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public void connect( org.omg.CORBA.Object objref)
{
    // Store the objref and get a userkey allocated by the transient
    // object manager.
    byte[] key = servants.storeServant(objref, null);

    // Find out the repository ID for this objref.
    String id = StubAdapter.getTypeIds( objref )[0] ;

    // Create the new objref
    ObjectReferenceFactory orf = getCurrentFactory() ;
    org.omg.CORBA.Object obj = orf.make_object( id, key ) ;

    // Copy the delegate from the new objref to the argument
    // XXX handle the case of an attempt to connect a local object.

    org.omg.CORBA.portable.Delegate delegate = StubAdapter.getDelegate(
        obj ) ;
    CorbaContactInfoList ccil = (CorbaContactInfoList)
        ((ClientDelegate)delegate).getContactInfoList() ;
    LocalClientRequestDispatcher lcs =
        ccil.getLocalClientRequestDispatcher() ;

    if (lcs instanceof JIDLLocalCRDImpl) {
        JIDLLocalCRDImpl jlcs = (JIDLLocalCRDImpl)lcs ;
        jlcs.setServant( objref ) ;
    } else {
        throw new RuntimeException(
            "TOAImpl.connect can not be called on " + lcs ) ;
    }

    StubAdapter.setDelegate( objref, delegate ) ;
}
 
Example 12
Source File: StubFactoryBase.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public synchronized String[] getTypeIds()
{
    if (typeIds == null) {
        if (classData == null) {
            org.omg.CORBA.Object stub = makeStub() ;
            typeIds = StubAdapter.getTypeIds( stub ) ;
        } else {
            typeIds = classData.getTypeIds() ;
        }
    }

    return typeIds ;
}
 
Example 13
Source File: TOAImpl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
public void connect( org.omg.CORBA.Object objref)
{
    // Store the objref and get a userkey allocated by the transient
    // object manager.
    byte[] key = servants.storeServant(objref, null);

    // Find out the repository ID for this objref.
    String id = StubAdapter.getTypeIds( objref )[0] ;

    // Create the new objref
    ObjectReferenceFactory orf = getCurrentFactory() ;
    org.omg.CORBA.Object obj = orf.make_object( id, key ) ;

    // Copy the delegate from the new objref to the argument
    // XXX handle the case of an attempt to connect a local object.

    org.omg.CORBA.portable.Delegate delegate = StubAdapter.getDelegate(
        obj ) ;
    CorbaContactInfoList ccil = (CorbaContactInfoList)
        ((ClientDelegate)delegate).getContactInfoList() ;
    LocalClientRequestDispatcher lcs =
        ccil.getLocalClientRequestDispatcher() ;

    if (lcs instanceof JIDLLocalCRDImpl) {
        JIDLLocalCRDImpl jlcs = (JIDLLocalCRDImpl)lcs ;
        jlcs.setServant( objref ) ;
    } else {
        throw new RuntimeException(
            "TOAImpl.connect can not be called on " + lcs ) ;
    }

    StubAdapter.setDelegate( objref, delegate ) ;
}
 
Example 14
Source File: TOAImpl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public void connect( org.omg.CORBA.Object objref)
{
    // Store the objref and get a userkey allocated by the transient
    // object manager.
    byte[] key = servants.storeServant(objref, null);

    // Find out the repository ID for this objref.
    String id = StubAdapter.getTypeIds( objref )[0] ;

    // Create the new objref
    ObjectReferenceFactory orf = getCurrentFactory() ;
    org.omg.CORBA.Object obj = orf.make_object( id, key ) ;

    // Copy the delegate from the new objref to the argument
    // XXX handle the case of an attempt to connect a local object.

    org.omg.CORBA.portable.Delegate delegate = StubAdapter.getDelegate(
        obj ) ;
    CorbaContactInfoList ccil = (CorbaContactInfoList)
        ((ClientDelegate)delegate).getContactInfoList() ;
    LocalClientRequestDispatcher lcs =
        ccil.getLocalClientRequestDispatcher() ;

    if (lcs instanceof JIDLLocalCRDImpl) {
        JIDLLocalCRDImpl jlcs = (JIDLLocalCRDImpl)lcs ;
        jlcs.setServant( objref ) ;
    } else {
        throw new RuntimeException(
            "TOAImpl.connect can not be called on " + lcs ) ;
    }

    StubAdapter.setDelegate( objref, delegate ) ;
}
 
Example 15
Source File: TOAImpl.java    From jdk8u60 with GNU General Public License v2.0 4 votes vote down vote up
/** Return the most derived interface for the given servant and objectId.
*/
public String[] getInterfaces( Object servant, byte[] objectId )
{
    return StubAdapter.getTypeIds( servant ) ;
}
 
Example 16
Source File: TOAImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
/** Return the most derived interface for the given servant and objectId.
*/
public String[] getInterfaces( Object servant, byte[] objectId )
{
    return StubAdapter.getTypeIds( servant ) ;
}
 
Example 17
Source File: TOAImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
/** Return the most derived interface for the given servant and objectId.
*/
public String[] getInterfaces( Object servant, byte[] objectId )
{
    return StubAdapter.getTypeIds( servant ) ;
}
 
Example 18
Source File: TOAImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 4 votes vote down vote up
/** Return the most derived interface for the given servant and objectId.
*/
public String[] getInterfaces( Object servant, byte[] objectId )
{
    return StubAdapter.getTypeIds( servant ) ;
}
 
Example 19
Source File: TOAImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 4 votes vote down vote up
/** Return the most derived interface for the given servant and objectId.
*/
public String[] getInterfaces( Object servant, byte[] objectId )
{
    return StubAdapter.getTypeIds( servant ) ;
}
 
Example 20
Source File: TOAImpl.java    From jdk1.8-source-analysis with Apache License 2.0 4 votes vote down vote up
/** Return the most derived interface for the given servant and objectId.
*/
public String[] getInterfaces( Object servant, byte[] objectId )
{
    return StubAdapter.getTypeIds( servant ) ;
}