summaryrefslogtreecommitdiffstats
path: root/cinder-client/src/main/java/com/woorea/openstack/cinder/SchedulerStatsExtension.java
diff options
context:
space:
mode:
Diffstat (limited to 'cinder-client/src/main/java/com/woorea/openstack/cinder/SchedulerStatsExtension.java')
-rwxr-xr-xcinder-client/src/main/java/com/woorea/openstack/cinder/SchedulerStatsExtension.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/cinder-client/src/main/java/com/woorea/openstack/cinder/SchedulerStatsExtension.java b/cinder-client/src/main/java/com/woorea/openstack/cinder/SchedulerStatsExtension.java
index 09ad3ac..36ea91d 100755
--- a/cinder-client/src/main/java/com/woorea/openstack/cinder/SchedulerStatsExtension.java
+++ b/cinder-client/src/main/java/com/woorea/openstack/cinder/SchedulerStatsExtension.java
@@ -1,4 +1,5 @@
-/* ============LICENSE_START=======================================================
+/*-
+ * ============LICENSE_START=======================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
@@ -12,6 +13,7 @@
* limitations under the License.
* ============LICENSE_END=========================================================
*/
+
package com.woorea.openstack.cinder;
import com.woorea.openstack.base.client.HttpMethod;
@@ -37,7 +39,9 @@ public class SchedulerStatsExtension {
public class List extends OpenStackRequest<Pools> {
public List(boolean detail) {
- super(CLIENT, HttpMethod.GET, (new StringBuilder("/scheduler-stats/get_pools")).append(detail ? "?detail=True":""), null, Pools.class);
+ super(CLIENT, HttpMethod.GET,
+ (new StringBuilder("/scheduler-stats/get_pools")).append(detail ? "?detail=True" : ""), null,
+ Pools.class);
}
}