Map<String, SecurityAttributeType> stMap = jp.getType().getAttributeTypes().getAttributeTypeMap();
for (Object avObj : avColl)
{
SecurityAttributeValue av = (SecurityAttributeValue)avObj;
SecurityAttributeType sat = stMap.get(av.getName());
saMap.put(av.getName(), new SecurityAttributeImpl(sat != null ? sat : new SecurityAttributeTypeImpl(av.getName()), av, true));
}
}