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

org.visallo.web.initializers.SystemNotificationInitializer Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package org.visallo.web.initializers;

import com.google.inject.Inject;
import org.visallo.core.model.notification.SystemNotificationService;

import javax.servlet.ServletContext;

public class SystemNotificationInitializer extends ApplicationBootstrapInitializer {
    private final SystemNotificationService systemNotificationService;

    @Inject
    public SystemNotificationInitializer(SystemNotificationService systemNotificationService) {
        this.systemNotificationService = systemNotificationService;
    }

    @Override
    public void initialize(ServletContext context) {
        this.systemNotificationService.start();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy