public static ResourceList createResourceList(List<Resource> resources)
{
if (ParameterValidation.existsAndIsNotEmpty(resources))
{
ResourceList resourceList = new ResourceList();
resourceList.getResources().addAll(resources);
return resourceList;
}
else
{