Showing
3 changed files
with
2 additions
and
12 deletions
... | ... | @@ -39,8 +39,8 @@ public class EntityView extends SearchTextBasedWithAdditionalInfo<EntityViewId> |
39 | 39 | private CustomerId customerId; |
40 | 40 | private String name; |
41 | 41 | private TelemetryEntityView keys; |
42 | - private Long tsBegin; | |
43 | - private Long tsEnd; | |
42 | + private long startTs; | |
43 | + private long endTs; | |
44 | 44 | |
45 | 45 | public EntityView() { |
46 | 46 | super(); | ... | ... |
... | ... | @@ -44,9 +44,4 @@ public class AttributesEntityView { |
44 | 44 | public AttributesEntityView(AttributesEntityView obj) { |
45 | 45 | this(obj.getCs(), obj.getSs(), obj.getSh()); |
46 | 46 | } |
47 | - | |
48 | - @Override | |
49 | - public String toString() { | |
50 | - return "{cs=" + cs + ", ss=" + ss + ", sh=" + sh + '}'; | |
51 | - } | |
52 | 47 | } | ... | ... |
... | ... | @@ -40,9 +40,4 @@ public class TelemetryEntityView { |
40 | 40 | public TelemetryEntityView(TelemetryEntityView obj) { |
41 | 41 | this(obj.getTimeseries(), obj.getAttributes()); |
42 | 42 | } |
43 | - | |
44 | - @Override | |
45 | - public String toString() { | |
46 | - return "{timeseries=" + timeseries + ", attributes=" + attributes + '}'; | |
47 | - } | |
48 | 43 | } | ... | ... |