You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by of...@apache.org on 2020/01/03 15:05:51 UTC

[incubator-dlab] branch feature-integration-tests updated: Added ProjectActionDTO.java

This is an automated email from the ASF dual-hosted git repository.

ofuks pushed a commit to branch feature-integration-tests
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git


The following commit(s) were added to refs/heads/feature-integration-tests by this push:
     new a315bf8  Added ProjectActionDTO.java
a315bf8 is described below

commit a315bf888a21ff28c87ac5b9482968ca8f198ca1
Author: Oleh Fuks <ol...@gmail.com>
AuthorDate: Fri Jan 3 17:05:31 2020 +0200

    Added ProjectActionDTO.java
---
 .../main/java/org/apache/dlab/dto/ProjectActionDTO.java    | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/integration-tests-cucumber/src/main/java/org/apache/dlab/dto/ProjectActionDTO.java b/integration-tests-cucumber/src/main/java/org/apache/dlab/dto/ProjectActionDTO.java
new file mode 100644
index 0000000..4191d44
--- /dev/null
+++ b/integration-tests-cucumber/src/main/java/org/apache/dlab/dto/ProjectActionDTO.java
@@ -0,0 +1,14 @@
+package org.apache.dlab.dto;
+
+import com.fasterxml.jackson.annotation.JsonProperty;
+import lombok.Data;
+
+import java.util.List;
+
+@Data
+public class ProjectActionDTO {
+    @JsonProperty("project_name")
+    private final String projectName;
+    @JsonProperty("endpoint")
+    private final List<String> endpoints;
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org