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

io.swagger.transform.migrate.ApiArrayMigrator 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 io.swagger.transform.util.MutableJsonTree;
import io.swagger.transform.util.SwaggerMigrationException;

import javax.annotation.Nonnull;

/**
 * API declaration, JSON Pointer: "/apis"
 */
public final class ApiArrayMigrator
        implements SwaggerMigrator {
    private final SwaggerMigrator migrator = new ApiOperationMigrator();

    @Nonnull
    @Override
    public JsonNode migrate(@Nonnull final JsonNode input)
            throws SwaggerMigrationException {
        final MutableJsonTree tree = new MutableJsonTree(input);

        tree.applyMigratorToElements(migrator);
        return tree.getBaseNode();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy