Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tm.te.tcf.core/src/org/eclipse/tm/te/tcf/core/interfaces/ITransportTypes.java')
-rw-r--r--target_explorer/plugins/org.eclipse.tm.te.tcf.core/src/org/eclipse/tm/te/tcf/core/interfaces/ITransportTypes.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/target_explorer/plugins/org.eclipse.tm.te.tcf.core/src/org/eclipse/tm/te/tcf/core/interfaces/ITransportTypes.java b/target_explorer/plugins/org.eclipse.tm.te.tcf.core/src/org/eclipse/tm/te/tcf/core/interfaces/ITransportTypes.java
deleted file mode 100644
index aff014710..000000000
--- a/target_explorer/plugins/org.eclipse.tm.te.tcf.core/src/org/eclipse/tm/te/tcf/core/interfaces/ITransportTypes.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011 Wind River Systems, Inc. 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:
- * Wind River Systems - initial API and implementation
- *******************************************************************************/
-package org.eclipse.tm.te.tcf.core.interfaces;
-
-/**
- * Declaration of the TCF transport type constants.
- * <p>
- * The constants defined in this interface needs to be kept in sync with
- * the TCF framework transport manager implementation. Probably the interface
- * should be moved to the core TCF framework plug-in's some when.
- */
-public interface ITransportTypes {
-
- /**
- * Transport type "TCP".
- */
- public static final String TRANSPORT_TYPE_TCP = "TCP"; //$NON-NLS-1$
-
- /**
- * Transport type "SSL".
- */
- public static final String TRANSPORT_TYPE_SSL = "SSL"; //$NON-NLS-1$
-
- /**
- * Transport type "PIPE".
- */
- public static final String TRANSPORT_TYPE_PIPE = "PIPE"; //$NON-NLS-1$
-
- /**
- * Transport type "Loop".
- */
- public static final String TRANSPORT_TYPE_LOOP = "Loop"; //$NON-NLS-1$
-
- /**
- * Custom transport type.
- */
- public static final String TRANSPORT_TYPE_CUSTOM = "Custom"; //$NON-NLS-1$
-}

Back to the top