com.contrastsecurity.sarif.Location Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sarif Show documentation
Show all versions of java-sarif Show documentation
POJOs generated from the JSON schema for Static Analysis Results Interchange Format (SARIF)
package com.contrastsecurity.sarif;
import java.util.LinkedHashSet;
import java.util.Set;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
/**
* A location within a programming artifact.
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"id",
"physicalLocation",
"logicalLocations",
"message",
"annotations",
"relationships",
"properties"
})
public class Location {
/**
* Value that distinguishes this location from all other locations within a single result object.
*
*/
@JsonProperty("id")
@JsonPropertyDescription("Value that distinguishes this location from all other locations within a single result object.")
private Integer id = -1;
/**
* A physical location relevant to a result. Specifies a reference to a programming artifact together with a range of bytes or characters within that artifact.
*
*/
@JsonProperty("physicalLocation")
@JsonPropertyDescription("A physical location relevant to a result. Specifies a reference to a programming artifact together with a range of bytes or characters within that artifact.")
private PhysicalLocation physicalLocation;
/**
* The logical locations associated with the result.
*
*/
@JsonProperty("logicalLocations")
@JsonDeserialize(as = java.util.LinkedHashSet.class)
@JsonPropertyDescription("The logical locations associated with the result.")
private Set logicalLocations = new LinkedHashSet();
/**
* Encapsulates a message intended to be read by the end user.
*
*/
@JsonProperty("message")
@JsonPropertyDescription("Encapsulates a message intended to be read by the end user.")
private Message message;
/**
* A set of regions relevant to the location.
*
*/
@JsonProperty("annotations")
@JsonDeserialize(as = java.util.LinkedHashSet.class)
@JsonPropertyDescription("A set of regions relevant to the location.")
private Set annotations = new LinkedHashSet();
/**
* An array of objects that describe relationships between this location and others.
*
*/
@JsonProperty("relationships")
@JsonDeserialize(as = java.util.LinkedHashSet.class)
@JsonPropertyDescription("An array of objects that describe relationships between this location and others.")
private Set relationships = new LinkedHashSet();
/**
* Key/value pairs that provide additional information about the object.
*
*/
@JsonProperty("properties")
@JsonPropertyDescription("Key/value pairs that provide additional information about the object.")
private PropertyBag properties;
/**
* Value that distinguishes this location from all other locations within a single result object.
*
*/
@JsonProperty("id")
public Integer getId() {
return id;
}
/**
* Value that distinguishes this location from all other locations within a single result object.
*
*/
@JsonProperty("id")
public void setId(Integer id) {
this.id = id;
}
public Location withId(Integer id) {
this.id = id;
return this;
}
/**
* A physical location relevant to a result. Specifies a reference to a programming artifact together with a range of bytes or characters within that artifact.
*
*/
@JsonProperty("physicalLocation")
public PhysicalLocation getPhysicalLocation() {
return physicalLocation;
}
/**
* A physical location relevant to a result. Specifies a reference to a programming artifact together with a range of bytes or characters within that artifact.
*
*/
@JsonProperty("physicalLocation")
public void setPhysicalLocation(PhysicalLocation physicalLocation) {
this.physicalLocation = physicalLocation;
}
public Location withPhysicalLocation(PhysicalLocation physicalLocation) {
this.physicalLocation = physicalLocation;
return this;
}
/**
* The logical locations associated with the result.
*
*/
@JsonProperty("logicalLocations")
public Set getLogicalLocations() {
return logicalLocations;
}
/**
* The logical locations associated with the result.
*
*/
@JsonProperty("logicalLocations")
public void setLogicalLocations(Set logicalLocations) {
this.logicalLocations = logicalLocations;
}
public Location withLogicalLocations(Set logicalLocations) {
this.logicalLocations = logicalLocations;
return this;
}
/**
* Encapsulates a message intended to be read by the end user.
*
*/
@JsonProperty("message")
public Message getMessage() {
return message;
}
/**
* Encapsulates a message intended to be read by the end user.
*
*/
@JsonProperty("message")
public void setMessage(Message message) {
this.message = message;
}
public Location withMessage(Message message) {
this.message = message;
return this;
}
/**
* A set of regions relevant to the location.
*
*/
@JsonProperty("annotations")
public Set getAnnotations() {
return annotations;
}
/**
* A set of regions relevant to the location.
*
*/
@JsonProperty("annotations")
public void setAnnotations(Set annotations) {
this.annotations = annotations;
}
public Location withAnnotations(Set annotations) {
this.annotations = annotations;
return this;
}
/**
* An array of objects that describe relationships between this location and others.
*
*/
@JsonProperty("relationships")
public Set getRelationships() {
return relationships;
}
/**
* An array of objects that describe relationships between this location and others.
*
*/
@JsonProperty("relationships")
public void setRelationships(Set relationships) {
this.relationships = relationships;
}
public Location withRelationships(Set relationships) {
this.relationships = relationships;
return this;
}
/**
* Key/value pairs that provide additional information about the object.
*
*/
@JsonProperty("properties")
public PropertyBag getProperties() {
return properties;
}
/**
* Key/value pairs that provide additional information about the object.
*
*/
@JsonProperty("properties")
public void setProperties(PropertyBag properties) {
this.properties = properties;
}
public Location withProperties(PropertyBag properties) {
this.properties = properties;
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(Location.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("id");
sb.append('=');
sb.append(((this.id == null)?"":this.id));
sb.append(',');
sb.append("physicalLocation");
sb.append('=');
sb.append(((this.physicalLocation == null)?"":this.physicalLocation));
sb.append(',');
sb.append("logicalLocations");
sb.append('=');
sb.append(((this.logicalLocations == null)?"":this.logicalLocations));
sb.append(',');
sb.append("message");
sb.append('=');
sb.append(((this.message == null)?"":this.message));
sb.append(',');
sb.append("annotations");
sb.append('=');
sb.append(((this.annotations == null)?"":this.annotations));
sb.append(',');
sb.append("relationships");
sb.append('=');
sb.append(((this.relationships == null)?"":this.relationships));
sb.append(',');
sb.append("properties");
sb.append('=');
sb.append(((this.properties == null)?"":this.properties));
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.relationships == null)? 0 :this.relationships.hashCode()));
result = ((result* 31)+((this.physicalLocation == null)? 0 :this.physicalLocation.hashCode()));
result = ((result* 31)+((this.logicalLocations == null)? 0 :this.logicalLocations.hashCode()));
result = ((result* 31)+((this.annotations == null)? 0 :this.annotations.hashCode()));
result = ((result* 31)+((this.id == null)? 0 :this.id.hashCode()));
result = ((result* 31)+((this.message == null)? 0 :this.message.hashCode()));
result = ((result* 31)+((this.properties == null)? 0 :this.properties.hashCode()));
return result;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof Location) == false) {
return false;
}
Location rhs = ((Location) other);
return ((((((((this.relationships == rhs.relationships)||((this.relationships!= null)&&this.relationships.equals(rhs.relationships)))&&((this.physicalLocation == rhs.physicalLocation)||((this.physicalLocation!= null)&&this.physicalLocation.equals(rhs.physicalLocation))))&&((this.logicalLocations == rhs.logicalLocations)||((this.logicalLocations!= null)&&this.logicalLocations.equals(rhs.logicalLocations))))&&((this.annotations == rhs.annotations)||((this.annotations!= null)&&this.annotations.equals(rhs.annotations))))&&((this.id == rhs.id)||((this.id!= null)&&this.id.equals(rhs.id))))&&((this.message == rhs.message)||((this.message!= null)&&this.message.equals(rhs.message))))&&((this.properties == rhs.properties)||((this.properties!= null)&&this.properties.equals(rhs.properties))));
}
}