-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EPMRPP-87316 || Update PostFromField model (#358)
* EPMRPP-87316 || Update post form fields * EPMRPP-87316 || Add command name to PostFormField * EPMRPP-87316 || Add command name to PostFormField * EPMRPP-87316 || Update named value object
- Loading branch information
Showing
2 changed files
with
213 additions
and
147 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
src/main/java/com/epam/ta/reportportal/ws/model/externalsystem/NamedValue.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.epam.ta.reportportal.ws.model.externalsystem; | ||
|
||
import java.io.Serializable; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
/** | ||
* Represents value that consists of id for making request and human readable name | ||
*/ | ||
@Data | ||
@NoArgsConstructor | ||
public class NamedValue implements Serializable { | ||
|
||
private Long id; | ||
private String name; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters