Class GitPullRequestEntity
- java.lang.Object
-
- io.jenkins.plugins.tuleap_api.client.internals.entities.GitPullRequestEntity
-
- All Implemented Interfaces:
GitPullRequest
public class GitPullRequestEntity extends Object implements GitPullRequest
-
-
Constructor Summary
Constructors Constructor Description GitPullRequestEntity(String id, String title, GitRepositoryReferenceEntity sourceRepository, GitRepositoryReferenceEntity destinationRepository, String sourceBranch, String destinationBranch, GitHeadEntity head)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDestinationBranch()
GitRepositoryReference
getDestinationRepository()
GitHead
getHead()
String
getId()
String
getSourceBranch()
GitRepositoryReference
getSourceRepository()
String
getTitle()
-
-
-
Constructor Detail
-
GitPullRequestEntity
public GitPullRequestEntity(String id, String title, GitRepositoryReferenceEntity sourceRepository, GitRepositoryReferenceEntity destinationRepository, String sourceBranch, String destinationBranch, GitHeadEntity head)
-
-
Method Detail
-
getId
public String getId()
- Specified by:
getId
in interfaceGitPullRequest
-
getTitle
public String getTitle()
- Specified by:
getTitle
in interfaceGitPullRequest
-
getSourceRepository
public GitRepositoryReference getSourceRepository()
- Specified by:
getSourceRepository
in interfaceGitPullRequest
-
getDestinationRepository
public GitRepositoryReference getDestinationRepository()
- Specified by:
getDestinationRepository
in interfaceGitPullRequest
-
getSourceBranch
public String getSourceBranch()
- Specified by:
getSourceBranch
in interfaceGitPullRequest
-
getDestinationBranch
public String getDestinationBranch()
- Specified by:
getDestinationBranch
in interfaceGitPullRequest
-
getHead
public GitHead getHead()
- Specified by:
getHead
in interfaceGitPullRequest
-
-