001 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to 002 duplicate and use this code are hereby granted provided that this 003 copyright notice is included. 004 *****/ 005 006 package org.omg.CORBA; 007 008 abstract public class ServerRequest { 009 010 /** 011 * @deprecated use operation() 012 */ 013 public String op_name() { 014 return operation(); 015 } 016 public String operation() { 017 throw new org.omg.CORBA.NO_IMPLEMENT(); 018 } 019 020 abstract public org.omg.CORBA.Context ctx(); 021 022 /** 023 * @deprecated use arguments() 024 */ 025 public void params(org.omg.CORBA.NVList params) { 026 arguments(params); 027 } 028 public void arguments(org.omg.CORBA.NVList nv) { 029 throw new org.omg.CORBA.NO_IMPLEMENT(); 030 } 031 032 /** 033 * @deprecated use set_result() 034 */ 035 public void result(org.omg.CORBA.Any result) { 036 set_result(result); 037 } 038 public void set_result(org.omg.CORBA.Any result) { 039 throw new org.omg.CORBA.NO_IMPLEMENT(); 040 } 041 042 /** 043 * @deprecated use set_exception() 044 */ 045 public void except(org.omg.CORBA.Any except) { 046 set_exception(except); 047 } 048 public void set_exception(org.omg.CORBA.Any except) { 049 throw new org.omg.CORBA.NO_IMPLEMENT(); 050 } 051 052 }