blob: bd5a4c6e367a6c1c08062ff19002ed3e0104183f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation 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:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.ptp.proxy.runtime.command;
import org.eclipse.ptp.proxy.command.IProxyCommand;
public interface IProxyRuntimeCommand extends IProxyCommand {
/*
* Command IDs
*/
public static final int INIT = 1;
public static final int MODEL_DEF = 2;
public static final int START_EVENTS = 3;
public static final int STOP_EVENTS = 4;
public static final int SUBMIT_JOB = 5;
public static final int TERMINATE_JOB = 6;
}