package it.gotoandplay.smartfoxclient.http;

import it.gotoandplay.smartfoxclient.SFSEvent;
import it.gotoandplay.smartfoxclient.data.SFSObject;

/*
 * HttpEvent class.
 * 
 * @version 1.0.0
 * 
 * @author The gotoAndPlay() Team<br>
 *         <a href="http://www.smartfoxserver.com">http://www.smartfoxserver.com</a><br>
 *         <a href="http://www.gotoandplay.it">http://www.gotoandplay.it</a><br>
 */
public class HttpEvent extends SFSEvent
{
    public static final String onHttpData = "onHttpData";
    public static final String onHttpError = "onHttpError";
    public static final String onHttpConnect = "onHttpConnect";
    public static final String onHttpClose = "onHttpClose";

    public HttpEvent(String type, SFSObject params)
    {
        super(type, params);
    }
}
