Package org.apache.sling.replication.serialization.impl

Examples of org.apache.sling.replication.serialization.impl.ResourceSharedReplicationPackageBuilder


        if (PACKAGE_BUILDER_FILEVLT.equals(factory)) {
            String importMode = PropertiesUtil.toString(properties.get(PACKAGE_BUILDER_FILEVLT_IMPORT_MODE), null);
            String aclHandling = PropertiesUtil.toString(properties.get(PACKAGE_BUILDER_FILEVLT_ACLHANDLING), null);
            if (importMode != null && aclHandling != null) {
                return new ResourceSharedReplicationPackageBuilder(new FileVaultReplicationPackageBuilder(packaging, replicationEventFactory, importMode, aclHandling));
            } else {
                return new ResourceSharedReplicationPackageBuilder(new FileVaultReplicationPackageBuilder(packaging, replicationEventFactory));
            }
        }

        return null;
    }
View Full Code Here

TOP

Related Classes of org.apache.sling.replication.serialization.impl.ResourceSharedReplicationPackageBuilder

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.