Class MailInboundChannelModel.AuthenticationProperties
java.lang.Object
com.flowable.platform.engine.impl.eventregistry.mail.MailInboundChannelModel.AuthenticationProperties
- Enclosing class:
- MailInboundChannelModel
public static class MailInboundChannelModel.AuthenticationProperties
extends java.lang.Object
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
delegateAuthenticator
The name of the bean which is an instance ofAuthenticator
that will be used as the authenticator.protected java.lang.String
password
The password that should be used to authenticated the connection with the Mail Server.protected java.lang.String
username
The username that should be used to authenticated the connection with the Mail Server. -
Constructor Summary
Constructors Constructor Description AuthenticationProperties()
-
Method Summary
Modifier and Type Method Description java.lang.String
getDelegateAuthenticator()
java.lang.String
getPassword()
java.lang.String
getUsername()
void
setDelegateAuthenticator(java.lang.String delegateAuthenticator)
void
setPassword(java.lang.String password)
void
setUsername(java.lang.String username)
-
Field Details
-
username
protected java.lang.String usernameThe username that should be used to authenticated the connection with the Mail Server. -
password
protected java.lang.String passwordThe password that should be used to authenticated the connection with the Mail Server. This doesn't have to be hardcoded password, it can be a SpEL expression that will load the password from system properties. -
delegateAuthenticator
protected java.lang.String delegateAuthenticatorThe name of the bean which is an instance ofAuthenticator
that will be used as the authenticator.
-
-
Constructor Details
-
AuthenticationProperties
public AuthenticationProperties()
-
-
Method Details
-
getUsername
public java.lang.String getUsername() -
setUsername
public void setUsername(java.lang.String username) -
getPassword
public java.lang.String getPassword() -
setPassword
public void setPassword(java.lang.String password) -
getDelegateAuthenticator
public java.lang.String getDelegateAuthenticator() -
setDelegateAuthenticator
public void setDelegateAuthenticator(java.lang.String delegateAuthenticator)
-