alibazlamit commented on this pull request.


> +
+   @Named("sshkeys:create")
+   @POST
+   SshKey create(@BinderParam(BindToJsonPayload.class) SshKey.CreateSshKey 
sshKey);
+
+   @Named("sshkeys:update")
+   @PUT
+   @Path("/{sshKeyId}")
+   SshKey update(@PathParam("sshKeyId") String sshKeyId, 
@BinderParam(BindToJsonPayload.class) SshKey.UpdateSshKey sshKey);
+
+   @Named("sshkeys:delete")
+   @DELETE
+   @Path("/{sshKeyId}")
+   @Fallback(Fallbacks.NullOnNotFoundOr404.class)
+   @MapBinder(BindToJsonPayload.class)
+   SshKey delete(@PathParam("sshKeyId") String sshKeyId);

Yes
```
-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running org.apache.jclouds.oneandone.rest.features.SshKeyApiLiveTest
Configuring TestNG with: TestNG652Configurator
Starting test 
testGet(org.apache.jclouds.oneandone.rest.features.SshKeyApiLiveTest)
Starting test 
testList(org.apache.jclouds.oneandone.rest.features.SshKeyApiLiveTest)
Starting test 
testListWithOption(org.apache.jclouds.oneandone.rest.features.SshKeyApiLiveTest)
[pool-1-thread-1] Test 
testGet(org.apache.jclouds.oneandone.rest.features.SshKeyApiLiveTest) 
succeeded: 553ms
Test suite progress: tests succeeded: 1, failed: 0, skipped: 0.
[pool-1-thread-3] Test 
testList(org.apache.jclouds.oneandone.rest.features.SshKeyApiLiveTest) 
succeeded: 553ms
Test suite progress: tests succeeded: 2, failed: 0, skipped: 0.
[pool-1-thread-2] Test 
testListWithOption(org.apache.jclouds.oneandone.rest.features.SshKeyApiLiveTest)
 succeeded: 553ms
Test suite progress: tests succeeded: 3, failed: 0, skipped: 0.
Starting test 
testUpdate(org.apache.jclouds.oneandone.rest.features.SshKeyApiLiveTest)
[pool-1-thread-4] Test 
testUpdate(org.apache.jclouds.oneandone.rest.features.SshKeyApiLiveTest) 
succeeded: 862ms
Test suite progress: tests succeeded: 4, failed: 0, skipped: 0.
Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 3.975 sec - in 
org.apache.jclouds.oneandone.rest.features.SshKeyApiLiveTest

Results :

Tests run: 4, Failures: 0, Errors: 0, Skipped: 0

------------------------------------------------------------------------
BUILD SUCCESS
------------------------------------------------------------------------
Total time: 4.862s
Finished at: Mon Jul 09 17:32:42 CEST 2018
Final Memory: 11M/309M
------------------------------------------------------------------------
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/437#discussion_r201046977

Reply via email to