|
@@ -12,6 +12,7 @@ public class ConnectionImplementation implements Connection {
|
|
|
private double packetLossRate;
|
|
|
private byte status;
|
|
|
private boolean changed = false;
|
|
|
+ private String name;
|
|
|
|
|
|
public ConnectionImplementation(Link l, Protocol p) {
|
|
|
link = l;
|
|
@@ -19,6 +20,10 @@ public class ConnectionImplementation implements Connection {
|
|
|
removedParticipants = new LinkedList<Port>();
|
|
|
this.protocol = p;
|
|
|
status =Connection.ACTIVE;
|
|
|
+ if(p==null)
|
|
|
+ name = "unspecified";
|
|
|
+ else
|
|
|
+ name = p.getName()+"-connection";
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -113,4 +118,14 @@ public class ConnectionImplementation implements Connection {
|
|
|
return changed;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
}
|