ca.derekcormier.recipe.KeyedIngredientSnapshot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of recipe-java-runtime Show documentation
Show all versions of recipe-java-runtime Show documentation
Java runtime classes for the Recipe framework
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;
}
}