rsanchez
2014-11-18 b33557d3faf3e45eff3d3e19f4a1549ffe907b4c
securis/src/main/java/net/curisit/securis/db/ApplicationMetadata.java
....@@ -126,4 +126,10 @@
126126 return key.hashCode() + (application == null ? 0 : application.hashCode());
127127 }
128128
129
+ @Override
130
+ public String toString() {
131
+
132
+ return String.format("ApplicationMetadata (%s - %s)", this.application == null ? null : application.getId(), this.key);
133
+ }
134
+
129135 }