All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scalar.dl.ledger.util.JsonpSerDe Maven / Gradle / Ivy

The newest version!
package com.scalar.dl.ledger.util;

import java.io.StringReader;
import javax.annotation.concurrent.Immutable;
import javax.json.Json;
import javax.json.JsonObject;

@Immutable
public final class JsonpSerDe implements JsonSerDe {

  @Override
  public String serialize(JsonObject json) {
    return json.toString();
  }

  @Override
  public JsonObject deserialize(String jsonString) {
    return Json.createReader(new StringReader(jsonString)).readObject();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy