001package com.thed.model; 002 003import java.util.Date; 004 005/** 006 * Created by abhishek.kumar on 8/19/2020. 007 */ 008public class AutomationScriptJobDTO { 009 private Long id; 010 private Long projectId; 011 private Long releaseId; 012 private String scriptJobName; 013 private String scriptJobDescription; 014 private String scriptPath; 015 private String parameter; 016 private Boolean isParseResultFile=false; 017 private String resultPath; 018 private String automationFramework; 019 private String zbotAgentMachine; 020 private Boolean isDeleted=false; 021 private Long createdBy; 022 private Long modifiedBy; 023 private Date createdOn; 024 private Date modifiedOn; 025 private String parserTemplate; 026 027 public Long getId() { 028 return id; 029 } 030 031 public void setId(Long id) { 032 this.id = id; 033 } 034 035 public Long getProjectId() { 036 return projectId; 037 } 038 039 public void setProjectId(Long projectId) { 040 this.projectId = projectId; 041 } 042 043 public Long getReleaseId() { 044 return releaseId; 045 } 046 047 public void setReleaseId(Long releaseId) { 048 this.releaseId = releaseId; 049 } 050 051 public String getScriptJobName() { 052 return scriptJobName; 053 } 054 055 public void setScriptJobName(String scriptJobName) { 056 this.scriptJobName = scriptJobName; 057 } 058 059 public String getScriptJobDescription() { 060 return scriptJobDescription; 061 } 062 063 public void setScriptJobDescription(String scriptJobDescription) { 064 this.scriptJobDescription = scriptJobDescription; 065 } 066 067 public String getScriptPath() { 068 return scriptPath; 069 } 070 071 public void setScriptPath(String scriptPath) { 072 this.scriptPath = scriptPath; 073 } 074 075 public String getParameter() { 076 return parameter; 077 } 078 079 public void setParameter(String parameter) { 080 this.parameter = parameter; 081 } 082 083 public Boolean getIsParseResultFile() { 084 return isParseResultFile; 085 } 086 087 public void setIsParseResultFile(Boolean isParseResultFile) { 088 this.isParseResultFile = isParseResultFile; 089 } 090 091 public String getResultPath() { 092 return resultPath; 093 } 094 095 public void setResultPath(String resultPath) { 096 this.resultPath = resultPath; 097 } 098 099 public String getAutomationFramework() { 100 return automationFramework; 101 } 102 103 public void setAutomationFramework(String automationFramework) { 104 this.automationFramework = automationFramework; 105 } 106 107 public String getZbotAgentMachine() { 108 return zbotAgentMachine; 109 } 110 111 public void setZbotAgentMachine(String zbotAgentMachine) { 112 this.zbotAgentMachine = zbotAgentMachine; 113 } 114 115 public Boolean getIsDeleted() { 116 return isDeleted; 117 } 118 119 public void setIsDeleted(Boolean isDeleted) { 120 this.isDeleted = isDeleted; 121 } 122 123 public Long getCreatedBy() { 124 return createdBy; 125 } 126 127 public void setCreatedBy(Long createdBy) { 128 this.createdBy = createdBy; 129 } 130 131 public Long getModifiedBy() { 132 return modifiedBy; 133 } 134 135 public void setModifiedBy(Long modifiedBy) { 136 this.modifiedBy = modifiedBy; 137 } 138 139 public Date getCreatedOn() { 140 return createdOn; 141 } 142 143 public void setCreatedOn(Date createdOn) { 144 this.createdOn = createdOn; 145 } 146 147 public Date getModifiedOn() { 148 return modifiedOn; 149 } 150 151 public void setModifiedOn(Date modifiedOn) { 152 this.modifiedOn = modifiedOn; 153 } 154 155 public String getParserTemplate() { 156 return parserTemplate; 157 } 158 159 public void setParserTemplate(String parserTemplate) { 160 this.parserTemplate = parserTemplate; 161 } 162}