Skip to content

Commit c35ebc8

Browse files
Gupta, SuryaGupta, Surya
authored andcommitted
CSTACKEX-29 Make the alignment proper
1 parent 85da607 commit c35ebc8

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

plugins/storage/volume/ontap/src/main/java/org/apache/cloudstack/storage/feign/client/AggregateFeignClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
@Lazy
1616
@FeignClient(name="AggregateClient", url="https://{clusterIP}/api/storage/aggregates", configuration = FeignConfiguration.class)
1717
public interface AggregateFeignClient {
18+
1819
@RequestMapping(method=RequestMethod.GET)
1920
AggregateResponse getAggregateResponse(URI baseURL, @RequestHeader("Authorization") String header);
2021

plugins/storage/volume/ontap/src/main/java/org/apache/cloudstack/storage/feign/client/ClusterFeignClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
@FeignClient(name="ClusterClient", url="https://{clusterIP}/api/cluster", configuration = FeignConfiguration.class)
1313
public interface ClusterFeignClient {
14+
1415
@RequestMapping(method= RequestMethod.GET)
1516
Cluster getCluster(URI baseURL, @RequestHeader("Authorization") String header, @RequestHeader("return_records") boolean value);
1617

plugins/storage/volume/ontap/src/main/java/org/apache/cloudstack/storage/feign/client/SvmFeignClient.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
1212

1313
@FeignClient(name = "SvmClient", url = "https://{clusterIP}/api/svm/svms", configuration = FeignConfiguration.class)
1414
public interface SvmFeignClient {
15+
1516
@RequestMapping(method = RequestMethod.GET)
1617
SvmResponse getSvmResponse(URI baseURL, @RequestHeader("Authorization") String header);
18+
1719
@RequestMapping(method = RequestMethod.GET, value = "/{uuid}")
1820
Svm getSvmByUUID(URI baseURL, @RequestHeader("Authorization") String header);
1921

0 commit comments

Comments
 (0)