GUAC-1132: Add identifier to connection records.

This commit is contained in:
Michael Jumper
2015-03-16 16:11:20 -07:00
parent 3a4f6b85dd
commit 5cf48c7498
5 changed files with 43 additions and 0 deletions

View File

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

View File

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