01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: abstract public class ServerRequest {
07:
08: /**
09: * @deprecated use operation()
10: */
11: public String op_name() {
12: return operation();
13: }
14:
15: public String operation() {
16: throw new org.omg.CORBA.NO_IMPLEMENT();
17: }
18:
19: abstract public org.omg.CORBA.Context ctx();
20:
21: /**
22: * @deprecated use arguments()
23: */
24: public void params(org.omg.CORBA.NVList params) {
25: arguments(params);
26: }
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:
39: public void set_result(org.omg.CORBA.Any result) {
40: throw new org.omg.CORBA.NO_IMPLEMENT();
41: }
42:
43: /**
44: * @deprecated use set_exception()
45: */
46: public void except(org.omg.CORBA.Any except) {
47: set_exception(except);
48: }
49:
50: public void set_exception(org.omg.CORBA.Any except) {
51: throw new org.omg.CORBA.NO_IMPLEMENT();
52: }
53:
54: }
|