sureshanaparti commented on a change in pull request #4640:
URL: https://github.com/apache/cloudstack/pull/4640#discussion_r572617424
##########
File path:
core/src/main/java/com/cloud/agent/api/GetStoragePoolCapabilitiesAnswer.java
##########
@@ -0,0 +1,19 @@
+package com.cloud.agent.api;
+
+public class GetStoragePoolCapabilitiesAnswer extends Answer {
+ public GetStoragePoolCapabilitiesAnswer(GetStoragePoolCapabilitiesCommand
cmd) {
+ super(cmd);
+
+ poolInfo = new StoragePoolInfo();
+ }
+
+ public StoragePoolInfo getPoolInfo() {
+ return poolInfo;
+ }
+
+ public void setPoolInfo(StoragePoolInfo poolInfo) {
+ this.poolInfo = poolInfo;
+ }
+
+ private StoragePoolInfo poolInfo;
Review comment:
I think capability details map should ok in the response.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]