com.futuresight.util.mystique.NowFunction 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
/*
* Copyright (c) Balajee TM 2016.
* All rights reserved.
* License - @see
*/
/*
* Created on 25 Aug, 2016 by balajeetm
*/
package com.futuresight.util.mystique;
import java.util.Date;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.futuresight.util.mystique.lever.MysCon;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
/**
* The Class NowFunction.
*
* @author balajeetm
*/
@Component
public class NowFunction implements MystFunction {
/** The json lever. */
@Autowired
private JsonLever jsonLever;
/* (non-Javadoc)
* @see com.futuresight.util.mystique.MystFunction#execute(com.google.gson.JsonElement, com.google.gson.JsonObject)
*/
@Override
public JsonElement execute(JsonElement source, JsonObject turn) {
turn = jsonLever.getAsJsonObject(turn, new JsonObject());
String outFormat = jsonLever.getAsString(turn.get(MysCon.OUTFORMAT), MysCon.LONG);
return jsonLever.getFormattedDate(new Date(), outFormat);
}
}