blob: 9e4cb45ae9dc754eb378892f6b12740cd3f41b68 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.maven.api.services;
import org.apache.maven.api.annotations.Experimental;
import org.apache.maven.api.annotations.Immutable;
import org.apache.maven.api.annotations.Nonnull;
import org.apache.maven.api.annotations.Nullable;
/**
* Describes a problem that was encountered during project 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.
*
* @since 4.0.0
*/
@Experimental
@Immutable
public interface BuilderProblem {
/**
* Gets 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.
*
* @return the hint about the source of the problem or an empty string if unknown, never {@code null}
*/
@Nonnull
String getSource();
/**
* Gets the one-based index of the line containing the problem. The line number should refer to some text file that
* is given by {@link #getSource()}.
*
* @return the one-based index of the line containing the problem or a non-positive value if unknown
*/
int getLineNumber();
/**
* Gets the one-based index of the column containing the problem. The column number should refer to some text file
* that is given by {@link #getSource()}.
*
* @return the one-based index of the column containing the problem or non-positive value if unknown
*/
int getColumnNumber();
/**
* Gets the location of the problem. The location is a user-friendly combination of the values from
* {@link #getSource()}, {@link #getLineNumber()} and {@link #getColumnNumber()}. The exact syntax of the returned
* value is undefined.
*
* @return the location of the problem, never {@code null}
*/
@Nonnull
String getLocation();
/**
* Gets the exception that caused this problem (if any).
*
* @return the exception that caused this problem or {@code null} if not applicable
*/
@Nullable
Exception getException();
/**
* Gets the message that describes this problem.
*
* @return the message describing this problem, never {@code null}
*/
@Nonnull
String getMessage();
/**
* Gets the severity level of this problem.
*
* @return the severity level of this problem, never {@code null}
*/
@Nonnull
Severity getSeverity();
/**
* The different severity levels for a problem, in decreasing order.
*
* @since 4.0.0
*/
@Experimental
enum Severity {
FATAL, //
ERROR, //
WARNING //
}
}