bundle/src/main/java/org/apache/karaf/cellar/bundle/management/internal/CellarBundleMBeanImpl.java [464:493]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            List<ExtendedBundleState> bundles = new ArrayList<ExtendedBundleState>(allBundles.values());
            Collections.sort(bundles, new BundleStateComparator());

            for (ExtendedBundleState bundle : bundles) {
                String status;
                switch (bundle.getStatus()) {
                    case Bundle.INSTALLED:
                        status = "Installed";
                        break;
                    case Bundle.RESOLVED:
                        status = "Resolved";
                        break;
                    case Bundle.ACTIVE:
                        status = "Active";
                        break;
                    case Bundle.STARTING:
                        status = "Starting";
                        break;
                    case Bundle.STOPPING:
                        status = "Stopping";
                        break;
                    case Bundle.UNINSTALLED:
                        status = "Uninstalled";
                        break;
                    default:
                        status = "";
                        break;
                }

                String located = "";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bundle/src/main/java/org/apache/karaf/cellar/bundle/shell/ListBundleCommand.java [94:123]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                List<ExtendedBundleState> bundles = new ArrayList<ExtendedBundleState>(allBundles.values());
                Collections.sort(bundles, new BundleStateComparator());

                for (ExtendedBundleState bundle : bundles) {
                    String status;
                    switch (bundle.getStatus()) {
                        case Bundle.INSTALLED:
                            status = "Installed";
                            break;
                        case Bundle.RESOLVED:
                            status = "Resolved";
                            break;
                        case Bundle.ACTIVE:
                            status = "Active";
                            break;
                        case Bundle.STARTING:
                            status = "Starting";
                            break;
                        case Bundle.STOPPING:
                            status = "Stopping";
                            break;
                        case Bundle.UNINSTALLED:
                            status = "Uninstalled";
                            break;
                        default:
                            status = "";
                            break;
                    }

                    String located = "";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



