* If the method start(), without parameters, exists, then it is executed at startup.
*
* @since 1.12
- * @deprecated since 4.2. Analysis is file-system oriented. See {@link org.sonar.api.scan.filesystem.InputFileFilter}
+ * @deprecated since 4.2. Analysis is file-system oriented. See {@link org.sonar.api.batch.fs.InputFileFilter}
*/
@Deprecated
@BatchSide
*/
package org.sonar.api.issue.batch;
-import org.sonar.api.batch.BatchSide;
import org.sonar.api.ExtensionPoint;
+import org.sonar.api.batch.BatchSide;
import org.sonar.api.issue.Issue;
/**
* <p>An issue filter is an object that allows filtering of {@link Issue}s on batch side, preventing them from being persisted.</p>
* @since 4.0
- * @deprecated since 5.3. Use {@link org.sonar.api.issue.filter.IssueFilter} instead.
- *
+ * @deprecated since 5.3. Use {@link org.sonar.api.scan.issue.filter.IssueFilter} instead.
*/
@BatchSide
@ExtensionPoint
* <ul>
* <li>When groups are not empty, group membership is synchronized when user logs in :
* <ul>
- * <li>User won't belong anymore to a group that is not in the list (even the default group defined in {@link CoreProperties.CORE_DEFAULT_GROUP})</li>
+ * <li>User won't belong anymore to a group that is not in the list (even the default group defined in {@link CoreProperties#CORE_DEFAULT_GROUP})</li>
* <li>User will belong only to groups that exist in SonarQube</li>
* <li>Groups that don't exist in SonarQube are silently ignored</li>
* </ul>
/**
* @see Response#setHeader(String, String)
- * @return
*/
@CheckForNull
String getHeader(String name);