Packages

class TelnetTermOptions extends NetServerOptions

Telnet terminal options configuration, extends NetServerOptions.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TelnetTermOptions
  2. NetServerOptions
  3. TCPSSLOptions
  4. NetworkOptions
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TelnetTermOptions(_asJava: ext.shell.term.TelnetTermOptions)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addCrlPath(value: String): TelnetTermOptions

    Add a CRL path

    Add a CRL path

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  5. def addCrlValue(value: Buffer): TelnetTermOptions

    Add a CRL value

    Add a CRL value

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  6. def addEnabledCipherSuite(value: String): TelnetTermOptions

    Add an enabled cipher suite, appended to the ordered suites.

    Add an enabled cipher suite, appended to the ordered suites.

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  7. def addEnabledSecureTransportProtocol(value: String): TelnetTermOptions

    Add an enabled SSL/TLS protocols, appended to the ordered protocols.

    Add an enabled SSL/TLS protocols, appended to the ordered protocols.

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def asJava: ext.shell.term.TelnetTermOptions
    Definition Classes
    TelnetTermOptionsNetServerOptions
  10. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. def getAcceptBacklog: Int
    Definition Classes
    TelnetTermOptionsNetServerOptions
  15. def getCharset: String
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  17. def getClientAuth: ClientAuth
    Definition Classes
    TelnetTermOptionsNetServerOptions
  18. def getCrlPaths: Buffer[String]
  19. def getCrlValues: Buffer[Buffer]
  20. def getEnabledCipherSuites: Set[String]
  21. def getEnabledSecureTransportProtocols: Set[String]
  22. def getHost: String
    Definition Classes
    TelnetTermOptionsNetServerOptions
  23. def getIdleTimeout: Int
  24. def getInBinary: Boolean
  25. def getIntputrc: String
  26. def getJdkSslEngineOptions: JdkSSLEngineOptions
  27. def getKeyStoreOptions: JksOptions
  28. def getLogActivity: Boolean
  29. def getOpenSslEngineOptions: OpenSSLEngineOptions
  30. def getOutBinary: Boolean
  31. def getPemKeyCertOptions: PemKeyCertOptions
  32. def getPemTrustOptions: PemTrustOptions
  33. def getPfxKeyCertOptions: PfxOptions
  34. def getPfxTrustOptions: PfxOptions
  35. def getPort: Int
    Definition Classes
    TelnetTermOptionsNetServerOptions
  36. def getReceiveBufferSize: Int
  37. def getSendBufferSize: Int
  38. def getSoLinger: Int
  39. def getTrafficClass: Int
  40. def getTrustStoreOptions: JksOptions
  41. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  42. def isClientAuthRequired: Boolean
    Definition Classes
    TelnetTermOptionsNetServerOptions
  43. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  44. def isReuseAddress: Boolean
  45. def isSsl: Boolean
  46. def isTcpKeepAlive: Boolean
  47. def isTcpNoDelay: Boolean
  48. def isUseAlpn: Boolean
  49. def isUsePooledBuffers: Boolean
  50. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  51. final def notify(): Unit
    Definition Classes
    AnyRef
  52. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  53. def setAcceptBacklog(value: Int): TelnetTermOptions

    Set the accept back log

    Set the accept back log

    Definition Classes
    TelnetTermOptionsNetServerOptions
  54. def setCharset(value: String): TelnetTermOptions

    Set the charset to use when binary mode is active, see TelnetTermOptions and TelnetTermOptions.

    Set the charset to use when binary mode is active, see TelnetTermOptions and TelnetTermOptions.

  55. def setClientAuth(value: ClientAuth): TelnetTermOptions

    Set whether client auth is required

    Set whether client auth is required

    Definition Classes
    TelnetTermOptionsNetServerOptions
  56. def setClientAuthRequired(value: Boolean): TelnetTermOptions

    Set whether client auth is required

    Set whether client auth is required

    Definition Classes
    TelnetTermOptionsNetServerOptions
  57. def setHost(value: String): TelnetTermOptions

    Set the host

    Set the host

    Definition Classes
    TelnetTermOptionsNetServerOptions
  58. def setIdleTimeout(value: Int): TelnetTermOptions

    Set the idle timeout, in seconds.

    Set the idle timeout, in seconds. zero means don't timeout. This determines if a connection will timeout and be closed if no data is received within the timeout.

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  59. def setInBinary(value: Boolean): TelnetTermOptions

    Set the telnet connection to negociate binary data format when receiving from the client, the default value is true.

    Set the telnet connection to negociate binary data format when receiving from the client, the default value is true. This allows to send data in 8 bit format and thus charset like UTF-8.

  60. def setIntputrc(value: String): TelnetTermOptions

    The path of the inputrc config.

    The path of the inputrc config.

  61. def setJdkSslEngineOptions(value: JdkSSLEngineOptions): TelnetTermOptions
  62. def setKeyStoreOptions(value: JksOptions): TelnetTermOptions

    Set the key/cert options in jks format, aka Java keystore.

    Set the key/cert options in jks format, aka Java keystore.

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  63. def setLogActivity(value: Boolean): TelnetTermOptions

    Set to true to enabled network activity logging: Netty's pipeline is configured for logging on Netty's logger.

    Set to true to enabled network activity logging: Netty's pipeline is configured for logging on Netty's logger.

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  64. def setOpenSslEngineOptions(value: OpenSSLEngineOptions): TelnetTermOptions
  65. def setOutBinary(value: Boolean): TelnetTermOptions

    Set the telnet connection to negociate binary data format when sending to the client, the default value is true.

    Set the telnet connection to negociate binary data format when sending to the client, the default value is true. This allows to send data in 8 bit format and thus charset like UTF-8.

  66. def setPemKeyCertOptions(value: PemKeyCertOptions): TelnetTermOptions

    Set the key/cert store options in pem format.

    Set the key/cert store options in pem format.

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  67. def setPemTrustOptions(value: PemTrustOptions): TelnetTermOptions

    Set the trust options in pem format

    Set the trust options in pem format

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  68. def setPfxKeyCertOptions(value: PfxOptions): TelnetTermOptions

    Set the key/cert options in pfx format.

    Set the key/cert options in pfx format.

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  69. def setPfxTrustOptions(value: PfxOptions): TelnetTermOptions

    Set the trust options in pfx format

    Set the trust options in pfx format

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  70. def setPort(value: Int): TelnetTermOptions

    Set the port

    Set the port

    Definition Classes
    TelnetTermOptionsNetServerOptions
  71. def setReceiveBufferSize(value: Int): TelnetTermOptions

    Set the TCP receive buffer size

    Set the TCP receive buffer size

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  72. def setReuseAddress(value: Boolean): TelnetTermOptions

    Set the value of reuse address

    Set the value of reuse address

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  73. def setSendBufferSize(value: Int): TelnetTermOptions

    Set the TCP send buffer size

    Set the TCP send buffer size

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  74. def setSoLinger(value: Int): TelnetTermOptions

    Set whether SO_linger keep alive is enabled

    Set whether SO_linger keep alive is enabled

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  75. def setSsl(value: Boolean): TelnetTermOptions

    Set whether SSL/TLS is enabled

    Set whether SSL/TLS is enabled

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  76. def setTcpKeepAlive(value: Boolean): TelnetTermOptions

    Set whether TCP keep alive is enabled

    Set whether TCP keep alive is enabled

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  77. def setTcpNoDelay(value: Boolean): TelnetTermOptions

    Set whether TCP no delay is enabled

    Set whether TCP no delay is enabled

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  78. def setTrafficClass(value: Int): TelnetTermOptions

    Set the value of traffic class

    Set the value of traffic class

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptionsNetworkOptions
  79. def setTrustStoreOptions(value: JksOptions): TelnetTermOptions

    Set the trust options in jks format, aka Java truststore

    Set the trust options in jks format, aka Java truststore

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  80. def setUseAlpn(value: Boolean): TelnetTermOptions

    Set the ALPN usage.

    Set the ALPN usage.

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  81. def setUsePooledBuffers(value: Boolean): TelnetTermOptions

    Set whether Netty pooled buffers are enabled

    Set whether Netty pooled buffers are enabled

    Definition Classes
    TelnetTermOptionsNetServerOptionsTCPSSLOptions
  82. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  83. def toString(): String
    Definition Classes
    AnyRef → Any
  84. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  85. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  86. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from NetServerOptions

Inherited from TCPSSLOptions

Inherited from NetworkOptions

Inherited from AnyRef

Inherited from Any

Ungrouped