
com.surenpi.autotest.report.model.ExcelReport Maven / Gradle / Ivy
The newest version!
/*
*
* * Copyright 2002-2007 the original author or authors.
* *
* * Licensed under the Apache License, Version 2.0 (the "License");
* * you may not use this file except in compliance with the License.
* * You may obtain a copy of the License at
* *
* * http://www.apache.org/licenses/LICENSE-2.0
* *
* * Unless required by applicable law or agreed to in writing, software
* * distributed under the License is distributed on an "AS IS" BASIS,
* * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* * See the License for the specific language governing permissions and
* * limitations under the License.
*
*/
package com.surenpi.autotest.report.model;
/**
* @author suren
*/
public class ExcelReport
{
private String moduleName;
private String moduleDescription;
private String clazzName;
private String methodName;
private String status;
private String project;
private String beginTime;
private String endTime;
private String detail;
public String getModuleName()
{
return moduleName;
}
public void setModuleName(String moduleName)
{
this.moduleName = moduleName;
}
public String getModuleDescription()
{
return moduleDescription;
}
public void setModuleDescription(String moduleDescription)
{
this.moduleDescription = moduleDescription;
}
public String getClazzName()
{
return clazzName;
}
public void setClazzName(String clazzName)
{
this.clazzName = clazzName;
}
public String getMethodName()
{
return methodName;
}
public void setMethodName(String methodName)
{
this.methodName = methodName;
}
public String getStatus()
{
return status;
}
public void setStatus(String status)
{
this.status = status;
}
public String getProject()
{
return project;
}
public void setProject(String project)
{
this.project = project;
}
public String getBeginTime()
{
return beginTime;
}
public void setBeginTime(String beginTime)
{
this.beginTime = beginTime;
}
public String getEndTime()
{
return endTime;
}
public void setEndTime(String endTime)
{
this.endTime = endTime;
}
public String getDetail()
{
return detail;
}
public void setDetail(String detail)
{
this.detail = detail;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy