Merge "Fixed imports."
[bgpcep.git] / pcep / impl / src / main / java / org / opendaylight / protocol / pcep / impl / subobject / GeneralizedLabelParser.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.subobject;
9
10 import org.opendaylight.protocol.pcep.PCEPDeserializerException;
11 import org.opendaylight.protocol.pcep.spi.LabelParser;
12 import org.opendaylight.protocol.pcep.spi.LabelSerializer;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.CLabel;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.GeneralizedLabel;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.label.subobject.label.type.GeneralizedLabelBuilder;
16
17 public class GeneralizedLabelParser implements LabelParser, LabelSerializer {
18
19         public static final int CTYPE = 2;
20
21         @Override
22         public GeneralizedLabel parseLabel(final byte[] buffer) throws PCEPDeserializerException {
23                 if (buffer == null || buffer.length == 0)
24                         throw new IllegalArgumentException("Array of bytes is mandatory. Can't be null or empty.");
25
26                 return new GeneralizedLabelBuilder().setGeneralizedLabel(buffer).build();
27         }
28
29         @Override
30         public byte[] serializeSubobject(final CLabel subobject) {
31                 if (!(subobject instanceof GeneralizedLabel))
32                         throw new IllegalArgumentException("Unknown Label Subobject instance. Passed " + subobject.getClass()
33                                         + ". Needed GeneralizedLabel.");
34                 return ((org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.rsvp.rev130820.label.subobject.label.type.GeneralizedLabel) subobject).getGeneralizedLabel();
35         }
36
37         @Override
38         public int getType() {
39                 return CTYPE;
40         }
41 }