CMSgov/dpc-app

View on GitHub
dpc-common/src/main/java/gov/cms/dpc/common/annotations/ExportPath.java

Summary

Maintainability
A
0 mins
Test Coverage
package gov.cms.dpc.common.annotations;

import com.google.inject.BindingAnnotation;

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

/**
 * Injectable {@link String} annotation pointing to the root directory where the NDJSON exports from the Aggregation engine will be stored.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD})
@BindingAnnotation
public @interface ExportPath {
}