com.ibm.watson.developer_cloud.spring.boot.ConditionalOnWatsonServiceProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of watson-spring-boot-starter Show documentation
Show all versions of watson-spring-boot-starter Show documentation
Spring Boot Starter for the IBM Watson Services
The newest version!
package com.ibm.watson.developer_cloud.spring.boot;
import org.springframework.context.annotation.Conditional;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ ElementType.TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Conditional(WatsonServiceCondition.class)
public @interface ConditionalOnWatsonServiceProperties {
String prefix();
}