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

io.hyperfoil.api.config.Embed Maven / Gradle / Ivy

There is a newer version: 0.27
Show newest version
package io.hyperfoil.api.config;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * For purposes of configuration embed all properties into the declaring builder.
 * 

* If this annotation is used on a method it must be a public non-static no-arg method. * If this annotation is used on a field it must be a public final field. */ @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.FIELD, ElementType.METHOD }) public @interface Embed { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy