BUG-634: improve netty interface
[bgpcep.git] / tcp-md5 / netty / src / main / java / org / opendaylight / bgpcep / tcpmd5 / netty / MD5NioServerSocketChannelFactory.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.bgpcep.tcpmd5.netty;
9
10 import io.netty.bootstrap.ChannelFactory;
11
12 import org.opendaylight.bgpcep.tcpmd5.KeyAccessFactory;
13
14 import com.google.common.base.Preconditions;
15
16 public final class MD5NioServerSocketChannelFactory implements ChannelFactory<MD5NioServerSocketChannel> {
17         private final KeyAccessFactory keyAccessFactory;
18
19         public MD5NioServerSocketChannelFactory(final KeyAccessFactory keyAccessFactory) {
20                 this.keyAccessFactory = Preconditions.checkNotNull(keyAccessFactory);
21         }
22
23         @Override
24         public MD5NioServerSocketChannel newChannel() {
25                 return new MD5NioServerSocketChannel(keyAccessFactory);
26         }
27 }