1. /*
  2. * @(#)ContextImpl.java 1.21 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 com.sun.corba.se.internal.corba;
  16. import org.omg.CORBA.Any;
  17. import org.omg.CORBA.Context;
  18. import org.omg.CORBA.NO_IMPLEMENT;
  19. import org.omg.CORBA.SystemException;
  20. import org.omg.CORBA.NVList;
  21. public final class ContextImpl extends Context {
  22. private org.omg.CORBA.ORB _orb;
  23. public ContextImpl(org.omg.CORBA.ORB orb)
  24. {
  25. _orb = orb;
  26. }
  27. public ContextImpl(Context parent)
  28. {
  29. throw new NO_IMPLEMENT();
  30. }
  31. public String context_name()
  32. {
  33. throw new NO_IMPLEMENT();
  34. }
  35. public Context parent()
  36. {
  37. throw new NO_IMPLEMENT();
  38. }
  39. public Context create_child(String name)
  40. {
  41. throw new NO_IMPLEMENT();
  42. }
  43. public void set_one_value(String propName, Any propValue)
  44. {
  45. throw new NO_IMPLEMENT();
  46. }
  47. public void set_values(NVList values)
  48. {
  49. throw new NO_IMPLEMENT();
  50. }
  51. public void delete_values(String propName)
  52. {
  53. throw new NO_IMPLEMENT();
  54. }
  55. public NVList get_values(String startScope,
  56. int opFlags,
  57. String propName)
  58. {
  59. throw new NO_IMPLEMENT();
  60. }
  61. };