Package org.apache.chemistry.opencmis.client.runtime

Examples of org.apache.chemistry.opencmis.client.runtime.PersistentFolderImpl


        /* determine type */
        switch (objectData.getBaseTypeId()) {
        case CMIS_DOCUMENT:
            return new PersistentDocumentImpl(this.session, type, objectData, context);
        case CMIS_FOLDER:
            return new PersistentFolderImpl(this.session, type, objectData, context);
        case CMIS_POLICY:
            return new PersistentPolicyImpl(this.session, type, objectData, context);
        case CMIS_RELATIONSHIP:
            return new PersistentRelationshipImpl(this.session, type, objectData, context);
        default:
View Full Code Here

TOP

Related Classes of org.apache.chemistry.opencmis.client.runtime.PersistentFolderImpl

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.