Move protocol framework from BGPCEP project
[controller.git] / opendaylight / commons / protocol-framework / src / main / java / org / opendaylight / protocol / framework / ProtocolHandlerFactory.java
1 /*
2  * Copyright (c) 2013 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.framework;
9
10 import io.netty.channel.ChannelHandler;
11
12 import com.google.common.base.Preconditions;
13
14 /**
15  * @deprecated This is an adaptor class for turning ProtocolMessageFactory into
16  * Netty encoder/decoder. Use Netty-provided classes directly, by subclassing
17  * {@link io.netty.handler.codec.ByteToMessageDecoder} or similar instead.
18  */
19 @Deprecated
20 public class ProtocolHandlerFactory<T> {
21     private final ProtocolMessageEncoder<T> encoder;
22     protected final ProtocolMessageFactory<T> msgFactory;
23
24     public ProtocolHandlerFactory(final ProtocolMessageFactory<T> msgFactory) {
25         this.msgFactory = Preconditions.checkNotNull(msgFactory);
26         this.encoder = new ProtocolMessageEncoder<T>(msgFactory);
27     }
28
29     public ChannelHandler[] getEncoders() {
30         return new ChannelHandler[] { this.encoder };
31     }
32
33     public ChannelHandler[] getDecoders() {
34         return new ChannelHandler[] { new ProtocolMessageDecoder<T>(this.msgFactory) };
35     }
36 }