public class

CommitsCommandParameters

extends AbstractCommandParameters
java.lang.Object
   ↳ com.atlassian.stash.util.BuilderSupport
     ↳ com.atlassian.stash.scm.AbstractCommandParameters
       ↳ com.atlassian.stash.scm.CommitsCommandParameters

Summary

Nested Classes
class CommitsCommandParameters.Builder  
[Expand]
Inherited Fields
From class com.atlassian.stash.util.BuilderSupport
Protected Constructors
@Deprecated CommitsCommandParameters(Set<String> includes, Set<String> excludes, Set<String> paths, boolean all, boolean traversing)
This constructor is deprecated. This constructor will be made private in 3.0. Instances of this class should be created using the CommitsCommandParameters.Builder, which is more robust for handling API changes across versions.
Public Methods
@Nonnull Set<String> getExcludes()
@Nonnull Set<String> getIncludes()
@Nonnull Set<String> getPaths()
@Nonnull Repository getSecondaryRepository()
boolean hasExcludes()
boolean hasIncludes()
boolean hasPaths()
boolean hasSecondaryRepository()
boolean isAll()
boolean isTraversing()
@Nonnull ChangesetContext toContext()
Assembles a ChangesetContext from these parameters.
[Expand]
Inherited Methods
From class com.atlassian.stash.util.BuilderSupport
From class java.lang.Object

Protected Constructors

@Deprecated protected CommitsCommandParameters (Set<String> includes, Set<String> excludes, Set<String> paths, boolean all, boolean traversing)

This constructor is deprecated.
This constructor will be made private in 3.0. Instances of this class should be created using the CommitsCommandParameters.Builder, which is more robust for handling API changes across versions.

Public Methods

@Nonnull public Set<String> getExcludes ()

@Nonnull public Set<String> getIncludes ()

@Nonnull public Set<String> getPaths ()

@Nonnull public Repository getSecondaryRepository ()

public boolean hasExcludes ()

public boolean hasIncludes ()

public boolean hasPaths ()

public boolean hasSecondaryRepository ()

public boolean isAll ()

public boolean isTraversing ()

@Nonnull public ChangesetContext toContext ()

Assembles a ChangesetContext from these parameters.

Returns