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

org.logdoc.fairhttp.structs.websocket.protocol.IProtocol Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package org.logdoc.fairhttp.structs.websocket.protocol;

public interface IProtocol {

  // https://www.rfc-editor.org/rfc/rfc6455
  String RFC_KEY_UUID = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
  String WS_VERSION = "13";

  boolean acceptProtocol(String inputProtocolHeader);

  String getProvidedProtocol();

  String toString();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy