X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=olm%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Ftransportpce%2Folm%2Fspanloss%2FRoadmLinks.java;fp=olm%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Ftransportpce%2Folm%2Fspanloss%2FRoadmLinks.java;h=0000000000000000000000000000000000000000;hb=a3b392eb5a1fe451ac504583be578000a8ff3b5f;hp=d3e041407d7e1951d1c6ed82ed943bbc4820f248;hpb=b22090019df1a603688c4fc4731cb9131cd45a1f;p=transportpce.git diff --git a/olm/src/main/java/org/opendaylight/transportpce/olm/spanloss/RoadmLinks.java b/olm/src/main/java/org/opendaylight/transportpce/olm/spanloss/RoadmLinks.java deleted file mode 100644 index d3e041407..000000000 --- a/olm/src/main/java/org/opendaylight/transportpce/olm/spanloss/RoadmLinks.java +++ /dev/null @@ -1,98 +0,0 @@ -/* - * Copyright © 2017 AT&T and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ -package org.opendaylight.transportpce.olm.spanloss; -/** - * The Class RoadmLinks. - */ -public class RoadmLinks { - - /** The src node id. */ - private String srcNodeId; - - /** The src tp id. */ - private String srcTpId; - - /** The dest node id. */ - private String destNodeId; - - /** The dest tpid. */ - private String destTpid; - - /** - * Gets the src node id. - * - * @return the src node id - */ - public String getSrcNodeId() { - return srcNodeId; - } - - /** - * Sets the src node id. - * - * @param srcNodeId the new src node id - */ - public void setSrcNodeId(String srcNodeId) { - this.srcNodeId = srcNodeId; - } - - /** - * Gets the src tp id. - * - * @return the src tp id - */ - public String getSrcTpId() { - return srcTpId; - } - - /** - * Sets the src tp id. - * - * @param srcTpId the new src tp id - */ - public void setSrcTpId(String srcTpId) { - this.srcTpId = srcTpId; - } - - /** - * Gets the dest node id. - * - * @return the dest node id - */ - public String getDestNodeId() { - return destNodeId; - } - - /** - * Sets the dest node id. - * - * @param destNodeId the new dest node id - */ - public void setDestNodeId(String destNodeId) { - this.destNodeId = destNodeId; - } - - /** - * Gets the dest tpid. - * - * @return the dest tpid - */ - public String getDestTpid() { - return destTpid; - } - - /** - * Sets the dest tpid. - * - * @param destTpid the new dest tpid - */ - public void setDestTpid(String destTpid) { - this.destTpid = destTpid; - } - -}