Daniel Erez has uploaded a new change for review. Change subject: webadmin: UI-Plugins - VM IP address mapping ......................................................................
webadmin: UI-Plugins - VM IP address mapping Add mapping to VM IP address, EntityObject: Map 'getVmIp' to 'ipaddress' property (IP Address column). Change-Id: I24b1208031d454d1774a43ddb0cccd7a85f23d2e Signed-off-by: Daniel Erez <[email protected]> --- M frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/plugin/entity/EntityObject.java 1 file changed, 1 insertion(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/21/11421/1 diff --git a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/plugin/entity/EntityObject.java b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/plugin/entity/EntityObject.java index e2df351..fb0163e 100644 --- a/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/plugin/entity/EntityObject.java +++ b/frontend/webadmin/modules/webadmin/src/main/java/org/ovirt/engine/ui/webadmin/plugin/entity/EntityObject.java @@ -77,6 +77,7 @@ // VirtualMachine else if (businessEntity instanceof VM) { obj.setProperty("name", ((VM) businessEntity).getVmName()); //$NON-NLS-1$ + obj.setProperty("ipaddress", ((VM) businessEntity).getVmIp()); //$NON-NLS-1$ } return obj; -- To view, visit http://gerrit.ovirt.org/11421 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I24b1208031d454d1774a43ddb0cccd7a85f23d2e Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Daniel Erez <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
