Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5493c6ffad3f60238fdc4a1aa2bc99e7071b82ef (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
/********************************************************************************
 * Copyright (c) 2008 Motorola Inc. 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
 *
 * Initial Contributor:
 * Otavio Ferranti (Motorola)
 *
 * Contributors:
 * {Name} (company) - description of contribution.
 ********************************************************************************/

package org.eclipse.sequoyah.device.linuxtools.network;

/**
 * @author Otavio Ferranti
 */
public interface IConstants {

	public enum EventCode { EVT_PROVIDER_CONNECT_FINISHED,
							EVT_PROVIDER_CONNECT_ERROR,
							EVT_PROVIDER_LOGIN_FINISHED,
							EVT_PROVIDER_LOGIN_ERROR,
							EVT_PROVIDER_SENDCOMMAND_FINISHED,
							EVT_PROVIDER_SENDCOMMAND_ERROR,
							EVT_PROVIDER_SENDDATA_FINISHED,
							EVT_PROVIDER_SENDDATA_ERROR,
							EVT_PROVIDER_DISCONNECT_FINISHED,
							EVT_PROCESSOR_GATHERDATA_FINISHED,
							EVT_PROCESSOR_GATHERDATA_ERROR,
							EVT_TOOL_REFRESH_VIEW,
							EVT_TOOL_CONNECT_FINISHED,
							EVT_TOOL_LOGIN_FINISHED,
							EVT_TOOL_DISCONNECT_FINISHED };

	public enum OperationCode { SUCCESS,
								LOGIN_REQUIRED,
								LOGIN_FAILED,
								UNEXPECTED_RESULT };
								
	public enum CommandCode { FETCH_FILE };

}

Back to the top