BUG-47 : unfinished PCEP migration to generated DTOs.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / message / PCEPRequestMessageParser.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.message;
9
10 import io.netty.buffer.ByteBuf;
11
12 import org.opendaylight.protocol.pcep.PCEPDeserializerException;
13 import org.opendaylight.protocol.pcep.spi.AbstractMessageParser;
14 import org.opendaylight.protocol.pcep.spi.HandlerRegistry;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.PcrepMessage;
17
18 /**
19  * Parser for {@link PcrepMessage}
20  */
21 //FIXME finish
22 public class PCEPRequestMessageParser extends AbstractMessageParser {
23         
24         private final int TYPE = 3;
25
26         public PCEPRequestMessageParser(HandlerRegistry registry) {
27                 super(registry);
28         }
29
30         @Override
31         public void serializeMessage(Message message, ByteBuf buffer) {
32                 if (!(message instanceof PcrepMessage))
33                         throw new IllegalArgumentException("Wrong instance of PCEPMessage. Passed instance of " + message.getClass()
34                                         + ". Needed PcrepMessage.");
35         }
36
37         @Override
38         public PcrepMessage parseMessage(byte[] buffer) throws PCEPDeserializerException {
39                 // TODO Auto-generated method stub
40                 return null;
41         }
42
43         @Override
44         public int getMessageType() {
45                 return TYPE;
46         }
47 }