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 of Authenticator 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)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • username

      protected java.lang.String username
      The username that should be used to authenticated the connection with the Mail Server.
    • password

      protected java.lang.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 java.lang.String delegateAuthenticator
      The name of the bean which is an instance of Authenticator that will be used as the authenticator.
  • Constructor Details

  • Method Details