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

io.quarkus.mailer.runtime.NtlmConfig Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.mailer.runtime;

import java.util.Optional;

import io.quarkus.runtime.annotations.ConfigGroup;
import io.quarkus.runtime.annotations.ConfigItem;

@ConfigGroup
public class NtlmConfig {

    /**
     * Sets the workstation used on NTLM authentication.
     */
    @ConfigItem
    public Optional workstation = Optional.empty();

    /**
     * Sets the domain used on NTLM authentication.
     */
    @ConfigItem
    public Optional domain = Optional.empty();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy