blob: 4e6e15ca5e9b0d9037cd3ff50a4ec45e0102305b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 IBM Corporation.
* 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.rm.pbs.core.rtsystem;
import org.eclipse.ptp.proxy.runtime.event.ProxyRuntimeEventFactory;
import org.eclipse.ptp.rm.pbs.core.rmsystem.IPBSResourceManagerConfiguration;
import org.eclipse.ptp.rm.remote.core.AbstractRemoteProxyRuntimeClient;
public class PBSProxyRuntimeClient extends AbstractRemoteProxyRuntimeClient {
public PBSProxyRuntimeClient(IPBSResourceManagerConfiguration config,
int baseModelId) {
super(config, baseModelId, new PBSProxyCommandFactory(config), new ProxyRuntimeEventFactory());
}
}