
|
If you were logged in you would be able to see more operations.
|
|
|
|
Issue Links:
|
Depend
|
|
This issue is depended on by:
|
|
SAK-11481
StructuredArtifactFinder isn't finding all artifacts
|
|
|
|
|
|
Relate
|
|
This issue relates to:
|
|
SAK-11714
Need conversion for RESOURCE_TYPE_ID column to support getResourcesOfType() query
|
|
|
|
|
SAK-11557
Method to get resources with a particular resource-type should use StorageUser api
|
|
|
|
|
|
This issue is related to:
|
|
|
KNL-167 CLONE -ContentHostingService.getResourcesOfType can decline to use RESOURCE_TYPE_ID index on Oracle
|
|
|
|
|
SAK-13323
ContentHostingService.getResourcesOfType can decline to use RESOURCE_TYPE_ID index on Oracle
|
|
|
|
|
|
|
| 2.6.x Status: |
None
|
| 2.5.x Status: |
None
|
| 2.4.x Status: |
None
|
|
This is need for metaobj. The method signature is:
/**
* Retrieve a collection of ContentResource objects pf a particular resource-type. The collection will
* contain no more than the number of items specified as the pageSize, where pageSize is a non-negative
* number less than or equal to 1028. The resources will be selected in ascending order by resource-id.
* If the resources of the specified resource-type in the ContentHostingService in ascending order by
* resource-id are indexed from 0 to M and this method is called with parameters of N for pageSize and
* I for page, the resources returned will be those with indexes (I*N) through ((I+1)*N - 1). For example,
* if pageSize is 1028 and page is 0, the resources would be those with indexes of 0 to 1027.
* @param resourceType
* @param pageSize
* @param page
* @return
*/
public Collection<ContentResource> getResourcesOfType(String resourceType, int pageSize, int page);
|
|
Description
|
This is need for metaobj. The method signature is:
/**
* Retrieve a collection of ContentResource objects pf a particular resource-type. The collection will
* contain no more than the number of items specified as the pageSize, where pageSize is a non-negative
* number less than or equal to 1028. The resources will be selected in ascending order by resource-id.
* If the resources of the specified resource-type in the ContentHostingService in ascending order by
* resource-id are indexed from 0 to M and this method is called with parameters of N for pageSize and
* I for page, the resources returned will be those with indexes (I*N) through ((I+1)*N - 1). For example,
* if pageSize is 1028 and page is 0, the resources would be those with indexes of 0 to 1027.
* @param resourceType
* @param pageSize
* @param page
* @return
*/
public Collection<ContentResource> getResourcesOfType(String resourceType, int pageSize, int page);
|
Show » |
|