Class DtPullResult
- java.lang.Object
-
- com._1c.g5.v8.dt.compare.git.pull.DtPullResult
-
public class DtPullResult extends Object
Encapsulates the result of pull command with a rebase mode. Based onPullResult
-
-
Constructor Summary
Constructors Constructor Description DtPullResult(org.eclipse.jgit.transport.FetchResult fetchResult, String fetchedFrom, org.eclipse.jgit.api.MergeResult mergeResult)
Creates a new instance with the given parameters.DtPullResult(org.eclipse.jgit.transport.FetchResult fetchResult, String fetchedFrom, org.eclipse.jgit.api.RebaseResult rebaseResult)
Creates a new instance with the given parameters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFetchedFrom()
Get name of the remote configuration from which fetch was triedorg.eclipse.jgit.transport.FetchResult
getFetchResult()
Get fetch resultorg.eclipse.jgit.api.MergeResult
getMergeResult()
Get merge resultorg.eclipse.jgit.api.RebaseResult
getRebaseResult()
Get rebase resultboolean
isSuccessful()
Whether the pull was successfulString
toString()
-
-
-
Constructor Detail
-
DtPullResult
public DtPullResult(org.eclipse.jgit.transport.FetchResult fetchResult, String fetchedFrom, org.eclipse.jgit.api.RebaseResult rebaseResult)
Creates a new instance with the given parameters.- Parameters:
fetchResult
- fetch result, can benull
fetchedFrom
- the name of the remote configuration from which fetch was tried, cannot benull
rebaseResult
- rebase result, can benull
-
DtPullResult
public DtPullResult(org.eclipse.jgit.transport.FetchResult fetchResult, String fetchedFrom, org.eclipse.jgit.api.MergeResult mergeResult)
Creates a new instance with the given parameters.- Parameters:
fetchResult
- fetch result, can benull
fetchedFrom
- the name of the remote configuration from which fetch was tried, cannot benull
mergeResult
- merge result, can benull
-
-
Method Detail
-
getFetchResult
public org.eclipse.jgit.transport.FetchResult getFetchResult()
Get fetch result- Returns:
- the fetch result, or
null
-
getMergeResult
public org.eclipse.jgit.api.MergeResult getMergeResult()
Get merge result- Returns:
- the merge result, or
null
-
getRebaseResult
public org.eclipse.jgit.api.RebaseResult getRebaseResult()
Get rebase result- Returns:
- the rebase result, or
null
-
getFetchedFrom
public String getFetchedFrom()
Get name of the remote configuration from which fetch was tried- Returns:
- the name of the remote configuration from which fetch was tried, never
null
-
isSuccessful
public boolean isSuccessful()
Whether the pull was successful- Returns:
- whether the pull was successful
-
-