summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/feed/FeedFile.java
blob: fce50d08f15537493f67fc21d35da3d4b2938a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package de.podfetcher.feed;

/** Represents a component of a Feed that has to be downloaded*/
public abstract class FeedFile extends FeedComponent {
	protected String file_url;
	protected String download_url;
	protected long downloadId;		// temporary id given by the Android DownloadManager
	
	public String getFile_url() {
		return file_url;
	}
	public void setFile_url(String file_url) {
		this.file_url = file_url;
	}
	public String getDownload_url() {
		return download_url;
	}
	public void setDownload_url(String download_url) {
		this.download_url = download_url;
	}

	public long getDownloadId() {
		return downloadId;
	}

	public void setDownloadId(long downloadId) {
		this.downloadId = downloadId;
	}
}