int getRootPriority()

in src/main/java/org/apache/sling/installer/provider/jcr/impl/FolderNameFilter.java [192:199]


    int getRootPriority(String path) {
    	for(Map.Entry<String, Integer> e : rootPriorities.entrySet()) {
    		if(path.startsWith(e.getKey())) {
    			return e.getValue().intValue();
    		}
    	}
    	return 0;
    }