From 29ae3e12f65c813b45d9eca1f3cd9683e6647b5d Mon Sep 17 00:00:00 2001 From: Andrei Piankouski Date: Mon, 5 Feb 2024 12:56:08 +0300 Subject: [PATCH] Return EntryCreatedRS to models --- .../reportportal/ws/model/EntryCreatedRS.java | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/main/java/com/epam/ta/reportportal/ws/model/EntryCreatedRS.java diff --git a/src/main/java/com/epam/ta/reportportal/ws/model/EntryCreatedRS.java b/src/main/java/com/epam/ta/reportportal/ws/model/EntryCreatedRS.java new file mode 100644 index 00000000..18e1b7f3 --- /dev/null +++ b/src/main/java/com/epam/ta/reportportal/ws/model/EntryCreatedRS.java @@ -0,0 +1,59 @@ +/* + * Copyright 2023 EPAM Systems + * + * Licensed 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.ta.reportportal.ws.model; + +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonInclude.Include; +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * Response when some entry has been created and we need to return ID + * + * @author Andrei Varabyeu + * + */ +@JsonInclude(Include.NON_NULL) +public class EntryCreatedRS { + + @JsonProperty("id") + private Long id; + + public EntryCreatedRS() { + + } + + public EntryCreatedRS(Long id) { + this.id = id; + } + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + @Override + public String toString() { + final StringBuilder sb = new StringBuilder("EntryCreatedRS{"); + sb.append("id='").append(id).append('\''); + sb.append('}'); + return sb.toString(); + } + +} \ No newline at end of file