001package com.thed.model;
002
003import java.io.Serializable;
004
005public class TestStepDetail implements Serializable {
006    private Long id;    // globally unique id
007        private Long localId ;          // unique Id local to every testcase. (corresponds to id attribute of repository XML)
008    private Integer orderId ;           // order of testcase step
009    private String step;
010    private String data;
011    private String result;
012    private String executionStatus;
013
014        /*----------------------------------------------------------
015         * SETTER & GETTER
016         *----------------------------------------------------------*/
017
018        public Long getId() {
019                return id;
020        }
021
022        public void setId(Long id) {
023                this.id = id;
024        }
025
026        public Integer getOrderId() {
027                return orderId;
028        }
029
030        public void setOrderId(Integer orderId) {
031                this.orderId = orderId;
032        }
033
034        public String getStep() {
035                return step;
036        }
037
038        public void setStep(String step) {
039                this.step = step;
040        }
041
042        public String getData() {
043                return data;
044        }
045
046        public void setData(String data) {
047                this.data = data;
048        }
049
050        public String getResult() {
051                return result;
052        }
053
054        public void setResult(String result) {
055                this.result = result;
056        }
057
058        public Long getLocalId() {
059                return localId;
060        }
061
062        public void setLocalId(Long localId) {
063                this.localId = localId;
064        }
065
066        public String getExecutionStatus() {
067                return executionStatus;
068        }
069
070        public void setExecutionStatus(String executionStatus) {
071                this.executionStatus = executionStatus;
072        }
073                
074}