ca.derekcormier.recipe.Payload 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;
public class Payload {
private Recipe recipe;
private Cake cake;
public Payload(Recipe recipe, Cake cake) {
this.recipe = recipe;
this.cake = cake;
}
public Ingredient getRecipe() {
return recipe;
}
public Cake getCake() {
return cake;
}
}