blob: ab8a28a67ebd742a38117e5da200ff6513278a6b [file] [log] [blame]
package org.apache.amaterasu.common.dataobjects
import com.google.gson.Gson
object ActionDataHelper {
private val gson = new Gson
def toJsonString(actionData: ActionData): String = {
gson.toJson(actionData)
}
def fromJsonString(jsonString: String) : ActionData = {
gson.fromJson[ActionData](jsonString, ActionData.getClass)
}
}