/** * Copyright 2015 VU University Medical Center. * Licensed under the Apache License version 2.0 (see http://www.apache.org/licenses/LICENSE-2.0.html). */ package nl.vumc.biomedbridges.examples; import com.google.inject.Inject; import nl.vumc.biomedbridges.core.WorkflowEngineFactory; import nl.vumc.biomedbridges.core.WorkflowFactory; /** * This class contains an very simple example that always fails for testing purposes. * * @author <a href="mailto:f.debruijn@vumc.nl">Freek de Bruijn</a> */ public class DummyExample extends AbstractBaseExample { /** * Construct the dummy example. * * @param workflowEngineFactory the workflow engine factory to use. * @param workflowFactory the workflow factory to use. */ @Inject public DummyExample(final WorkflowEngineFactory workflowEngineFactory, final WorkflowFactory workflowFactory) { super(workflowEngineFactory, workflowFactory); } @Override public boolean runExample(String galaxyInstanceUrl) { return false; } }