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.StringdelegateAuthenticatorThe name of the bean which is an instance ofAuthenticatorthat will be used as the authenticator.protected java.lang.StringpasswordThe password that should be used to authenticated the connection with the Mail Server.protected java.lang.StringusernameThe 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.StringgetDelegateAuthenticator()java.lang.StringgetPassword()java.lang.StringgetUsername()voidsetDelegateAuthenticator(java.lang.String delegateAuthenticator)voidsetPassword(java.lang.String password)voidsetUsername(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 ofAuthenticatorthat 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)
-