Commit ae647024a5e53dab6962cb571914b32cb74b6890

Authored by viktorbasanets
1 parent 3d4b2e3d

Was refactored

@@ -39,8 +39,8 @@ public class EntityView extends SearchTextBasedWithAdditionalInfo<EntityViewId> @@ -39,8 +39,8 @@ public class EntityView extends SearchTextBasedWithAdditionalInfo<EntityViewId>
39 private CustomerId customerId; 39 private CustomerId customerId;
40 private String name; 40 private String name;
41 private TelemetryEntityView keys; 41 private TelemetryEntityView keys;
42 - private Long tsBegin;  
43 - private Long tsEnd; 42 + private long startTs;
  43 + private long endTs;
44 44
45 public EntityView() { 45 public EntityView() {
46 super(); 46 super();
@@ -44,9 +44,4 @@ public class AttributesEntityView { @@ -44,9 +44,4 @@ public class AttributesEntityView {
44 public AttributesEntityView(AttributesEntityView obj) { 44 public AttributesEntityView(AttributesEntityView obj) {
45 this(obj.getCs(), obj.getSs(), obj.getSh()); 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,9 +40,4 @@ public class TelemetryEntityView {
40 public TelemetryEntityView(TelemetryEntityView obj) { 40 public TelemetryEntityView(TelemetryEntityView obj) {
41 this(obj.getTimeseries(), obj.getAttributes()); 41 this(obj.getTimeseries(), obj.getAttributes());
42 } 42 }
43 -  
44 - @Override  
45 - public String toString() {  
46 - return "{timeseries=" + timeseries + ", attributes=" + attributes + '}';  
47 - }  
48 } 43 }