Interface Extension


public interface Extension
A simple representation of a websocket extension as a name and map of extension parameters.
Author:
dannycoward
  • Nested Class Summary

    Nested Classes 
    Modifier and Type Interface Description
    static interface  Extension.Parameter
    This member interface defines a single websocket extension parameter.
  • Method Summary

    Modifier and Type Method Description
    java.lang.String getName()
    The name of the extension.
    java.util.List<Extension.Parameter> getParameters()
    The extension parameters for this extension in the order they appear in the http headers.
  • Method Details

    • getName

      java.lang.String getName()
      The name of the extension.
      Returns:
      the name of the extension.
    • getParameters

      java.util.List<Extension.Parameter> getParameters()
      The extension parameters for this extension in the order they appear in the http headers.
      Returns:
      The read-only Map of extension parameters belonging to this extension.