* org.apache.opencmis.client.provider.ExtensionsData)
*/
public ObjectInFolderList getChildren(String repositoryId, String folderId, String filter, String orderBy,
Boolean includeAllowableActions, IncludeRelationships includeRelationships, String renditionFilter,
Boolean includePathSegment, BigInteger maxItems, BigInteger skipCount, ExtensionsData extension) {
NavigationServicePort port = portProvider.getNavigationServicePort();
try {
return convert(port.getChildren(repositoryId, folderId, filter, orderBy, includeAllowableActions, convert(
EnumIncludeRelationships.class, includeRelationships), renditionFilter, includePathSegment,
maxItems, skipCount, convert(extension)));
} catch (CmisException e) {
throw convertException(e);
} catch (Exception e) {