All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.imap.utils.ConfigDefaults Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package com.hubspot.imap.utils;

import com.google.common.collect.ImmutableList;
import com.hubspot.imap.protocol.capabilities.AuthMechanism;
import java.util.List;

public class ConfigDefaults {

  private ConfigDefaults() {}

  public static final List DEFAULT_ALLOWED_AUTH_MECHANISMS =
    ImmutableList.of(AuthMechanism.XOAUTH2, AuthMechanism.PLAIN, AuthMechanism.LOGIN);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy