blob: 88bc12aaeb10f29b61cbfb1d689eb98d5951173d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.discovery.core.util;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URI;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
/**
* @author Steffen Pingel
*/
public interface ITransportService {
public abstract IStatus download(URI uri, OutputStream out, IProgressMonitor monitor);
public abstract InputStream stream(URI uri, IProgressMonitor monitor) throws IOException, CoreException;
public abstract long getLastModified(URI location, IProgressMonitor monitor) throws CoreException, IOException;
}