Package org.apache.chemistry.opencmis.commons.enums

Examples of org.apache.chemistry.opencmis.commons.enums.CapabilityChanges


    }

    @Test
    public void changes() {
        CapabilityChanges changes = this.session.getRepositoryInfo().getCapabilities().getChangesCapability();

        switch (changes) {
        case NONE:
            this.log.info("changes not supported");
            break;
View Full Code Here


        Assert.assertNotNull(r);

        // capabilities
        RepositoryCapabilities repcap = r.getCapabilities();
        Assert.assertNotNull(repcap);
        CapabilityChanges capch = repcap.getChangesCapability();
        Assert.assertNotNull(capch);
        switch (capch) {
        case ALL:
        case OBJECTIDSONLY:
        case PROPERTIES:
View Full Code Here

TOP

Related Classes of org.apache.chemistry.opencmis.commons.enums.CapabilityChanges

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.