Class DefaultModelProblem
java.lang.Object
org.apache.maven.internal.impl.model.DefaultModelProblem
- All Implemented Interfaces:
BuilderProblem,ModelProblem
Describes a problem that was encountered during model building. A problem can either be an exception that was thrown
or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits
the problem.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.maven.api.services.BuilderProblem
BuilderProblem.SeverityNested classes/interfaces inherited from interface org.apache.maven.api.services.ModelProblem
ModelProblem.Version -
Constructor Summary
ConstructorsConstructorDescriptionDefaultModelProblem(String message, BuilderProblem.Severity severity, ModelProblem.Version version, String source, int lineNumber, int columnNumber, String modelId, Exception exception) Creates a new problem with the specified message and exception.DefaultModelProblem(String message, BuilderProblem.Severity severity, ModelProblem.Version version, Model source, int lineNumber, int columnNumber, Exception exception) Creates a new problem with the specified message and exception. -
Method Summary
Modifier and TypeMethodDescriptionintGets the one-based index of the column containing the problem.Gets the exception that caused this problem (if any).intGets the one-based index of the line containing the problem.Gets the location of the problem.Gets the message that describes this problem.Gets the identifier of the model from which the problem originated.Gets the severity level of this problem.Gets the hint about the source of the problem.Gets the applicable maven version/validation level of this problemtoString()
-
Constructor Details
-
DefaultModelProblem
public DefaultModelProblem(String message, BuilderProblem.Severity severity, ModelProblem.Version version, Model source, int lineNumber, int columnNumber, Exception exception) Creates a new problem with the specified message and exception.- Parameters:
message- The message describing the problem, may benull.severity- The severity level of the problem, may benullto default toBuilderProblem.Severity.ERROR.source- The source of the problem, may benull.lineNumber- The one-based index of the line containing the error or-1if unknown.columnNumber- The one-based index of the column containing the error or-1if unknown.exception- The exception that caused this problem, may benull.
-
DefaultModelProblem
public DefaultModelProblem(String message, BuilderProblem.Severity severity, ModelProblem.Version version, String source, int lineNumber, int columnNumber, String modelId, Exception exception) Creates a new problem with the specified message and exception.- Parameters:
message- The message describing the problem, may benull.severity- The severity level of the problem, may benullto default toBuilderProblem.Severity.ERROR.version- The version since the problem is relevantsource- A hint about the source of the problem like a file path, may benull.lineNumber- The one-based index of the line containing the problem or-1if unknown.columnNumber- The one-based index of the column containing the problem or-1if unknown.modelId- The identifier of the model that exhibits the problem, may benull.exception- The exception that caused this problem, may benull.
-
-
Method Details
-
getSource
Description copied from interface:BuilderProblemGets the hint about the source of the problem. While the syntax of this hint is unspecified and depends on the creator of the problem, the general expectation is that the hint provides sufficient information to the user to track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from which the settings were read.- Specified by:
getSourcein interfaceBuilderProblem- Returns:
- the hint about the source of the problem or an empty string if unknown, never
null
-
getLineNumber
public int getLineNumber()Description copied from interface:BuilderProblemGets the one-based index of the line containing the problem. The line number should refer to some text file that is given byBuilderProblem.getSource().- Specified by:
getLineNumberin interfaceBuilderProblem- Returns:
- the one-based index of the line containing the problem or a non-positive value if unknown
-
getColumnNumber
public int getColumnNumber()Description copied from interface:BuilderProblemGets the one-based index of the column containing the problem. The column number should refer to some text file that is given byBuilderProblem.getSource().- Specified by:
getColumnNumberin interfaceBuilderProblem- Returns:
- the one-based index of the column containing the problem or non-positive value if unknown
-
getModelId
Description copied from interface:ModelProblemGets the identifier of the model from which the problem originated. The identifier is derived from the information that is available at the point the problem occurs and as such merely serves as best effort to provide information to the user to track the problem back to its origin.- Specified by:
getModelIdin interfaceModelProblem- Returns:
- The identifier of the model from which the problem originated or an empty string if unknown, never
null.
-
getException
Description copied from interface:BuilderProblemGets the exception that caused this problem (if any).- Specified by:
getExceptionin interfaceBuilderProblem- Returns:
- the exception that caused this problem or
nullif not applicable
-
getLocation
Description copied from interface:BuilderProblemGets the location of the problem. The location is a user-friendly combination of the values fromBuilderProblem.getSource(),BuilderProblem.getLineNumber()andBuilderProblem.getColumnNumber(). The exact syntax of the returned value is undefined.- Specified by:
getLocationin interfaceBuilderProblem- Returns:
- the location of the problem, never
null
-
getMessage
Description copied from interface:BuilderProblemGets the message that describes this problem.- Specified by:
getMessagein interfaceBuilderProblem- Returns:
- the message describing this problem, never
null
-
getSeverity
Description copied from interface:BuilderProblemGets the severity level of this problem.- Specified by:
getSeverityin interfaceBuilderProblem- Returns:
- the severity level of this problem, never
null
-
getVersion
Description copied from interface:ModelProblemGets the applicable maven version/validation level of this problem- Specified by:
getVersionin interfaceModelProblem- Returns:
- The version, never
null.
-
toString
-