All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.owasp.dependencycheck.data.nvd.json.BaseMetricV2 Maven / Gradle / Ivy


package org.owasp.dependencycheck.data.nvd.json;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;


/**
 * CVSS V2.0 score.
 * 
 */
public class BaseMetricV2 {

    /**
     * JSON Schema for Common Vulnerability Scoring System version 2.0
     * 

* * */ @SerializedName("cvssV2") @Expose private CvssV20 cvssV2; @SerializedName("severity") @Expose private String severity; /** * CVSS subscore. * */ @SerializedName("exploitabilityScore") @Expose private Double exploitabilityScore; /** * CVSS subscore. * */ @SerializedName("impactScore") @Expose private Double impactScore; @SerializedName("acInsufInfo") @Expose private Boolean acInsufInfo; @SerializedName("obtainAllPrivilege") @Expose private Boolean obtainAllPrivilege; @SerializedName("obtainUserPrivilege") @Expose private Boolean obtainUserPrivilege; @SerializedName("obtainOtherPrivilege") @Expose private Boolean obtainOtherPrivilege; @SerializedName("userInteractionRequired") @Expose private Boolean userInteractionRequired; /** * JSON Schema for Common Vulnerability Scoring System version 2.0 *

* * */ public CvssV20 getCvssV2() { return cvssV2; } /** * JSON Schema for Common Vulnerability Scoring System version 2.0 *

* * */ public void setCvssV2(CvssV20 cvssV2) { this.cvssV2 = cvssV2; } public String getSeverity() { return severity; } public void setSeverity(String severity) { this.severity = severity; } /** * CVSS subscore. * */ public Double getExploitabilityScore() { return exploitabilityScore; } /** * CVSS subscore. * */ public void setExploitabilityScore(Double exploitabilityScore) { this.exploitabilityScore = exploitabilityScore; } /** * CVSS subscore. * */ public Double getImpactScore() { return impactScore; } /** * CVSS subscore. * */ public void setImpactScore(Double impactScore) { this.impactScore = impactScore; } public Boolean getAcInsufInfo() { return acInsufInfo; } public void setAcInsufInfo(Boolean acInsufInfo) { this.acInsufInfo = acInsufInfo; } public Boolean getObtainAllPrivilege() { return obtainAllPrivilege; } public void setObtainAllPrivilege(Boolean obtainAllPrivilege) { this.obtainAllPrivilege = obtainAllPrivilege; } public Boolean getObtainUserPrivilege() { return obtainUserPrivilege; } public void setObtainUserPrivilege(Boolean obtainUserPrivilege) { this.obtainUserPrivilege = obtainUserPrivilege; } public Boolean getObtainOtherPrivilege() { return obtainOtherPrivilege; } public void setObtainOtherPrivilege(Boolean obtainOtherPrivilege) { this.obtainOtherPrivilege = obtainOtherPrivilege; } public Boolean getUserInteractionRequired() { return userInteractionRequired; } public void setUserInteractionRequired(Boolean userInteractionRequired) { this.userInteractionRequired = userInteractionRequired; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append(BaseMetricV2 .class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('['); sb.append("cvssV2"); sb.append('='); sb.append(((this.cvssV2 == null)?"":this.cvssV2)); sb.append(','); sb.append("severity"); sb.append('='); sb.append(((this.severity == null)?"":this.severity)); sb.append(','); sb.append("exploitabilityScore"); sb.append('='); sb.append(((this.exploitabilityScore == null)?"":this.exploitabilityScore)); sb.append(','); sb.append("impactScore"); sb.append('='); sb.append(((this.impactScore == null)?"":this.impactScore)); sb.append(','); sb.append("acInsufInfo"); sb.append('='); sb.append(((this.acInsufInfo == null)?"":this.acInsufInfo)); sb.append(','); sb.append("obtainAllPrivilege"); sb.append('='); sb.append(((this.obtainAllPrivilege == null)?"":this.obtainAllPrivilege)); sb.append(','); sb.append("obtainUserPrivilege"); sb.append('='); sb.append(((this.obtainUserPrivilege == null)?"":this.obtainUserPrivilege)); sb.append(','); sb.append("obtainOtherPrivilege"); sb.append('='); sb.append(((this.obtainOtherPrivilege == null)?"":this.obtainOtherPrivilege)); sb.append(','); sb.append("userInteractionRequired"); sb.append('='); sb.append(((this.userInteractionRequired == null)?"":this.userInteractionRequired)); sb.append(','); if (sb.charAt((sb.length()- 1)) == ',') { sb.setCharAt((sb.length()- 1), ']'); } else { sb.append(']'); } return sb.toString(); } @Override public int hashCode() { int result = 1; result = ((result* 31)+((this.severity == null)? 0 :this.severity.hashCode())); result = ((result* 31)+((this.exploitabilityScore == null)? 0 :this.exploitabilityScore.hashCode())); result = ((result* 31)+((this.obtainAllPrivilege == null)? 0 :this.obtainAllPrivilege.hashCode())); result = ((result* 31)+((this.userInteractionRequired == null)? 0 :this.userInteractionRequired.hashCode())); result = ((result* 31)+((this.obtainOtherPrivilege == null)? 0 :this.obtainOtherPrivilege.hashCode())); result = ((result* 31)+((this.cvssV2 == null)? 0 :this.cvssV2 .hashCode())); result = ((result* 31)+((this.impactScore == null)? 0 :this.impactScore.hashCode())); result = ((result* 31)+((this.acInsufInfo == null)? 0 :this.acInsufInfo.hashCode())); result = ((result* 31)+((this.obtainUserPrivilege == null)? 0 :this.obtainUserPrivilege.hashCode())); return result; } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof BaseMetricV2) == false) { return false; } BaseMetricV2 rhs = ((BaseMetricV2) other); return ((((((((((this.severity == rhs.severity)||((this.severity!= null)&&this.severity.equals(rhs.severity)))&&((this.exploitabilityScore == rhs.exploitabilityScore)||((this.exploitabilityScore!= null)&&this.exploitabilityScore.equals(rhs.exploitabilityScore))))&&((this.obtainAllPrivilege == rhs.obtainAllPrivilege)||((this.obtainAllPrivilege!= null)&&this.obtainAllPrivilege.equals(rhs.obtainAllPrivilege))))&&((this.userInteractionRequired == rhs.userInteractionRequired)||((this.userInteractionRequired!= null)&&this.userInteractionRequired.equals(rhs.userInteractionRequired))))&&((this.obtainOtherPrivilege == rhs.obtainOtherPrivilege)||((this.obtainOtherPrivilege!= null)&&this.obtainOtherPrivilege.equals(rhs.obtainOtherPrivilege))))&&((this.cvssV2 == rhs.cvssV2)||((this.cvssV2 != null)&&this.cvssV2 .equals(rhs.cvssV2))))&&((this.impactScore == rhs.impactScore)||((this.impactScore!= null)&&this.impactScore.equals(rhs.impactScore))))&&((this.acInsufInfo == rhs.acInsufInfo)||((this.acInsufInfo!= null)&&this.acInsufInfo.equals(rhs.acInsufInfo))))&&((this.obtainUserPrivilege == rhs.obtainUserPrivilege)||((this.obtainUserPrivilege!= null)&&this.obtainUserPrivilege.equals(rhs.obtainUserPrivilege)))); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy