Package org.ardverk.dht.rsrc

Examples of org.ardverk.dht.rsrc.FileValue


    if (!contentFile.exists()) {
      return null;
    }
   
    return new Response(StatusLine.OK, context,
        new FileValue(contentFile));
  }
View Full Code Here


  @Override
  public Value get(Contact src, Key key) {
    String name = createFileName(key);
    File file = createStoreFile(name);
    if (file.exists()) {
      return new FileValue(file);
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.ardverk.dht.rsrc.FileValue

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.