Package com.xerox.amazonws.simpledb

Examples of com.xerox.amazonws.simpledb.SimpleDB


    private final String domainName;
    private final String fileName;

    public RunRestore(String accessKeyId, String secretAccessKey, SimpleDBRegion region, String domainName,
                      String fileName) throws SDBException {
        simpleDB = new SimpleDB(accessKeyId, secretAccessKey, true, region.getAddress());

        this.domainName = domainName;
        this.fileName = fileName;
    }
View Full Code Here


    private final SimpleDB simpleDB;
    private final List<String> domainNames;

    public RunBackup(String accessKeyId, String secretAccessKey, SimpleDBRegion region, String domainsDescriptor) throws SDBException {
        simpleDB = new SimpleDB(accessKeyId, secretAccessKey, true, region.getAddress());

        if (domainsDescriptor.equals("*")) {
            domainNames = new ArrayList<String>();
            for (Domain domain : simpleDB.listDomains().getItems()) {
                domainNames.add(domain.getName());
View Full Code Here

TOP

Related Classes of com.xerox.amazonws.simpledb.SimpleDB

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.