Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3bf684c2d06ea84534779cd709c8ef8033ec4aef (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
/****************************************************************************
 * Copyright (c) 2007 IBM, Composent Inc. 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/
 *
 * Contributors:
 *    Composent, Inc. - initial API and implementation
 *
 * SPDX-License-Identifier: EPL-2.0
 *****************************************************************************/

package org.eclipse.ecf.internal.provider.filetransfer.httpclient4;

import org.eclipse.osgi.util.NLS;

/**
 * 
 */
public class Messages extends NLS {
	private static final String BUNDLE_NAME = "org.eclipse.ecf.internal.provider.filetransfer.httpclient4.messages"; //$NON-NLS-1$
	public static String FileTransferNamespace_Http_Protocol;
	public static String FileTransferNamespace_Https_Protocol;
	public static String HttpClientRetrieveFileTransfer_CONNECTING_JOB_NAME;
	public static String HttpClientRetrieveFileTransfer_CONNECTING_TASK_NAME;
	public static String HttpClientRetrieveFileTransfer_Proxy_Auth_Required;
	public static String HttpClientRetrieveFileTransfer_Unauthorized;
	public static String HttpClientRetrieveFileTransfer_Username_Prefix;
	public static String HttpClientRetrieveFileTransfer_RESUME_START_POSITION_LESS_THAN_ZERO;
	public static String HttpClientRetrieveFileTransfer_ERROR_GENERAL_RESPONSE_CODE;
	public static String HttpClientRetrieveFileTransfer_EXCEPITION_INVALID_LAST_MODIFIED_FROM_SERVER;
	public static String HttpClientRetrieveFileTransfer_EXCEPTION_FILE_MODIFIED_SINCE_LAST_ACCESS;
	public static String HttpClientRetrieveFileTransfer_RESUME_ERROR_END_POSITION_LESS_THAN_START;
	public static String HttpClientRetrieveFileTransfer_EXCEPTION_COULD_NOT_CONNECT;
	public static String HttpClientRetrieveFileTransfer_INVALID_LAST_MODIFIED_TIME;
	public static String HttpClientRetrieveFileTransfer_INVALID_SERVER_RESPONSE_TO_PARTIAL_RANGE_REQUEST;
	public static String HttpClientRetrieveFileTransfer_RESUME_START_ERROR;

	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
	}

	private Messages() {
		// Generated
	}
}

Back to the top