1 7 8 package org.omg.CORBA; 9 10 50 51 public abstract class ServerRequest { 52 53 65 @Deprecated 66 public String op_name() 67 { 68 return operation(); 69 } 70 71 72 87 public String operation() 88 { 89 throw new org.omg.CORBA.NO_IMPLEMENT (); 90 } 91 92 93 123 @Deprecated 124 public void params(NVList params) 125 { 126 arguments(params); 127 } 128 129 156 public void arguments(org.omg.CORBA.NVList args) { 157 throw new org.omg.CORBA.NO_IMPLEMENT (); 158 } 159 160 161 162 188 @Deprecated 189 public void result(Any any) 190 { 191 set_result(any); 192 } 193 194 195 219 public void set_result(org.omg.CORBA.Any any) 220 { 221 throw new org.omg.CORBA.NO_IMPLEMENT (); 222 } 223 224 225 239 @Deprecated 240 public void except(Any any) 241 { 242 set_exception(any); 243 } 244 245 270 public void set_exception(Any any) 271 { 272 throw new org.omg.CORBA.NO_IMPLEMENT (); 273 } 274 275 295 public abstract Context ctx(); 296 297 } 298 | Popular Tags |