/** * @deprecated */ public RemoteCall newCall(RemoteObject obj, Operation[] op, int opnum, long hash) throws RemoteException { UnicastConnection conn; try { conn = manager.getConnection(); } catch (IOException e1) { throw new ConnectException("connection failed to host: " + manager.serverName, e1); } // obj: useless? return (new UnicastRemoteCall(conn, objid, opnum, hash)); }
/** * This call is used by the old 1.1 stub protocol and is * unsupported since activation requires 1.2 stubs. */ public synchronized RemoteCall newCall(RemoteObject obj, Operation[] ops, int opnum, long hash) throws RemoteException { throw new UnsupportedOperationException(versionComplaint); }
public RemoteCall newCall(RemoteObject obj, Operation[] op, int opnum, long hash) { throw new UnsupportedOperationException(); }
public RemoteCall newCall(RemoteObject obj, Operation[] op, int opnum, long hash) { throw new AssertionError(); }