bundle/src/main/java/org/apache/karaf/cellar/bundle/shell/BlockCommand.java [85:111]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                if (in) {
                    System.out.println("INBOUND:");
                    if (whitelist) {
                        System.out.print("\twhitelist: ");
                        Set<String> list = support.getListEntries(Configurations.WHITELIST, groupName, Constants.CATEGORY, EventType.INBOUND);
                        System.out.println(list.toString());
                    }
                    if (blacklist) {
                        System.out.print("\tblacklist: ");
                        Set<String> list = support.getListEntries(Configurations.BLACKLIST, groupName, Constants.CATEGORY, EventType.INBOUND);
                        System.out.println(list.toString());
                    }
                }
                if (out) {
                    System.out.println("OUTBOUND:");
                    if (whitelist) {
                        System.out.print("\twhitelist: ");
                        Set<String> list = support.getListEntries(Configurations.WHITELIST, groupName, Constants.CATEGORY, EventType.OUTBOUND);
                        System.out.println(list.toString());
                    }
                    if (blacklist) {
                        System.out.print("\tblacklist: ");
                        Set<String> list = support.getListEntries(Configurations.BLACKLIST, groupName, Constants.CATEGORY, EventType.OUTBOUND);
                        System.out.println(list.toString());
                    }
                }
            } else {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



features/src/main/java/org/apache/karaf/cellar/features/shell/BlockCommand.java [78:104]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if (in) {
                System.out.println("INBOUND:");
                if (whitelist) {
                    System.out.print("\twhitelist: ");
                    Set<String> list = support.getListEntries(Configurations.WHITELIST, groupName, Constants.CATEGORY, EventType.INBOUND);
                    System.out.println(list.toString());
                }
                if (blacklist) {
                    System.out.print("\tblacklist: ");
                    Set<String> list = support.getListEntries(Configurations.BLACKLIST, groupName, Constants.CATEGORY, EventType.INBOUND);
                    System.out.println(list.toString());
                }
            }
            if (out) {
                System.out.println("OUTBOUND:");
                if (whitelist) {
                    System.out.print("\twhitelist: ");
                    Set<String> list = support.getListEntries(Configurations.WHITELIST, groupName, Constants.CATEGORY, EventType.OUTBOUND);
                    System.out.println(list.toString());
                }
                if (blacklist) {
                    System.out.print("\tblacklist: ");
                    Set<String> list = support.getListEntries(Configurations.BLACKLIST, groupName, Constants.CATEGORY, EventType.OUTBOUND);
                    System.out.println(list.toString());
                }
            }
        } else {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



