diff --git a/aliyun-java-sdk-quickbi-public/ChangeLog.txt b/aliyun-java-sdk-quickbi-public/ChangeLog.txt
index 48b22e74d4..43d11ed641 100644
--- a/aliyun-java-sdk-quickbi-public/ChangeLog.txt
+++ b/aliyun-java-sdk-quickbi-public/ChangeLog.txt
@@ -1,3 +1,7 @@
+2024-12-30 Version: 2.1.12
+- Add SmartQ APIs.
+- Add GetDataSourceConnectionInfo, QueryDatasetList APIs.
+
2024-11-26 Version: 2.1.11
- Add SmartqQueryAbility api.
diff --git a/aliyun-java-sdk-quickbi-public/pom.xml b/aliyun-java-sdk-quickbi-public/pom.xml
index 63e039c555..c66030ab37 100644
--- a/aliyun-java-sdk-quickbi-public/pom.xml
+++ b/aliyun-java-sdk-quickbi-public/pom.xml
@@ -4,7 +4,7 @@
com.aliyun
aliyun-java-sdk-quickbi-public
jar
- 2.1.11
+ 2.1.12
aliyun-java-sdk-quickbi-public
http://www.aliyun.com
Aliyun Open API SDK for Java
diff --git a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/CancelAuthorizationMenuRequest.java b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/CancelAuthorizationMenuRequest.java
index 4f3b2b65a9..1f75bd1f92 100644
--- a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/CancelAuthorizationMenuRequest.java
+++ b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/CancelAuthorizationMenuRequest.java
@@ -26,11 +26,11 @@ public class CancelAuthorizationMenuRequest extends RpcAcsRequest {
+
+
+ private String dsId;
+ public GetDataSourceConnectionInfoRequest() {
+ super("quickbi-public", "2022-01-01", "GetDataSourceConnectionInfo", "2.2.0");
+ setProtocol(ProtocolType.HTTPS);
+ setMethod(MethodType.POST);
+ }
+
+ public String getDsId() {
+ return this.dsId;
+ }
+
+ public void setDsId(String dsId) {
+ this.dsId = dsId;
+ if(dsId != null){
+ putQueryParameter("DsId", dsId);
+ }
+ }
+
+ @Override
+ public Class getResponseClass() {
+ return GetDataSourceConnectionInfoResponse.class;
+ }
+
+}
diff --git a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/GetDataSourceConnectionInfoResponse.java b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/GetDataSourceConnectionInfoResponse.java
new file mode 100644
index 0000000000..cb38362471
--- /dev/null
+++ b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/GetDataSourceConnectionInfoResponse.java
@@ -0,0 +1,229 @@
+/*
+ * 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
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.aliyuncs.quickbi_public.model.v20220101;
+
+import com.aliyuncs.AcsResponse;
+import com.aliyuncs.quickbi_public.transform.v20220101.GetDataSourceConnectionInfoResponseUnmarshaller;
+import com.aliyuncs.transform.UnmarshallerContext;
+
+/**
+ * @author auto create
+ * @version
+ */
+public class GetDataSourceConnectionInfoResponse extends AcsResponse {
+
+ private String requestId;
+
+ private Boolean success;
+
+ private Result result;
+
+ public String getRequestId() {
+ return this.requestId;
+ }
+
+ public void setRequestId(String requestId) {
+ this.requestId = requestId;
+ }
+
+ public Boolean getSuccess() {
+ return this.success;
+ }
+
+ public void setSuccess(Boolean success) {
+ this.success = success;
+ }
+
+ public Result getResult() {
+ return this.result;
+ }
+
+ public void setResult(Result result) {
+ this.result = result;
+ }
+
+ public static class Result {
+
+ private String address;
+
+ private String authLevel;
+
+ private String creatorId;
+
+ private String dsId;
+
+ private String dsType;
+
+ private String dsVersion;
+
+ private String instance;
+
+ private String instanceId;
+
+ private String modifyUser;
+
+ private Boolean noSasl;
+
+ private String parentDsType;
+
+ private String port;
+
+ private String project;
+
+ private String schema;
+
+ private String showName;
+
+ private String workspaceId;
+
+ public String getAddress() {
+ return this.address;
+ }
+
+ public void setAddress(String address) {
+ this.address = address;
+ }
+
+ public String getAuthLevel() {
+ return this.authLevel;
+ }
+
+ public void setAuthLevel(String authLevel) {
+ this.authLevel = authLevel;
+ }
+
+ public String getCreatorId() {
+ return this.creatorId;
+ }
+
+ public void setCreatorId(String creatorId) {
+ this.creatorId = creatorId;
+ }
+
+ public String getDsId() {
+ return this.dsId;
+ }
+
+ public void setDsId(String dsId) {
+ this.dsId = dsId;
+ }
+
+ public String getDsType() {
+ return this.dsType;
+ }
+
+ public void setDsType(String dsType) {
+ this.dsType = dsType;
+ }
+
+ public String getDsVersion() {
+ return this.dsVersion;
+ }
+
+ public void setDsVersion(String dsVersion) {
+ this.dsVersion = dsVersion;
+ }
+
+ public String getInstance() {
+ return this.instance;
+ }
+
+ public void setInstance(String instance) {
+ this.instance = instance;
+ }
+
+ public String getInstanceId() {
+ return this.instanceId;
+ }
+
+ public void setInstanceId(String instanceId) {
+ this.instanceId = instanceId;
+ }
+
+ public String getModifyUser() {
+ return this.modifyUser;
+ }
+
+ public void setModifyUser(String modifyUser) {
+ this.modifyUser = modifyUser;
+ }
+
+ public Boolean getNoSasl() {
+ return this.noSasl;
+ }
+
+ public void setNoSasl(Boolean noSasl) {
+ this.noSasl = noSasl;
+ }
+
+ public String getParentDsType() {
+ return this.parentDsType;
+ }
+
+ public void setParentDsType(String parentDsType) {
+ this.parentDsType = parentDsType;
+ }
+
+ public String getPort() {
+ return this.port;
+ }
+
+ public void setPort(String port) {
+ this.port = port;
+ }
+
+ public String getProject() {
+ return this.project;
+ }
+
+ public void setProject(String project) {
+ this.project = project;
+ }
+
+ public String getSchema() {
+ return this.schema;
+ }
+
+ public void setSchema(String schema) {
+ this.schema = schema;
+ }
+
+ public String getShowName() {
+ return this.showName;
+ }
+
+ public void setShowName(String showName) {
+ this.showName = showName;
+ }
+
+ public String getWorkspaceId() {
+ return this.workspaceId;
+ }
+
+ public void setWorkspaceId(String workspaceId) {
+ this.workspaceId = workspaceId;
+ }
+ }
+
+ @Override
+ public GetDataSourceConnectionInfoResponse getInstance(UnmarshallerContext context) {
+ return GetDataSourceConnectionInfoResponseUnmarshaller.unmarshall(this, context);
+ }
+
+ @Override
+ public boolean checkShowJsonItemName() {
+ return false;
+ }
+}
diff --git a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/ListDataSourceRequest.java b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/ListDataSourceRequest.java
new file mode 100644
index 0000000000..998094c3cb
--- /dev/null
+++ b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/ListDataSourceRequest.java
@@ -0,0 +1,64 @@
+/*
+ * 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
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.aliyuncs.quickbi_public.model.v20220101;
+
+import com.aliyuncs.RpcAcsRequest;
+import com.aliyuncs.http.ProtocolType;
+import com.aliyuncs.http.MethodType;
+
+/**
+ * @author auto create
+ * @version
+ */
+public class ListDataSourceRequest extends RpcAcsRequest {
+
+
+ private String dsType;
+
+ private String workspaceId;
+ public ListDataSourceRequest() {
+ super("quickbi-public", "2022-01-01", "ListDataSource", "2.2.0");
+ setProtocol(ProtocolType.HTTPS);
+ setMethod(MethodType.POST);
+ }
+
+ public String getDsType() {
+ return this.dsType;
+ }
+
+ public void setDsType(String dsType) {
+ this.dsType = dsType;
+ if(dsType != null){
+ putQueryParameter("DsType", dsType);
+ }
+ }
+
+ public String getWorkspaceId() {
+ return this.workspaceId;
+ }
+
+ public void setWorkspaceId(String workspaceId) {
+ this.workspaceId = workspaceId;
+ if(workspaceId != null){
+ putQueryParameter("WorkspaceId", workspaceId);
+ }
+ }
+
+ @Override
+ public Class getResponseClass() {
+ return ListDataSourceResponse.class;
+ }
+
+}
diff --git a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/ListDataSourceResponse.java b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/ListDataSourceResponse.java
new file mode 100644
index 0000000000..0152e4fe4c
--- /dev/null
+++ b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/ListDataSourceResponse.java
@@ -0,0 +1,150 @@
+/*
+ * 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
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.aliyuncs.quickbi_public.model.v20220101;
+
+import java.util.List;
+import com.aliyuncs.AcsResponse;
+import com.aliyuncs.quickbi_public.transform.v20220101.ListDataSourceResponseUnmarshaller;
+import com.aliyuncs.transform.UnmarshallerContext;
+
+/**
+ * @author auto create
+ * @version
+ */
+public class ListDataSourceResponse extends AcsResponse {
+
+ private String requestId;
+
+ private Boolean success;
+
+ private List result;
+
+ public String getRequestId() {
+ return this.requestId;
+ }
+
+ public void setRequestId(String requestId) {
+ this.requestId = requestId;
+ }
+
+ public Boolean getSuccess() {
+ return this.success;
+ }
+
+ public void setSuccess(Boolean success) {
+ this.success = success;
+ }
+
+ public List getResult() {
+ return this.result;
+ }
+
+ public void setResult(List result) {
+ this.result = result;
+ }
+
+ public static class Data {
+
+ private String creatorId;
+
+ private String creatorName;
+
+ private String datasourceId;
+
+ private String gmtCreate;
+
+ private String gmtModified;
+
+ private String showName;
+
+ private String dsType;
+
+ private String parentDsType;
+
+ public String getCreatorId() {
+ return this.creatorId;
+ }
+
+ public void setCreatorId(String creatorId) {
+ this.creatorId = creatorId;
+ }
+
+ public String getCreatorName() {
+ return this.creatorName;
+ }
+
+ public void setCreatorName(String creatorName) {
+ this.creatorName = creatorName;
+ }
+
+ public String getDatasourceId() {
+ return this.datasourceId;
+ }
+
+ public void setDatasourceId(String datasourceId) {
+ this.datasourceId = datasourceId;
+ }
+
+ public String getGmtCreate() {
+ return this.gmtCreate;
+ }
+
+ public void setGmtCreate(String gmtCreate) {
+ this.gmtCreate = gmtCreate;
+ }
+
+ public String getGmtModified() {
+ return this.gmtModified;
+ }
+
+ public void setGmtModified(String gmtModified) {
+ this.gmtModified = gmtModified;
+ }
+
+ public String getShowName() {
+ return this.showName;
+ }
+
+ public void setShowName(String showName) {
+ this.showName = showName;
+ }
+
+ public String getDsType() {
+ return this.dsType;
+ }
+
+ public void setDsType(String dsType) {
+ this.dsType = dsType;
+ }
+
+ public String getParentDsType() {
+ return this.parentDsType;
+ }
+
+ public void setParentDsType(String parentDsType) {
+ this.parentDsType = parentDsType;
+ }
+ }
+
+ @Override
+ public ListDataSourceResponse getInstance(UnmarshallerContext context) {
+ return ListDataSourceResponseUnmarshaller.unmarshall(this, context);
+ }
+
+ @Override
+ public boolean checkShowJsonItemName() {
+ return false;
+ }
+}
diff --git a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryAuditLogResponse.java b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryAuditLogResponse.java
index 5d15555dd0..8f2aed6e1a 100644
--- a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryAuditLogResponse.java
+++ b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryAuditLogResponse.java
@@ -71,6 +71,8 @@ public static class LogApiResultModel {
private String workspaceId;
+ private String targetId;
+
public String getGmtCreate() {
return this.gmtCreate;
}
@@ -126,6 +128,14 @@ public String getWorkspaceId() {
public void setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
}
+
+ public String getTargetId() {
+ return this.targetId;
+ }
+
+ public void setTargetId(String targetId) {
+ this.targetId = targetId;
+ }
}
@Override
diff --git a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryDatasetSmartqStatusRequest.java b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryDatasetSmartqStatusRequest.java
new file mode 100644
index 0000000000..dd47f5385c
--- /dev/null
+++ b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryDatasetSmartqStatusRequest.java
@@ -0,0 +1,51 @@
+/*
+ * 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
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.aliyuncs.quickbi_public.model.v20220101;
+
+import com.aliyuncs.RpcAcsRequest;
+import com.aliyuncs.http.ProtocolType;
+import com.aliyuncs.http.MethodType;
+
+/**
+ * @author auto create
+ * @version
+ */
+public class QueryDatasetSmartqStatusRequest extends RpcAcsRequest {
+
+
+ private String cubeId;
+ public QueryDatasetSmartqStatusRequest() {
+ super("quickbi-public", "2022-01-01", "QueryDatasetSmartqStatus", "2.2.0");
+ setProtocol(ProtocolType.HTTPS);
+ setMethod(MethodType.POST);
+ }
+
+ public String getCubeId() {
+ return this.cubeId;
+ }
+
+ public void setCubeId(String cubeId) {
+ this.cubeId = cubeId;
+ if(cubeId != null){
+ putQueryParameter("CubeId", cubeId);
+ }
+ }
+
+ @Override
+ public Class getResponseClass() {
+ return QueryDatasetSmartqStatusResponse.class;
+ }
+
+}
diff --git a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryDatasetSmartqStatusResponse.java b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryDatasetSmartqStatusResponse.java
new file mode 100644
index 0000000000..900e43a37f
--- /dev/null
+++ b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryDatasetSmartqStatusResponse.java
@@ -0,0 +1,66 @@
+/*
+ * 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
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.aliyuncs.quickbi_public.model.v20220101;
+
+import com.aliyuncs.AcsResponse;
+import com.aliyuncs.quickbi_public.transform.v20220101.QueryDatasetSmartqStatusResponseUnmarshaller;
+import com.aliyuncs.transform.UnmarshallerContext;
+
+/**
+ * @author auto create
+ * @version
+ */
+public class QueryDatasetSmartqStatusResponse extends AcsResponse {
+
+ private String requestId;
+
+ private Boolean result;
+
+ private Boolean success;
+
+ public String getRequestId() {
+ return this.requestId;
+ }
+
+ public void setRequestId(String requestId) {
+ this.requestId = requestId;
+ }
+
+ public Boolean getResult() {
+ return this.result;
+ }
+
+ public void setResult(Boolean result) {
+ this.result = result;
+ }
+
+ public Boolean getSuccess() {
+ return this.success;
+ }
+
+ public void setSuccess(Boolean success) {
+ this.success = success;
+ }
+
+ @Override
+ public QueryDatasetSmartqStatusResponse getInstance(UnmarshallerContext context) {
+ return QueryDatasetSmartqStatusResponseUnmarshaller.unmarshall(this, context);
+ }
+
+ @Override
+ public boolean checkShowJsonItemName() {
+ return false;
+ }
+}
diff --git a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryLlmCubeWithThemeListByUserIdRequest.java b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryLlmCubeWithThemeListByUserIdRequest.java
new file mode 100644
index 0000000000..808a3de1b9
--- /dev/null
+++ b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryLlmCubeWithThemeListByUserIdRequest.java
@@ -0,0 +1,51 @@
+/*
+ * 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
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.aliyuncs.quickbi_public.model.v20220101;
+
+import com.aliyuncs.RpcAcsRequest;
+import com.aliyuncs.http.ProtocolType;
+import com.aliyuncs.http.MethodType;
+
+/**
+ * @author auto create
+ * @version
+ */
+public class QueryLlmCubeWithThemeListByUserIdRequest extends RpcAcsRequest {
+
+
+ private String userId;
+ public QueryLlmCubeWithThemeListByUserIdRequest() {
+ super("quickbi-public", "2022-01-01", "QueryLlmCubeWithThemeListByUserId", "2.2.0");
+ setProtocol(ProtocolType.HTTPS);
+ setMethod(MethodType.POST);
+ }
+
+ public String getUserId() {
+ return this.userId;
+ }
+
+ public void setUserId(String userId) {
+ this.userId = userId;
+ if(userId != null){
+ putQueryParameter("UserId", userId);
+ }
+ }
+
+ @Override
+ public Class getResponseClass() {
+ return QueryLlmCubeWithThemeListByUserIdResponse.class;
+ }
+
+}
diff --git a/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryLlmCubeWithThemeListByUserIdResponse.java b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryLlmCubeWithThemeListByUserIdResponse.java
new file mode 100644
index 0000000000..d4d37b2410
--- /dev/null
+++ b/aliyun-java-sdk-quickbi-public/src/main/java/com/aliyuncs/quickbi_public/model/v20220101/QueryLlmCubeWithThemeListByUserIdResponse.java
@@ -0,0 +1,90 @@
+/*
+ * 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
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.aliyuncs.quickbi_public.model.v20220101;
+
+import java.util.Map;
+import com.aliyuncs.AcsResponse;
+import com.aliyuncs.quickbi_public.transform.v20220101.QueryLlmCubeWithThemeListByUserIdResponseUnmarshaller;
+import com.aliyuncs.transform.UnmarshallerContext;
+
+/**
+ * @author auto create
+ * @version
+ */
+public class QueryLlmCubeWithThemeListByUserIdResponse extends AcsResponse {
+
+ private String requestId;
+
+ private Boolean success;
+
+ private Result result;
+
+ public String getRequestId() {
+ return this.requestId;
+ }
+
+ public void setRequestId(String requestId) {
+ this.requestId = requestId;
+ }
+
+ public Boolean getSuccess() {
+ return this.success;
+ }
+
+ public void setSuccess(Boolean success) {
+ this.success = success;
+ }
+
+ public Result getResult() {
+ return this.result;
+ }
+
+ public void setResult(Result result) {
+ this.result = result;
+ }
+
+ public static class Result {
+
+ private Map