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

com.greenhat.mvc.bean.Request Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package com.greenhat.mvc.bean;

/**
 * Created by jiacheng on 2017/7/19.
 */
public class Request {
    private String requestMethod;
    private String requestPath;

    public Request(String requestMethod, String requestPath) {
        this.requestMethod = requestMethod;
        this.requestPath = requestPath;
    }

    public String getRequestMethod() {
        return requestMethod;
    }

    public String getRequestPath() {
        return requestPath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy