/**
  * Overridable method for resolving a class path resource which allows environments like OSGi to
  * customize resolution.
  */
 protected List<URL> getResources(String path) throws java.io.IOException {
   return Classes.getResources(path, getClass());
 }