com.trankimtung.quickfixj.spring.boot.starter.EnableQuickFixJClient.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.client.QuickFixJClientMarkerConfiguration
import org.springframework.context.annotation.Import
import java.lang.annotation.Inherited
/**
* Enable QuickFix/J Client.
*/
@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.RUNTIME)
@Inherited
@MustBeDocumented
@Import(QuickFixJClientMarkerConfiguration::class)
annotation class EnableQuickFixJClient