Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5279878b5fc12502e7bbec13be9dd783c13cce86 (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
/*******************************************************************************
 * Copyright (c) 2015, 2018 Frank Becker and others.
 * 
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     Frank Becker - initial API and implementation
 *******************************************************************************/

package org.eclipse.linuxtools.internal.mylyn.osio.rest.ui.provisional;

public class QueryPageDetails {
	private final boolean needsTitle;

	private final String queryUrlPart;

	private final String pageTitle;

	private final String pageDescription;

	private final String urlPattern;

	private final String queryAttributeName;

	public QueryPageDetails(boolean needsTitle, String queryUrlPart, String pageTitle, String pageDescription,
			String urlPattern, String queryAttributeName) {
		super();
		this.needsTitle = needsTitle;
		this.queryUrlPart = queryUrlPart;
		this.pageTitle = pageTitle;
		this.pageDescription = pageDescription;
		this.urlPattern = urlPattern;
		this.queryAttributeName = queryAttributeName;
	}

	public boolean needsTitle() {
		return needsTitle;
	}

	public String getQueryUrlPart() {
		return queryUrlPart;
	}

	public String getPageTitle() {
		return pageTitle;
	}

	public String getPageDescription() {
		return pageDescription;
	}

	public String getUrlPattern() {
		return urlPattern;
	}

	public String getQueryAttributeName() {
		return queryAttributeName;
	}

}

Back to the top