1. /*
  2. * @(#)ORB.java 1.11 03/01/23
  3. *
  4. * Copyright 2003 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;
  16. /**
  17. * A class extending <code>org.omg.CORBA.ORB</code> to make the ORB
  18. * portable under the OMG CORBA version 2.3 specification.
  19. */
  20. public abstract class ORB extends org.omg.CORBA.ORB {
  21. /**
  22. * @see <a href="package-summary.html#unimpl"><code>CORBA_2_3</code> package
  23. * comments for unimplemented features</a>
  24. */
  25. public org.omg.CORBA.portable.ValueFactory register_value_factory(String id,
  26. org.omg.CORBA.portable.ValueFactory factory)
  27. {
  28. throw new org.omg.CORBA.NO_IMPLEMENT();
  29. }
  30. /**
  31. * @see <a href="package-summary.html#unimpl"><code>CORBA_2_3</code> package
  32. * comments for unimplemented features</a>
  33. */
  34. public void unregister_value_factory(String id)
  35. {
  36. throw new org.omg.CORBA.NO_IMPLEMENT();
  37. }
  38. /**
  39. * @see <a href="package-summary.html#unimpl"><code>CORBA_2_3</code> package
  40. * comments for unimplemented features</a>
  41. */
  42. public org.omg.CORBA.portable.ValueFactory lookup_value_factory(String id)
  43. {
  44. throw new org.omg.CORBA.NO_IMPLEMENT();
  45. }
  46. /**
  47. * @see <a href="package-summary.html#unimpl"><code>CORBA_2_3</code> package
  48. * comments for unimplemented features</a>
  49. */
  50. // always return a ValueDef or throw BAD_PARAM if
  51. // repid does not represent a valuetype
  52. public org.omg.CORBA.Object get_value_def(String repid)
  53. throws org.omg.CORBA.BAD_PARAM {
  54. throw new org.omg.CORBA.NO_IMPLEMENT();
  55. }
  56. /**
  57. * @see <a href="package-summary.html#unimpl"><code>CORBA_2_3</code> package
  58. * comments for unimplemented features</a>
  59. */
  60. public void set_delegate(java.lang.Object wrapper) {
  61. throw new org.omg.CORBA.NO_IMPLEMENT();
  62. }
  63. }