001package com.thed.model;
002
003public class TestCaseModel {
004
005        private String name;
006        private long testCaseId;
007        private long phaseTestCaseId;
008        private long remoteRepositoryId;
009
010        public String getName() {
011                return name;
012        }
013
014        public void setName(String name) {
015                this.name = name;
016        }
017
018        public long getTestCaseId() {
019                return testCaseId;
020        }
021
022        public void setTestCaseId(long testCaseId) {
023                this.testCaseId = testCaseId;
024        }
025
026        public long getPhaseTestCaseId() {
027                return phaseTestCaseId;
028        }
029
030        public void setPhaseTestCaseId(long phaseTestCaseId) {
031                this.phaseTestCaseId = phaseTestCaseId;
032        }
033
034        public long getRemoteRepositoryId() {
035                return remoteRepositoryId;
036        }
037
038        public void setRemoteRepositoryId(long remoteRepositoryId) {
039                this.remoteRepositoryId = remoteRepositoryId;
040        }
041
042}