Skip to main content
summaryrefslogtreecommitdiffstats
blob: ef3370aea0b140662c715c58ef8e927e27b3da2b (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
/*******************************************************************************
 * Copyright (c) 2004 - 2006 University Of British Columbia and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     University Of British Columbia - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylar.tasks.core;

import java.io.File;

import org.eclipse.core.runtime.CoreException;

/**
 * @author Mik Kersten
 * @author Rob Elves
 */
public interface IAttachmentHandler {

	public void uploadAttachment(TaskRepository repository, AbstractRepositoryTask task, String comment,
			String description, File file, String contentType, boolean isPatch) throws CoreException;

	public void downloadAttachment(TaskRepository taskRepository, String taskId, RepositoryAttachment attachment, File file) throws CoreException;

	public byte[] getAttachmentData(TaskRepository repository, String taskId) throws CoreException;
	
	//public InputStream getAttachmentInputStream(TaskRepository repository, String taskId) throws CoreException;
	
	public boolean canUploadAttachment(TaskRepository repository, AbstractRepositoryTask task);
	
	public boolean canDownloadAttachment(TaskRepository repository, AbstractRepositoryTask task);

	public boolean canDeprecate(TaskRepository repository, RepositoryAttachment attachment);

	/** To deprecate, change the attribute on the RepositoryAttachment and pass to this method */	
	public void updateAttachment(TaskRepository repository, RepositoryAttachment attachment) throws CoreException;

}

Back to the top