blob: e90c9b9fe7112d90a6d1e37fe8cdf91303039114 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* IBM - Initial API and implementation
******************************************************************************/
package org.eclipse.team.internal.ccvs.core.client;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.team.internal.ccvs.core.CVSException;
class ValidRequests extends Request {
protected ValidRequests() { }
protected String getRequestId() {
return "valid-requests"; //$NON-NLS-1$
}
public IStatus execute(Session session, IProgressMonitor monitor) throws CVSException {
return executeRequest(session, null, monitor);
}
}