Java tutorial
/* * * * * Copyright (C) 2017 Adnan BAL Open Source Project * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * */ package com.adnanbal.fxdedektifi.forex.data.entity.mapper; import com.adnanbal.fxdedektifi.forex.data.entity.NewPositionEntity; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.JsonDeserializer; import com.google.gson.JsonPrimitive; import com.google.gson.JsonSerializer; import com.google.gson.JsonSyntaxException; import com.google.gson.reflect.TypeToken; import java.lang.reflect.Type; import java.util.Date; import javax.inject.Inject; /** * Class used to transform from Strings representing json to valid objects. */ public class NewSignalEntityJsonMapper { private final Gson gson; @Inject public NewSignalEntityJsonMapper() { this.gson = new GsonBuilder() .registerTypeAdapter(Date.class, (JsonDeserializer<Date>) (jsonElement, type, context) -> new Date(jsonElement.getAsJsonPrimitive().getAsLong())) .registerTypeAdapter(Date.class, (JsonSerializer<Date>) (date, type, jsonSerializationContext) -> new JsonPrimitive(date.getTime())) .create(); } /** * Transform from valid json string to {@link NewPositionEntity}. * * @param newPositionJsonResponse A json representing a signal. * @return {@link NewPositionEntity}. * @throws JsonSyntaxException if the json string is not a valid json structure. */ public NewPositionEntity transformNewPositionEntity(String newPositionJsonResponse) throws JsonSyntaxException { final Type newPositionEntityType = new TypeToken<NewPositionEntity>() { }.getType(); return this.gson.fromJson(newPositionJsonResponse, newPositionEntityType); } }