Package freenet.clients.fcp.ClientGet

Examples of freenet.clients.fcp.ClientGet.ReturnType


   * @throws NotAllowedException
   * @throws IOException
   */
  public void makePersistentGlobalRequest(FreenetURI fetchURI, boolean filterData, String expectedMimeType, String persistenceTypeString, String returnTypeString, boolean realTimeFlag, File downloadsDir) throws NotAllowedException, IOException {
    boolean persistence = persistenceTypeString.equalsIgnoreCase("reboot");
    ReturnType returnType = ReturnType.valueOf(returnTypeString.toUpperCase());
    File returnFilename = null;
    if(returnType == ReturnType.DISK) {
      returnFilename = makeReturnFilename(fetchURI, expectedMimeType, downloadsDir);
    }
//    public ClientGet(PersistentRequestClient globalClient, FreenetURI uri, boolean dsOnly, boolean ignoreDS,
View Full Code Here

TOP

Related Classes of freenet.clients.fcp.ClientGet.ReturnType

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.