This is an automated email from the ASF dual-hosted git repository.
dyankiv pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
The following commit(s) were added to refs/heads/develop by this push:
new 617e17c89 change images page model
617e17c89 is described below
commit 617e17c892fa247f52f977effdb0d3e2809e2328
Author: Denys Yankiv <[email protected]>
AuthorDate: Tue Aug 9 19:18:06 2022 +0300
change images page model
---
.../backendapi/resources/dto/ImagesPageInfo.java | 42 ++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git
a/services/self-service/src/main/java/com/epam/datalab/backendapi/resources/dto/ImagesPageInfo.java
b/services/self-service/src/main/java/com/epam/datalab/backendapi/resources/dto/ImagesPageInfo.java
new file mode 100644
index 000000000..0589d74ce
--- /dev/null
+++
b/services/self-service/src/main/java/com/epam/datalab/backendapi/resources/dto/ImagesPageInfo.java
@@ -0,0 +1,42 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package com.epam.datalab.backendapi.resources.dto;
+
+import com.fasterxml.jackson.annotation.JsonProperty;
+import lombok.AllArgsConstructor;
+import lombok.Builder;
+import lombok.EqualsAndHashCode;
+import lombok.ToString;
+
+import java.util.List;
+import java.util.Map;
+
+@AllArgsConstructor
+@Builder
+@EqualsAndHashCode
+@ToString
+public class ImagesPageInfo {
+ @JsonProperty
+ private List<ProjectImagesInfo> projectImagesInfos;
+ @JsonProperty
+ private ImageFilter imageFilter;
+ @JsonProperty
+ private ImageFilterFormData filterData;
+}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]