1. /*
  2. * @(#)ARG_OUT.java 1.16 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. package org.omg.CORBA;
  8. /**
  9. * A constant that signifies an "output" argument to an invocation,
  10. * meaning that the argument is being passed from the server to
  11. * the client.
  12. * <code>ARG_OUT.value</code> is one of the possible values used
  13. * to indicate the direction in
  14. * which a parameter is being passed during a dynamic invocation
  15. * using the Dynamic Invocation Interface (DII).
  16. * <P>
  17. * The code fragment below shows a typical usage:
  18. * <PRE>
  19. * ORB orb = ORB.init(args, null);
  20. * org.omg.CORBA.NamedValue nv = orb.create_named_value(
  21. * "argumentIdentifier", myAny, org.omg.CORBA.ARG_OUT.value);
  22. * </PRE>
  23. *
  24. * @version 1.5, 09/09/97
  25. * @see org.omg.CORBA.NamedValue
  26. * @since JDK1.2
  27. */
  28. public interface ARG_OUT {
  29. /**
  30. * The constant value indicating an output argument.
  31. */
  32. int value = 2;
  33. }