AToZ lastResource = null;
// build A side Client TP
- String tpName = path.get(0).getClient();
+ String tpName = path.get(0).getClientA();
String xname = path.get(0).getSourceId().getValue();
TerminationPoint stp = new TerminationPointBuilder()
.setTpId(tpName).setTpNodeId(xname)
}
// build Z side Client TP
- tpName = lastLink.getClient();
+ tpName = lastLink.getClientZ();
xname = lastLink.getDestId().getValue();
stp = new TerminationPointBuilder()
.setTpNodeId(xname).setTpId(tpName)
// build Z size Client TP
PceLink pcelink = this.allPceLinks.get(path.get(0).getOppositeLink());
- String tpName = pcelink.getClient();
+ String tpName = pcelink.getClientA();
String xname = pcelink.getSourceId().getValue();
TerminationPoint stp = new TerminationPointBuilder()
.setTpNodeId(xname).setTpId(tpName)
}
// build Z side Client TP
- tpName = lastLink.getClient();
+ tpName = lastLink.getClientZ();
xname = lastLink.getDestId().getValue();
stp = new TerminationPointBuilder()
.setTpNodeId(xname).setTpId(tpName).build();
pcelink.getlinkType(), pcelink);
break;
case ADDLINK:
- pcelink.setClient(
+ pcelink.setClientA(
source.getRdmSrgClient(pcelink.getSourceTP().getValue(), StringConstants.SERVICE_DIRECTION_AZ));
addLinks.add(pcelink);
LOG.debug("validateLink: ADD-LINK saved {}", pcelink);
break;
case DROPLINK:
- pcelink.setClient(
+ pcelink.setClientZ(
dest.getRdmSrgClient(pcelink.getDestTP().getValue(), StringConstants.SERVICE_DIRECTION_ZA));
dropLinks.add(pcelink);
LOG.debug("validateLink: DROP-LINK saved {}", pcelink);
return false;
}
if (dest.getXpdrClient(pcelink.getDestTP().getValue()) != null) {
- pcelink.setClient(dest.getXpdrClient(pcelink.getDestTP().getValue()));
+ pcelink.setClientZ(dest.getXpdrClient(pcelink.getDestTP().getValue()));
}
allPceLinks.put(linkId, pcelink);
source.addOutgoingLink(pcelink);
return false;
}
if (source.getXpdrClient(pcelink.getSourceTP().getValue()) != null) {
- pcelink.setClient(source.getXpdrClient(pcelink.getSourceTP().getValue()));
+ pcelink.setClientA(source.getXpdrClient(pcelink.getSourceTP().getValue()));
}
allPceLinks.put(linkId, pcelink);
source.addOutgoingLink(pcelink);
switch (pceOtnLink.getlinkType()) {
case OTNLINK:
if (source.getXpdrClient(pceOtnLink.getSourceTP().getValue()) != null) {
- pceOtnLink.setClient(source.getXpdrClient(pceOtnLink.getSourceTP().getValue()));
+ pceOtnLink.setClientA(source.getXpdrClient(pceOtnLink.getSourceTP().getValue()));
}
if (dest.getXpdrClient(pceOtnLink.getDestTP().getValue()) != null) {
- pceOtnLink.setClient(dest.getXpdrClient(pceOtnLink.getDestTP().getValue()));
+ pceOtnLink.setClientZ(dest.getXpdrClient(pceOtnLink.getDestTP().getValue()));
}
allPceLinks.put(linkId, pceOtnLink);
source.addOutgoingLink(pceOtnLink);
// this member is for XPONDER INPUT/OUTPUT links.
// it keeps name of client corresponding to NETWORK TP
- private String client = "";
+ private String clientA = "";
+ private String clientZ = "";
private final LinkId linkId;
private final OpenroadmLinkType linkType;
private final NodeId sourceId;
return destId;
}
- public String getClient() {
- return client;
+ public String getClientA() {
+ return clientA;
}
public Double getLength() {
return length;
}
- public void setClient(String client) {
- this.client = client;
+ public void setClientA(String client) {
+ this.clientA = client;
+ }
+
+ public String getClientZ() {
+ return clientZ;
+ }
+
+ public void setClientZ(String client) {
+ this.clientZ = client;
}
// Double for transformer of JUNG graph
GridConstant.SLOT_WIDTH_50);
pceLink = new PceLink(link, pceOpticalNode, pceOpticalNode2);
- pceLink.setClient("XPONDER-CLIENT");
+ pceLink.setClientA("XPONDER-CLIENT");
pceResult = new PceResult();
pceResult.setRC("200");
OpenroadmNodeType.SRG, StringConstants.OPENROADM_DEVICE_VERSION_2_2_1,
GridConstant.SLOT_WIDTH_50, GridConstant.SLOT_WIDTH_50);
pceLink = new PceLink(link, pceOpticalNode, pceOpticalNode2);
- pceLink.setClient("XPONDER-CLIENT");
+ pceLink.setClientA("XPONDER-CLIENT");
pceGraphEdge = new PceGraphEdge(pceLink);
}
pceOtnNode2.checkAvailableTribSlot();
pceLink1 = new PceLink(link1, pceOtnNode, pceOtnNode2);
- pceLink1.setClient("XPONDER-CLIENT");
+ pceLink1.setClientA("XPONDER-CLIENT");
pceLink1.getDestId();
pceOtnNode.addOutgoingLink(pceLink1);
assertNotNull(pceLink.getLinkId());
assertNotNull(pceLink.getSourceId());
assertNotNull(pceLink.getDestId());
- pceLink.setClient("specific_client");
- assertTrue(pceLink.getClient().equals("specific_client"));
- assertNotNull(pceLink.getClient());
+ pceLink.setClientA("specific_client");
+ assertTrue(pceLink.getClientA().equals("specific_client"));
+ assertNotNull(pceLink.getClientA());
assertNotNull(pceLink.getLatency());
assertNotNull(pceLink.getAvailableBandwidth());
assertNotNull(pceLink.getUsedBandwidth());