io.securecodebox.persistence.defectdojo.model.Product Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of defectdojo-client Show documentation
Show all versions of defectdojo-client Show documentation
This library helps with interacting with the REST API of DefectDojo.
The newest version!
// 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.ArrayList;
import java.util.List;
import java.util.Map;
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
@JsonInclude(JsonInclude.Include.NON_NULL)
public final class Product implements Model, HasId, HasName {
@JsonProperty
private long id;
@JsonProperty
private String name;
@JsonProperty
private List tags;
@JsonProperty
private String description;
@JsonProperty("findings_count")
private long findingsCount;
@JsonProperty("authorized_users")
private List authorizedUsers;
@JsonProperty("prod_type")
private long productType;
@JsonProperty("enable_simple_risk_acceptance")
private boolean enableSimpleRiskAcceptance;
@JsonProperty("enable_full_risk_acceptance")
private boolean enableFullRiskAcceptance;
@JsonProperty("authorization_groups")
@Builder.Default
private List authorizationGroups = new ArrayList<>();
@JsonProperty
private String lifecycle;
@Override
public boolean equalsQueryString(Map queryParams) {
if (QueryParamsComparator.isNull(queryParams)) {
return false;
}
if (QueryParamsComparator.isIdEqual(this, queryParams)) {
return true;
}
if (QueryParamsComparator.isNameEqual(this, queryParams)) {
return true;
}
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy