Andrew Gaul
|
93d69ece2b
|
Enforce newline at end of file via Checkstyle
Also address all warnings, via:
find -name \*.java | while read i; do if [ x`tail -c 1 $i` != x"" ]; then echo >> $i; fi; done
|
2012-10-29 22:12:44 -07:00 |
Andrew Gaul
|
709ca69a2d
|
Enforce that all imports are used via Checkstyle
Also remove all unused imports, via:
mvn checkstyle:checkstyle -Dcheckstyle.output.file=/dev/stdout -Dcheckstyle.output.format=plain | tac | awk -v FS=: '/warning/{print "sed -i " $2 "d " $1}' | while read i; do $i; done
|
2012-10-29 17:11:08 -07:00 |
Adrian Cole
|
28d766b9df
|
bumped to 1.6.0-SNAPSHOT
|
2012-09-17 01:43:52 -07:00 |
Adrian Cole
|
499e47c5b4
|
fixes to some softlayer tests
|
2012-09-10 08:04:42 -07:00 |
Adam Lowe
|
ec74987054
|
softlayer: issue 971 adjusting builders and applying ConstructorProperties to domain objects
|
2012-07-30 13:50:01 +01:00 |
Andrew Gaul
|
8ed0e28e68
|
Spelling corrections
|
2012-07-26 22:39:35 -07:00 |
Andrew Gaul
|
985cccff9a
|
Prefer valueOf over explicit object creation
This allows use of cached values. Patched with:
find -name \*.java | xargs sed -i 's/new Boolean(false)/Boolean.FALSE/g'
find -name \*.java | xargs sed -i 's/new Boolean(true)/Boolean.TRUE/g'
find -name \*.java | xargs sed -i 's/new Boolean(/Boolean.valueOf(/g'
find -name \*.java | xargs sed -i 's/new Integer(/Integer.valueOf(/g'
find -name \*.java | xargs sed -i 's/new Long(/Long.valueOf(/g'
|
2012-07-22 21:01:46 -07:00 |
Andrew Gaul
|
a40983a39d
|
Prefer InputSupplier helpers
These ensure that inputs are closed properly.
Updated with: find -name \*.java | xargs sed -i
's/toStringAndClose(\(.*\)\.getInput())/toString(\1)/'
|
2012-07-18 17:42:48 -07:00 |
Adrian Cole
|
05fd64af44
|
cleaned up http builders and expect tests
|
2012-07-15 01:50:38 -07:00 |
Adrian Cole
|
fb98ce82f7
|
cleanup of module binding, clarity in toStrings, reduced wrapper depth for memoized sets
|
2012-07-02 19:36:27 -07:00 |
Adrian Cole
|
d980b4fd42
|
changed test poms to use provider.template and provider.ec2-template accordingly
|
2012-06-15 23:35:10 -04:00 |
Adrian Cole
|
bcd3d50ad6
|
Issue 956:add getImage by id to ComputeService
|
2012-06-04 16:54:49 -07:00 |
Ioannis Canellos
|
b078adc3ce
|
Removed fragments and dynamic imports. Added centralized control of the maven-bundle-plugin.
|
2012-06-03 19:41:54 +03:00 |
Adrian Cole
|
96773b8a1b
|
Issue 952:add status field to image
|
2012-05-30 21:22:10 -07:00 |
Adrian Cole
|
07c2c24721
|
Issue 949:Introduce: ComputeMetadataIncludingStatus; Deprecate NodeState -> NodeMetadata.Status
|
2012-05-29 20:41:10 -07:00 |
Adrian Cole
|
5c647df129
|
Issue 938:TemplateBuilderSpec
|
2012-05-21 02:45:25 -06:00 |
Adam Lowe
|
c259bce623
|
Issue 872: softlayer ProductItemToImage now categorizes unknown operating systems accordingly, instead of throwing exceptions
|
2012-05-15 17:16:21 +01:00 |
Matt Stephenson
|
381851b8ab
|
Remove IPSocket class, replace with Guava's HostAndPort class.
|
2012-04-25 17:52:01 -07:00 |
Adrian Cole
|
df7d2acbb4
|
wrapper -> view
|
2012-04-23 19:14:36 -07:00 |
Adrian Cole
|
886d2cafb9
|
created base Context class with ProviderMetadata and Identity
|
2012-04-23 16:16:51 -07:00 |
Adrian Cole
|
dab1dd69fc
|
fix covariance/assignability in RestContext<? extends Client> subclasses
|
2012-04-18 15:05:39 -07:00 |
Adrian Cole
|
0b59dea073
|
removed ContextBuilder subclasses; added unwrap; undid generic params
|
2012-04-16 00:44:20 -07:00 |
Adrian Cole
|
23cb01f977
|
refactor PropertiesBuilder and related types into ApiMetadata and ProviderMetadata, and update all usage
|
2012-04-11 19:47:09 -06:00 |
Andrew Gaul
|
b47860afc1
|
Use inference to elide duplicated type parameters
Found with:
grep 'Builder.*<.*>.*Immutable.*<.*>.*builder();'
|
2012-04-08 22:32:04 -07:00 |
Adrian Cole
|
764e0907f7
|
Issue 657:ApiMetadata
|
2012-04-01 18:43:31 -07:00 |
Adrian Cole
|
49e475edcd
|
Issue 888: consolidate code that addresses naming conventions, using hyphen as default delimiter
|
2012-03-28 03:37:54 -04:00 |
Adrian Cole
|
5c6ce9f081
|
organize imports
|
2012-03-28 03:37:48 -04:00 |
Adrian Cole
|
343470d0a5
|
removed deprecated RunScriptOptions & TemplateOptions
|
2012-03-28 03:37:43 -04:00 |
Adrian Cole
|
025396be37
|
added new properties object
|
2012-03-28 03:37:41 -04:00 |
Adrian Cole
|
6301e23a1a
|
temporary fix to CloudLinux blow-up
|
2012-03-15 16:33:48 -07:00 |
Ioannis Canellos
|
5490b3068c
|
[842] Added required import packages to cloudfiles api bundle. Improved import packages in all bundles.
|
2012-02-17 00:49:39 +02:00 |
Adrian Cole
|
fe4d148528
|
updated current version to 1.5.0-SNAPSHOT
|
2012-02-04 11:06:07 -08:00 |
Adrian Cole
|
c388fc41b4
|
Issue 826: removed eager supplier of @Provider endpoint
|
2012-02-03 13:51:26 -08:00 |
Adrian Cole
|
80a965d3fb
|
softlayer has been slow responding lately
|
2012-02-03 00:29:42 -08:00 |
Adrian Cole
|
32f0de7997
|
softlayer related changes for Issue 826
|
2012-02-03 00:29:36 -08:00 |
Adrian Cole
|
abeffc1119
|
Issue 824:add field for hypervisor
|
2012-01-30 22:52:35 -08:00 |
Ioannis Canellos
|
cfe88031a2
|
Updated OSGi package imports for compute providers & apis.
|
2012-01-18 15:02:16 +02:00 |
Adrian Cole
|
3df052565f
|
updated current version to 1.4.0-SNAPSHOT
|
2012-01-16 13:08:32 -08:00 |
Adrian Cole
|
79e9f23b18
|
removed softlayer DC
|
2012-01-15 17:59:23 -08:00 |
Adrian Cole
|
ef7e0a46e2
|
refactored expect tests to throw a 'server error' when there's no state expectation configured
|
2012-01-12 18:04:19 -08:00 |
Adrian Cole
|
018771d3a4
|
refactored error on current transaction
|
2012-01-10 16:44:06 -08:00 |
Adrian Cole
|
467381bd51
|
slight fixes for softlayer tests
|
2012-01-10 12:21:25 -08:00 |
Adrian Cole
|
e46ee9fbc4
|
Issue 807:update license headers
|
2012-01-09 10:54:57 -08:00 |
Adrian Cole
|
f06e6982eb
|
Issue 800:introduce property for build version
|
2012-01-05 17:51:55 -08:00 |
Adrian Cole
|
99fb37f6cf
|
refactored LiveTest code to share property initialization
|
2012-01-05 17:51:03 -08:00 |
Adrian Cole
|
42137677da
|
Issue 801:fix inconsistency in test property test.provider.apiversion set in pom.xml -> api-version
|
2012-01-05 13:09:45 -08:00 |
Adrian Cole
|
f9b38f646c
|
Issue 730: removed deprecated methods from ComputeService RunScript/TemplateOptions SshClient.Factory and replaced occurences of Credentials with LoginCredentials whereever possible
|
2011-12-20 23:19:45 -08:00 |
Adrian Cole
|
4a5af1e7a5
|
Issue 441: added new type: LoginCredentials, and (jclouds|provider).image.(login-user|authenticate-sudo) context properties
|
2011-11-21 11:00:12 +02:00 |
Adrian Cole
|
349f602931
|
new amsterdam datacenter in softlayer
|
2011-11-14 22:32:45 +02:00 |
Adrian Cole
|
4329129c25
|
Issue 750:property to set the image id for the default template
|
2011-11-14 19:25:46 +02:00 |