* Prepares the file system manager. This implementation does nothing.
*/
public void prepare(DefaultFileSystemManager manager)
throws Exception
{
manager.addProvider("res", new ResourceFileProvider());
manager.addProvider("file", new UrlFileProvider());
manager.addProvider("jar", new JarFileProvider());
}