001package com.thed.model;
002
003
004public class ScheduledTestCaseMetaDataDTO implements java.io.Serializable {
005        
006        /**
007         * 
008         */
009        private static final long serialVersionUID = 1L;
010        
011        private long id;
012        private Long testcaseId;
013        private Long scheduledId;
014        private Long tcrCatalogTreeId;
015        private String metadataTCName;
016        private String metadataTCClassName;
017        private String status;
018        /**
019         * @return the id
020         */
021        public long getId() {
022                return id;
023        }
024        /**
025         * @param id the id to set
026         */
027        public void setId(long id) {
028                this.id = id;
029        }
030        /**
031         * @return the testcaseId
032         */
033        public Long getTestcaseId() {
034                return testcaseId;
035        }
036        /**
037         * @param testcaseId the testcaseId to set
038         */
039        public void setTestcaseId(Long testcaseId) {
040                this.testcaseId = testcaseId;
041        }
042        /**
043         * @return the scheduledId
044         */
045        public Long getScheduledId() {
046                return scheduledId;
047        }
048        /**
049         * @param scheduledId the scheduledId to set
050         */
051        public void setScheduledId(Long scheduledId) {
052                this.scheduledId = scheduledId;
053        }
054        /**
055         * @return the tcrCatalogTreeId
056         */
057        public Long getTcrCatalogTreeId() {
058                return tcrCatalogTreeId;
059        }
060        /**
061         * @param tcrCatalogTreeId the tcrCatalogTreeId to set
062         */
063        public void setTcrCatalogTreeId(Long tcrCatalogTreeId) {
064                this.tcrCatalogTreeId = tcrCatalogTreeId;
065        }
066        /**
067         * @return the metadataTCName
068         */
069        public String getMetadataTCName() {
070                return metadataTCName;
071        }
072        /**
073         * @param metadataTCName the metadataTCName to set
074         */
075        public void setMetadataTCName(String metadataTCName) {
076                this.metadataTCName = metadataTCName;
077        }
078        /**
079         * @return the metadataTCClassName
080         */
081        public String getMetadataTCClassName() {
082                return metadataTCClassName;
083        }
084        /**
085         * @param metadataTCClassName the metadataTCClassName to set
086         */
087        public void setMetadataTCClassName(String metadataTCClassName) {
088                this.metadataTCClassName = metadataTCClassName;
089        }
090        /**
091         * @return the status
092         */
093        public String getStatus() {
094                return status;
095        }
096        /**
097         * @param status the status to set
098         */
099        public void setStatus(String status) {
100                this.status = status;
101        }
102        @Override
103        public String toString() {
104                return "ScheduledTestCaseMetaDataDTO [id=%s, testcaseId=%s, scheduledId=%s, tcrCatalogTreeId=%s, metadataTCName=%s, metadataTCClassName=%s, status=%s]".formatted(id, testcaseId, scheduledId, tcrCatalogTreeId, metadataTCName, metadataTCClassName, status);
105        }
106
107}