All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.boozallen.aiops.mda.basic.pipeline.PipelineBase Maven / Gradle / Ivy

Go to download

Contains a barebones model with all features turned off to verify basic MDA generation and compilation

There is a newer version: 1.10.0
Show newest version
package com.boozallen.aiops.mda.basic.pipeline;

/*-
 * #%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;

/**
 * Perform pipeline level process for SparkJavaDataDeliveryBasic
 * 
 * GENERATED CODE - DO NOT MODIFY (add your customizations in ${step.capitalizedName}).
 * 
 * Generated from: templates/pipeline.base.java.vm
 */

public class PipelineBase {
    private static final Logger logger = LoggerFactory.getLogger(PipelineBase.class);
    private static PipelineBase instance;

    private PipelineBase() {
    }

    public static PipelineBase getInstance() {
        if (instance == null) {
            instance = new PipelineBase();
        }
        return instance;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy