Class DefaultSettingsProblem
- java.lang.Object
-
- org.apache.maven.settings.building.DefaultSettingsProblem
-
- All Implemented Interfaces:
SettingsProblem
public class DefaultSettingsProblem extends java.lang.Object implements SettingsProblem
Describes a problem that was encountered during settings 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 settings file that exhibits the problem.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.maven.settings.building.SettingsProblem
SettingsProblem.Severity
-
-
Field Summary
Fields Modifier and Type Field Description private intcolumnNumberprivate java.lang.Exceptionexceptionprivate intlineNumberprivate java.lang.Stringmessageprivate SettingsProblem.Severityseverityprivate java.lang.Stringsource
-
Constructor Summary
Constructors Constructor Description DefaultSettingsProblem(java.lang.String message, SettingsProblem.Severity severity, java.lang.String source, int lineNumber, int columnNumber, java.lang.Exception exception)Creates a new problem with the specified message and exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetColumnNumber()Gets the one-based index of the column containing the problem.java.lang.ExceptiongetException()Gets the exception that caused this problem (if any).intgetLineNumber()Gets the one-based index of the line containing the problem.java.lang.StringgetLocation()Gets the location of the problem.java.lang.StringgetMessage()Gets the message that describes this problem.SettingsProblem.SeveritygetSeverity()Gets the severity level of this problem.java.lang.StringgetSource()Gets the hint about the source of the problem.java.lang.StringtoString()
-
-
-
Field Detail
-
source
private final java.lang.String source
-
lineNumber
private final int lineNumber
-
columnNumber
private final int columnNumber
-
message
private final java.lang.String message
-
exception
private final java.lang.Exception exception
-
severity
private final SettingsProblem.Severity severity
-
-
Constructor Detail
-
DefaultSettingsProblem
public DefaultSettingsProblem(java.lang.String message, SettingsProblem.Severity severity, java.lang.String source, int lineNumber, int columnNumber, java.lang.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 toSettingsProblem.Severity.ERROR.source- 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.exception- The exception that caused this problem, may benull.
-
-
Method Detail
-
getSource
public java.lang.String getSource()
Description copied from interface:SettingsProblemGets 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 interfaceSettingsProblem- 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:SettingsProblemGets the one-based index of the line containing the problem. The line number should refer to some text file that is given bySettingsProblem.getSource().- Specified by:
getLineNumberin interfaceSettingsProblem- 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:SettingsProblemGets the one-based index of the column containing the problem. The column number should refer to some text file that is given bySettingsProblem.getSource().- Specified by:
getColumnNumberin interfaceSettingsProblem- Returns:
- The one-based index of the column containing the problem or non-positive value if unknown.
-
getLocation
public java.lang.String getLocation()
Description copied from interface:SettingsProblemGets the location of the problem. The location is a user-friendly combination of the values fromSettingsProblem.getSource(),SettingsProblem.getLineNumber()andSettingsProblem.getColumnNumber(). The exact syntax of the returned value is undefined.- Specified by:
getLocationin interfaceSettingsProblem- Returns:
- The location of the problem, never
null.
-
getException
public java.lang.Exception getException()
Description copied from interface:SettingsProblemGets the exception that caused this problem (if any).- Specified by:
getExceptionin interfaceSettingsProblem- Returns:
- The exception that caused this problem or
nullif not applicable.
-
getMessage
public java.lang.String getMessage()
Description copied from interface:SettingsProblemGets the message that describes this problem.- Specified by:
getMessagein interfaceSettingsProblem- Returns:
- The message describing this problem, never
null.
-
getSeverity
public SettingsProblem.Severity getSeverity()
Description copied from interface:SettingsProblemGets the severity level of this problem.- Specified by:
getSeverityin interfaceSettingsProblem- Returns:
- The severity level of this problem, never
null.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-