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

com.boozallen.aissemble.alerting.slack.cdi.SlackCdiContext Maven / Gradle / Ivy

There is a newer version: 1.10.0
Show newest version
package com.boozallen.aissemble.alerting.slack.cdi;

/*-
 * #%L
 * aiSSEMBLE::Extensions::Alerting::Slack
 * %%
 * Copyright (C) 2021 Booz Allen
 * %%
 * This software package is licensed under the Booz Allen Public License. All Rights Reserved.
 * #L%
 */

import java.util.ArrayList;
import java.util.List;

import javax.enterprise.inject.spi.Extension;

import com.boozallen.aissemble.alerting.slack.consumer.SlackConsumer;
import com.boozallen.aissemble.core.cdi.CdiContext;

public class SlackCdiContext implements CdiContext {

    @Override
    public List> getCdiClasses() {
        List> classes = new ArrayList>();
        classes.add(SlackConsumer.class);
        return classes;
    }

    @Override
    public List getExtensions() {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy