Skip to main content
summaryrefslogtreecommitdiffstats
blob: 627b9dffb9dae18ce5a358f656b70ba42131d63d (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*******************************************************************************
 * 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.internal.tasks.core;

import org.eclipse.mylar.tasks.core.AbstractRepositoryTask;

/**
 * Task used with generic web-based repositories
 * 
 * @author Eugene Kuleshov
 */
public class WebTask extends AbstractRepositoryTask {

	// TODO: move
	public static final String REPOSITORY_TYPE = "web";
	
	private final String id;

	private final String taskPrefix;

	private final String repositoryUrl;
	
	private final String repsitoryType;

	public WebTask(String id, String label, String taskPrefix, String repositoryUrl, String repsitoryType) {
		super(taskPrefix + id, label, false);
		this.id = id;
		this.taskPrefix = taskPrefix;
		this.repositoryUrl = repositoryUrl;
		this.repsitoryType = repsitoryType;
		setUrl(taskPrefix + id);
	}

	public String getId() {
		return this.id;
	}
	
	public String getTaskPrefix() {
		return this.taskPrefix;
	}

	@Override
	public String getRepositoryKind() {
		return repsitoryType;
	}
	
	@Override
	public String getRepositoryUrl() {
		return repositoryUrl;
	}
	
	@Override
	public String getIdLabel() {
		return null;
	}

}

Back to the top