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

io.tracee.contextlogger.contextprovider.api.Flatten Maven / Gradle / Ivy

There is a newer version: 0.11.0
Show newest version
package io.tracee.contextlogger.contextprovider.api;

/**
 * Annotation to mark methods annotated by {@link io.tracee.contextlogger.contextprovider.api.TraceeContextProviderMethod}
 * with return value of type {@link io.tracee.contextlogger.data.subdata.NameStringValuePair}
 * to be printed inline.
 * Used for dynamic context informations.
 * Created by Tobias Gindler, holisticon AG on 17.03.14.
 */

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

@Retention(RetentionPolicy.RUNTIME)
@Target(value = {ElementType.METHOD })
public @interface Flatten {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy