Class 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.
    • Field Detail

      • 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 Detail

      • AuthenticationProperties

        public AuthenticationProperties()
    • Method Detail

      • 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)