Rename 'is_visible_to_all' in GroupOptionsInfo to 'visible_to_all'

In the input for creating a new group this field is named
'visible_to_all'. Change the name of the field in GroupOptionsInfo to
be consistent.

Change-Id: I7689b734dad256b6db98d246948ce507c5486e92
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2013-02-05 14:09:45 +01:00
parent aa266ff49b
commit f04fc9c946
6 changed files with 16 additions and 16 deletions

View File

@@ -89,7 +89,7 @@ public class ListGroupsCommand extends BaseCommand {
formatter.addColumn(o != null ? o.getName() : "n/a");
formatter.addColumn(o != null ? o.getGroupUUID().get() : "");
formatter.addColumn(Boolean.toString(Objects.firstNonNull(
info.options.isVisibleToAll, Boolean.FALSE)));
info.options.visibleToAll, Boolean.FALSE)));
}
formatter.nextLine();
}