Andrew Gaul
|
af963df92d
|
Use Map.entrySet where possible
Improves run-time efficiency and addresses FindBugs warnings.
|
2013-01-21 23:59:42 -08:00 |
Adrian Cole
|
1ab3f0bb44
|
accomodate runtime credential changes
|
2013-01-15 22:26:50 -08:00 |
Adrian Cole
|
9745e9dc2f
|
fixed covariance and warnings on ApiMetadata subclasses
|
2012-12-31 19:40:49 -08:00 |
Adrian Cole
|
bb953c981e
|
fix issue #1101: Move to Guava 14 BaseEncoding and Hashing
|
2012-12-31 14:48:31 -08:00 |
Adrian Cole
|
13d8b9c402
|
replaced @Timeout w/explicit properties
|
2012-12-30 12:31:43 -08:00 |
Adrian Cole
|
9b1872c6ff
|
removed custom code that duplicates functionality of guava fallbacks
|
2012-12-27 16:54:31 -08:00 |
Adrian Cole
|
20c3426fc8
|
replaced jersey w/Uris & UriTemplates; removed complexity in url encoding and edge cases like matrix params
|
2012-12-24 14:32:59 -08:00 |
Adrian Cole
|
dadf142cac
|
removed chance of race condition due to duplicate tearDown methods
|
2012-12-24 00:16:57 -08:00 |
Adrian Cole
|
3be1089538
|
removed explicit matrix param support as their use is edge case in rest
|
2012-12-22 17:45:31 -08:00 |
Adrian Cole
|
878ec1bcab
|
undid Serializable and added checkstyle InterfaceIsType:allowMarkerInterfaces=false
|
2012-11-18 09:23:44 -08:00 |
Andrew Gaul
|
3d191253ec
|
Enforce use of Collection helpers via Checkstyle
This ensures that we do not repeat the type name. Some instances remain
due to auto-generated code in dmtf/cim/Cim*.
|
2012-11-04 20:45:49 -08:00 |
Andrew Gaul
|
08b9982384
|
Enforce modifier order via Checkstyle
Also fix violations, via:
find -name \*.java | xargs sed -i 's/final static/static final/'
find -name \*.java | xargs sed -i 's/static private/private static/'
find -name \*.java | xargs sed -i 's/static abstract/abstract static/'
|
2012-11-01 20:01:30 -07:00 |
Andrew Gaul
|
caccd9cf4c
|
Prefer Files.copy to copy streams
|
2012-10-24 17:44:05 -07:00 |
Andrew Gaul
|
28d7a6f143
|
Prefer immutable over empty collections
The former does not create an object when calling iterator(), as
discussed here:
https://groups.google.com/d/msg/jclouds-dev/l7BviKDXreA/mP6Ow_RYxIgJ
|
2012-10-20 15:35:29 -07:00 |
Andrew Gaul
|
9024c77405
|
Improve use of Charsets
|
2012-10-07 22:31:49 -07:00 |
Andrew Gaul
|
ceb203c10a
|
Improve use of InputSupplier helpers
|
2012-10-02 18:18:51 -07:00 |
Adrian Cole
|
3a3439c9a0
|
cleaned up cdmi
|
2012-09-15 23:45:48 -07:00 |
Kenneth Nagin
|
fd76b79b03
|
CDMI: adding support for
1) query parameters
2) non-cdmi content data object operations
|
2012-09-03 13:02:39 +03: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 |
Adrian Cole
|
647317b9b4
|
Issue 1022:Move naming convention to Api from Client or Services:: cdmi
|
2012-07-15 15:47:44 -07:00 |
Kenneth Nagin
|
929a9ce044
|
merged cdmi changes and fixed classpath issues
|
2012-07-15 15:45:48 -07:00 |
Adrian Cole
|
05fd64af44
|
cleaned up http builders and expect tests
|
2012-07-15 01:50:38 -07:00 |
Kenneth Nagin
|
3d1a2dd7fa
|
createContainer, deleteContainer, updates to container to parse metadata and accompany testcases.
Added handling of null ObjectName.
|
2012-06-14 10:41:01 -04:00 |
Adrian Cole
|
bf0b15aff0
|
pretty
|
2012-04-24 17:42:15 -07:00 |
Adrian Cole
|
058213dd20
|
Issue 188: base impl of cdmi
|
2012-04-24 17:38:39 -07:00 |