com.malliina.auth

CertUserManager

trait CertUserManager extends UserManager[String] with DefaultCertificateAuthenticator

Linear Supertypes
DefaultCertificateAuthenticator, Log, CertificateAuthenticator[String], Authenticator[Seq[X509Certificate], String], UserManager[String], MembershipManager[String], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CertUserManager
  2. DefaultCertificateAuthenticator
  3. Log
  4. CertificateAuthenticator
  5. Authenticator
  6. UserManager
  7. MembershipManager
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def addGroup(group: String): Unit

    Definition Classes
    UserManager
  2. abstract def addUser(user: String, password: String): Unit

    user
    Definition Classes
    UserManager
    Exceptions thrown
    Exception

    if that user already exists

  3. abstract def assign(user: String, group: String): Unit

    user
    group
    Definition Classes
    MembershipManager
    Exceptions thrown
    Exception

    if the group or user does not exist or if the user already exists in the group

  4. abstract def groups: Seq[String]

    Definition Classes
    UserManager
  5. abstract def groups(user: String): Seq[String]

    Definition Classes
    UserManager
  6. abstract def removeGroup(group: String): Unit

    group

    the group to remove

    Definition Classes
    UserManager
    Exceptions thrown
    UserManagementException

    if the group is not empty

  7. abstract def removeUser(user: String): Unit

    Removes the user including any attributes like group membership.

    Removes the user including any attributes like group membership.

    user
    Definition Classes
    UserManager
    Exceptions thrown
    Exception

    if the user does not exist

  8. abstract def revoke(user: String, group: String): Unit

    user
    group
    Definition Classes
    MembershipManager
    Exceptions thrown
    Exception

    if the group or user does not exist or if the user does not exist in the group

  9. abstract def setPassword(user: String, newPassword: String): Unit

    user
    newPassword
    Definition Classes
    UserManager
    Exceptions thrown
    Exception

    if the user doesn't exist or if the new password defies any policy

  10. abstract def users: Seq[String]

    Definition Classes
    UserManager
  11. abstract def users(group: String): Seq[String]

    Definition Classes
    UserManager

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addGroups(groups: String*): Unit

    Definition Classes
    UserManager
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def assign(user: String, groups: Seq[String]): Unit

    Definition Classes
    MembershipManager
  9. def authenticate(certChain: Seq[X509Certificate]): String

    Authenticates a user using the given credentials.

    Authenticates a user using the given credentials.

    If this method returns normally, the authentication was successful.

    returns

    the user object

    Definition Classes
    DefaultCertificateAuthenticatorCertificateAuthenticatorAuthenticator
    Exceptions thrown
    Exception

    if authentication fails

  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 existsUser(user: String): Boolean

    Definition Classes
    UserManager
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. val log: Logger

    Attributes
    protected
    Definition Classes
    Log
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  22. def removeGroups(groups: String*): Unit

    Definition Classes
    UserManager
  23. def replaceGroups(user: String, newGroups: Seq[String]): Unit

    Sets the group membership for the given user.

    Sets the group membership for the given user.

    Any pre-existing group membership not included in the supplied groups is revoked.

    user
    newGroups

    Definition Classes
    UserManager
  24. def revoke(user: String, groups: Seq[String]): Unit

    Definition Classes
    MembershipManager
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toString(): String

    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Log

Inherited from CertificateAuthenticator[String]

Inherited from Authenticator[Seq[X509Certificate], String]

Inherited from UserManager[String]

Inherited from MembershipManager[String]

Inherited from AnyRef

Inherited from Any

Ungrouped