/**
 * Copyright 2008-2009 DRIVER PROJECT (Bielefeld University)
 * Original author: Marek Imialek <marek.imialek at uni-bielefeld.de>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package eu.dnetlib.contract.mocks;

import java.util.List;

import javax.xml.ws.wsaddressing.W3CEndpointReference;

import eu.dnetlib.data.utility.download.DownloadServiceException;
import eu.dnetlib.data.utility.download.IDownloadService;

/**
 * @author <a href="mailto:marek.imialek at uni-bielefeld.de">Marek Imialek</a>
 *
 */
public class mockDownloadService implements IDownloadService {

	public mockISStorage isStorage;
	
	
	/**
	 * @param mockISStorage the mockISStorage to set
	 */
	public void setIsStorage(mockISStorage isStorage) {
		this.isStorage = isStorage;
	}

	/**
	 * @return the mockISStorage
	 */
	public mockISStorage getIsStorage() {
		return isStorage;
	}

	@Override
	public String downloadURL(String url) throws DownloadServiceException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public W3CEndpointReference downloadURLs(List<String> urls)
			throws DownloadServiceException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public W3CEndpointReference downloadURLsFromRS(W3CEndpointReference epr)
			throws DownloadServiceException {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public String identify() {
		// TODO Auto-generated method stub
		return null;
	}

}
