// no override at the object level for this type, now
// check at the thread level, ie PolicyCurrent.
// TODO: currently not implemented
// check at the ORB-level
final PolicyManager policyManager = orb.getPolicyManager();
if (policyManager != null)
{
Policy[] orbPolicies = policyManager.get_policy_overrides (new int[] {policy_type});
if (orbPolicies!= null && orbPolicies.length == 1)
{
result = orbPolicies[0];
}
}