org.eclipse.che.api.workspace.server.stack.adapters.StackComponentAdapter.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.che.api.workspace.server.stack.adapters.StackComponentAdapter.java

Source

/*******************************************************************************
 * Copyright (c) 2012-2016 Codenvy, S.A.
 * 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
 *
 * Contributors:
 *   Codenvy, S.A. - initial API and implementation
 *******************************************************************************/
package org.eclipse.che.api.workspace.server.stack.adapters;

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

import org.eclipse.che.api.workspace.server.model.impl.stack.StackComponentImpl;
import org.eclipse.che.api.workspace.server.model.stack.StackComponent;

import java.lang.reflect.Type;

/**
 * Type adapter for {@link StackComponent} objects
 *
 * @author Alexander Andrienko
 */
public class StackComponentAdapter implements JsonSerializer<StackComponent>, JsonDeserializer<StackComponent> {

    @Override
    public StackComponent deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
            throws JsonParseException {
        return context.deserialize(json, StackComponentImpl.class);
    }

    @Override
    public JsonElement serialize(StackComponent src, Type typeOfSrc, JsonSerializationContext context) {
        return context.serialize(src, StackComponentImpl.class);
    }
}