blob: 312b10f9f35f517a98fc7d918f7ea2689a19b320 [file] [log] [blame]
package org.eclipse.ptp.internal.rtsystem.proxy.command;
import org.eclipse.ptp.core.proxy.IProxyClient;
import org.eclipse.ptp.core.proxy.command.AbstractProxyCommand;
import org.eclipse.ptp.rtsystem.proxy.command.IProxyRuntimeCommand;
public class ProxyRuntimeSubmitJobCommand extends AbstractProxyCommand implements IProxyRuntimeCommand {
public ProxyRuntimeSubmitJobCommand(IProxyClient client, String[] args) {
super(client);
addArguments(args);
}
public int getCommandID() {
return SUBMIT_JOB;
}
}