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

com.fivefaces.StructureApplication Maven / Gradle / Ivy

There is a newer version: 1.0.62
Show newest version
package com.fivefaces;

import com.fivefaces.integration.factory.MessageFactory;
import com.fivefaces.integration.sender.MessageSender;
import com.fivefaces.warehouse.factory.WarehouseQueryFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class StructureApplication {

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

    @Bean
    public WarehouseQueryFactory warehouseQueryFactory() {
        return payload -> null;
    }

    @Bean
    public MessageFactory messageFactory() {
        return jsonObject -> null;
    }

    @Bean
    public MessageSender messageSender() {
        return jsonObject -> null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy