Initial code drop
[bgpcep.git] / bgp / parser-api / src / main / java / org / opendaylight / protocol / bgp / parser / BGPPrefixState.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.bgp.parser;
9
10 import org.opendaylight.protocol.bgp.concepts.BaseBGPObjectState;
11
12 import org.opendaylight.protocol.bgp.linkstate.NetworkPrefixState;
13
14 public final class BGPPrefixState extends AbstractBGPObjectState<NetworkPrefixState> {
15         private static final long serialVersionUID = 1L;
16
17         public BGPPrefixState(BaseBGPObjectState base, NetworkPrefixState prefixState) {
18                 super(base, prefixState);
19         }
20
21         protected BGPPrefixState(BGPPrefixState orig) {
22                 super(orig, orig.getObjectState());
23         }
24
25         @Override
26         protected BGPPrefixState newInstance() {
27                 return new BGPPrefixState(this);
28         }
29 }