Bug 611 - serialization of path attributes
[bgpcep.git] / bgp / parser-api / src / main / java / org / opendaylight / protocol / bgp / parser / AttributeFlags.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 package org.opendaylight.protocol.bgp.parser;
9
10 public final class AttributeFlags {
11
12     private AttributeFlags(){
13
14     }
15
16     public static final int OPTIONAL = 128;
17     public static final int TRANSITIVE = 64;
18     public static final int PARTIAL = 32;
19     public static final int EXTENDED = 16;
20     public static final int UNUSED_8 = 8;
21     public static final int UNUSED_4 = 4;
22     public static final int UNUSED_2 = 2;
23     public static final int UNUSED_1 = 1;
24 }