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