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

com.pusher.java_websocket.handshake.HandshakeImpl1Server Maven / Gradle / Ivy

package com.pusher.java_websocket.handshake;

public class HandshakeImpl1Server extends HandshakedataImpl1 implements ServerHandshakeBuilder {
	private short httpstatus;
	private String httpstatusmessage;

	public HandshakeImpl1Server() {
	}

	@Override
	public String getHttpStatusMessage() {
		return httpstatusmessage;
	}

	@Override
	public short getHttpStatus() {
		return httpstatus;
	}

	public void setHttpStatusMessage( String message ) {
		this.httpstatusmessage = message;
	}

	public void setHttpStatus( short status ) {
		httpstatus = status;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy