blob: d2c60a83701ea922d858763c3299e7f8e1f183b9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.team.internal.ccvs.core.client;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.team.internal.ccvs.core.CVSException;
import org.eclipse.team.internal.ccvs.core.client.Session;
/**
* Handles a "Valid-requests" response from the CVS server.
* <p>
* Suppose as a result of performing a command the CVS server responds
* as follows:<br>
* <pre>
* [...]
* Valid-requests ci co update Root Directory Valid-responses Argument ...\n
* [...]
* </pre>
* Then we remember the set of valid requests for this session in
* preparation for isValidRequests queries.
* </p>
*/
class ValidRequestsHandler extends ResponseHandler {
public String getResponseID() {
return "Valid-requests"; //$NON-NLS-1$
}
public void handle(Session session, String validRequests,
IProgressMonitor monitor) throws CVSException {
// remember the set of valid requests for this session
session.setValidRequests(validRequests);
}
}