aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/bitbucket/BitbucketPullRequestResponseValueRepository.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/bitbucket/BitbucketPullRequestResponseValueRepository.java')
-rw-r--r--src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/bitbucket/BitbucketPullRequestResponseValueRepository.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/bitbucket/BitbucketPullRequestResponseValueRepository.java b/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/bitbucket/BitbucketPullRequestResponseValueRepository.java
deleted file mode 100644
index f97c010..0000000
--- a/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/bitbucket/BitbucketPullRequestResponseValueRepository.java
+++ /dev/null
@@ -1,46 +0,0 @@
-package bitbucketpullrequestbuilder.bitbucketpullrequestbuilder.bitbucket;
-
-import org.codehaus.jackson.annotate.JsonIgnoreProperties;
-import org.codehaus.jackson.annotate.JsonProperty;
-
-/**
- * Created by nishio
- */
-@JsonIgnoreProperties(ignoreUnknown = true)
-public class BitbucketPullRequestResponseValueRepository {
- private BitbucketPullRequestResponseValueRepositoryRepository repository;
- private BitbucketPullRequestResponseValueRepositoryBranch branch;
- private BitbucketPullRequestResponseValueRepositoryCommit commit;
-
- @JsonProperty("repository")
- public BitbucketPullRequestResponseValueRepositoryRepository getRepository() {
- return repository;
- }
-
- @JsonProperty("repository")
- public void setRepository(BitbucketPullRequestResponseValueRepositoryRepository repository) {
- this.repository = repository;
- }
-
- @JsonProperty("branch")
- public BitbucketPullRequestResponseValueRepositoryBranch getBranch() {
- return branch;
- }
-
- @JsonProperty("branch")
- public void setBranch(BitbucketPullRequestResponseValueRepositoryBranch branch) {
- this.branch = branch;
- }
-
- @JsonProperty("commit")
- public BitbucketPullRequestResponseValueRepositoryCommit getCommit() {
- return commit;
- }
-
- @JsonProperty("commit")
- public void setCommit(BitbucketPullRequestResponseValueRepositoryCommit commit) {
- this.commit = commit;
- }
-}
-
-