Package org.apache.curator.framework.api

Examples of org.apache.curator.framework.api.CreateBuilder


        if (importUrl) {
            nodeData = loadUrl(new URL(data));
        }

        try {
            CreateBuilder createBuilder = curator.create();
            if (recursive) {
                createBuilder.creatingParentsIfNeeded();
            }
            BackgroundPathAndBytesable<String> create = createBuilder.withMode(mode).withACL(acls);
            if (nodeData == null) {
                create.forPath(path);
            } else {
                create.forPath(path, nodeData.getBytes());
            }
View Full Code Here

TOP

Related Classes of org.apache.curator.framework.api.CreateBuilder

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.