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

pub.codex.apix.schema.ApiDescription Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package pub.codex.apix.schema;

import java.util.List;

public class ApiDescription {
    private final String path;
    private final String methodName;
    private final List operations;

    public ApiDescription(String path, String methodName, List operations) {
        this.path = path;
        this.methodName = methodName;
        this.operations = operations;
    }

    public String getPath() {
        return path;
    }

    public String getMethodName() {
        return methodName;
    }

    public List getOperations() {
        return operations;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy