Commit Graph

2899 Commits

Author SHA1 Message Date
Adrian Cole 319235a904 fixed case on bluelock 2011-05-29 22:58:48 -07:00
Adrian Cole e208d92be1 fixed case on Bluelock 2011-05-29 22:48:37 -07:00
Adrian Cole efb8f0103e Issue 550: added providermetadata for Bluelock 2011-05-29 22:44:00 -07:00
Adrian Cole 1d23698300 Issue 550: added azureblob and azurequeue ProviderMetadata 2011-05-29 22:14:44 -07:00
Adrian Cole f437b7a092 Issue 579: added isReadOnly to catalog so that you can tell whether or not you can add items to it 2011-05-29 20:50:54 -07:00
Adrian Cole b14626b4cf trmk stabilization 2011-05-29 20:46:42 -07:00
Adrian Cole 9046324853 fixed test http url 2011-05-29 20:41:04 -07:00
Adrian Cole ddff6fac09 Merge branch 'master' of git@github.com:jclouds/jclouds
* 'master' of git@github.com:jclouds/jclouds:
  Added a README for the RUN@cloud Tweetstore demo
  Using a unique name for the RUN@cloud Tweetstore demo
  Updated READMEs to describe new providers and GAE SDK version
  Added new Tweetstore demo for CloudBees' RUN@cloud platform
  Updated to new providers, removed unnecessary property 'blobs' and 'sequential' -> 'singleThreaded' in @Test
  thread.stop() -> thread.interrupt(), and updated KickStart args to correctly point to the GAE SDK and logging.properties locations
  thread.stop() -> thread.interrupt()
  appengine.api.labs.taskqueue -> appengine.api.taskqueue
  Removed unneeded import
  newBlob -> blobBuilder...build()
  Switched to new providers, removed unneeded GAE dev server dependencies and made provider and dependencies runtime
  Updated documentation to match the providers used in the demos
2011-05-29 20:15:24 -07:00
Adrian Cole ca63b9cfa3 Issue 581:BindAsHostPrefixIfConfigured generates wrong paths 2011-05-29 20:08:35 -07:00
Andrew Phillips 2838e1e6cf Added a README for the RUN@cloud Tweetstore demo 2011-05-30 00:16:47 +01:00
Andrew Phillips 103d99afe8 Using a unique name for the RUN@cloud Tweetstore demo 2011-05-30 00:16:45 +01:00
Andrew Phillips b0c7370417 Updated READMEs to describe new providers and GAE SDK version 2011-05-30 00:16:44 +01:00
Andrew Phillips 4d26b5502c Added new Tweetstore demo for CloudBees' RUN@cloud platform 2011-05-30 00:16:42 +01:00
Andrew Phillips 785ad0699d Updated to new providers, removed unnecessary property 'blobs' and 'sequential' -> 'singleThreaded' in @Test 2011-05-30 00:16:40 +01:00
Andrew Phillips 6524390f4b thread.stop() -> thread.interrupt(), and updated KickStart args to correctly point to the GAE SDK and logging.properties locations 2011-05-30 00:16:39 +01:00
Andrew Phillips 36beb90de0 thread.stop() -> thread.interrupt() 2011-05-30 00:16:38 +01:00
Andrew Phillips bb64bb035a appengine.api.labs.taskqueue -> appengine.api.taskqueue 2011-05-30 00:16:36 +01:00
Andrew Phillips bba1f340be Removed unneeded import 2011-05-30 00:16:35 +01:00
Andrew Phillips e4216ea1ea newBlob -> blobBuilder...build() 2011-05-30 00:16:34 +01:00
Andrew Phillips 8e2ea83bc1 Switched to new providers, removed unneeded GAE dev server dependencies and made provider and dependencies runtime 2011-05-30 00:16:32 +01:00
Andrew Phillips d34353e0e7 Updated documentation to match the providers used in the demos 2011-05-30 00:16:31 +01:00
Adrian Cole e9cf646a75 Issue 580:split vcloud into feature-based apis 2011-05-29 15:41:26 -07:00
Adrian Cole d85917ee32 rackspace no longer supports windows 2008 SP1 2011-05-27 20:48:20 -07:00
Adrian Cole 6ea4c96e0f cleaned up vcloud ctr args 2011-05-27 19:56:16 -07:00
Adrian Cole a3a97d02b8 Merge pull request #42 from mattiasholmqvist/master
Added in-group? predicate to compute2.clj
2011-05-27 09:09:29 -07:00
Adrian Cole eac4240de9 Merge pull request #43 from jclouds/feature/improved-provider-exception-message
Make the exception message clearer for unfound provider
2011-05-27 09:09:12 -07:00
Hugo Duncan 7027563d4d Make the exception message clearer for unfound provider
Make it explicit that the presented list of poviders are the currently
configured providers.  Mention jclouds-all. Remove reference to maven, since
it is not the only build tool in use.
2011-05-27 10:44:25 -04:00
Adrian Cole 85c0ca3fcf add item to vcloud catalog 2011-05-27 00:39:07 -06:00
Mattias Holmqvist 94c8f3707f Moved in-group? to compute2.clj from test 2011-05-26 23:05:01 +02:00
Jeremy Whitlock da11370139 Merge remote branch 'upstream/master' 2011-05-26 11:19:33 -06:00
Jeremy Whitlock d4ca5c1960 Issue 550: Added support to filter location-based filters further by type.
* core/src/main/java/org/jclouds/providers/Providers.java
  (boundedByIso3166Code): Added another implementation that takes a type to
   further filter the results.
  (collocatedWith): Added another implementation that takes a type to
   further filter the results.

* core/src/test/java/org/jclouds/providers/ProvidersTest.java
  (testBoundedByIso3166Code, testCollocatedWith): Updated to test the versions
   that now take a type as an argument.
2011-05-26 10:56:43 -06:00
Jeremy Whitlock 86817b7612 Issue 550: Refactored the ISO 3166 filtering methods for Providers API.
* core/src/main/java/org/jclouds/providers/ProviderPredicates.java
  (inIso3166Code): Deleted.
  (boundedByIso3166Code): Added.

* core/src/main/java/org/jclouds/providers/Providers.java
  (withIso3166Code): Deleted.
  (boundedByIso3166Code): Added.

* core/src/test/java/org/jclouds/providers/ProvidersTest.java
  (testWithIso3166Code): Deleted.
  (testBoundedByIso3166Code): Added
  (testIntersectingIso3166Code): Deleted.
  (testCollocatedWith): Added.
2011-05-26 10:21:46 -06:00
Jeremy Whitlock d320641734 Issue 550: Added support to find providers "collocated" with a given provider.
[in core/src/main/java/org/jclouds]

* providers/ProviderPredicates.java
  (intersectingIso3166Code, providerContainsIso3166Code): Added.

* providers/Providers.java
  (collocatedWith): Added.

[in core/src/test/java/org/jclouds]

* providers/JcloudsTestYetAnotherComputeProviderMetadata.java: Added.

* providers/ProvidersTest.java
  (testIntersectingIso3166Code): Added.

[in core/src/test/resources]

* META-INF/services/org.jclouds.providers.ProviderMetadata: Updated for the
   new test ProviderMetadata implementation.
2011-05-26 09:56:13 -06:00
Adrian Cole 92c5234761 added deleteVAppTemplateVAppOrMediaImage to vcloud 2011-05-25 17:07:23 -06:00
Adrian Cole bd69558081 Issue 573:Set vApp description in vcloud driver 2011-05-25 16:03:15 -06:00
Adrian Cole 0914978560 Merge branch 'master' of https://github.com/jcscoobyrs/jclouds
* 'master' of https://github.com/jcscoobyrs/jclouds:
  Issue 550: Added support for finding providers that are in a particular "location" as identified by an ISO 3166 code.
2011-05-25 14:52:17 -06:00
Jeremy Whitlock cbf14a5397 Merge remote branch 'upstream/master' 2011-05-25 14:49:28 -06:00
Jeremy Whitlock 5ef645eeb5 Issue 550: Added support for finding providers that are in a
particular "location" as identified by an ISO 3166 code.

[in core/src/main/java/org/jclouds]

* providers/ProviderPredicates.java (inIso3166Code),
  providers/Providers.java (withIso3166Code): Added.

[in core/src/test/java/org/jclouds]

* providers/JcloudsTestBlobStoreProviderMetadata.java
  (getIso3166Codes): Updated to list a different code than the other
   test ProviderMetadata to test the new filtering capabilities.

* providers/ProvidersTest.java (testWithIso3166Code): Added.
2011-05-25 14:47:49 -06:00
Adrian Cole 352a5e1cc1 Issue 571:added cpu/mem update methods and tested lightly 2011-05-25 12:03:32 -06:00
Adrian Cole 9f1f61d3b4 fixed builders on vcloud classes 2011-05-25 00:31:02 -06:00
Adrian Cole 963fffce82 fixed regression on vcloud auth 2011-05-24 21:15:58 -06:00
Adrian Cole 1c54a6828f more osgi changes from ioannis 2011-05-24 16:54:52 -06:00
Andrew Phillips 20e5e020d1 Moved maven-javadoc-plugin version to the plugin definitions because version information is not inherited by the report plugins (i.e. two of the three instances of the plugin) :-( Verify with mvn help:effective-pom 2011-05-24 17:35:48 -04:00
Andrew Phillips 61dfcc8856 [issue 531] Disabled the enforcer plugin for site generation, preventing forked processes (unlike the -Denforcer.skip option) 2011-05-24 17:32:14 -04:00
Andrew Phillips 59ba60666e [issue 531] Added "normal" Javadoc generation for non-aggregate projects 2011-05-24 17:32:13 -04:00
Andrew Phillips 1ca0d862fd Formatting 2011-05-24 17:32:12 -04:00
Adrian Cole 92394524b5 updated elb and simpledb metadata to include iso codes 2011-05-23 18:23:40 -07:00
Jeremy Whitlock 1e2ebc0365 Issue 550: Added support to retrieve ISO 3166 codes from ProviderMetadata.
[in core/src/main/java/org/jclouds]

* providers/BaseProviderMetadata.java
  (equals, hashCode): Updated for the iso 3166 codes.

* providers/ProviderMetadata.java
  (getIso3166Codes): Added.

[in core/src/main/test/org/jclouds]

* providers/JcloudsTestBlobStoreProviderMetadata.java,
  providers/JcloudsTestComputeProviderMetadata.java
  (getIso3166Codes): Added.

[in providers/aws-ec2/src/main/java/org/jclouds]

* aws/ec2/AWSEC2ProviderMetadata.java
  (getIso3166Codes): Added.

[in providers/aws-s3/src/main/java/org/jclouds]

* aws/s3/AWSS3ProviderMetadata.java
  (getIso3166Codes): Added.

[in providers/trmk-ecloud/src/main/java/org/jclouds]

* vcloud/terremark/TerremarkECloudProviderMetadata.java
  (getIso3166Codes): Added.

[in providers/trmk-vcloudexpress/src/main/java/org/jclouds]

* vcloud/terremark/TerremarkVCloudExpressProviderMetadata.java
  (getIso3166Codes): Added.
2011-05-23 16:03:37 -06:00
Adrian Cole f7bdd248f7 Merge pull request #37 from ccustine/features/javadocfix
Update Javadoc plugin version. Removes noisy maven Javadoc messages.
2011-05-22 21:45:20 -07:00
Adrian Cole f27b959bd5 Issue 42: applied pom fixes from Ioannis 2011-05-22 17:40:55 -07:00