Package com.googlecode.lucene.gae.datastore.file

Examples of com.googlecode.lucene.gae.datastore.file.DataStoreFile


  }

  @Override
  public void touchFile(String name) throws IOException {

    DataStoreFile file = getFileByName(name, false);

    file.touch();

    repository.put(file);

  }
View Full Code Here


  }

  private DataStoreFile getFileByName(String name, boolean full) throws FileNotFoundException {

    DataStoreFile file = repository.get(name, full);

    if (file == null) {
      throw new FileNotFoundException(name);
    }
View Full Code Here

TOP

Related Classes of com.googlecode.lucene.gae.datastore.file.DataStoreFile

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.