Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 15a315892a32671a73f6b3deae73dfa98b5136e4 (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
/*******************************************************************************
 * Copyright (c) 2014, 2015 Raymond Augé 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:
 *     Raymond Augé <raymond.auge@liferay.com> - Bug 436698
 ******************************************************************************/

package org.eclipse.equinox.http.servlet.internal.util;

/**
 * @author Raymond Augé
 */
public class Const {

	public static final String AMP = "&"; //$NON-NLS-1$
	public static final String BLANK = ""; //$NON-NLS-1$
	public static final String CLOSE_PAREN = ")"; //$NON-NLS-1$
	public static final String DOT = "."; //$NON-NLS-1$
	public static final String[] EMPTY_ARRAY = new String[0];
	public static final String EQUAL = "="; //$NON-NLS-1$
	public static final String FILTER_NAME = "filter-name"; //$NON-NLS-1$
	public static final String FILTER_PRIORITY = "filter-priority"; //$NON-NLS-1$
	public static final String HTTP = "http"; //$NON-NLS-1$
	public static final String LOCALHOST = "localhost"; //$NON-NLS-1$
	public static final String OPEN_PAREN = "("; //$NON-NLS-1$
	public static final String SERVLET_NAME = "servlet-name"; //$NON-NLS-1$
	public static final String SLASH = "/"; //$NON-NLS-1$
	public static final String SLASH_STAR = "/*"; //$NON-NLS-1$
	public static final String SLASH_STAR_DOT = "/*."; //$NON-NLS-1$
	public static final String STAR_DOT = "*."; //$NON-NLS-1$
	public static final String EQUINOX_LEGACY_TCCL_PROP = "equinox.legacy.tccl"; //$NON-NLS-1$
	public static final String EQUINOX_LEGACY_CONTEXT_SELECT = "equinox.context.select"; //$NON-NLS-1$
	public static final String EQUINOX_LEGACY_CONTEXT_HELPER = "equinox.legacy.context.helper"; //$NON-NLS-1$
	public static final String EQUINOX_LEGACY_HTTP_CONTEXT_INITIATING_ID = "equinox.legacy.http.context.initiating.id"; //$NON-NLS-1$
	public static final String UTF8 = "UTF-8"; //$NON-NLS-1$

}

Back to the top