BUG-47 : PCEP migration to generated DTOs.
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / message / PCCreateMessageParser.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.PcinitiateMessage;
17
18 /**
19  * Parser for {@link PCCreateMessage}
20  */
21 public class PCCreateMessageParser extends AbstractMessageParser {
22
23         private final int TYPE = 12;
24
25         public PCCreateMessageParser(final HandlerRegistry registry) {
26                 super(registry);
27         }
28
29         @Override
30         public void serializeMessage(final Message message, final ByteBuf buffer) {
31                 if (!(message instanceof PcinitiateMessage))
32                         throw new IllegalArgumentException("Wrong instance of Message. Passed instance of " + message.getClass()
33                                         + ". Needed PcinitiateMessage.");
34         }
35
36         @Override
37         public PcinitiateMessage parseMessage(final byte[] buffer) throws PCEPDeserializerException {
38                 return null;
39         }
40
41         @Override
42         public int getMessageType() {
43                 return this.TYPE;
44         }
45 }