com.atlassian.fisheye.spi.services
Interface RecentChangesetsService.QueryParameters.Builder

Enclosing interface:
RecentChangesetsService.QueryParameters

public static interface RecentChangesetsService.QueryParameters.Builder


Method Summary
 RecentChangesetsService.QueryParameters.Builder beforeCsid(java.lang.String csid)
          All changesets returned will fall ordinally before the specified changeset.
 RecentChangesetsService.QueryParameters build()
           
 RecentChangesetsService.QueryParameters.Builder comment(java.lang.String comment)
          A partial or complete changeset comment to be matched Note that if p4JobFixed AND comment are specified, the search clauses will be treated as a logical OR
 RecentChangesetsService.QueryParameters.Builder committer(java.lang.String name)
          The VCS committer (a.k.a.
 RecentChangesetsService.QueryParameters.Builder maxReturn(java.lang.Integer maxReturn)
          Maximum number of changesets to return
 RecentChangesetsService.QueryParameters.Builder p4JobFixed(java.lang.String p4JobKey)
          A Perforce job key that the target changeset(s) are marked as fixing.
 RecentChangesetsService.QueryParameters.Builder path(java.lang.String path)
          The repository path to constrain the query by (subdirectories are included)
 RecentChangesetsService.QueryParameters.Builder path(java.lang.String path, boolean recursive)
          The repository path to constrain the query by.
 

Method Detail

build

RecentChangesetsService.QueryParameters build()
Returns:
an initialised RecentChangesetsService.QueryParameters

path

RecentChangesetsService.QueryParameters.Builder path(java.lang.String path)
The repository path to constrain the query by (subdirectories are included)


path

RecentChangesetsService.QueryParameters.Builder path(java.lang.String path,
                                                     boolean recursive)
The repository path to constrain the query by. If the recursive argument is false, only changesets containing a revision that matches the path exactly will be returned.


committer

RecentChangesetsService.QueryParameters.Builder committer(java.lang.String name)
The VCS committer (a.k.a. author) to constrain the query by


comment

RecentChangesetsService.QueryParameters.Builder comment(java.lang.String comment)
A partial or complete changeset comment to be matched Note that if p4JobFixed AND comment are specified, the search clauses will be treated as a logical OR


p4JobFixed

RecentChangesetsService.QueryParameters.Builder p4JobFixed(java.lang.String p4JobKey)
A Perforce job key that the target changeset(s) are marked as fixing. Note that if p4JobFixed AND comment are specified, the search clauses will be treated as a logical OR


maxReturn

RecentChangesetsService.QueryParameters.Builder maxReturn(java.lang.Integer maxReturn)
Maximum number of changesets to return


beforeCsid

RecentChangesetsService.QueryParameters.Builder beforeCsid(java.lang.String csid)
All changesets returned will fall ordinally before the specified changeset.