Skip to main content
summaryrefslogtreecommitdiffstats
blob: bffa8a716a20d9f21a3ce5fc31c111ac75fc677c (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
/*******************************************************************************
 * Copyright (c) 2004, 2009 Tasktop Technologies 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:
 *     Tasktop Technologies - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.internal.tasks.bugs;

/**
 * @author Steffen Pingel
 */
public class IRepositoryConstants {

	@Deprecated
	public static final String BRANDING = "branding"; //$NON-NLS-1$

	public static final String COMPONENT = "component"; //$NON-NLS-1$

	public static final String CONNECTOR_KIND = "repositoryKind"; //$NON-NLS-1$

	public static final String DESCRIPTION = "description"; //$NON-NLS-1$

	public static final String PRODUCT = "product"; //$NON-NLS-1$

	@Deprecated
	public static final String PRODUCT_CATEGORY = "productCategory"; //$NON-NLS-1$

	@Deprecated
	public static final String PRODUCT_DESCRIPTION = "productDescription"; //$NON-NLS-1$

	@Deprecated
	public static final String PRODUCT_NAME = "productName"; //$NON-NLS-1$

	@Deprecated
	public static final String PRODUCT_TITLE = "productTitle"; //$NON-NLS-1$

	@Deprecated
	public static final String REPOSITORY_KIND = "repositoryKind"; //$NON-NLS-1$

	public static final String REPOSITORY_URL = "repositoryUrl"; //$NON-NLS-1$

	public static final String SEVERITY = "severity"; //$NON-NLS-1$

	public static final String VERSION = "version"; //$NON-NLS-1$

	public static final String SUMMARY = "summary"; //$NON-NLS-1$

	public static final String PRIORITY = "priority"; //$NON-NLS-1$

	public static final String MAPPING_COMPLETE = "org.eclipse.mylyn.tasks.bugs.mappingComplete"; //$NON-NLS-1$

}

Back to the top