1. /*
  2. * @(#)ARG_OUT.java 1.13 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package org.omg.CORBA;
  11. /**
  12. * A constant that signifies an "output" argument to an invocation,
  13. * meaning that the argument is being passed from the server to
  14. * the client.
  15. * <code>ARG_OUT.value</code> is one of the possible values used
  16. * to indicate the direction in
  17. * which a parameter is being passed during a dynamic invocation
  18. * using the Dynamic Invocation Interface (DII).
  19. * <P>
  20. * The code fragment below shows a typical usage:
  21. * <PRE>
  22. * ORB orb = ORB.init(args, null);
  23. * org.omg.CORBA.NamedValue nv = orb.create_named_value(
  24. * "argumentIdentifier", myAny, org.omg.CORBA.ARG_OUT.value);
  25. * </PRE>
  26. *
  27. * @version 1.5, 09/09/97
  28. * @see org.omg.CORBA.NamedValue
  29. * @since JDK1.2
  30. */
  31. public interface ARG_OUT {
  32. /**
  33. * The constant value indicating an output argument.
  34. */
  35. int value = 2;
  36. }