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

org.camunda.community.migration.converter.webapp.ConverterApplication Maven / Gradle / Ivy

package org.camunda.community.migration.converter.webapp;

import org.camunda.community.migration.converter.BpmnConverter;
import org.camunda.community.migration.converter.BpmnConverterFactory;
import org.camunda.community.migration.converter.NotificationService;
import org.camunda.community.migration.converter.NotificationServiceFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class ConverterApplication {
  public static void main(String[] args) {
    SpringApplication.run(ConverterApplication.class, args);
  }

  @Bean
  public BpmnConverter bpmnConverter(NotificationService notificationService) {
    NotificationServiceFactory.getInstance().setInstance(notificationService);
    return BpmnConverterFactory.getInstance().get();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy