Package org.apache.harmony.rmi.remoteref

Examples of org.apache.harmony.rmi.remoteref.ActivatableServerRef


     */
    public static Remote exportObject(Remote robj, ActivationID aid, int port,
            RMIClientSocketFactory csf, RMIServerSocketFactory ssf)
            throws RemoteException {

        ActivatableServerRef asr = new ActivatableServerRef(aid, port, csf, ssf);

        return ExportManager.exportObject(robj, asr, false); //asr.exportObject(robj, null, false, true, true);
    }
View Full Code Here


     * @com.intel.drl.spec_ref
     */
    public static Remote exportObject(Remote robj, ActivationID aid, int port) throws RemoteException {
        // rmi.log.10=Activatable >>> exportObject
        rlog.log(RMILog.VERBOSE, Messages.getString("rmi.log.10")); //$NON-NLS-1$
        ActivatableServerRef asr = new ActivatableServerRef(aid, port);
        if (robj instanceof Activatable) {
            ((Activatable) robj).ref = asr;
        }
        // rmi.log.11=Activatable >>> ActivatableServerRef={0}
        rlog.log(RMILog.VERBOSE, Messages.getString("rmi.log.11", asr)); //$NON-NLS-1$
View Full Code Here

        return aid;
    }

    public static Remote exportObject(Remote robj, ActivationID aid, int port,
            RMIClientSocketFactory csf, RMIServerSocketFactory ssf) throws RemoteException {
        ActivatableServerRef asr = new ActivatableServerRef(aid, port, csf, ssf);
        return ExportManager.exportObject(robj, asr, false); //asr.exportObject(robj, null, false, true, true);
    }
View Full Code Here

    public static Remote exportObject(Remote robj, ActivationID aid, int port)
            throws RemoteException {
        // rmi.log.10=Activatable >>> exportObject
        rlog.log(RMILog.VERBOSE, Messages.getString("rmi.log.10")); //$NON-NLS-1$
        ActivatableServerRef asr = new ActivatableServerRef(aid, port);
        if (robj instanceof Activatable) {
            ((Activatable) robj).ref = asr;
        }
        // rmi.log.11=Activatable >>> ActivatableServerRef={0}
        rlog.log(RMILog.VERBOSE, Messages.getString("rmi.log.11", asr)); //$NON-NLS-1$
View Full Code Here

        return aid;
    }

    public static Remote exportObject(Remote robj, ActivationID aid, int port,
            RMIClientSocketFactory csf, RMIServerSocketFactory ssf) throws RemoteException {
        ActivatableServerRef asr = new ActivatableServerRef(aid, port, csf, ssf);
        return ExportManager.exportObject(robj, asr, false); //asr.exportObject(robj, null, false, true, true);
    }
View Full Code Here

    public static Remote exportObject(Remote robj, ActivationID aid, int port)
            throws RemoteException {
        // rmi.log.10=Activatable >>> exportObject
        rlog.log(RMILog.VERBOSE, Messages.getString("rmi.log.10")); //$NON-NLS-1$
        ActivatableServerRef asr = new ActivatableServerRef(aid, port);
        if (robj instanceof Activatable) {
            ((Activatable) robj).ref = asr;
        }
        // rmi.log.11=Activatable >>> ActivatableServerRef={0}
        rlog.log(RMILog.VERBOSE, Messages.getString("rmi.log.11", asr)); //$NON-NLS-1$
View Full Code Here

TOP

Related Classes of org.apache.harmony.rmi.remoteref.ActivatableServerRef

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.