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: /**
07: * @deprecated org.omg.CORBA.DynamicImplementation
08: */
09: abstract public class DynamicImplementation extends
10: org.omg.CORBA.portable.ObjectImpl {
11:
12: /**
13: * @deprecated Deprecated by the Portable Object Adapter (POA).
14: */
15: public void invoke(org.omg.CORBA.ServerRequest request) {
16: throw new org.omg.CORBA.NO_IMPLEMENT();
17: }
18:
19: }
|