Interface IVerifyDelegator
-
- All Known Subinterfaces:
IOptionsServer
,IServer
,IStreamingServer
- All Known Implementing Classes:
NtsServerImpl
,OneShotServerImpl
,RpcServer
,Server
,VerifyDelegator
public interface IVerifyDelegator
Interface to handle the Verify command.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<IExtendedFileSpec>
verifyFiles(java.util.List<IFileSpec> fileSpecs, VerifyFilesOptions opts)
Verify that the server archives are intact.
-
-
-
Method Detail
-
verifyFiles
java.util.List<IExtendedFileSpec> verifyFiles(java.util.List<IFileSpec> fileSpecs, VerifyFilesOptions opts) throws P4JavaException
Verify that the server archives are intact.This method require that the user be an operator or have 'admin' access, which is granted by 'p4 protect'.
- Parameters:
fileSpecs
- filespecs to be processed; if null or empty, an empty list is returned.opts
- VerifyFilesOptions object describing optional parameters; if null, no options are set.- Returns:
- non-null (but possibly empty) list of files with revision-specific information and an MD5 digest of the revision's contents.
- Throws:
P4JavaException
- if an error occurs processing this method and its parameters.- Since:
- 2014.1
-
-