com.nfbsoftware.pcg.model.PCGCrosswalk Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opensalt-java Show documentation
Show all versions of opensalt-java Show documentation
The NFB Software OpenSALT-Java is a Java wrapper for the OpenSalt CASE API
package com.nfbsoftware.pcg.model;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({ "exactMatchOf", "isRelatedTo" })
public class PCGCrosswalk
{
@JsonProperty("exactMatchOf")
private List exactMatchOf = null;
@JsonProperty("isRelatedTo")
private List isRelatedTo = null;
@JsonIgnore
private Map additionalProperties = new HashMap();
@JsonProperty("exactMatchOf")
public List getExactMatchOf()
{
return exactMatchOf;
}
@JsonProperty("exactMatchOf")
public void setExactMatchOf(List exactMatchOf)
{
this.exactMatchOf = exactMatchOf;
}
@JsonProperty("isRelatedTo")
public List getIsRelatedTo()
{
return isRelatedTo;
}
@JsonProperty("isRelatedTo")
public void setIsRelatedTo(List isRelatedTo)
{
this.isRelatedTo = isRelatedTo;
}
@JsonAnyGetter
public Map getAdditionalProperties()
{
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value)
{
this.additionalProperties.put(name, value);
}
}