jcabi-simpledb

Object Layer on top of Amazon SimpleDB SDK

License

License

BSD
GroupId

GroupId

com.jcabi
ArtifactId

ArtifactId

jcabi-simpledb
Last Version

Last Version

0.3
Release Date

Release Date

Type

Type

jar
Description

Description

jcabi-simpledb
Object Layer on top of Amazon SimpleDB SDK
Project URL

Project URL

http://www.jcabi.com/jcabi-simpledb
Project Organization

Project Organization

jcabi.com
Source Code Management

Source Code Management

https://github.com/jcabi/jcabi-simpledb

Download jcabi-simpledb

How to add to project

<!-- https://jarcasting.com/artifacts/com.jcabi/jcabi-simpledb/ -->
<dependency>
    <groupId>com.jcabi</groupId>
    <artifactId>jcabi-simpledb</artifactId>
    <version>0.3</version>
</dependency>
// https://jarcasting.com/artifacts/com.jcabi/jcabi-simpledb/
implementation 'com.jcabi:jcabi-simpledb:0.3'
// https://jarcasting.com/artifacts/com.jcabi/jcabi-simpledb/
implementation ("com.jcabi:jcabi-simpledb:0.3")
'com.jcabi:jcabi-simpledb:jar:0.3'
<dependency org="com.jcabi" name="jcabi-simpledb" rev="0.3">
  <artifact name="jcabi-simpledb" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.jcabi', module='jcabi-simpledb', version='0.3')
)
libraryDependencies += "com.jcabi" % "jcabi-simpledb" % "0.3"
[com.jcabi/jcabi-simpledb "0.3"]

Dependencies

compile (4)

Group / Artifact Type Version
com.jcabi : jcabi-aspects jar 0.17.1
com.amazonaws : aws-java-sdk jar 1.7.12
javax.validation : validation-api jar 1.1.0.Final
org.apache.commons : commons-lang3 jar 3.3.2

provided (1)

Group / Artifact Type Version
org.projectlombok : lombok jar 1.14.4

runtime (1)

Group / Artifact Type Version
org.aspectj : aspectjrt jar 1.8.1

Project Modules

There are no modules declared in this project.

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
com.jcabi

jcabi.com

Small java components

Versions

Version
0.3
0.2
0.1