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 String
delegateAuthenticator
The name of the bean which is an instance ofAuthenticator
that will be used as the authenticator.protected String
password
The password that should be used to authenticated the connection with the Mail Server.protected String
username
The 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 String
getDelegateAuthenticator()
String
getPassword()
String
getUsername()
void
setDelegateAuthenticator(String delegateAuthenticator)
void
setPassword(String password)
void
setUsername(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.
-
delegateAuthenticator
protected String delegateAuthenticator
The name of the bean which is an instance ofAuthenticator
that 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)
-
getDelegateAuthenticator
public String getDelegateAuthenticator()
-
setDelegateAuthenticator
public void setDelegateAuthenticator(String delegateAuthenticator)
-
-