AccountType (enum)

Whether the user’s account is defined by locally (Secman itself is the authenticator) or instead if there’s a different security module that has responsibility for authentication (for example Spring Security with OAuth2). This is the delegate model.

API

AccountType.java
enum AccountType {
  LOCAL     (1)
  DELEGATED     (2)
  boolean isLocal()
  boolean isDelegated()
  String toString()
}
1 LOCAL

Secman itself is the authenticator.

2 DELEGATED

Another security module performs the primary authentication, for example Spring Security with OAuth2.

Members

LOCAL

Secman itself is the authenticator.

DELEGATED

Another security module performs the primary authentication, for example Spring Security with OAuth2.