com.acrolinx.client.sdk.platform.CheckingCapabilities Maven / Gradle / Ivy
/**
* Copyright (c) 2019-present Acrolinx GmbH
*/
package com.acrolinx.client.sdk.platform;
import java.util.List;
import com.acrolinx.client.sdk.check.CheckRequest;
import com.acrolinx.client.sdk.check.CheckType;
import com.acrolinx.client.sdk.check.ReportType;
public class CheckingCapabilities
{
private List guidanceProfiles;
private List contentFormats;
private List contentEncodings;
private String referencePattern;
private List checkTypes;
private List reportTypes;
public CheckingCapabilities(List guidanceProfiles, List contentFormats,
List contentEncodings, String referencePattern, List checkTypes,
List reportTypes)
{
this.guidanceProfiles = guidanceProfiles;
this.contentFormats = contentFormats;
this.contentEncodings = contentEncodings;
this.referencePattern = referencePattern;
this.checkTypes = checkTypes;
this.reportTypes = reportTypes;
}
public List getGuidanceProfiles()
{
return guidanceProfiles;
}
public List getContentFormats()
{
return contentFormats;
}
public List getContentEncodings()
{
return contentEncodings;
}
public String getReferencePattern()
{
return referencePattern;
}
public List getCheckTypes()
{
return checkTypes;
}
public List getReportTypes()
{
return reportTypes;
}
}