BUG-47 : removed PCEPMessage interface, switched to generated Message.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / PCEPHandlerFactory.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.pcep.impl;
9
10 import io.netty.channel.ChannelHandler;
11
12 import org.opendaylight.protocol.framework.ProtocolHandlerFactory;
13 import org.opendaylight.protocol.framework.ProtocolMessageDecoder;
14 import org.opendaylight.protocol.framework.ProtocolMessageEncoder;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message;
16
17 /**
18  * PCEP specific factory for protocol inbound/outbound handlers.
19  */
20 public class PCEPHandlerFactory extends ProtocolHandlerFactory<Message> {
21         private final ProtocolMessageEncoder<Message> encoder;
22
23         public PCEPHandlerFactory() {
24                 super(new PCEPMessageFactory());
25                 this.encoder = new ProtocolMessageEncoder<Message>(this.msgFactory);
26         }
27
28         @Override
29         public ChannelHandler[] getEncoders() {
30                 return new ChannelHandler[] { this.encoder };
31         }
32
33         @Override
34         public ChannelHandler[] getDecoders() {
35                 return new ChannelHandler[] { new PCEPMessageHeaderDecoder(), new ProtocolMessageDecoder<Message>(this.msgFactory) };
36         }
37 }