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

com.github.fge.jsonpatch.MoveOperationFactory 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.16
Show newest version
package com.github.fge.jsonpatch;

public final class MoveOperationFactory extends JsonPatchOperationFactoryBase
{
    public String getOperationName()
    {
        return MoveOperation.OPERATION_NAME;
    }
    public Class getOperationClass()
    {
        return MoveOperation.class;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy