001/*
002 * SonarQube, open source software quality management tool.
003 * Copyright (C) 2008-2014 SonarSource
004 * mailto:contact AT sonarsource DOT com
005 *
006 * SonarQube is free software; you can redistribute it and/or
007 * modify it under the terms of the GNU Lesser General Public
008 * License as published by the Free Software Foundation; either
009 * version 3 of the License, or (at your option) any later version.
010 *
011 * SonarQube is distributed in the hope that it will be useful,
012 * but WITHOUT ANY WARRANTY; without even the implied warranty of
013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014 * Lesser General Public License for more details.
015 *
016 * You should have received a copy of the GNU Lesser General Public License
017 * along with this program; if not, write to the Free Software Foundation,
018 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
019 */
020
021package org.sonar.api.technicaldebt.batch;
022
023import org.sonar.api.BatchComponent;
024import org.sonar.api.rule.RuleKey;
025import org.sonar.api.technicaldebt.batch.internal.DefaultCharacteristic;
026
027import javax.annotation.CheckForNull;
028
029import java.util.List;
030
031/**
032 * @since 4.1
033 * Used by Views plugin
034 * @deprecated since 4.3
035 */
036@Deprecated
037public interface TechnicalDebtModel extends BatchComponent {
038
039  @CheckForNull
040  Characteristic characteristicById(Integer id);
041
042  @CheckForNull
043  Characteristic characteristicByKey(String key);
044
045  /**
046   * @deprecated since 4.3. Always return null
047   */
048  @CheckForNull
049  @Deprecated
050  Requirement requirementsByRule(RuleKey ruleKey);
051
052  /**
053   * @deprecated since 4.3. Always return null
054   */
055  @CheckForNull
056  @Deprecated
057  Requirement requirementsById(Integer id);
058
059  /**
060   * @deprecated since 4.3. Always return empty list
061   */
062  @Deprecated
063  List<? extends Requirement> requirements();
064
065  /**
066   * @since 4.3
067   */
068  List<DefaultCharacteristic> characteristics();
069
070}