You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
661 B
42 lines
661 B
/*
|
|
* Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package org.omg.CORBA;
|
|
|
|
/**
|
|
* Contains the value used to indicate a policy value that is
|
|
* incorrect for a valid policy type in a call to the
|
|
* <code>create_policy</code> method defined in the ORB class.
|
|
*
|
|
*/
|
|
public interface BAD_POLICY_VALUE {
|
|
/**
|
|
* The value used to represent a bad policy value error
|
|
* in a <code>PolicyError</code> exception.
|
|
* @see org.omg.CORBA.PolicyError
|
|
*/
|
|
final short value = (short) (3L);
|
|
};
|