List<PolicyInformation> policyInformations = new ArrayList<PolicyInformation>( allPolicies.size() );
for ( Policy policy : allPolicies )
{
policyInformations.add(
new PolicyInformation( policy.getOptions(), policy.getDefaultOption(), policy.getId(),
policy.getName() ) );
}
return policyInformations;
}