Interface IReviewDelegator
-
- All Known Subinterfaces:
IOptionsServer
,IServer
,IStreamingServer
- All Known Implementing Classes:
NtsServerImpl
,OneShotServerImpl
,ReviewDelegator
,RpcServer
,Server
public interface IReviewDelegator
Interface to handle the Review command.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<IReviewChangelist>
getReviewChangelists(GetReviewChangelistsOptions opts)
Get a list of all submitted changelists equal or above a provided changelist number that have not been reviewed before.
-
-
-
Method Detail
-
getReviewChangelists
java.util.List<IReviewChangelist> getReviewChangelists(GetReviewChangelistsOptions opts) throws P4JavaException
Get a list of all submitted changelists equal or above a provided changelist number that have not been reviewed before.If only the 'changelistId' option is provided, return a list of changelists that have not been reviewed before, equal or above the specified changelist#.
If only the 'counter' option is provided, return a list of changelists that have not been reviewed before, above the specified counter's changelist#.
If both the 'changelistId' and 'counter' options are specified, 'p4 review' sets the counter to that changelist# and produces no output. This functionality has been superceded by the 'p4 counter' command. The user must have permission to set counters.
- Parameters:
opts
- GetReviewChangelistsOptions object describing optional parameters; if null, no options are set.- Returns:
- non-null but possibly empty list of IReviewChangelist objects; note that these objects will have null update and access fields.
- Throws:
P4JavaException
- if any error occurs in the processing of this method.- Since:
- 2012.2
-
-