core/servicemix-core/src/main/java/org/apache/servicemix/jbi/view/DotViewEndpointListener.java [117:131]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            String color = "lightgray";
            if (epname.startsWith("internal")) {
                epname = epname.substring(10);
                color = "#6699ff";
            } else if (epname.startsWith("external")) {
                epname = epname.substring(10);
                color = "#66ccff";
            } else if (epname.startsWith("dynamic")) {
                epname = epname.substring(9);
                color = "#6666ff";
            } else if (epname.startsWith("linked")) {
                epname = epname.substring(8);
                color = "#66ffff";
            } else {
                color = "#f3f3f3";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/servicemix-core/src/main/java/org/apache/servicemix/jbi/view/DotViewFlowListener.java [105:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                String color = "lightgray";
                if (epname.startsWith("internal")) {
                    epname = epname.substring(10);
                    color = "#6699ff";
                } else if (epname.startsWith("external")) {
                    epname = epname.substring(10);
                    color = "#66ccff";
                } else if (epname.startsWith("dynamic")) {
                    epname = epname.substring(9);
                    color = "#6666ff";
                } else if (epname.startsWith("linked")) {
                    epname = epname.substring(8);
                    color = "#66ffff";
                } else {
                    color = "#f3f3f3";
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



