Specifies the behaviour in the case when the
requested object is not found in the Active Object Map or that map
is not in use. The map is not in use when the
policy is active.
| Field Summary |
|---|
| public static final int | _USE_ACTIVE_OBJECT_MAP_ONLY | The possible value of this enumeration (USE_ACTIVE_OBJECT_MAP_ONLY). |
| public static final RequestProcessingPolicyValue | USE_ACTIVE_OBJECT_MAP_ONLY | An instance of RequestProcessingPolicyValue, initialized to USE_ACTIVE_OBJECT_MAP_ONLY. |
| public static final int | _USE_DEFAULT_SERVANT | The possible value of this enumeration (USE_DEFAULT_SERVANT). |
| public static final RequestProcessingPolicyValue | USE_DEFAULT_SERVANT | An instance of RequestProcessingPolicyValue, initialized to USE_DEFAULT_SERVANT. |
| public static final int | _USE_SERVANT_MANAGER | The possible value of this enumeration (USE_SERVANT_MANAGER). |
| public static final RequestProcessingPolicyValue | USE_SERVANT_MANAGER | An instance of RequestProcessingPolicyValue, initialized to USE_SERVANT_MANAGER. |
| Method from org.omg.PortableServer.RequestProcessingPolicyValue Detail: |
public static RequestProcessingPolicyValue from_int(int code) {
try
{
return enume [ code ];
}
catch (ArrayIndexOutOfBoundsException ex)
{
BAD_OPERATION bad = new BAD_OPERATION("Invalid policy code " + code);
bad.minor = Minor.PolicyType;
throw bad;
}
}
Returns the RequestProcessingPolicyValue, matching the given integer constant. |
public String toString() {
return state_names [ _value ];
}
Returns a short string representation. |
public int value() {
return _value;
}
Returns the integer code of the policy value. |