com.firefly.net.tcp.codec.flex.model.Request Maven / Gradle / Ivy
package com.firefly.net.tcp.codec.flex.model;
/**
* @author Pengtao Qiu
*/
public class Request extends MetaInfo {
protected String path;
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
@Override
public String toString() {
return "Request{" +
"path='" + path + '\'' +
", fields=" + fields +
'}';
}
}