package org.framework.bean;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
/**
* 封装请求信息
* Created by lizhaoz on 2015/12/17.
*/
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 void setRequestMethod(String requestMethod) {
this.requestMethod = requestMethod;
}
public String getRequestPath() {
return requestPath;
}
public void setRequestPath(String requestPath) {
this.requestPath = requestPath;
}
@Override
public boolean equals(Object o) {
return EqualsBuilder.reflectionEquals(this,o);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}