Package org.apache.sling.replication.packaging

Examples of org.apache.sling.replication.packaging.ReplicationPackageImporter.importStream()


        response.setCharacterEncoding("utf-8");

        InputStream stream = request.getInputStream();
        ResourceResolver resourceResolver = request.getResourceResolver();
        try {
            ReplicationPackage replicationPackage = replicationPackageImporter.importStream(resourceResolver, stream);
            if (replicationPackage != null) {
                replicationPackage.delete();
            } else {
                log.warn("cannot import replication package from request {}", request);
                response.setStatus(400);
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.