com.trankimtung.quickfixj.spring.boot.starter.EnableQuickFixJServer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickfixj-spring-boot-starter Show documentation
Show all versions of quickfixj-spring-boot-starter Show documentation
A QuickFix/J Spring Boot starter
The newest version!
package com.trankimtung.quickfixj.spring.boot.starter
import com.trankimtung.quickfixj.spring.boot.starter.autoconfigure.server.QuickFixJServerMarkerConfiguration
import org.springframework.context.annotation.Import
import java.lang.annotation.Inherited
/**
* Enable QuickFix/J Server.
*/
@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.RUNTIME)
@Inherited
@MustBeDocumented
@Import(QuickFixJServerMarkerConfiguration::class)
annotation class EnableQuickFixJServer