01: /***** Copyright (c) 2002 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.portable;
05:
06: abstract public class ServantObjectExt extends ServantObject {
07: abstract public void normalCompletion();
08:
09: abstract public void exceptionalCompletion(Throwable thr);
10: }
|