Add new revision for pcep types model
[bgpcep.git] / pcep / impl / src / test / java / org / opendaylight / protocol / pcep / impl / TestVendorInformationObjectParser.java
1 /*
2  * Copyright (c) 2014 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
9 package org.opendaylight.protocol.pcep.impl;
10
11 import io.netty.buffer.ByteBuf;
12
13 import org.opendaylight.protocol.pcep.impl.TestVendorInformationTlvParser.TestEnterpriseSpecificInformation;
14 import org.opendaylight.protocol.pcep.parser.object.AbstractVendorInformationObjectParser;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.iana.rev130816.EnterpriseNumber;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.vendor.information.EnterpriseSpecificInformation;
17
18 public class TestVendorInformationObjectParser extends AbstractVendorInformationObjectParser {
19
20     private static final EnterpriseNumber TEST_ENTERPRISE_NUMBER = new EnterpriseNumber(0L);
21
22     public TestVendorInformationObjectParser() {
23         super(0, 0);
24     }
25
26     @Override
27     public void serializeEnterpriseSpecificInformation(final EnterpriseSpecificInformation enterpriseSpecificInformation,
28             final ByteBuf buffer) {
29         buffer.writeInt(((TestEnterpriseSpecificInformation) enterpriseSpecificInformation).getValue());
30     }
31
32     @Override
33     public EnterpriseSpecificInformation parseEnterpriseSpecificInformation(final ByteBuf buffer) {
34         return new TestEnterpriseSpecificInformation(buffer.readInt());
35     }
36
37     @Override
38     public EnterpriseNumber getEnterpriseNumber() {
39         return TEST_ENTERPRISE_NUMBER;
40     }
41 }