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

com.nfbsoftware.pcg.model.PCGCrosswalk Maven / Gradle / Ivy

There is a newer version: 1.0.43
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy