001package com.thed.zblast.parser.model;
002
003import java.util.Date;
004
005public class TCRCatalogTreeTestcase implements java.io.Serializable {
006
007        private static final long serialVersionUID = 3816980176494614766L;
008
009        private Long id;
010        private Long tcrCatalogTreeId;
011        private TCRTestcase testcase;
012        private Boolean getOriginal=false;
013        private Integer revision;
014        private Integer stateFlag;
015        private Date lastModifiedOn;
016        private Integer versionNumber;
017        private Long releaseId;
018
019        public Long getReleaseId() {
020                return releaseId;
021        }
022
023        public void setReleaseId(Long releaseId) {
024                this.releaseId = releaseId;
025        }
026
027        public TCRCatalogTreeTestcase(Long tcrCatalogTreeId,
028                                                                  TCRTestcase testcase, boolean isOriginal, Integer revision) {
029                this.tcrCatalogTreeId = tcrCatalogTreeId;
030                this.testcase = testcase;
031                this.getOriginal = isOriginal;
032                this.revision = revision;
033        }
034
035        public TCRCatalogTreeTestcase() {
036        }
037
038        public Long getId() {
039                return id;
040        }
041
042        public void setId(Long id) {
043                this.id = id;
044        }
045
046        public Boolean getOriginal() {
047                return getOriginal;
048        }
049
050        public void setOriginal(Boolean isOriginal) {
051                this.getOriginal = isOriginal;
052        }
053
054
055
056        /**
057         * @return the testcase
058         */
059        public TCRTestcase getTestcase() {
060                return testcase;
061        }
062
063        /**
064         * @param testcase
065         *            the testcase to set
066         */
067        public void setTestcase(TCRTestcase testcase) {
068                this.testcase = testcase;
069        }
070
071        public Integer getRevision() {
072                return revision;
073        }
074
075        public void setRevision(Integer revision) {
076                this.revision = revision;
077        }
078
079        public Long getTcrCatalogTreeId() {
080            return tcrCatalogTreeId;
081        }
082
083        public void setTcrCatalogTreeId(Long tcrCatalogTreeId) {
084            this.tcrCatalogTreeId = tcrCatalogTreeId;
085        }
086
087        public Integer getStateFlag() {
088                return stateFlag;
089        }
090
091        public void setStateFlag(Integer stateFlag) {
092                this.stateFlag = stateFlag;
093        }
094
095        public Date getLastModifiedOn() {
096                return lastModifiedOn;
097        }
098
099        public void setLastModifiedOn(Date lastModifiedOn) {
100                this.lastModifiedOn = lastModifiedOn;
101        }
102
103        public Boolean getGetOriginal() {
104                return getOriginal;
105        }
106
107        public Integer getVersionNumber() {
108                return versionNumber;
109        }
110
111        public void setGetOriginal(Boolean getOriginal) {
112                this.getOriginal = getOriginal;
113        }
114
115        public void setVersionNumber(Integer versionNumber) {
116                this.versionNumber = versionNumber;
117        }
118}