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

com.openelements.hedera.spring.EnableHedera Maven / Gradle / Ivy

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 { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy