001package com.thed.model; 002 003import java.util.Date; 004import java.util.List; 005import java.util.Set; 006 007public class ZephyrConfigModel { 008 009 private List<TestCaseResultModel> testcases; 010 private Set<String> packageNames; 011 private String cycleName; 012 private String phaseName; 013 private String cycleDuration; 014 private long zephyrProjectId; 015 private long releaseId; 016 private long cycleId; 017 private long userId; 018 private Boolean createPackage=false; 019 private ZephyrInstance selectedZephyrServer; 020 private Boolean createPhase=false; 021 private Long jobIntiatedBy; 022 private Long assignResultsTo; 023 private Date cycleStartDate; 024 private Date cycleEndDate; 025 026 027 public Boolean isCreatePackage() { 028 return createPackage; 029 } 030 031 public void setCreatePackage(Boolean createPackage) { 032 this.createPackage = createPackage; 033 } 034 035 public List<TestCaseResultModel> getTestcases() { 036 return testcases; 037 } 038 039 public void setTestcases(List<TestCaseResultModel> testcases) { 040 this.testcases = testcases; 041 } 042 043 public long getZephyrProjectId() { 044 return zephyrProjectId; 045 } 046 047 public void setZephyrProjectId(long zephyrProjectId) { 048 this.zephyrProjectId = zephyrProjectId; 049 } 050 051 public long getReleaseId() { 052 return releaseId; 053 } 054 055 public void setReleaseId(long releaseId) { 056 this.releaseId = releaseId; 057 } 058 059 public long getCycleId() { 060 return cycleId; 061 } 062 063 public void setCycleId(long cycleId) { 064 this.cycleId = cycleId; 065 } 066 067 public Set<String> getPackageNames() { 068 return packageNames; 069 } 070 071 public void setPackageNames(Set<String> packageNames) { 072 this.packageNames = packageNames; 073 } 074 075 public String getCycleDuration() { 076 return cycleDuration; 077 } 078 079 public void setCycleDuration(String cycleDuration) { 080 this.cycleDuration = cycleDuration; 081 } 082 083 public long getUserId() { 084 return userId; 085 } 086 087 public void setUserId(long userId) { 088 this.userId = userId; 089 } 090 091 public void setSelectedZephyrServer(ZephyrInstance selectedZephyrServer) { 092 this.selectedZephyrServer = selectedZephyrServer; 093 } 094 095 public ZephyrInstance getSelectedZephyrServer() { 096 return selectedZephyrServer; 097 } 098 099 public String getPhaseName() { 100 return phaseName; 101 } 102 103 public void setPhaseName(String phaseName) { 104 this.phaseName = phaseName; 105 } 106 107 public Boolean getCreatePhase() { 108 return createPhase; 109 } 110 111 public void setCreatePhase(Boolean createPhase) { 112 this.createPhase = createPhase; 113 } 114 115 public String getCycleName() { 116 return cycleName; 117 } 118 119 public void setCycleName(String cycleName) { 120 this.cycleName = cycleName; 121 } 122 123 public Long getJobIntiatedBy() { 124 return jobIntiatedBy; 125 } 126 127 public void setJobIntiatedBy(Long jobIntiatedBy) { 128 this.jobIntiatedBy = jobIntiatedBy; 129 } 130 131 public Long getAssignResultsTo() { 132 return assignResultsTo; 133 } 134 135 public void setAssignResultsTo(Long assignResultsTo) { 136 this.assignResultsTo = assignResultsTo; 137 } 138 139 public Date getCycleStartDate() { 140 return cycleStartDate; 141 } 142 143 public void setCycleStartDate(Date cycleStartDate) { 144 this.cycleStartDate = cycleStartDate; 145 } 146 147 public Date getCycleEndDate() { 148 return cycleEndDate; 149 } 150 151 public void setCycleEndDate(Date cycleEndDate) { 152 this.cycleEndDate = cycleEndDate; 153 } 154}