Files
redkale/src-plugin/org/redkale/net/socks/SocksServlet.java
kamhung d36397a3b9
2015-12-09 11:12:33 +08:00

29 lines
704 B
Java

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.redkale.net.socks;
import org.redkale.util.AnyValue;
import org.redkale.net.Servlet;
/**
*
* @author zhangjx
*/
public abstract class SocksServlet implements Servlet<SocksRequest, SocksResponse> {
AnyValue conf; //当前Servlet的配置
@Override
public final boolean equals(Object obj) {
return obj != null && obj.getClass() == this.getClass();
}
@Override
public final int hashCode() {
return this.getClass().hashCode();
}
}