Examples of convertAces()


Examples of org.apache.chemistry.opencmis.client.api.ObjectFactory.convertAces()

            throw new IllegalArgumentException("Invalid object id!");
        }

        ObjectFactory of = getObjectFactory();

        return getBinding().getAclService().applyAcl(getRepositoryId(), objectId.getId(), of.convertAces(addAces),
                of.convertAces(removeAces), aclPropagation, null);
    }

    public void applyPolicy(ObjectId objectId, ObjectId... policyIds) {
        if ((objectId == null) || (objectId.getId() == null)) {
View Full Code Here

Examples of org.apache.chemistry.opencmis.client.api.ObjectFactory.convertAces()

        }

        ObjectFactory of = getObjectFactory();

        return getBinding().getAclService().applyAcl(getRepositoryId(), objectId.getId(), of.convertAces(addAces),
                of.convertAces(removeAces), aclPropagation, null);
    }

    public void applyPolicy(ObjectId objectId, ObjectId... policyIds) {
        if ((objectId == null) || (objectId.getId() == null)) {
            throw new IllegalArgumentException("Invalid object id!");
View Full Code Here

Examples of org.apache.chemistry.opencmis.client.api.ObjectFactory.convertAces()

            updatebility.add(Updatability.READWRITE);
            updatebility.add(Updatability.WHENCHECKEDOUT);

            getBinding().getVersioningService().checkIn(getRepositoryId(), objectIdHolder, major,
                    of.convertProperties(properties, getType(), updatebility), of.convertContentStream(contentStream),
                    checkinComment, of.convertPolicies(policies), of.convertAces(addAces), of.convertAces(removeAces),
                    null);

            newObjectId = objectIdHolder.getValue();
        } finally {
            readUnlock();
View Full Code Here

Examples of org.apache.chemistry.opencmis.client.api.ObjectFactory.convertAces()

            updatebility.add(Updatability.READWRITE);
            updatebility.add(Updatability.WHENCHECKEDOUT);

            getBinding().getVersioningService().checkIn(getRepositoryId(), objectIdHolder, major,
                    of.convertProperties(properties, getType(), updatebility), of.convertContentStream(contentStream),
                    checkinComment, of.convertPolicies(policies), of.convertAces(addAces), of.convertAces(removeAces),
                    null);

            newObjectId = objectIdHolder.getValue();
        } finally {
            readUnlock();
View Full Code Here

Examples of org.apache.chemistry.opencmis.client.api.ObjectFactory.convertAces()

            throw new IllegalArgumentException("Invalid object id!");
        }

        ObjectFactory of = getObjectFactory();

        return getBinding().getAclService().applyAcl(getRepositoryId(), objectId.getId(), of.convertAces(addAces),
                of.convertAces(removeAces), aclPropagation, null);
    }

    public void applyPolicy(ObjectId objectId, ObjectId... policyIds) {
        if ((objectId == null) || (objectId.getId() == null)) {
View Full Code Here

Examples of org.apache.chemistry.opencmis.client.api.ObjectFactory.convertAces()

        }

        ObjectFactory of = getObjectFactory();

        return getBinding().getAclService().applyAcl(getRepositoryId(), objectId.getId(), of.convertAces(addAces),
                of.convertAces(removeAces), aclPropagation, null);
    }

    public void applyPolicy(ObjectId objectId, ObjectId... policyIds) {
        if ((objectId == null) || (objectId.getId() == null)) {
            throw new IllegalArgumentException("Invalid object id!");
View Full Code Here

Examples of org.apache.chemistry.opencmis.client.api.ObjectFactory.convertAces()

    public Acl applyAcl(List<Ace> addAces, List<Ace> removeAces, AclPropagation aclPropagation) {
        String objectId = getObjectId();

        ObjectFactory of = getObjectFactory();

        return getBinding().getAclService().applyAcl(getRepositoryId(), objectId, of.convertAces(addAces),
                of.convertAces(removeAces), aclPropagation, null);
    }

    public void addAcl(List<Ace> addAces, AclPropagation aclPropagation) {
        applyAcl(addAces, null, aclPropagation);
View Full Code Here

Examples of org.apache.chemistry.opencmis.client.api.ObjectFactory.convertAces()

        String objectId = getObjectId();

        ObjectFactory of = getObjectFactory();

        return getBinding().getAclService().applyAcl(getRepositoryId(), objectId, of.convertAces(addAces),
                of.convertAces(removeAces), aclPropagation, null);
    }

    public void addAcl(List<Ace> addAces, AclPropagation aclPropagation) {
        applyAcl(addAces, null, aclPropagation);
    }
View Full Code Here

Examples of org.apache.chemistry.opencmis.client.api.ObjectFactory.convertAces()

        ObjectFactory of = getObjectFactory();

        String newId = getBinding().getObjectService().createDocument(getRepositoryId(),
                of.convertProperties(properties, null, CREATE_UPDATABILITY), objectId,
                of.convertContentStream(contentStream), versioningState, of.convertPolicies(policies),
                of.convertAces(addAces), of.convertAces(removeAces), null);

        // if no context is provided the object will not be fetched
        if ((context == null) || (newId == null)) {
            return null;
        }
View Full Code Here

Examples of org.apache.chemistry.opencmis.client.api.ObjectFactory.convertAces()

        ObjectFactory of = getObjectFactory();

        String newId = getBinding().getObjectService().createDocument(getRepositoryId(),
                of.convertProperties(properties, null, CREATE_UPDATABILITY), objectId,
                of.convertContentStream(contentStream), versioningState, of.convertPolicies(policies),
                of.convertAces(addAces), of.convertAces(removeAces), null);

        // if no context is provided the object will not be fetched
        if ((context == null) || (newId == null)) {
            return null;
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.