com.balajeetm.mystique.core.SimpleSpell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-mystique Show documentation
Show all versions of json-mystique Show documentation
Json Utility to transform Jsons
The newest version!
/*
* Copyright (c) Balajee TM 2016.
* All rights reserved.
* License - @see
*/
/*
* Created on 25 Aug, 2016 by balajeetm
* http://www.balajeetm.com
*/
package com.balajeetm.mystique.core;
import java.util.List;
import com.google.gson.JsonElement;
import com.google.gson.JsonNull;
import com.google.gson.JsonObject;
/**
* The Class SimpleSpell.
*
* @author balajeetm
*/
public class SimpleSpell implements Spell {
/** The source. */
private List source;
/** The dependencies. */
private JsonObject dependencies;
/** The aces. */
private JsonObject aces;
/** The turn. */
private JsonObject turn;
/** The result. */
private JsonObject resultWrapper;
/**
* Instantiates a new simple spell.
*
* @param source the source
* @param dependencies the dependencies
* @param aces the aces
* @param turn the turn
* @param resultWrapper the result wrapper
*/
public SimpleSpell(List source, JsonObject dependencies, JsonObject aces, JsonObject turn,
JsonObject resultWrapper) {
this.source = source;
this.dependencies = dependencies;
this.aces = aces;
this.turn = turn;
this.resultWrapper = resultWrapper;
}
/* (non-Javadoc)
* @see com.futuresight.util.mystique.Spell#cast(com.futuresight.util.mystique.Mystique)
*/
@Override
public JsonElement cast(MystTurn mystique) {
return null != mystique ? mystique.transform(source, dependencies, aces, turn, resultWrapper)
: JsonNull.INSTANCE;
}
}