org.sonar.plugins.trac.TracMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-trac-plugin Show documentation
Show all versions of sonar-trac-plugin Show documentation
Retrieves and reports the number of project issues from a Trac instance.
/*
* Sonar Trac Plugin
* Copyright (C) 2010 Thales Optronics Ltd.
* [email protected]
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.sonar.plugins.trac;
import org.sonar.api.measures.Metric;
import org.sonar.api.measures.Metrics;
import java.util.Arrays;
import java.util.List;
public class TracMetrics implements Metrics {
public static final String DOMAIN = "Issues";
public static final Metric ISSUES = new Metric("trac_issues", "Trac issues", "Number of Trac issues", Metric.ValueType.INT,
Metric.DIRECTION_NONE, false, DOMAIN);
public static final Metric TICKET_COMPONENT = new Metric("trac_ticket_component", "Project component", "Project component specified",
Metric.ValueType.STRING, Metric.DIRECTION_NONE, false, DOMAIN);
// getMetrics() method is defined in the Metrics interface and is used by
// Sonar to retrieve the list of new Metric
public final List getMetrics() {
return Arrays.asList(ISSUES, TICKET_COMPONENT);
}
}