1. /*
  2. * @(#)Delegate.java 1.13 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. /*
  8. * Licensed Materials - Property of IBM
  9. * RMI-IIOP v1.0
  10. * Copyright IBM Corp. 1998 1999 All Rights Reserved
  11. *
  12. * US Government Users Restricted Rights - Use, duplication or
  13. * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  14. */
  15. package org.omg.CORBA_2_3.portable;
  16. /**
  17. * Delegate class provides the ORB vendor specific implementation
  18. * of CORBA object. It extends org.omg.CORBA.portable.Delegate and
  19. * provides new methods that were defined by CORBA 2.3.
  20. *
  21. * @see org.omg.CORBA.portable.Delegate
  22. * @author OMG
  23. * @version 1.13 12/19/03
  24. * @since JDK1.2
  25. */
  26. public abstract class Delegate extends org.omg.CORBA.portable.Delegate {
  27. /** Returns the codebase for object reference provided.
  28. * @param self the object reference whose codebase needs to be returned.
  29. * @return the codebase as a space delimited list of url strings or
  30. * null if none.
  31. */
  32. public java.lang.String get_codebase(org.omg.CORBA.Object self) {
  33. return null;
  34. }
  35. }