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

com.github.fge.jsonpatch.Patch Maven / Gradle / Ivy

Go to download

JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java

There is a newer version: 1.13
Show newest version
package com.github.fge.jsonpatch;

import com.fasterxml.jackson.databind.JsonNode;

public interface Patch {

    JsonNode apply(JsonNode node) throws JsonPatchException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy