Authentication Filter
API is deprecated and will be removed in a future release. Please use a
CustomAuthenticator
, a CustomWebAuthenticator
or a custom login page (depending on the
use case) instead.@Deprecated
public class AuthenticationFilterPrincipal
extends java.lang.Object
implements java.security.Principal, java.io.Serializable
Constructor and Description |
---|
AuthenticationFilterPrincipal(java.lang.String username,
java.lang.String domainName,
java.lang.String displayName,
java.lang.String emailAddress)
Deprecated.
The
Authentication Filter API is deprecated and will be removed in a future release. Please use
a CustomAuthenticator , a CustomWebAuthenticator or a custom login page (depending on
the use case) instead. |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDisplayName()
Deprecated.
Returns the display name of the authenticated principal.
|
java.lang.String |
getDomainName()
Deprecated.
Returns the domain name of the authenticated principal.
|
java.lang.String |
getEmailAddress()
Deprecated.
Returns the email address of the authenticated principal.
|
java.lang.String |
getName()
Deprecated.
Returns the username of the authenticated principal.
|
java.lang.String |
getUsername()
Deprecated.
Returns the username of the authenticated principal.
|
@Deprecated public AuthenticationFilterPrincipal(java.lang.String username, java.lang.String domainName, java.lang.String displayName, java.lang.String emailAddress)
Authentication Filter
API is deprecated and will be removed in a future release. Please use
a CustomAuthenticator
, a CustomWebAuthenticator
or a custom login page (depending on
the use case) instead.AuthenticationFilterPrincipal
instance.username
- the username, must not be null
or an empty stringdomainName
- the domain name, must not be null
or an empty stringdisplayName
- the user's display name, may be null
but must not be an empty stringemailAddress
- the user's email address, may be null
but must not be an empty stringpublic java.lang.String getName()
getName
in interface java.security.Principal
public java.lang.String getUsername()
public java.lang.String getDomainName()
public java.lang.String getDisplayName()
public java.lang.String getEmailAddress()
Copyright © 2000-2020 TIBCO Software Inc. All Rights Reserved.