* org.apache.opencmis.client.provider.ExtensionsData)
*/
public ObjectList getObjectRelationships(String repositoryId, String objectId, Boolean includeSubRelationshipTypes,
RelationshipDirection relationshipDirection, String typeId, String filter, Boolean includeAllowableActions,
BigInteger maxItems, BigInteger skipCount, ExtensionsData extension) {
RelationshipServicePort port = fPortProvider.getRelationshipServicePort();
try {
return convert(port.getObjectRelationships(repositoryId, objectId, includeSubRelationshipTypes, convert(
EnumRelationshipDirection.class, relationshipDirection), typeId, filter, includeAllowableActions,
maxItems, skipCount, convert(extension)));
} catch (CmisException e) {
throw convertException(e);
} catch (Exception e) {