3 * Copyright (C) 2006 David Roden
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 package de.todesbaum.util.freenet.fcp2;
23 * A {@link FileEntry} that reads the content from a file on the disk.
25 * @author David Roden <droden@gmail.com>
28 public class DiskFileEntry extends FileEntry {
30 /** The local file name. */
31 private final String localFilename;
34 * Creates a new {@link FileEntry} with the specified name and content type
35 * that is read from the file specified by <code>localFilename</code>.
38 * The name of the file
40 * The content type of the file
41 * @param localFilename
42 * The name of the local file that holds the content of the file
45 public DiskFileEntry(String filename, String contentType, String localFilename) {
46 super(filename, contentType);
47 this.localFilename = localFilename;
54 public String getName() {
59 * Returns the name of the local file that holds the content for this file.
61 * @return The name of the local file
63 public String getLocalFilename() {