Fixed some javadoc errors. REPO-466

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@128510 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Martin Muller
2016-07-01 08:34:26 +00:00
parent 62f23286dc
commit e39e468fff
19 changed files with 7 additions and 38 deletions

View File

@@ -239,7 +239,7 @@ public class ResourceWebScriptHelper
/**
* Takes the "select" parameter and turns it into a List<String> property names
* @param selectParam String
* @return List<String> bean property names potentially using JSON Pointer syntax
* @return bean property names potentially using JSON Pointer syntax
*/
@SuppressWarnings("unchecked")
@Deprecated
@@ -251,7 +251,7 @@ public class ResourceWebScriptHelper
/**
* Takes the "include" parameter and turns it into a List<String> property names
* @param includeParam String
* @return List<String> bean property names potentially using JSON Pointer syntax
* @return bean property names potentially using JSON Pointer syntax
*/
@SuppressWarnings("unchecked")
public static List<String> getIncludeClause(String includeParam) throws InvalidArgumentException
@@ -334,7 +334,7 @@ public class ResourceWebScriptHelper
* e.g. "name DESC, age ASC". It is not case sensitive and the sort direction is optional
* It default to sort ASCENDING.
* @param sortParams - String passed in on the request
* @return List<SortColumn> - the sort columns or an empty list if the params were invalid.
* @return - the sort columns or an empty list if the params were invalid.
*/
public static List<SortColumn> getSort(String sortParams)
{

View File

@@ -122,7 +122,6 @@ public class WebScriptOptionsMetaData extends ApiWebScript implements ResourceMe
/**
* Processes the resulting resource and returns the data to be displayed
* @param resource ResourceWithMetadata
* @param apiResources Map<String, ResourceWithMetadata>
* @return Either a ExecutionResult or a CollectionWithPagingInfo
*/
public static Object processResult(ResourceWithMetadata resource, Map<String, ResourceWithMetadata> apiResources)