View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.api.services;
20  
21  /**
22   * Describes a problem that was encountered during model building. A problem can either be an exception that was thrown
23   * or a simple string message. In addition, a problem carries a hint about its source, e.g. the POM file that exhibits
24   * the problem.
25   *
26   */
27  public interface ModelProblem extends BuilderProblem {
28  
29      /**
30       * Version
31       */
32      enum Version {
33          // based on ModeBuildingResult.validationLevel
34          BASE,
35          V20,
36          V30,
37          V31,
38          V40
39      }
40  
41      /**
42       * Gets the identifier of the model from which the problem originated. While the general form of this identifier is
43       * <code>groupId:artifactId:version</code> the returned identifier need not be complete. The identifier is derived
44       * from the information that is available at the point the problem occurs and as such merely serves as a best effort
45       * to provide information to the user to track the problem back to its origin.
46       *
47       * @return The identifier of the model from which the problem originated or an empty string if unknown, never
48       *         {@code null}.
49       */
50      String getModelId();
51  
52      /**
53       * Gets the applicable maven version/validation level of this problem
54       * @return The version, never {@code null}.
55       */
56      Version getVersion();
57  }