1. /*
  2. * @(#)DynamicImplementation.java 1.8 03/01/27
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package org.omg.PortableServer;
  8. /**
  9. * Allows dynamic handling of object invocations. POA-based DSI
  10. * servants inherit from the
  11. * standard <code>DynamicImplementation</code> class, this class inherits
  12. * from the <code>Servant</code> class. Based on IDL to Java spec.
  13. * CORBA V 2.3.1 ptc/00-01-08.pdf.
  14. */
  15. abstract public class DynamicImplementation extends Servant {
  16. /**
  17. * Receives requests issued to any CORBA object
  18. * incarnated by the DSI servant and performs the processing
  19. * necessary to execute the request.
  20. * @param request the request issued to the CORBA object.
  21. */
  22. abstract public void invoke(org.omg.CORBA.ServerRequest request);
  23. }