org.jsmart.simulator.annotations.ApiRepo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro-simulator Show documentation
Show all versions of micro-simulator Show documentation
Simulates RESTFUL End Points for Micro Services.
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();
}