@jasminSPC
You can view, comment on, or merge this pull request online at:

  https://github.com/jclouds/jclouds-labs/pull/241

-- Commit Summary --

  * Implemented Server Api
  * Implemented Volume API
  * upstream merge
  * Implemented DataCenter Api
  * Implemented Server Api
  * Implemented Volume Api
  * Implemented Image Api

-- File Changes --

    M profitbricks-rest/pom.xml (7)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/ProfitBricksApi.java
 (12)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/binder/image/UpdateImageRequestBinder.java
 (89)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/binder/server/AttachCdromRequestBinder.java
 (4)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/binder/server/AttachVolumeRequestBinder.java
 (6)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/binder/server/CreateServerRequestBinder.java
 (5)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/binder/server/UpdateServerRequestBinder.java
 (4)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/binder/volume/CreateSnapshotRequestBinder.java
 (73)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/binder/volume/CreateVolumeRequestBinder.java
 (81)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/binder/volume/RestoreSnapshotRequestBinder.java
 (72)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/binder/volume/UpdateVolumeRequestBinder.java
 (70)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/Image.java
 (81)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/Provisionable.java
 (25)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/Server.java
 (85)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/Snapshot.java
 (91)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/domain/Volume.java
 (180)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/features/ImageApi.java
 (58)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/features/ServerApi.java
 (7)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/features/SnapshotApi.java
 (53)
    M 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/features/VolumeApi.java
 (101)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/ids/VolumeRef.java
 (31)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/util/MacAddresses.java
 (29)
    A 
profitbricks-rest/src/main/java/org/apache/jclouds/profitbricks/rest/util/Passwords.java
 (64)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/binder/image/UpdateImageRequestBinderTest.java
 (65)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/binder/server/AttachCdromRequestBinderTest.java
 (63)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/binder/server/AttachVolumeRequestBinderTest.java
 (63)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/binder/server/CreateServerRequestBinderTest.java
 (72)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/binder/server/UpdateServerRequestBinderTest.java
 (66)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/binder/volume/CreateSnapshotRequestBinderTest.java
 (63)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/binder/volume/CreateVolumeRequestBinderTest.java
 (73)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/binder/volume/RestoreSnapshotRequestBinderTest.java
 (54)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/binder/volume/UpdateVolumeRequestBinderTest.java
 (63)
    M 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/DataCenterApiMockTest.java
 (32)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/ImageApiLiveTest.java
 (55)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/ImageApiMockTest.java
 (95)
    M 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/ServerApiLiveTest.java
 (61)
    M 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/ServerApiMockTest.java
 (39)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/VolumeApiLiveTest.java
 (173)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/features/VolumeApiMockTest.java
 (154)
    M 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/internal/BaseProfitBricksApiMockTest.java
 (10)
    M 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/internal/BaseProfitBricksLiveTest.java
 (37)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/util/MacAddressesTest.java
 (45)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/util/ParseIdTest.java
 (49)
    A 
profitbricks-rest/src/test/java/org/apache/jclouds/profitbricks/rest/util/PasswordsTest.java
 (53)
    A profitbricks-rest/src/test/resources/image/get.json (32)
    A profitbricks-rest/src/test/resources/image/list.json (423)
    A profitbricks-rest/src/test/resources/volume/get.json (33)
    A profitbricks-rest/src/test/resources/volume/list.json (205)
    A profitbricks-rest/src/test/resources/volume/snapshot.json (30)
    A 
profitbricks/src/main/java/org/jclouds/profitbricks/ProfitBricksProviderMetadata.java
 (98)
    A 
profitbricks/src/main/java/org/jclouds/profitbricks/compute/ProfitBricksComputeServiceAdapter.java
 (499)
    A 
profitbricks/src/main/java/org/jclouds/profitbricks/compute/ProfitBricksTemplateBuilderImpl.java
 (101)
    A 
profitbricks/src/main/java/org/jclouds/profitbricks/compute/config/ProfitBricksComputeServiceContextModule.java
 (284)
    A 
profitbricks/src/main/java/org/jclouds/profitbricks/compute/function/ProvisionableToImage.java
 (234)
    A 
profitbricks/src/main/java/org/jclouds/profitbricks/domain/Provisionable.java 
(35)
    A 
profitbricks/src/main/java/org/jclouds/profitbricks/http/filters/ProfitBricksSoapMessageEnvelope.java
 (59)
    A 
profitbricks/src/test/java/org/jclouds/profitbricks/compute/ProfitBricksComputeServiceLiveTest.java
 (142)
    A 
profitbricks/src/test/java/org/jclouds/profitbricks/compute/ProfitBricksTemplateBuilderLiveTest.java
 (103)
    A 
profitbricks/src/test/java/org/jclouds/profitbricks/compute/function/ProvisionableToImageTest.java
 (267)
    A 
profitbricks/src/test/java/org/jclouds/profitbricks/features/SnapshotApiLiveTest.java
 (168)
    A 
profitbricks/src/test/java/org/jclouds/profitbricks/http/filters/ProfitBricksSoapMessageEnvelopeTest.java
 (57)

-- Patch Links --

https://github.com/jclouds/jclouds-labs/pull/241.patch
https://github.com/jclouds/jclouds-labs/pull/241.diff

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/241

Reply via email to