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

org.openl.rules.openapi.impl.OperationInfo Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.openapi.impl;

public class OperationInfo {
    private final String method;
    private final String produces;
    private final String consumes;

    public OperationInfo(String method, String produces, String consumes) {
        this.method = method;
        this.produces = produces;
        this.consumes = consumes;
    }

    public String getMethod() {
        return method;
    }

    public String getProduces() {
        return produces;
    }

    public String getConsumes() {
        return consumes;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy