class SparkSaslServer extends SaslEncryptionBackend
A SASL Server for Spark which simply keeps track of the state of a single SASL session, from the initial state to the "authenticated" state. (It is not a server in the sense of accepting connections on some socket.)
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SparkSaslServer
- SaslEncryptionBackend
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new SparkSaslServer(secretKeyId: String, secretKeyHolder: SecretKeyHolder, alwaysEncrypt: Boolean)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def dispose(): Unit
Disposes of any system resources or security-sensitive information the SaslServer might be using.
Disposes of any system resources or security-sensitive information the SaslServer might be using.
- Definition Classes
- SparkSaslServer → SaslEncryptionBackend
- Annotations
- @Override()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getNegotiatedProperty(name: String): AnyRef
Returns the value of a negotiated property.
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def isComplete(): Boolean
Determines whether the authentication exchange has completed successfully.
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def response(token: Array[Byte]): Array[Byte]
Used to respond to server SASL tokens.
Used to respond to server SASL tokens.
- token
Server's SASL token
- returns
response to send back to the server.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unwrap(data: Array[Byte], offset: Int, len: Int): Array[Byte]
Decrypt data.
Decrypt data.
- Definition Classes
- SparkSaslServer → SaslEncryptionBackend
- Annotations
- @Override()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def wrap(data: Array[Byte], offset: Int, len: Int): Array[Byte]
Encrypt data.
Encrypt data.
- Definition Classes
- SparkSaslServer → SaslEncryptionBackend
- Annotations
- @Override()