GUAC-1193: Include connection identifier within history records.

This commit is contained in:
Michael Jumper
2015-09-23 16:02:17 -07:00
parent e1908bf6e8
commit 3c5f72b288
5 changed files with 44 additions and 0 deletions

View File

@@ -51,6 +51,11 @@ public class ModeledConnectionRecord implements ConnectionRecord {
this.model = model;
}
@Override
public String getConnectionIdentifier() {
return model.getConnectionIdentifier();
}
@Override
public Date getStartDate() {
return model.getStartDate();

View File

@@ -164,6 +164,11 @@ public class ActiveConnectionRecord implements ConnectionRecord {
return balancingGroup != null;
}
@Override
public String getConnectionIdentifier() {
return connection.getIdentifier();
}
@Override
public Date getStartDate() {
return startDate;