The Wayback Machine - https://web.archive.org/web/20210124191644/https://github.com/jcabi/jcabi-simpledb
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
est
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

EO principles respected here Managed by Zerocracy DevOps By Rultor.com

Build Status PDD status Build status Javadoc

jpeek report Maven Central Dependencies

More details are here: simpledb.jcabi.com

Set of classes in com.jcabi.simpledb is an object layer on top of AWS SDK for SimpleDB. For example, to read an item from your SimpleDB domain:

public class Main {
  public static void main(String[] args) {
    Credentials credentials = new Credentials.Simple("AWS key", "AWS secret");
    Region region = new Region.Simple(credentials);
    Domain domain = region.domain("foo");
    Collection<Item> items = domain.select(
      new SelectRequest().withSelectExpression("SELECT * FROM foo")
    );
    for (Item item : items) {
      System.out.println(item.get("name"));
    }
  }
}

Questions?

If you have any questions about the framework, or something doesn't work as expected, please submit an issue here.

How to contribute?

Fork the repository, make changes, submit a pull request. We promise to review your changes same day and apply to the master branch, if they look correct.

Please run Maven build before submitting a pull request:

$ mvn clean install -Pqulice

About

Object-Oriented Java SDK for Amazon SimpleDB

Resources

License

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages