org.openhab.binding.russound.internal.rio.models.RioFavoriteSerializer.java Source code

Java tutorial

Introduction

Here is the source code for org.openhab.binding.russound.internal.rio.models.RioFavoriteSerializer.java

Source

/**
 * Copyright (c) 2010-2017 by the respective copyright holders.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 */
package org.openhab.binding.russound.internal.rio.models;

import java.lang.reflect.Type;

import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;

/**
 * A {@link JsonSerializer} and {@link JsonDeserializer} for the {@link RioFavorite}. Simply writes/reads the ID and
 * name to elements called "id", "valid" and "name"
 *
 * @author Tim Roberts
 *
 */
public class RioFavoriteSerializer implements JsonSerializer<RioFavorite>, JsonDeserializer<RioFavorite> {

    /**
     * Overridden to simply write out the id/valid/name elements from the {@link RioFavorite}
     *
     * @param favorite the {@link RioFavorite} to write out
     * @param type the type
     * @param context the serialization context
     */
    @Override
    public JsonElement serialize(RioFavorite favorite, Type type, JsonSerializationContext context) {
        JsonObject root = new JsonObject();
        root.addProperty("id", favorite.getId());
        root.addProperty("valid", favorite.isValid());
        root.addProperty("name", favorite.getName());

        return root;
    }

    /**
     * Overridden to simply read the id/valid/name elements and create a {@link RioFavorite}
     *
     * @param elm the {@link JsonElement} to read from
     * @param type the type
     * @param context the serialization context
     */
    @Override
    public RioFavorite deserialize(JsonElement elm, Type type, JsonDeserializationContext context)
            throws JsonParseException {
        final JsonObject jo = (JsonObject) elm;

        final JsonElement id = jo.get("id");
        final JsonElement valid = jo.get("valid");
        final JsonElement name = jo.get("name");

        return new RioFavorite((id == null ? -1 : id.getAsInt()), (valid == null ? false : valid.getAsBoolean()),
                (name == null ? null : name.getAsString()));
    }
}