/**
* returns null or blank if access is for all
* otherwise the user roles define in presentationEntity
*/
public static String getPresentationEntityAccessRoles (String name, Model model) {
PresentationEntity presentationEntity = getPresentationEntity(name, model);
if (presentationEntity!=null) {
return presentationEntity.getRoles();
}
return null;
}