TSK-1009: Suppress warnings to line length for mapper classes
This commit is contained in:
parent
0c6adf9872
commit
3022aafe3b
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue