/******************************************************************************* * Copyright (c) 2013 Rene Schneider, GEBIT Solutions GmbH and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ package de.gebit.integrity.runner.results.call; import java.util.List; import de.gebit.integrity.fixtures.ExtendedResultFixture.ExtendedResult; import de.gebit.integrity.fixtures.FixtureWrapper; /** * Result for successful calls. * * * @author Rene Schneider - initial API and implementation * */ public class SuccessResult extends CallResult { /** * Creates a new instance. * * @param someUpdatedVariables * variables updated by the call * @param aFixtureInstance * The fixture instance (wrapped) - may be null if no fixtures are called in the current phase (for * example during the dry run). * @param aFixtureMethod * the method that was executed * @param anExecutionTime * the time to execute the call * @param someExtendedResults * any extended results returned by the fixture */ public SuccessResult(List<UpdatedVariable> someUpdatedVariables, FixtureWrapper<?> aFixtureInstance, String aFixtureMethod, Long anExecutionTime, List<ExtendedResult> someExtendedResults) { super(someUpdatedVariables, aFixtureInstance, aFixtureMethod, anExecutionTime, someExtendedResults); } }