com.boozallen.aiops.mda.basic.AbstractDataActionImpl 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.aeonbits.owner.KrauseningConfigFactory;
import com.boozallen.aiops.data.delivery.spark.AbstractDataAction;
import com.boozallen.aiops.data.delivery.spark.SparkConfig;
/**
* Contains the general concepts needed to perform a base AIOps Reference Architecture Data Action. A Data Action is a
* step within a Data Flow.
*
* GENERATED STUB CODE - PLEASE ***DO*** MODIFY
*
* Generated from: templates/data-delivery-spark/abstract.data.action.impl.java.vm
*/
public abstract class AbstractDataActionImpl extends AbstractDataAction {
protected static final SparkConfig config = KrauseningConfigFactory.create(SparkConfig.class);
protected AbstractDataActionImpl(String subject, String action) {
super(subject, action);
}
}