
com.github.fge.jsonpatch.AddOperationFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-patch Show documentation
Show all versions of json-patch Show documentation
JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java
package com.github.fge.jsonpatch;
public final class AddOperationFactory extends JsonPatchOperationFactoryBase
{
public String getOperationName()
{
return AddOperation.OPERATION_NAME;
}
public Class getOperationClass()
{
return AddOperation.class;
}
}