Skip to content

Commit

Permalink
Return EntryCreatedRS to models
Browse files Browse the repository at this point in the history
  • Loading branch information
APiankouski committed Feb 5, 2024
1 parent 3072286 commit 29ae3e1
Showing 1 changed file with 59 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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();
}

}

0 comments on commit 29ae3e1

Please sign in to comment.