Pull Request
Compare changes
+ 6
− 15
@@ -13,6 +13,7 @@ import lombok.extern.log4j.Log4j2;
@@ -13,6 +13,7 @@ import lombok.extern.log4j.Log4j2;
@@ -37,6 +38,7 @@ public class ContainerEndpoint {
@@ -37,6 +38,7 @@ public class ContainerEndpoint {
@ApiOperation(value = "List all containers", notes = "Lists the containers in the metadata database.")
@@ -51,6 +53,7 @@ public class ContainerEndpoint {
@@ -51,6 +53,7 @@ public class ContainerEndpoint {
@ApiOperation(value = "Creates a new container", notes = "Creates a new container whose image is registered in the metadata database too.")
@@ -67,6 +70,7 @@ public class ContainerEndpoint {
@@ -67,6 +70,7 @@ public class ContainerEndpoint {
@ApiOperation(value = "Get all informations about a container", notes = "Since we follow the REST-principle, this method provides more information than the findAll method.")
@@ -77,24 +81,11 @@ public class ContainerEndpoint {
@@ -77,24 +81,11 @@ public class ContainerEndpoint {
public ResponseEntity<ContainerDto> findById(@NotNull @PathVariable Long id) throws DockerClientException, ContainerNotFoundException {
@ApiOperation(value = "Change the state of a container", notes = "The new state can only be one of START/STOP.")