DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_validator / checker / src / main / java / org / onap / sdc / dcae / checker / annotations / Validates.java
1 package org.onap.sdc.dcae.checker.annotations;
2
3 import java.lang.annotation.Retention;
4 import java.lang.annotation.RetentionPolicy;
5 import java.lang.annotation.ElementType;
6 import java.lang.annotation.Target;
7
8
9 /** */
10 @Retention(RetentionPolicy.RUNTIME)
11 @Target({ElementType.TYPE, ElementType.METHOD}) 
12 public @interface Validates {
13   String rule() default "/";
14         String[] timing() default { "post" };
15 }