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

org.jsmart.simulator.annotations.ApiRepo Maven / Gradle / Ivy

The newest version!
package org.jsmart.simulator.annotations;

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

/**
 * The folder name where the simulator jsons reside. Usually the folder is maintained
 * under src/resources. But it can be configured to point to any custom folder for
 * project or developer convenience.
 *
 * @author Siddha
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ApiRepo {
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy