-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathTest.java
84 lines (64 loc) · 1.7 KB
/
Test.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// SPDX-FileCopyrightText: the secureCodeBox authors
//
// SPDX-License-Identifier: Apache-2.0
package io.securecodebox.persistence.defectdojo.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
@JsonInclude(JsonInclude.Include.NON_NULL)
public final class Test implements Model, HasId {
@JsonProperty
private long id;
@JsonProperty
private String title;
@JsonProperty
private String description;
@JsonProperty("target_start")
private String targetStart;
@JsonProperty("target_end")
private String targetEnd;
@JsonProperty
@Builder.Default
private List<String> tags = new LinkedList<>();
@JsonProperty("test_type")
private long testType;
@JsonProperty
private long lead;
@JsonProperty("percent_complete")
private long percentComplete;
@JsonProperty
private long engagement;
@JsonProperty
private String version;
/**
* 1 Development
* 3 Production
*/
@JsonProperty
@Builder.Default
private long environment = 1L;
@Override
public boolean equalsQueryString(Map<String, Object> queryParams) {
if (QueryParamsComparator.isNull(queryParams)) {
return false;
}
if (QueryParamsComparator.isIdEqual(this, queryParams)) {
return true;
}
if (queryParams.containsKey("title") && queryParams.get("title").equals(this.title)) {
return true;
}
if (queryParams.containsKey("engagement") && queryParams.get("engagement").equals(this.engagement)) {
return true;
}
return false;
}
}