Package org.jboss.fresh.vfs

Examples of org.jboss.fresh.vfs.VFSFileHandlerFactory


        String device = (String) info.getAttributes().get("file-handler");
        if(device != null) {
          try {
            RegistryContext ctx = new RegistryContext();
            VFSFileHandlerFactory f = (VFSFileHandlerFactory) ctx.lookup(device);
            delegate = f.getInputStream(info);
          } catch(IOException ex) {
            throw ex;
          } catch(Exception ex) {
            IOException exout = new IOException("File handler initialization failed: ");
            exout.initCause(ex);
View Full Code Here

TOP

Related Classes of org.jboss.fresh.vfs.VFSFileHandlerFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.