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

ca.derekcormier.recipe.KeyedIngredientSnapshot Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
package ca.derekcormier.recipe;

import com.fasterxml.jackson.annotation.JsonProperty;

public abstract class KeyedIngredientSnapshot extends IngredientSnapshot {
    @JsonProperty("key")
    private String key;

    public KeyedIngredientSnapshot(String type) {
        super(type);
    }

    public void setKey(String key) {
        this.key = key;
    }

    public String getKey() {
        return key;
    }

    public boolean hasKey() {
        return key != null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy