Package eu.scape_project.planning.repository

Examples of eu.scape_project.planning.repository.RODAConnector


        this.storeProfile(name, bsData);

        log.info("processing sample objects information");
        RepositoryConnectorApi repo;
        if (Helper.isRODAidentifier(repositoryURL)) {
            RODAConnector roda = new RODAConnector();
            Map<String,String> config = new HashMap<String,String>() {{
                put(RODAConnector.ENDPOINT_KEY , repositoryURL);
                put(RODAConnector.USER_KEY , repositoryUser);
                put(RODAConnector.PASS_KEY , repositoryPassword);
            }};       
            roda.updateConfig(config);
            repo = roda;
        } else {
            repo = new SCAPEDataConnectorClient(repositoryURL, repositoryUser, repositoryPassword);
        }
        this.plan.getSampleRecordsDefinition().setSamplesDescription(description);
View Full Code Here

TOP

Related Classes of eu.scape_project.planning.repository.RODAConnector

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.