Introduce restconf.server.{api,spi,mdsal}
[netconf.git] / restconf / restconf-nb / src / main / java / org / opendaylight / restconf / nb / rfc8040 / streams / StreamsConfiguration.java
index 95af24a110672b0ac4f12b889e984c11a8f200ce..d89d888b5afb400658791c827e42e1fbca179937 100644 (file)
@@ -16,9 +16,8 @@ import static com.google.common.base.Preconditions.checkArgument;
  *                              (exceeded message length leads to fragmentation of messages).
  * @param idleTimeout           Maximum idle time of web-socket session before the session is closed (milliseconds).
  * @param heartbeatInterval     Interval in milliseconds between sending of ping control frames.
- * @param useSSE                when is {@code true} use SSE else use WS
  */
-public record StreamsConfiguration(int maximumFragmentLength, int idleTimeout, int heartbeatInterval, boolean useSSE) {
+public record StreamsConfiguration(int maximumFragmentLength, int idleTimeout, int heartbeatInterval) {
     // FIXME: can this be 64KiB exactly? if so, maximumFragmentLength should become a Uint16 and validation should be
     //        pushed out to users
     public static final int MAXIMUM_FRAGMENT_LENGTH_LIMIT = 65534;