javax.rmi.CORBA.Stub Java Examples

The following examples show how to use javax.rmi.CORBA.Stub. 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: Corbas.java    From tomee with Apache License 2.0 5 votes vote down vote up
public static Object connect(final Object obj) throws IOException {
    if (obj instanceof Stub) {
        final Stub stub = (Stub) obj;
        final ORB orb = getORB();
        stub.connect(orb);
    }
    return obj;
}
 
Example #2
Source File: IIOPProxyImpl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #3
Source File: IIOPProxyImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #4
Source File: IIOPProxyImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #5
Source File: IIOPProxyImpl.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #6
Source File: IIOPProxyImpl.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #7
Source File: IIOPProxyImpl.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #8
Source File: IIOPProxyImpl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #9
Source File: IIOPProxyImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #10
Source File: IIOPProxyImpl.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #11
Source File: IIOPProxyImpl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #12
Source File: IIOPProxyImpl.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #13
Source File: IIOPProxyImpl.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #14
Source File: IIOPProxyImpl.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #15
Source File: IIOPProxyImpl.java    From jdk1.8-source-analysis with Apache License 2.0 5 votes vote down vote up
@Override
public Object getOrb(Object stub) {
    try {
        return ((Stub)stub)._orb();
    } catch (org.omg.CORBA.BAD_OPERATION x) {
        throw new UnsupportedOperationException(x);
    }
}
 
Example #16
Source File: IIOPProxyImpl.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Object getDelegate(Object stub) {
    return ((Stub)stub)._get_delegate();
}
 
Example #17
Source File: IIOPProxyImpl.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Override
public void setDelegate(Object stub, Object delegate) {
    ((Stub)stub)._set_delegate((Delegate)delegate);
}
 
Example #18
Source File: IIOPProxyImpl.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Override
public boolean isStub(Object obj) {
    return (obj instanceof Stub);
}
 
Example #19
Source File: IIOPProxyImpl.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
@Override
public boolean isStub(Object obj) {
    return (obj instanceof Stub);
}
 
Example #20
Source File: IIOPProxyImpl.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Override
public void connect(Object stub, Object orb)
    throws RemoteException
{
    ((Stub)stub).connect((ORB)orb);
}
 
Example #21
Source File: IIOPProxyImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Override
public boolean isStub(Object obj) {
    return (obj instanceof Stub);
}
 
Example #22
Source File: IIOPProxyImpl.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Override
public void setDelegate(Object stub, Object delegate) {
    ((Stub)stub)._set_delegate((Delegate)delegate);
}
 
Example #23
Source File: IIOPProxyImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
@Override
public void connect(Object stub, Object orb)
    throws RemoteException
{
    ((Stub)stub).connect((ORB)orb);
}
 
Example #24
Source File: IIOPProxyImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
@Override
public void setDelegate(Object stub, Object delegate) {
    ((Stub)stub)._set_delegate((Delegate)delegate);
}
 
Example #25
Source File: IIOPProxyImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Object getDelegate(Object stub) {
    return ((Stub)stub)._get_delegate();
}
 
Example #26
Source File: IIOPProxyImpl.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
@Override
public boolean isStub(Object obj) {
    return (obj instanceof Stub);
}
 
Example #27
Source File: IIOPProxyImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Override
public void connect(Object stub, Object orb)
    throws RemoteException
{
    ((Stub)stub).connect((ORB)orb);
}
 
Example #28
Source File: IIOPProxyImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Override
public void setDelegate(Object stub, Object delegate) {
    ((Stub)stub)._set_delegate((Delegate)delegate);
}
 
Example #29
Source File: IIOPProxyImpl.java    From hottub with GNU General Public License v2.0 4 votes vote down vote up
@Override
public Object getDelegate(Object stub) {
    return ((Stub)stub)._get_delegate();
}
 
Example #30
Source File: IIOPProxyImpl.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
@Override
public boolean isStub(Object obj) {
    return (obj instanceof Stub);
}