com.openelements.hedera.spring.EnableHedera Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hedera-spring Show documentation
Show all versions of hedera-spring Show documentation
Library to work with Hedera in Spring
The newest version!
package com.openelements.hedera.spring;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import com.openelements.hedera.spring.implementation.HederaAutoConfiguration;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import org.springframework.context.annotation.Import;
/**
* Enables Hedera support.
*
* Using this annotation will import the necessary configuration to enable Hedera support.
*/
@Target(TYPE)
@Retention(RUNTIME)
@Import(HederaAutoConfiguration.class)
@Documented
public @interface EnableHedera {
}