All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fenglinga.tinyspring.framework.websocket.WebSocketHandShakeResponse Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
/*
 * 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy