001package com.thed.model;
002
003import java.io.Serializable;
004import java.util.Date;
005import java.util.List;
006
007public class TestStep implements Serializable {
008
009        private Long id ;
010        
011        private Long tcId ;
012        private Long releaseId ;
013        private Integer maxId ;
014        private List<TestStepDetail> steps ;
015    private Date lastModificationDate;
016        private Long lastModifiedBy ;
017        private Boolean buildIndex ;    // triggers lucene indexing 
018        
019        /*----------------------------------------------------------
020         * SETTER & GETTER
021         *----------------------------------------------------------*/
022
023        public Long getId() {
024                return id;
025        }
026
027        public void setId(Long id) {
028                this.id = id;
029        }
030
031        public Long getTcId() {
032                return tcId;
033        }
034
035        public void setTcId(Long tcId) {
036                this.tcId = tcId;
037        }
038
039        public Integer getMaxId() {
040                return maxId;
041        }
042
043        public void setMaxId(Integer maxId) {
044                this.maxId = maxId;
045        }
046
047        public List<TestStepDetail> getSteps() {
048                return steps;
049        }
050
051        public void setSteps(List<TestStepDetail> steps) {
052                this.steps = steps;
053        }
054
055        public Long getReleaseId() {
056                return releaseId;
057        }
058
059        public void setReleaseId(Long releaseId) {
060                this.releaseId = releaseId;
061        }
062
063        public Date getLastModificationDate() {
064                return lastModificationDate;
065        }
066
067        public void setLastModificationDate(Date lastModificationDate) {
068                this.lastModificationDate = lastModificationDate;
069        }
070
071        public Long getLastModifiedBy() {
072                return lastModifiedBy;
073        }
074
075        public void setLastModifiedBy(Long lastModifiedBy) {
076                this.lastModifiedBy = lastModifiedBy;
077        }
078
079        public Boolean getBuildIndex() {
080                return buildIndex;
081        }
082
083        public void setBuildIndex(Boolean buildIndex) {
084                this.buildIndex = buildIndex;
085        }
086
087        
088}