Andrew Gaul
91906b90be
Sync checkstyle config
2013-12-12 17:02:00 -08:00
Zack Shoylev
6de84cb003
Moving trove to jclouds from jclouds-openstack-labs https://issues.apache.org/jira/browse/JCLOUDS-102
2013-12-12 17:13:38 -06:00
Ignasi Barrera
cec0981bb9
Properly set the request method in HTTPS connections
2013-12-12 12:30:06 -06:00
Andrew Gaul
828d8790c2
Enforce no unused imports via Checkstyle
...
Removed with:
mvn checkstyle:checkstyle --quiet -Dcheckstyle.output.file=/dev/stdout -Dcheckstyle.output.format=plain | tac | while read i; do echo $i | sed -n 's/\([^:]*\):\([^:]*\):.*/sed -i \2d \1/p' | bash; done
2013-12-11 17:27:43 -08:00
Andrew Gaul
3321506c84
JCLOUDS-403. Add support for Swift object expiry
2013-12-11 14:20:32 -08:00
Ignacio Mulas
7e99ddef5c
[JCLOUDS-263] Usage of internalURL services' endpoints
2013-12-11 11:28:37 -06:00
Eric Evans
15a3c04fb7
JCLOUDS-356 multipart uploads with InputStream payloads
...
This changeset introduces an alternative to PayloadSlicer,
IterablePayloadSlicer, with a method for returning a Payload iterator.
...swift.blobstore.strategy.internal.SequentialMultipartUploadStrategy
has been updated to to use a payload iterator.
2013-12-11 16:34:19 +01:00
Everett Toews
c40dc996d9
JCLOUDS-400: Allow the HeaderParam annotation to be used in a Caller.
...
This allows jclouds to factor out common headers into the Caller so they don't
have to be repeated in the Callee.
The Produces/Consumes annotations (Content-Type/Accept headers) will also
propagate from the Caller to the Callee.
2013-12-11 13:24:07 +01:00
Zack Shoylev
83e77d2309
Adds some easy-of-use for openstack mock tests
2013-12-10 12:55:22 -06:00
Adrian Cole
acde2beff1
JCLOUDS-32: Using less magic in route53 signature
2013-12-09 19:04:21 -05:00
Andrew Gaul
4cef85d1cd
Address Checkstyle violations in tests
2013-12-09 14:40:07 -08:00
Andrew Gaul
fc07a31412
Upgrade to Checkstyle 2.11
...
This addresses parsing errors in ConcurrentOpenSocketFinderTest and
RestAnnotationProcessorTest.
2013-12-09 14:38:33 -08:00
Andrew Bayer
b351406fc9
JCLOUDS-394. Add note to ec2 README in re: live tests and new accounts
2013-12-08 18:45:16 -08:00
Zack Shoylev
295c6e741e
Fixes broken cloudservers live tests, updates versions for images
2013-12-02 11:47:43 -06:00
Andrew Gaul
1043d851a7
Correct jcloud -> jclouds typos
2013-12-01 11:36:08 -08:00
Andrew Gaul
cb98a47173
Correct jcloud -> jclouds typos
...
Corrected with:
find -name pom.xml | xargs sed -i 's/jcloud\>/jclouds/'
2013-12-01 11:21:26 -08:00
Zack Shoylev
6e663be20a
Fixes filesystem tests sometimes failing on Windows.
2013-11-26 16:12:46 -06:00
Andrew Bayer
8b94ee589b
JCLOUDS-218. List templates in all known projects for CloudStack.
2013-11-26 10:00:09 -08:00
Andrew Phillips
981db34655
JCLOUDS-386: Removing the remote-resources plugin
...
We only use the shared resources for the Checkstyle config now, and that doesn't need to be "mixed in" to the project output directory
2013-11-22 18:57:44 -05:00
Andrew Gaul
0d8efbd97a
Remove more incubator references
...
Fixes JCLOUDS-388.
2013-11-21 12:50:37 -08:00
Andrew Phillips
4f95de2bb2
JCLOUDS-387: Removing DISCLAIMER file now that jclouds has graduated
2013-11-21 15:27:29 -05:00
Andrew Bayer
23e43b2c8d
JCLOUDS-381. Allow explicit naming of nodes via TemplateOptions.
2013-11-21 10:15:25 -08:00
Alex Heneveld
3ecbf90847
remove addl whitespace pointed out in JCLOUDS-331
2013-11-19 17:37:02 -05:00
Alex Heneveld
9a7336bb0e
applies tidies for imageChooser (JCLOUDS-331) as suggested in pull #202
2013-11-18 10:31:34 -05:00
Andrew Gaul
029e718435
Upgrade to maven-duplicate-finder-plugin 1.0.5
...
This adds a cache which accelerates mvn install:
1.0.3:
real 3m4.419s
user 3m29.749s
sys 0m48.495s
1.0.5:
real 1m48.533s
user 2m22.457s
sys 0m46.331s
2013-11-16 19:18:51 -08:00
Andrew Bayer
0d3f6441c7
JCLOUDS-383. Adding c3 instance sizes.
2013-11-15 12:59:54 -08:00
Everett Toews
ab4473561e
Style fixes and corrections.
2013-11-15 10:46:49 -06:00
Andrew Bayer
2077da2879
JCLOUDS-361. Add support for filtering Describe* methods in EC2
2013-11-14 11:53:31 -08:00
Andrea Turli
55b21b6449
JCLOUDS-373: Change parent of SoftLayerOrderItemDuplicateException to HttpResponseException
...
- SoftLayerOrderItemDuplicateException extends HttpResponseException as it is a propagated exception by jclouds
2013-11-14 12:48:15 +01:00
Ignacio Mulas
6d7bde9676
PATCH HTTP request implementation
2013-11-13 23:23:40 +01:00
Andrea Turli
4e75e0a1e1
JCLOUDS-373: Fix VirtualGuestToNodeMetadata when server returns SoftLayer_Exception_Order_Item_Duplicate
...
* Wrap getOrderTemplate in VirtualGuestToNodeMetadata.getImage with try/catch
* Address comments from @nacx and @demobox:
- remove the fields of the custom SoftLayerOrderItemDuplicateException and propagate the HttpResponseException
- use of order = null instead of return null
- extend RuntimeException instead IllegalStateException in SoftLayerOrderItemDuplicateException
Conflicts solved:
providers/softlayer/src/main/java/org/jclouds/softlayer/compute/functions/VirtualGuestToNodeMetadata.java
2013-11-13 14:20:40 +01:00
Andrew Phillips
2abc98ab6b
Revert "JCLOUDS-375: Fix VirtualGuestToNodeMetadata when server returns SoftLayer_Exception_Order_Item_Duplicate" to correct JIRA issue number
...
This reverts commit 43f2f0ba3b
.
2013-11-13 14:19:56 +01:00
Andrea Turli
43f2f0ba3b
JCLOUDS-375: Fix VirtualGuestToNodeMetadata when server returns SoftLayer_Exception_Order_Item_Duplicate
...
* Wrap getOrderTemplate in VirtualGuestToNodeMetadata.getImage with try/catch
* Address comments from @nacx and @demobox:
- remove the fields of the custom SoftLayerOrderItemDuplicateException and propagate the HttpResponseException
- use of order = null instead of return null
- extend RuntimeException instead IllegalStateException in SoftLayerOrderItemDuplicateException
Conflicts solved:
providers/softlayer/src/main/java/org/jclouds/softlayer/compute/functions/VirtualGuestToNodeMetadata.java
2013-11-13 14:12:24 +01:00
Ignasi Barrera
cccdb756d1
JCLOUDS-365: ChefSolo should not depend on InstallChefGems
2013-11-12 09:11:38 +01:00
Andrew Phillips
4500dbe2ef
JCLOUDS-352: Drops support for "-incubating" release versions
2013-11-06 22:31:54 -05:00
Andrew Phillips
29d574ffb2
Fixing typos in test name
2013-11-06 22:31:31 -05:00
Martin Harris
ca8289b692
JCLOUDS-331: Changed return type of TemplateBuilder.imageChooser
...
TemplateBuilderImpl -> TemplateBuilder
2013-11-06 21:25:59 -05:00
jolly
6e7c2c7e88
add g2.2xlarge EC2 instance size (JCLOUDS-364)
2013-11-06 12:24:06 -08:00
Andrew Gaul
c215d123c4
Address error-prone self-equals warning
2013-11-05 16:24:50 -08:00
Andrew Gaul
6c5effcdb1
Address error-prone empty statement warnings
2013-11-05 16:22:44 -08:00
Andrew Bayer
cf597121b2
Cleaning up CloudStack SecurityGroupExtension work
2013-11-01 17:06:54 -07:00
Andrew Phillips
e2f67a7567
Removing debugging System.err calls mistakenly included in ecc918b4
2013-11-01 16:33:36 -04:00
Andrew Gaul
17ce72794c
Enable RedundantModifier for Checkstyle
2013-10-31 10:23:30 -07:00
Zack Shoylev
cb9a6b9413
Reduces parallelism to make test work better with slower connections Adjusts test timing to work properly and reliably
2013-10-30 10:33:15 -05:00
Everett Toews
1013986585
Refactored OpenStack pagination. Removed Rackspace pagination. Prefer PaginationOptions.
2013-10-24 16:52:25 -05:00
Andrew Gaul
ac5559ca9e
Address Checkstyle violations
2013-10-22 16:45:16 -07:00
istolber
fb11c1fc1a
JCLOUDS-350 rebuild server for Openstack NOVA added more options: password, name, ipv6 and ipv4 addresses.
2013-10-22 18:04:17 -05:00
istolber
1c9d1676cd
JCLOUDS-348
...
list quotas for cinder + expected and live tests
2013-10-21 09:12:53 -05:00
istolber
725b7c5c2c
JCLOUDS-353 openstack list availability zones for NOVA
2013-10-21 09:08:07 -05:00
Andrew Phillips
f196ee3b6b
Move Expect: 100 stripping after asserts against the request
...
Follow-up to e30f86521
2013-10-19 20:05:42 -07:00