object ActorPrincipalProxy
- Alphabetic
- By Inheritance
- ActorPrincipalProxy
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- case class AcquireActorPrincipal(token: SignedToken) extends Message with Product with Serializable
Attempt to acquire an ActorPrincipal using a supplied token.
- case class GetAuthenticationToken(principalId: Long) extends Message with Product with Serializable
Attempt to acquire an authentication token from the specified principal.
- case class GetSecret(principalId: Long, path: String) extends Message with Product with Serializable
Attempt to get the specified secret from the specified principal.
- case class InvalidateSecret(principalId: Long, path: String) extends Message with Product with Serializable
Attempt to invalidate the specified secret from the specified principal.
- sealed trait Message extends AnyRef
Base trait for messages that ActorPrincipalProxy can handle.
- case class PutSecret(principalId: Long, path: String, secret: String) extends Message with Product with Serializable
Attempt to store a specified secret using the specified principal.
- case class RemoveSecret(principalId: Long, path: String) extends Message with Product with Serializable
Attempt to remove a secret using the specified principal.
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()
- 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 hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- 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 props(applicationPrincipal: Principal, applicationSecret: () => Future[Array[Byte]], authenticate: Authenticate, authenticateCacheSize: Int, authenticateTimeout: FiniteDuration, authenticateFailureTtl: FiniteDuration, currentTimeMillis: () => Long, getAuthenticatedSecret: GetAuthenticatedSecret, getAuthenticatedSecretCacheSize: Int, getAuthenticatedSecretTimeout: FiniteDuration, getAuthenticatedSecretFailureTtl: FiniteDuration, invalidateAuthenticatedSecretTimeout: FiniteDuration, principalIdleTimeout: FiniteDuration, putAuthenticatedSecret: PutAuthenticatedSecret, putAuthenticatedSecretTimeout: FiniteDuration, removeAuthenticatedSecret: RemoveAuthenticatedSecret, removeAuthenticatedSecretTimeout: FiniteDuration): Props
Props for creating an ActorPrincipalProxy actor.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()
- object AcquireActorPrincipal extends Serializable
- object GetAuthenticationToken extends Serializable
- object GetSecret extends Serializable
- object InvalidateSecret extends Serializable
- object PutSecret extends Serializable
- object RemoveSecret extends Serializable