se.kth.karamel.backend.running.model.serializers.MachineEntitySerializer.java Source code

Java tutorial

Introduction

Here is the source code for se.kth.karamel.backend.running.model.serializers.MachineEntitySerializer.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package se.kth.karamel.backend.running.model.serializers;

import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
import java.lang.reflect.Type;
import se.kth.karamel.backend.running.model.MachineRuntime;

/**
 *
 * @author kamal
 */
public class MachineEntitySerializer implements JsonSerializer<MachineRuntime> {

    @Override
    public JsonElement serialize(MachineRuntime machineEntity, Type type, JsonSerializationContext context) {
        final JsonObject jsonObj = new JsonObject();
        jsonObj.add("machine", context.serialize(machineEntity.getPublicIp()));
        jsonObj.add("life", context.serialize(machineEntity.getLifeStatus().toString()));
        jsonObj.add("tasksStatus", context.serialize(machineEntity.getTasksStatus().toString()));
        jsonObj.add("privateIp", context.serialize(machineEntity.getPrivateIp()));
        jsonObj.add("user", context.serialize(machineEntity.getSshUser()));
        jsonObj.add("port", context.serialize(machineEntity.getSshPort()));
        jsonObj.add("tasks", context.serialize(machineEntity.getTasks()));
        return jsonObj;
    }

}