1 /***** Copyright (c) 2002 Object Management Group. Unlimited rights to 2 duplicate and use this code are hereby granted provided that this 3 copyright notice is included. 4 *****/ 5 6 package org.omg.CORBA.portable; 7 8 abstract public class ServantObjectExt extends ServantObject { 9 abstract public void normalCompletion() ; 10 11 abstract public void exceptionalCompletion( Throwable thr ) ; 12 } 13