summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorseshukm <seshu.kumar.m@huawei.com>2018-07-25 18:07:27 +0800
committerseshukm <seshu.kumar.m@huawei.com>2018-07-25 18:07:27 +0800
commit44b6f0d5c585faebd88b72657672a3ccf22c3456 (patch)
treeabda9cf4c6b24f694620222a5541784950edcc56
parent083f0f9bc39e96b1b8ab0c515e1202b51c3fa04d (diff)
Fix basic checkstyle ceilometer-model
Issue-ID: SO-729 Change-Id: Icc76f88224fb9a7c06bc49106c285718046f8188 Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
-rw-r--r--ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Meter.java78
-rw-r--r--ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Resource.java72
-rw-r--r--ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Sample.java170
-rw-r--r--ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Statistics.java160
4 files changed, 240 insertions, 240 deletions
diff --git a/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Meter.java b/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Meter.java
index b0e26ff..e9ff2aa 100644
--- a/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Meter.java
+++ b/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Meter.java
@@ -20,51 +20,51 @@ import org.codehaus.jackson.annotate.JsonProperty;
public class Meter {
- @JsonProperty("user_id")
- private String user;
-
-
- private String name;
-
- @JsonProperty("resource_id")
- private String resource;
-
- @JsonProperty("project_id")
- private String project;
-
- private String type;
-
- private String unit;
+ @JsonProperty("user_id")
+ private String user;
+
+
+ private String name;
+
+ @JsonProperty("resource_id")
+ private String resource;
+
+ @JsonProperty("project_id")
+ private String project;
+
+ private String type;
+
+ private String unit;
- public String getUser() {
- return user;
- }
+ public String getUser() {
+ return user;
+ }
- public String getName() {
- return name;
- }
+ public String getName() {
+ return name;
+ }
- public String getResource() {
- return resource;
- }
+ public String getResource() {
+ return resource;
+ }
- public String getProject() {
- return project;
- }
+ public String getProject() {
+ return project;
+ }
- public String getType() {
- return type;
- }
+ public String getType() {
+ return type;
+ }
- public String getUnit() {
- return unit;
- }
+ public String getUnit() {
+ return unit;
+ }
- @Override
- public String toString() {
- return "Meter [user=" + user + ", name=" + name + ", resource="
- + resource + ", project=" + project + ", type=" + type
- + ", unit=" + unit + "]";
- }
+ @Override
+ public String toString() {
+ return "Meter [user=" + user + ", name=" + name + ", resource="
+ + resource + ", project=" + project + ", type=" + type
+ + ", unit=" + unit + "]";
+ }
}
diff --git a/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Resource.java b/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Resource.java
index 93e57e4..bb8e991 100644
--- a/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Resource.java
+++ b/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Resource.java
@@ -21,46 +21,46 @@ import java.util.Map;
import org.codehaus.jackson.annotate.JsonProperty;
public class Resource {
- //{"resource_id": "23b55841eedd41e99d5f3f32149ca086", "timestamp": "2013-03-03T15:19:00", "project_id": "23b55841eedd41e99d5f3f32149ca086", "user_id": null, "metadata": {}}
-
- @JsonProperty("resource_id")
- private String resource;
-
- private String timestamp;
-
- @JsonProperty("project_id")
- private String project;
-
- @JsonProperty("user_id")
- private String user;
-
- private Map<String, Object> metadata;
+ //{"resource_id": "23b55841eedd41e99d5f3f32149ca086", "timestamp": "2013-03-03T15:19:00", "project_id": "23b55841eedd41e99d5f3f32149ca086", "user_id": null, "metadata": {}}
+
+ @JsonProperty("resource_id")
+ private String resource;
+
+ private String timestamp;
+
+ @JsonProperty("project_id")
+ private String project;
+
+ @JsonProperty("user_id")
+ private String user;
+
+ private Map<String, Object> metadata;
- public String getResource() {
- return resource;
- }
+ public String getResource() {
+ return resource;
+ }
- public String getTimestamp() {
- return timestamp;
- }
+ public String getTimestamp() {
+ return timestamp;
+ }
- public String getProject() {
- return project;
- }
+ public String getProject() {
+ return project;
+ }
- public String getUser() {
- return user;
- }
+ public String getUser() {
+ return user;
+ }
- public Map<String, Object> getMetadata() {
- return metadata;
- }
+ public Map<String, Object> getMetadata() {
+ return metadata;
+ }
- @Override
- public String toString() {
- return "Resource [resource=" + resource + ", timestamp=" + timestamp
- + ", project=" + project + ", user=" + user + ", metadata="
- + metadata + "]";
- }
-
+ @Override
+ public String toString() {
+ return "Resource [resource=" + resource + ", timestamp=" + timestamp
+ + ", project=" + project + ", user=" + user + ", metadata="
+ + metadata + "]";
+ }
+
}
diff --git a/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Sample.java b/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Sample.java
index 4092495..722b1a9 100644
--- a/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Sample.java
+++ b/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Sample.java
@@ -22,89 +22,89 @@ import org.codehaus.jackson.annotate.JsonProperty;
public class Sample {
- @JsonProperty("counter_type")
- private String counterType;
-
- @JsonProperty("counter_name")
- private String counterName;
-
- @JsonProperty("counter_unit")
- private String counterUnit;
-
- @JsonProperty("counter_volume")
- private String counterVolume;
-
- private String source;
-
- @JsonProperty("project_id")
- private String project;
-
- @JsonProperty("user_id")
- private String user;
-
- @JsonProperty("resource_id")
- private String resource;
-
- private String timestamp;
-
- @JsonProperty("message_id")
- private String message;
-
- @JsonProperty("resource_metadata")
- private Map<String, Object> metadata;
-
- public String getCounterType() {
- return counterType;
- }
-
- public String getCounterName() {
- return counterName;
- }
-
- public String getCounterUnit() {
- return counterUnit;
- }
-
- public String getCounterVolume() {
- return counterVolume;
- }
-
- public String getSource() {
- return source;
- }
-
- public String getProject() {
- return project;
- }
-
- public String getUser() {
- return user;
- }
-
- public String getResource() {
- return resource;
- }
-
- public String getTimestamp() {
- return timestamp;
- }
-
- public String getMessage() {
- return message;
- }
-
- public Map<String, Object> getMetadata() {
- return metadata;
- }
-
- @Override
- public String toString() {
- return "Sample [counterType=" + counterType + ", counterName="
- + counterName + ", counterUnit=" + counterUnit
- + ", counterVolume=" + counterVolume + ", source=" + source
- + ", project=" + project + ", user=" + user + ", resource="
- + resource + ", timestamp=" + timestamp + ", message="
- + message + ", metadata=" + metadata + "]";
- }
-
+ @JsonProperty("counter_type")
+ private String counterType;
+
+ @JsonProperty("counter_name")
+ private String counterName;
+
+ @JsonProperty("counter_unit")
+ private String counterUnit;
+
+ @JsonProperty("counter_volume")
+ private String counterVolume;
+
+ private String source;
+
+ @JsonProperty("project_id")
+ private String project;
+
+ @JsonProperty("user_id")
+ private String user;
+
+ @JsonProperty("resource_id")
+ private String resource;
+
+ private String timestamp;
+
+ @JsonProperty("message_id")
+ private String message;
+
+ @JsonProperty("resource_metadata")
+ private Map<String, Object> metadata;
+
+ public String getCounterType() {
+ return counterType;
+ }
+
+ public String getCounterName() {
+ return counterName;
+ }
+
+ public String getCounterUnit() {
+ return counterUnit;
+ }
+
+ public String getCounterVolume() {
+ return counterVolume;
+ }
+
+ public String getSource() {
+ return source;
+ }
+
+ public String getProject() {
+ return project;
+ }
+
+ public String getUser() {
+ return user;
+ }
+
+ public String getResource() {
+ return resource;
+ }
+
+ public String getTimestamp() {
+ return timestamp;
+ }
+
+ public String getMessage() {
+ return message;
+ }
+
+ public Map<String, Object> getMetadata() {
+ return metadata;
+ }
+
+ @Override
+ public String toString() {
+ return "Sample [counterType=" + counterType + ", counterName="
+ + counterName + ", counterUnit=" + counterUnit
+ + ", counterVolume=" + counterVolume + ", source=" + source
+ + ", project=" + project + ", user=" + user + ", resource="
+ + resource + ", timestamp=" + timestamp + ", message="
+ + message + ", metadata=" + metadata + "]";
+ }
+
}
diff --git a/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Statistics.java b/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Statistics.java
index 163b799..c741abc 100644
--- a/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Statistics.java
+++ b/ceilometer-model/src/main/java/com/woorea/openstack/ceilometer/v2/model/Statistics.java
@@ -21,84 +21,84 @@ import java.math.BigDecimal;
import org.codehaus.jackson.annotate.JsonProperty;
public class Statistics {
-
- private BigDecimal avg;
-
- private BigDecimal count;
-
- private BigDecimal duration;
-
- @JsonProperty("duration_start")
- private String durationStart;
-
- @JsonProperty("duration_end")
- private String durationEnd;
-
- private BigDecimal max;
-
- private BigDecimal min;
-
- private BigDecimal period;
-
- @JsonProperty("period_start")
- private String periodStart;
-
- @JsonProperty("period_end")
- private String periodEnd;
-
- private BigDecimal sum;
-
- public BigDecimal getAvg() {
- return avg;
- }
-
- public BigDecimal getCount() {
- return count;
- }
-
- public BigDecimal getDuration() {
- return duration;
- }
-
- public String getDurationStart() {
- return durationStart;
- }
-
- public String getDurationEnd() {
- return durationEnd;
- }
-
- public BigDecimal getMax() {
- return max;
- }
-
- public BigDecimal getMin() {
- return min;
- }
-
- public BigDecimal getPeriod() {
- return period;
- }
-
- public String getPeriodStart() {
- return periodStart;
- }
-
- public String getPeriodEnd() {
- return periodEnd;
- }
-
- public BigDecimal getSum() {
- return sum;
- }
-
- @Override
- public String toString() {
- return "Statistics [avg=" + avg + ", count=" + count + ", duration="
- + duration + ", durationStart=" + durationStart
- + ", durationEnd=" + durationEnd + ", max=" + max + ", min="
- + min + ", period=" + period + ", periodStart=" + periodStart
- + ", periodEnd=" + periodEnd + ", sum=" + sum + "]";
- }
-
+
+ private BigDecimal avg;
+
+ private BigDecimal count;
+
+ private BigDecimal duration;
+
+ @JsonProperty("duration_start")
+ private String durationStart;
+
+ @JsonProperty("duration_end")
+ private String durationEnd;
+
+ private BigDecimal max;
+
+ private BigDecimal min;
+
+ private BigDecimal period;
+
+ @JsonProperty("period_start")
+ private String periodStart;
+
+ @JsonProperty("period_end")
+ private String periodEnd;
+
+ private BigDecimal sum;
+
+ public BigDecimal getAvg() {
+ return avg;
+ }
+
+ public BigDecimal getCount() {
+ return count;
+ }
+
+ public BigDecimal getDuration() {
+ return duration;
+ }
+
+ public String getDurationStart() {
+ return durationStart;
+ }
+
+ public String getDurationEnd() {
+ return durationEnd;
+ }
+
+ public BigDecimal getMax() {
+ return max;
+ }
+
+ public BigDecimal getMin() {
+ return min;
+ }
+
+ public BigDecimal getPeriod() {
+ return period;
+ }
+
+ public String getPeriodStart() {
+ return periodStart;
+ }
+
+ public String getPeriodEnd() {
+ return periodEnd;
+ }
+
+ public BigDecimal getSum() {
+ return sum;
+ }
+
+ @Override
+ public String toString() {
+ return "Statistics [avg=" + avg + ", count=" + count + ", duration="
+ + duration + ", durationStart=" + durationStart
+ + ", durationEnd=" + durationEnd + ", max=" + max + ", min="
+ + min + ", period=" + period + ", periodStart=" + periodStart
+ + ", periodEnd=" + periodEnd + ", sum=" + sum + "]";
+ }
+
}