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

java-helidon.client.libraries.se.apiOperation.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
{{>licenseInfo}}
package {{invokerPackage}};

import io.swagger.v3.oas.models.Operation;

public class ApiOperation {
    private final String path;
    private final String method;
    private final Operation operation;

    public ApiOperation(String path, String method, Operation operation) {
        this.path = path;
        this.method = method;
        this.operation = operation;
    }

    public Operation getOperation() {
        return operation;
    }

    public String getPath() {
        return path;
    }

    public String getMethod() {
        return method;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy