Class MailInboundChannelModel.AuthenticationProperties
- java.lang.Object
-
- com.flowable.platform.engine.impl.eventregistry.mail.MailInboundChannelModel.AuthenticationProperties
-
- Enclosing class:
- MailInboundChannelModel
public static class MailInboundChannelModel.AuthenticationProperties extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected StringdelegatingAuthenticatorThe name of the bean which is an instance ofAuthenticatorthat will be used as the authenticator.protected StringpasswordThe password that should be used to authenticated the connection with the Mail Server.protected StringusernameThe username that should be used to authenticated the connection with the Mail Server.
-
Constructor Summary
Constructors Constructor Description AuthenticationProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDelegatingAuthenticator()StringgetPassword()StringgetUsername()voidsetDelegatingAuthenticator(String delegatingAuthenticator)voidsetPassword(String password)voidsetUsername(String username)
-
-
-
Field Detail
-
username
protected String username
The username that should be used to authenticated the connection with the Mail Server.
-
password
protected String password
The 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.
-
delegatingAuthenticator
protected String delegatingAuthenticator
The name of the bean which is an instance ofAuthenticatorthat will be used as the authenticator.
-
-
Method Detail
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
getDelegatingAuthenticator
public String getDelegatingAuthenticator()
-
setDelegatingAuthenticator
public void setDelegatingAuthenticator(String delegatingAuthenticator)
-
-