org.hyperledger.aries.api.serializer.JsonObjectSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aries-client-python Show documentation
Show all versions of aries-client-python Show documentation
Aries Cloud Agent - Python: Java client implementation
/*
* Copyright (c) 2020-2021 - for information on the respective copyright owner
* see the NOTICE file and/or the repository at
* https://github.com/hyperledger-labs/acapy-java-client
*
* SPDX-License-Identifier: Apache-2.0
*/
package org.hyperledger.aries.api.serializer;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.google.gson.JsonObject;
import java.io.IOException;
public class JsonObjectSerializer extends JsonSerializer {
@Override
public void serialize(JsonObject jo, JsonGenerator gen,
SerializerProvider serializerProvider) throws IOException {
gen.writeRawValue(jo.toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy