Fix checkstyle
[bgpcep.git] / bmp / bmp-impl / src / main / java / org / opendaylight / protocol / bmp / impl / BmpHandlerFactory.java
1 /*
2  * Copyright (c) 2015 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.protocol.bmp.impl;
9
10 import static java.util.Objects.requireNonNull;
11
12 import io.netty.channel.ChannelHandler;
13 import io.netty.channel.ChannelOutboundHandler;
14 import org.opendaylight.protocol.bmp.spi.registry.BmpMessageRegistry;
15
16 public final class BmpHandlerFactory {
17     private final ChannelOutboundHandler encoder;
18     private final BmpMessageRegistry registry;
19
20     public BmpHandlerFactory(final BmpMessageRegistry registry) {
21         this.registry = requireNonNull(registry);
22         this.encoder = new BmpMessageToByteEncoder(registry);
23     }
24
25     public ChannelHandler[] getEncoders() {
26         return new ChannelHandler[]{this.encoder,};
27     }
28
29     public ChannelHandler[] getDecoders() {
30         return new ChannelHandler[]{new BmpMessageHeaderDecoder(), new BmpByteToMessageDecoder(this.registry),};
31     }
32 }