All Packages Class Hierarchy This Package Previous Next Index
Interface org.w3c.jigsaw.cvs.CvsHandlerInterface
- public interface CvsHandlerInterface
-
perform(Request, String, String)
- Perform action on the given cvs entry, on behalf of the given client.
-
perform(Request, String, String, String)
- Perform action on the given cvs entry, on behalf of the given client.
-
perform(Request, String, String[], String[])
- Perform action on the given cvs entry, on behalf of the given client.
-
perform(Request, String, String[], String[], String)
- Perform action on the given cvs entry, on behalf of the given client.
perform
public abstract void perform(Request request,
String action,
String regexp,
String comment) throws ProtocolException
- Perform action on the given cvs entry, on behalf of the given client.
- Parameters:
- request - The request to handle.
- action - The action to perform.
- regexp - The regular expression
- comment - Some comments describing your changes.
- Throws: ProtocolException
- If the action couldn't be performed.
perform
public abstract void perform(Request request,
String action,
String regexp) throws ProtocolException
- Perform action on the given cvs entry, on behalf of the given client.
- Parameters:
- request - The request to handle.
- action - The action to perform.
- regexp - The regular expression
- Throws: ProtocolException
- If the action couldn't be performed.
perform
public abstract void perform(Request request,
String action,
String names[],
String revs[]) throws ProtocolException
- Perform action on the given cvs entry, on behalf of the given client.
- Parameters:
- request - The request to handle.
- action - The action to perform.
- entry - The entry to act on.
- direntries - the directories to act on
- Throws: ProtocolException
- If the action couldn't be performed.
perform
public abstract void perform(Request request,
String action,
String names[],
String revs[],
String comment) throws ProtocolException
- Perform action on the given cvs entry, on behalf of the given client.
- Parameters:
- request - The request that triggered the processing.
- action - The action to perform.
- entry - The entry to act on.
- direntries - the directories to act on
- comment - Some comments describing your changes.
- Throws: ProtocolException
- If the action couldn't be performed.
All Packages Class Hierarchy This Package Previous Next Index