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

moxproxy.model.MoxProxyHttpRuleDefinition Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package moxproxy.model;

import java.util.List;

public class MoxProxyHttpRuleDefinition {

    private String method;
    private String pathPattern;
    private String body;
    private List headers;
    private int statusCode;

    public String getMethod() {
        return method;
    }

    public void setMethod(String method) {
        this.method = method;
    }

    public String getPathPattern() {
        return pathPattern;
    }

    public void setPathPattern(String pathPattern) {
        this.pathPattern = pathPattern;
    }

    public String getBody() {
        return body;
    }

    public void setBody(String body) {
        this.body = body;
    }

    public List getHeaders() {
        return headers;
    }

    public void setHeaders(List headers) {
        this.headers = headers;
    }

    public int getStatusCode() {
        return statusCode;
    }

    public void setStatusCode(int statusCode) {
        this.statusCode = statusCode;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy