-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathEndpoint.java
54 lines (40 loc) · 1.17 KB
/
Endpoint.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
// 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.Map;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
@JsonInclude(JsonInclude.Include.NON_NULL)
public final class Endpoint implements Model {
@JsonProperty
private Long id;// FIXME: Use native type here.
@JsonProperty
private String protocol;
@JsonProperty
private String host;
@JsonProperty("fqdm")
private String fullyQualifiedDomainName;
@JsonProperty
private Long port;// FIXME: Use native type here.
@JsonProperty
private String path;
@JsonProperty
private String query;
@JsonProperty
private String fragment;
@JsonProperty
private Long product;// FIXME: Use native type here.
@JsonProperty
private Boolean mitigated;// FIXME: Use native type here.
@Override
public boolean equalsQueryString(Map<String, Object> queryParams) {
return queryParams.containsKey("id") && queryParams.get("id").equals(this.id);
}
}