10ec092a81df3e05d07c910a24788f2f248aa6db
[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
15 import org.opendaylight.protocol.bmp.spi.registry.BmpMessageRegistry;
16
17 public final class BmpHandlerFactory {
18     private final ChannelOutboundHandler encoder;
19     private final BmpMessageRegistry registry;
20
21     public BmpHandlerFactory(final BmpMessageRegistry registry) {
22         this.registry = requireNonNull(registry);
23         this.encoder = new BmpMessageToByteEncoder(registry);
24     }
25
26     public ChannelHandler[] getEncoders() {
27         return new ChannelHandler[]{this.encoder,};
28     }
29
30     public ChannelHandler[] getDecoders() {
31         return new ChannelHandler[]{new BmpMessageHeaderDecoder(), new BmpByteToMessageDecoder(this.registry),};
32     }
33
34 }