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

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

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

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

/**
 * Annotation to mark classes that can be processed by a context toJson provider implementation
 * ( for example the TraceeGenericGsonSerializer).
 * Created by Tobias Gindler, holisticon AG on 14.03.14.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(value = { ElementType.TYPE })
public @interface TraceeContextProvider {

    String displayName();

    int order() default 100;

    boolean suppressTypeInOutput() default false;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy