blob: 486cb00443a4652d0992e774ac9692fdc97a5e20 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Parasoft.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Janusz Studzizba - initial API and implementation
* Dariusz Oszczedlowski - initial API and implementation
* Magdalena Gniewek - initial API and implementation
* Michal Wlodarczyk - initial API and implementation
*******************************************************************************/
package org.eclipse.opencert.webapp.reports.view;
import org.eclipse.opencert.webapp.reports.view.common.GUIMode;
import org.eclipse.opencert.webapp.reports.view.common.ReportID;
import org.eclipse.opencert.webapp.reports.view.url.URLParamsContainer;
public class ComplianceReport
extends AbstractComplianceReport
{
public ComplianceReport(GUIMode guiMode, URLParamsContainer urlParamsContainer)
{
super(false, guiMode, urlParamsContainer);
}
@Override
public ReportID getReportID()
{
return ReportID.COMPLIANCE;
}
@Override
public String getTitle()
{
return "Compliance report";
}
}