blob: 4995b522618117338354f7f485147ffc99112b3c [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.impactanalysis.eventcreators;
import java.util.Date;
import org.eclipse.opencert.apm.assuranceassets.assuranceasset.EventKind;
public class ValidateChangeDrivenEventsCreator
extends AbstractChangeDrivenEventsCreator
{
@Override
public EventKind getEventKind()
{
return EventKind.EVALUATION;
}
@Override
protected Date getAssuranceAssetEventDate()
{
return null;
}
}