RM-1319 (Implement REST API for getting the holds)

* Added more information about the hold

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@63879 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2014-03-10 21:41:02 +00:00
parent f8f21674c9
commit 3f1af531d0
3 changed files with 84 additions and 13 deletions

View File

@@ -0,0 +1,68 @@
/*
* Copyright (C) 2005-2014 Alfresco Software Limited.
*
* This file is part of Alfresco
*
* Alfresco is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Alfresco is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
package org.alfresco.module.org_alfresco_module_rm.script.hold;
import org.alfresco.service.cmr.repository.NodeRef;
/**
* Hold POJO
*
* @author Tuna Aksoy
* @since 2.2
*/
public class Hold
{
/** Hold name */
private String Name;
/** Hold node reference */
private NodeRef nodeRef;
/**
* Constructor
*
* @param name The name of the hold
* @param nodeRef The {@link NodeRef} of the hold
*/
public Hold(String name, NodeRef nodeRef)
{
this.Name = name;
this.nodeRef = nodeRef;
}
/**
* Gets the hold name
*
* @return The name of the hold
*/
public String getName()
{
return this.Name;
}
/**
* Gets the hold node reference
*
* @return The {@link NodeRef} of the hold
*/
public NodeRef getNodeRef()
{
return this.nodeRef;
}
}

View File

@@ -104,16 +104,16 @@ public class HoldsGet extends DeclarativeWebScript
holds.addAll(holdService.getHoldsForItem(itemNodeRef));
}
List<String> holdNames = new ArrayList<String>(holds.size());
for (NodeRef hold : holds)
List<Hold> holdObjects = new ArrayList<Hold>(holds.size());
for (NodeRef nodeRef : holds)
{
String holdName = (String) nodeService.getProperty(hold, ContentModel.PROP_NAME);
holdNames.add(holdName);
String name = (String) nodeService.getProperty(nodeRef, ContentModel.PROP_NAME);
holdObjects.add(new Hold(name, nodeRef));
}
Map<String, Object> model = new HashMap<String, Object>(1);
sortByName(holdNames);
model.put("holds", holdNames);
sortHoldByName(holdObjects);
model.put("holds", holdObjects);
return model;
}
@@ -169,16 +169,16 @@ public class HoldsGet extends DeclarativeWebScript
/**
* Helper method to sort the holds by their names
*
* @param holdNames List of hold names to sort
* @param holds List of holds to sort
*/
private void sortByName(List<String> holdNames)
private void sortHoldByName(List<Hold> holds)
{
Collections.sort(holdNames, new Comparator<String>()
Collections.sort(holds, new Comparator<Hold>()
{
@Override
public int compare(String o1, String o2)
public int compare(Hold h1, Hold h2)
{
return o1.toLowerCase().compareTo(o2.toLowerCase());
return h1.getName().toLowerCase().compareTo(h2.getName().toLowerCase());
}
});
}