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

io.github.sskorol.data.Source Maven / Gradle / Ivy

package io.github.sskorol.data;

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

/**
 * Use this annotation to provide CSV / JSON source path. Note that local path should be relative to resources folder.
 * As an alternative you can provide a URL.
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface Source {

    String path();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy