do not explicit serialVersionUID anymore
[transportpce.git] / pce / src / main / java / org / opendaylight / transportpce / pce / graph / PceGraphEdge.java
1 /*
2  * Copyright © 2017 AT&T, 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.transportpce.pce.graph;
9
10 import org.jgrapht.graph.DefaultWeightedEdge;
11 import org.opendaylight.transportpce.pce.networkanalyzer.PceLink;
12
13 @edu.umd.cs.findbugs.annotations.SuppressFBWarnings(
14     value = "SE_NO_SERIALVERSIONID",
15     justification = "https://github.com/rzwitserloot/lombok/wiki/WHY-NOT:-serialVersionUID")
16 public class PceGraphEdge extends DefaultWeightedEdge {
17
18     private PceLink link;
19
20     public PceGraphEdge(PceLink link) {
21         super();
22         this.link = link;
23     }
24
25     public PceLink link() {
26         return link;
27     }
28
29 }