com.boozallen.aiops.mda.basic.AbstractPipelineStep Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-data-delivery-spark-model-basic Show documentation
Show all versions of test-data-delivery-spark-model-basic Show documentation
Contains a barebones model with all features turned off to verify basic MDA generation and compilation
package com.boozallen.aiops.mda.basic;
/*-
* #%L
* aiSSEMBLE::Test::MDA::Data Delivery Spark Basic
* %%
* Copyright (C) 2021 Booz Allen
* %%
* This software package is licensed under the Booz Allen Public License. All Rights Reserved.
* #L%
*/
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.UUID;
import java.util.Map;
/**
* Performs common step configuration based on the pipeline.
*
* GENERATED CODE - DO NOT MODIFY (add your customizations in your step implementation classes).
*
* Generated from: templates/data-delivery-spark/abstract.pipeline.step.java.vm
*/
public abstract class AbstractPipelineStep extends AbstractDataActionImpl {
private static final Logger logger = LoggerFactory.getLogger(AbstractPipelineStep.class);
protected AbstractPipelineStep(String subject, String action) {
super(subject, action);
}
}