com.fenglinga.tinyspring.framework.websocket.WebSocketHandShakeResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinyspring Show documentation
Show all versions of tinyspring Show documentation
A simple and flexible web service framework based on Mina
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.fenglinga.tinyspring.framework.websocket;
/**
* Wraps around a string that represents a websocket handshake response from
* the server to the browser.
*
* @author DHRUV CHOPRA
*/
public class WebSocketHandShakeResponse {
private String response;
public WebSocketHandShakeResponse(String response){
this.response = response;
}
public String getResponse(){
return this.response;
}
}