final List<Property> descriptions = getDeploymentDescriptions(ctx, names).asPropertyList();
for(Property prop : descriptions) {
final ModelNode step = prop.getValue();
if(step.hasDefined(Util.RESULT)) {
final ModelNode result = step.get(Util.RESULT);
table.addCell(Util.NAME, result.get(Util.NAME).asString());
table.addCell(Util.RUNTIME_NAME, result.get(Util.RUNTIME_NAME).asString());
if(result.has(Util.ENABLED)) {
table.addCell(Util.ENABLED, result.get(Util.ENABLED).asString());
}
if(result.has(Util.STATUS)) {