-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathGroup.java
47 lines (38 loc) · 1.06 KB
/
Group.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
// 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.List;
import java.util.Map;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode(callSuper = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Group extends BaseModel {
@JsonProperty
Long id;
@JsonProperty
@NonNull
String name;
@JsonProperty
String description;
@JsonProperty
List<Long> users;
@JsonProperty("social_provider")
String socialProvider;
@Override
public boolean equalsQueryString(Map<String, Object> queryParams) {
if (queryParams.containsKey("id") && queryParams.get("id").equals(this.id)) {
return true;
}
if (queryParams.containsKey("name") && queryParams.get("name").equals(this.name)) {
return true;
}
return false;
}
}