blob: 2c2544390dcb90991036f6085877d9eb881a6e58 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.update.internal.core;
import java.io.*;
import java.net.*;
import org.eclipse.core.runtime.*;
public class FileResponse implements Response {
protected URL url;
protected long lastModified;
public FileResponse(URL url) {
this.url = url;
}
public InputStream getInputStream() throws IOException {
return url.openStream();
}
public InputStream getInputStream(IProgressMonitor monitor)
throws IOException, CoreException {
return getInputStream();
}
public long getContentLength() {
return 0;
}
public int getStatusCode() {
return IStatusCodes.HTTP_OK;
}
public String getStatusMessage() {
return "";
}
public long getLastModified() {
if (lastModified == 0) {
File f = new File(url.getFile());
if (f.isDirectory())
f = new File(f, "site.xml");
lastModified = f.lastModified();
}
return lastModified;
}
}