1. /*
  2. * @(#)BAD_POLICY_VALUE.java 1.12 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. package org.omg.CORBA;
  8. /**
  9. * Contains the value used to indicate a policy value that is
  10. * incorrect for a valid policy type in a call to the
  11. * <code>create_policy</code> method defined in the ORB class.
  12. *
  13. * @version 1.12 12/19/03
  14. */
  15. public interface BAD_POLICY_VALUE {
  16. /**
  17. * The value used to represent a bad policy value error
  18. * in a <code>PolicyError</code> exception.
  19. * @see org.omg.CORBA.PolicyError
  20. */
  21. final short value = (short) (3L);
  22. };