Class ResourceReportImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.bpmn.parser.ResourceReportImpl
-
- All Implemented Interfaces:
ResourceReport
public class ResourceReportImpl extends java.lang.Object implements ResourceReport
Resource report created during resource parsing
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<Problem>
errors
protected java.lang.String
resourceName
protected java.util.List<Problem>
warnings
-
Constructor Summary
Constructors Constructor Description ResourceReportImpl(java.lang.String resourceName, java.util.List<Problem> errors, java.util.List<Problem> warnings)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Problem>
getErrors()
Returns list of errors in this reportjava.lang.String
getResourceName()
Returns the resource name where the problems occurred.java.util.List<Problem>
getWarnings()
Returns list of warnings in this report
-
-
-
Method Detail
-
getResourceName
public java.lang.String getResourceName()
Description copied from interface:ResourceReport
Returns the resource name where the problems occurred.- Specified by:
getResourceName
in interfaceResourceReport
-
getErrors
public java.util.List<Problem> getErrors()
Description copied from interface:ResourceReport
Returns list of errors in this report- Specified by:
getErrors
in interfaceResourceReport
-
getWarnings
public java.util.List<Problem> getWarnings()
Description copied from interface:ResourceReport
Returns list of warnings in this report- Specified by:
getWarnings
in interfaceResourceReport
-
-