当前位置: 首页>>代码示例>>Java>>正文


Java MessageHandlerFactory类代码示例

本文整理汇总了Java中org.subethamail.smtp.MessageHandlerFactory的典型用法代码示例。如果您正苦于以下问题:Java MessageHandlerFactory类的具体用法?Java MessageHandlerFactory怎么用?Java MessageHandlerFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


MessageHandlerFactory类属于org.subethamail.smtp包,在下文中一共展示了MessageHandlerFactory类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: SMTPServer

import org.subethamail.smtp.MessageHandlerFactory; //导入依赖的package包/类
/**
 * Complex constructor.
 * 
 * @param authHandlerFact
 *            the {@link AuthenticationHandlerFactory} which performs
 *            authentication in the SMTP AUTH command. If null,
 *            authentication is not supported. Note that setting an
 *            authentication handler does not enforce authentication, it
 *            only makes authentication possible. Enforcing authentication
 *            is the responsibility of the client application, which usually
 *            enforces it only selectively. Use
 *            {@link Session#isAuthenticated} to check whether the client
 *            was authenticated in the session.
 * @param executorService
 *            the ExecutorService which will handle client connections, one
 *            task per connection. The SMTPServer will shut down this
 *            ExecutorService when the SMTPServer itself stops. If null, a
 *            default one is created by
 *            {@link Executors#newCachedThreadPool()}.
 */
public SMTPServer(MessageHandlerFactory msgHandlerFact, AuthenticationHandlerFactory authHandlerFact, ExecutorService executorService)
{
	this.messageHandlerFactory = msgHandlerFact;
	this.authenticationHandlerFactory = authHandlerFact;

	if (executorService != null) {
		this.executorService = executorService;
	} else {
		this.executorService = Executors.newCachedThreadPool();
	}

	try
	{
		this.hostName = InetAddress.getLocalHost().getCanonicalHostName();
	}
	catch (UnknownHostException e)
	{
		this.hostName = UNKNOWN_HOSTNAME;
	}

	this.commandHandler = new CommandHandler();
}
 
开发者ID:voodoodyne,项目名称:subethasmtp,代码行数:43,代码来源:SMTPServer.java

示例2: getMessageHandlerFactory

import org.subethamail.smtp.MessageHandlerFactory; //导入依赖的package包/类
/**
 * @return the factory for message handlers, cannot be null
 */
public MessageHandlerFactory getMessageHandlerFactory()
{
	return this.messageHandlerFactory;
}
 
开发者ID:voodoodyne,项目名称:subethasmtp,代码行数:8,代码来源:SMTPServer.java

示例3: setMessageHandlerFactory

import org.subethamail.smtp.MessageHandlerFactory; //导入依赖的package包/类
/** */
public void setMessageHandlerFactory(MessageHandlerFactory fact)
{
	this.messageHandlerFactory = fact;
}
 
开发者ID:voodoodyne,项目名称:subethasmtp,代码行数:6,代码来源:SMTPServer.java

示例4: SubmissionServer

import org.subethamail.smtp.MessageHandlerFactory; //导入依赖的package包/类
public SubmissionServer(MessageHandlerFactory handlerFactory) {
    super(handlerFactory);
    setPort(587);
}
 
开发者ID:hontvari,项目名称:mireka,代码行数:5,代码来源:SubmissionServer.java

示例5: SMTPServer

import org.subethamail.smtp.MessageHandlerFactory; //导入依赖的package包/类
public SMTPServer(MessageHandlerFactory handlerFactory) {
    super(handlerFactory);
    setSoftwareName("Mireka " + Version.getVersion());
}
 
开发者ID:hontvari,项目名称:mireka,代码行数:5,代码来源:SMTPServer.java


注:本文中的org.subethamail.smtp.MessageHandlerFactory类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。