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

io.swagger.transform.migrate.ApiOperationMigrator Maven / Gradle / Ivy

There is a newer version: 1.0.71
Show newest version
package io.swagger.transform.migrate;

import com.fasterxml.jackson.databind.JsonNode;
import com.github.fge.jackson.jsonpointer.JsonPointer;
import io.swagger.transform.util.MutableJsonTree;
import io.swagger.transform.util.SwaggerMigrationException;

import javax.annotation.Nonnull;

/**
 * Migrator for the {@code operations} arrau of an API object
 */
public final class ApiOperationMigrator
        implements SwaggerMigrator {
    private final SwaggerMigrator migrator = new ApiObjectMigrator();

    @Nonnull
    @Override
    public JsonNode migrate(@Nonnull final JsonNode input)
            throws SwaggerMigrationException {
        final MutableJsonTree tree = new MutableJsonTree(input);
        tree.setPointer(JsonPointer.of("operations"));
        tree.applyMigratorToElements(migrator);
        return tree.getBaseNode();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy