1 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to 2 duplicate and use this code are hereby granted provided that this 3 copyright notice is included. 4 *****/ 5 6 package org.omg.CORBA; 7 8 abstract public class ServerRequest { 9 10 /** 11 * @deprecated use operation() 12 */ 13 public String op_name() { 14 return operation(); 15 } 16 public String operation() { 17 throw new org.omg.CORBA.NO_IMPLEMENT(); 18 } 19 20 abstract public org.omg.CORBA.Context ctx(); 21 22 /** 23 * @deprecated use arguments() 24 */ 25 public void params(org.omg.CORBA.NVList params) { 26 arguments(params); 27 } 28 public void arguments(org.omg.CORBA.NVList nv) { 29 throw new org.omg.CORBA.NO_IMPLEMENT(); 30 } 31 32 /** 33 * @deprecated use set_result() 34 */ 35 public void result(org.omg.CORBA.Any result) { 36 set_result(result); 37 } 38 public void set_result(org.omg.CORBA.Any result) { 39 throw new org.omg.CORBA.NO_IMPLEMENT(); 40 } 41 42 /** 43 * @deprecated use set_exception() 44 */ 45 public void except(org.omg.CORBA.Any except) { 46 set_exception(except); 47 } 48 public void set_exception(org.omg.CORBA.Any except) { 49 throw new org.omg.CORBA.NO_IMPLEMENT(); 50 } 51 52 }