com.anaptecs.jeaf.junit.activities.ErstelleStreckenActivityImpl Maven / Gradle / Ivy
/*
* anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
*
* Copyright 2004 - 2019. All rights reserved.
*/
package com.anaptecs.jeaf.junit.activities;
import java.util.List;
import com.anaptecs.jeaf.core.annotations.JEAFActivityImpl;
import com.anaptecs.jeaf.junit.domainObjects.InfoPLUSConnection;
import com.anaptecs.jeaf.junit.domainObjects.Strecke;
/**
* Implementation of activity ErstelleStreckenActivity. Intention of thius activity is to transform the results from
* HAFAS to out internal representation as Strecke.
*/
@JEAFActivityImpl(activityInterface = ErstelleStreckenActivity.class)
public class ErstelleStreckenActivityImpl implements ErstelleStreckenActivity {
/**
* Create new instance of activity.
*/
ErstelleStreckenActivityImpl( ) {
}
/**
* Intention of thius activity is to transform the results from HAFAS to out internal representation as Strecke.
*
* @param pConnections
* @param pValue This is an integer value as input for an activity.
* @return List
*/
@Override
public List execute( List pConnections, Integer pValue ) {
// TODO: Implement business logic for activity.
return null;
}
}