This is an automated email from the ASF dual-hosted git repository.
bhliva pushed a commit to branch feature/projects
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git
The following commit(s) were added to refs/heads/feature/projects by this push:
new 64339f6 DLAB-000 added endpoint field to exploratory form
64339f6 is described below
commit 64339f6467c4131252ca4a1f7c99bd43fb0579c0
Author: bhliva <[email protected]>
AuthorDate: Mon Jun 3 11:29:48 2019 +0300
DLAB-000 added endpoint field to exploratory form
---
.../backendapi/resources/dto/ExploratoryCreateFormDTO.java | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git
a/services/self-service/src/main/java/com/epam/dlab/backendapi/resources/dto/ExploratoryCreateFormDTO.java
b/services/self-service/src/main/java/com/epam/dlab/backendapi/resources/dto/ExploratoryCreateFormDTO.java
index 53357d5..2cb3344 100644
---
a/services/self-service/src/main/java/com/epam/dlab/backendapi/resources/dto/ExploratoryCreateFormDTO.java
+++
b/services/self-service/src/main/java/com/epam/dlab/backendapi/resources/dto/ExploratoryCreateFormDTO.java
@@ -48,6 +48,10 @@ public class ExploratoryCreateFormDTO {
@NotBlank
@JsonProperty
+ private String endpoint;
+
+ @NotBlank
+ @JsonProperty
private String shape;
@NotBlank
@@ -156,6 +160,14 @@ public class ExploratoryCreateFormDTO {
this.project = project;
}
+ public String getEndpoint() {
+ return endpoint;
+ }
+
+ public void setEndpoint(String endpoint) {
+ this.endpoint = endpoint;
+ }
+
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]