com.balajeetm.mystique.core.MystiqueFunction 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 com.google.gson.JsonElement;
import com.google.gson.JsonObject;
/**
* The Interface MystFunction.
*
* @author balajeetm
*/
public interface MystiqueFunction {
/**
* Execute.
*
* @param source the source
* @param turn the turn
* @return the json element
*/
JsonElement execute(JsonElement source, JsonObject turn);
}