Package org.apache.chemistry.opencmis.commons.impl.jaxb

Examples of org.apache.chemistry.opencmis.commons.impl.jaxb.RelationshipServicePort


     * 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) {
View Full Code Here


     * 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 = portProvider.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) {
View Full Code Here

    }

    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 = portProvider.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) {
View Full Code Here

TOP

Related Classes of org.apache.chemistry.opencmis.commons.impl.jaxb.RelationshipServicePort

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.