TSK-1009: Suppress warnings to line length for mapper classes

This commit is contained in:
Benjamin Eckstein 2020-01-07 11:46:47 +01:00 committed by Mustapha Zorgati
parent 0c6adf9872
commit 3022aafe3b
11 changed files with 11 additions and 0 deletions

View File

@ -9,6 +9,7 @@ import pro.taskana.simplehistory.impl.HistoryEventImpl;
import pro.taskana.simplehistory.impl.HistoryQueryImpl;
/** This class is the mybatis mapping of historyQueries. */
@SuppressWarnings("checkstyle:LineLength")
public interface HistoryQueryMapper {
@Select(

View File

@ -16,6 +16,7 @@ import pro.taskana.impl.AttachmentSummaryImpl;
import pro.taskana.impl.persistence.MapTypeHandler;
/** This class is the mybatis mapping of Attachment. */
@SuppressWarnings("checkstyle:LineLength")
public interface AttachmentMapper {
@Insert(

View File

@ -11,6 +11,7 @@ import org.apache.ibatis.annotations.Update;
import pro.taskana.impl.ClassificationImpl;
/** This class is the mybatis mapping of classifications. */
@SuppressWarnings("checkstyle:LineLength")
public interface ClassificationMapper {
@Select(

View File

@ -7,6 +7,7 @@ import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
/** This class is the mybatis mapping of distribution targets. */
@SuppressWarnings("checkstyle:LineLength")
public interface DistributionTargetMapper {
@Insert(

View File

@ -14,6 +14,7 @@ import pro.taskana.impl.persistence.MapTypeHandler;
import pro.taskana.jobs.ScheduledJob;
/** This class is the mybatis mapping of the JOB table. */
@SuppressWarnings("checkstyle:LineLength")
public interface JobMapper {
@Insert(

View File

@ -10,6 +10,7 @@ import org.apache.ibatis.annotations.Update;
import pro.taskana.ObjectReference;
/** This class is the mybatis mapping of ObjectReference. */
@SuppressWarnings("checkstyle:LineLength")
public interface ObjectReferenceMapper {
@Select(

View File

@ -17,6 +17,7 @@ import pro.taskana.impl.WorkbasketQueryImpl;
import pro.taskana.impl.WorkbasketSummaryImpl;
/** This class provides a mapper for all queries. */
@SuppressWarnings("checkstyle:LineLength")
public interface QueryMapper {
String OBJECTREFERENCEMAPPER_FINDBYID = "pro.taskana.mappings.ObjectReferenceMapper.findById";

View File

@ -18,6 +18,7 @@ import pro.taskana.impl.TaskSummaryImpl;
import pro.taskana.impl.persistence.MapTypeHandler;
/** This class is the mybatis mapping of task. */
@SuppressWarnings("checkstyle:LineLength")
public interface TaskMapper {
@Select(

View File

@ -18,6 +18,7 @@ import pro.taskana.impl.report.item.TimestampQueryItem;
import pro.taskana.report.Timestamp;
/** This class is the mybatis mapping of task monitoring. */
@SuppressWarnings("checkstyle:LineLength")
public interface TaskMonitorMapper {
@Select(

View File

@ -13,6 +13,7 @@ import org.apache.ibatis.annotations.Update;
import pro.taskana.impl.WorkbasketAccessItemImpl;
/** This class is the mybatis mapping of workbasket access items. */
@SuppressWarnings("checkstyle:LineLength")
public interface WorkbasketAccessMapper {
@Select(

View File

@ -14,6 +14,7 @@ import pro.taskana.impl.WorkbasketImpl;
import pro.taskana.impl.WorkbasketSummaryImpl;
/** This class is the mybatis mapping of workbaskets. */
@SuppressWarnings("checkstyle:LineLength")
public interface WorkbasketMapper {
@Select(