-
Type:
Feature Request
-
Status: Resolved (View Workflow)
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: 7.0.0.Beta2
-
Fix Version/s: 7.0.0.CR1
-
Component/s: Domain Management
-
Labels:None
I actually try to get the result of a deployment and unfortunately fail so far.
I proceed in the following manner:
I add an deployment, get the action that was created for it, and then
try to retrieve the result of this action:
ServerDeploymentManager manager = ServerDeploymentManager.Factory.create(client); InitialDeploymentPlanBuilder builder = manager.newDeploymentPlan(); builder = builder.add(file.getName(), file).addDeploy(); DeploymentAction action = builder.getLastAction(); DeploymentPlan plan = builder.build(); Future<ServerDeploymentPlanResult> planResult = manager.execute(plan); ServerDeploymentPlanResult result = resultFuture.get(timeout,TimeUnit.MILLISECONDS); ServerDeploymentActionResult actionResult = result.getDeploymentActionResult(action.getId());
ActionResult is always null.
Behind the scenes the server deployment plan seems to always hold an empty map of
actionResults (DeploymentPlanResultImpl#actionResults).