public class

AbstractChangesCommandParameters

extends AbstractCommandParameters
java.lang.Object
   ↳ com.atlassian.bitbucket.util.BuilderSupport
     ↳ com.atlassian.bitbucket.scm.AbstractCommandParameters
       ↳ com.atlassian.bitbucket.scm.AbstractChangesCommandParameters
Known Direct Subclasses

Summary

Nested Classes
class AbstractChangesCommandParameters.AbstractBuilder<B extends AbstractBuilder<B>>  
[Expand]
Inherited Fields
From class com.atlassian.bitbucket.util.BuilderSupport
Protected Constructors
AbstractChangesCommandParameters(AbstractBuilder<?> builder)
@Deprecated AbstractChangesCommandParameters(int maxChanges, Set<String> paths)
This constructor is deprecated. in 5.4 for removal in 6.0. Use AbstractChangesCommandParameters(AbstractBuilder) instead.
Public Methods
int getMaxChanges()
@Nonnull Set<String> getPaths()
boolean hasPaths()
Protected Methods
@Nonnull ChangeContext toContext(ChangeContext.Builder builder)
Appends common attributes to the provided ChangeContext.Builder before building it and returning the final ChangeContext.
[Expand]
Inherited Methods
From class com.atlassian.bitbucket.util.BuilderSupport
From class java.lang.Object

Protected Constructors

protected AbstractChangesCommandParameters (AbstractBuilder<?> builder)

Parameters
builder a builder containing the assembled parameters

@Deprecated protected AbstractChangesCommandParameters (int maxChanges, Set<String> paths)

This constructor is deprecated.
in 5.4 for removal in 6.0. Use AbstractChangesCommandParameters(AbstractBuilder) instead.

Parameters
maxChanges the maximum number of changes to process
paths a set containing zero or more paths to include changes for

Public Methods

public int getMaxChanges ()

@Nonnull public Set<String> getPaths ()

public boolean hasPaths ()

Protected Methods

@Nonnull protected ChangeContext toContext (ChangeContext.Builder builder)

Appends common attributes to the provided ChangeContext.Builder before building it and returning the final ChangeContext.

Parameters
builder the starting builder to apply common attributes to before building
Returns