blob: fcce3b306e88e7c7ce039cb74ad4ba1e61607170 [file] [log] [blame]
/****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one *
* or more contributor license agreements. See the NOTICE file *
* distributed with this work for additional information *
* regarding copyright ownership. The ASF licenses this file *
* to you under the Apache License, Version 2.0 (the *
* "License"); you may not use this file except in compliance *
* with the License. You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, *
* software distributed under the License is distributed on an *
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
* KIND, either express or implied. See the License for the *
* specific language governing permissions and limitations *
* under the License. *
****************************************************************/
package org.apache.james.pop3server.netty;
import java.util.ArrayList;
import java.util.List;
import javax.inject.Inject;
import org.apache.commons.configuration2.HierarchicalConfiguration;
import org.apache.commons.configuration2.tree.ImmutableNode;
import org.apache.james.filesystem.api.FileSystem;
import org.apache.james.protocols.lib.handler.ProtocolHandlerLoader;
import org.apache.james.protocols.lib.netty.AbstractConfigurableAsyncServer;
import org.apache.james.protocols.lib.netty.AbstractServerFactory;
public class POP3ServerFactory extends AbstractServerFactory {
private ProtocolHandlerLoader loader;
private FileSystem fileSystem;
@Inject
public void setProtocolHandlerLoader(ProtocolHandlerLoader loader) {
this.loader = loader;
}
@Inject
public final void setFileSystem(FileSystem filesystem) {
this.fileSystem = filesystem;
}
protected POP3Server createServer() {
return new POP3Server();
}
@Override
protected List<AbstractConfigurableAsyncServer> createServers(HierarchicalConfiguration<ImmutableNode> config) throws Exception {
List<AbstractConfigurableAsyncServer> servers = new ArrayList<>();
List<HierarchicalConfiguration<ImmutableNode>> configs = config.configurationsAt("pop3server");
for (HierarchicalConfiguration<ImmutableNode> serverConfig: configs) {
POP3Server server = createServer();
server.setProtocolHandlerLoader(loader);
server.setFileSystem(fileSystem);
server.configure(serverConfig);
servers.add(server);
}
return servers;
}
}