mirror of https://github.com/apache/jclouds.git
updated to latest
This commit is contained in:
parent
d12a7b611e
commit
0d42c14ae1
22
README.txt
22
README.txt
|
@ -1,18 +1,18 @@
|
||||||
Overview:
|
Overview:
|
||||||
|
|
||||||
jclouds is an open source framework that helps you get started in the cloud
|
jclouds is an open source framework that helps you get started in the cloud
|
||||||
and reuse your java development skills. Our api allows you to freedom to use
|
and reuse your java and clojure development skills. Our api allows you to
|
||||||
portable abstractions or cloud-specific features.
|
freedom to use portable abstractions or cloud-specific features.
|
||||||
|
|
||||||
our current version is 1.0-beta-4
|
our current version is 1.0-beta-5
|
||||||
our dev version is 1.0-SNAPSHOT
|
our dev version is 1.0-SNAPSHOT
|
||||||
|
|
||||||
our compute api supports: ec2, rackspace, rimuhosting, vcloud, terremark,
|
our compute api supports: ec2, gogrid, rackspace, rimuhosting, vcloud, terremark,
|
||||||
hosting.com
|
hosting.com, bluelock
|
||||||
our blobstore api supports: s3, rackspace, azure, atmos online
|
our blobstore api supports: s3, rackspace, azure, atmos online, att synaptic,
|
||||||
|
transient (in-memory)
|
||||||
|
|
||||||
|
BlobStore Example (Java):
|
||||||
BlobStore Example:
|
|
||||||
// init
|
// init
|
||||||
context = new BlobStoreContextFactory().createContext(
|
context = new BlobStoreContextFactory().createContext(
|
||||||
"s3",
|
"s3",
|
||||||
|
@ -21,14 +21,14 @@ BlobStore Example:
|
||||||
blobStore = context.getBlobStore();
|
blobStore = context.getBlobStore();
|
||||||
|
|
||||||
// create container
|
// create container
|
||||||
blobStore.createContainerInLocation("default", "mycontainer");
|
blobStore.createContainerInLocation(null, "mycontainer");
|
||||||
|
|
||||||
// add blob
|
// add blob
|
||||||
blob = blobStore.newBlob("test");
|
blob = blobStore.newBlob("test");
|
||||||
blob.setPayload("testdata");
|
blob.setPayload("testdata");
|
||||||
blobStore.putBlob(containerName, blob);
|
blobStore.putBlob(containerName, blob);
|
||||||
|
|
||||||
Compute Example:
|
Compute Example (Java):
|
||||||
// init
|
// init
|
||||||
context = new ComputeServiceContextFactory().createContext(
|
context = new ComputeServiceContextFactory().createContext(
|
||||||
"ec2",
|
"ec2",
|
||||||
|
@ -45,7 +45,7 @@ Compute Example:
|
||||||
nodes = client.runNodesWithTag("mycluster", 2, template);
|
nodes = client.runNodesWithTag("mycluster", 2, template);
|
||||||
|
|
||||||
Downloads:
|
Downloads:
|
||||||
* distribution zip: http://jclouds.googlecode.com/files/jclouds-1.0-beta-4.zip
|
* distribution zip: http://jclouds.googlecode.com/files/jclouds-1.0-beta-5.zip
|
||||||
* maven repo: http://jclouds.googlecode.com/svn/repo
|
* maven repo: http://jclouds.googlecode.com/svn/repo
|
||||||
* snapshot repo: http://jclouds.rimuhosting.com/maven2/snapshots
|
* snapshot repo: http://jclouds.rimuhosting.com/maven2/snapshots
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue