Merged 5.2.N (5.2.1) to HEAD (5.2)

128510 mmuller: Fixed some javadoc errors. REPO-466


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@129291 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Alexandru Epure
2016-08-09 13:56:54 +00:00
parent 58cb56c7c9
commit d73d4e1a71
19 changed files with 7 additions and 38 deletions

View File

@@ -71,7 +71,6 @@ public interface EntityResourceAction
*
* Paging information is provided.
* @param params - will never be null and will have the PAGING default values
* @return CollectionWithPagingInfo<E>
*/
public CollectionWithPagingInfo<E> readAll (Parameters params);
}
@@ -87,7 +86,6 @@ public interface EntityResourceAction
*
* Paging information is provided.
* @param params - will never be null and will have the PAGING default values
* @return CollectionWithPagingInfo<E>
*/
public CollectionWithPagingInfo<E> readAll (Parameters params, WithResponse withResponse);
}

View File

@@ -52,7 +52,6 @@ public interface RelationshipResourceAction
* Paging information is provided.
* @param entityResourceId Entity resource context for this relationship
* @param params - will never be null and will have the PAGING default values
* @return CollectionWithPagingInfo<E>
*/
public CollectionWithPagingInfo<E> readAll (String entityResourceId, Parameters params);
}
@@ -68,7 +67,6 @@ public interface RelationshipResourceAction
* Paging information is provided.
* @param entityResourceId Entity resource context for this relationship
* @param params - will never be null and will have the PAGING default values
* @return CollectionWithPagingInfo<E>
*/
public CollectionWithPagingInfo<E> readAll (String entityResourceId, Parameters params, WithResponse withResponse);
}

View File

@@ -116,7 +116,6 @@ public interface Parameters
/**
* A list of property names passed in the request using the json pointer syntax
* Specified by the "SELECT" request parameter.
* @return List<String> the propertyNames
*/
@Deprecated
List<String> getSelectedProperties();
@@ -124,7 +123,7 @@ public interface Parameters
/**
* A list of property names passed in the request using the json pointer syntax
* Specified by the "INCLUDE" request parameter.
* @return List<String> the propertyNames
* @return the propertyNames
*/
List<String> getInclude();