View Javadoc
1   package org.apache.maven.surefire.extensions;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *     http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import java.io.File;
23  
24  /**
25   * Configuration passed to the constructor of default reporter
26   * <em>org.apache.maven.plugin.surefire.report.StatelessXmlReporter</em>.
27   * Signatures can be changed between major, minor versions or milestones.
28   */
29  public class StatelessReportMojoConfiguration
30  {
31      private final File reportsDirectory;
32  
33      private final String reportNameSuffix;
34  
35      private final boolean trimStackTrace;
36  
37      private final int rerunFailingTestsCount;
38  
39      private final String xsdSchemaLocation;
40  
41      public StatelessReportMojoConfiguration( File reportsDirectory, String reportNameSuffix, boolean trimStackTrace,
42                                               int rerunFailingTestsCount, String xsdSchemaLocation )
43      {
44          this.reportsDirectory = reportsDirectory;
45          this.reportNameSuffix = reportNameSuffix;
46          this.trimStackTrace = trimStackTrace;
47          this.rerunFailingTestsCount = rerunFailingTestsCount;
48          this.xsdSchemaLocation = xsdSchemaLocation;
49      }
50  
51      public File getReportsDirectory()
52      {
53          return reportsDirectory;
54      }
55  
56      public String getReportNameSuffix()
57      {
58          return reportNameSuffix;
59      }
60  
61      public boolean isTrimStackTrace()
62      {
63          return trimStackTrace;
64      }
65  
66      public int getRerunFailingTestsCount()
67      {
68          return rerunFailingTestsCount;
69      }
70  
71      public String getXsdSchemaLocation()
72      {
73          return xsdSchemaLocation;
74      }
75  }