View Javadoc
1   package net.avcompris.commons3.web.it.utils;
2   
3   import static java.lang.annotation.ElementType.TYPE;
4   import static java.lang.annotation.RetentionPolicy.RUNTIME;
5   
6   import java.lang.annotation.Retention;
7   import java.lang.annotation.Target;
8   
9   @Retention(RUNTIME)
10  @Target(TYPE)
11  public @interface RestAssured {
12  
13  	/**
14  	 * The name of the env property to use as the Base URL for Rest Assured. e.g.
15  	 * "my_service.baseURL"
16  	 */
17  	String value();
18  }