Package org.camunda.bpm.engine.rest.dto
Class ResourceReportDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.ResourceReportDto
-
public class ResourceReportDto extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected List<ProblemDto>
errors
protected List<ProblemDto>
warnings
-
Constructor Summary
Constructors Constructor Description ResourceReportDto(List<ProblemDto> errors, List<ProblemDto> warnings)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ProblemDto>
getErrors()
List<ProblemDto>
getWarnings()
void
setErrors(List<ProblemDto> errors)
void
setWarnings(List<ProblemDto> warnings)
-
-
-
Field Detail
-
errors
protected List<ProblemDto> errors
-
warnings
protected List<ProblemDto> warnings
-
-
Constructor Detail
-
ResourceReportDto
public ResourceReportDto(List<ProblemDto> errors, List<ProblemDto> warnings)
-
-
Method Detail
-
getErrors
public List<ProblemDto> getErrors()
-
setErrors
public void setErrors(List<ProblemDto> errors)
-
getWarnings
public List<ProblemDto> getWarnings()
-
setWarnings
public void setWarnings(List<ProblemDto> warnings)
-
-