Skip to content

Commit

Permalink
Added Bot Authorization Annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Alvin Reyes committed Apr 26, 2017
1 parent 0028d74 commit a0db75a
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package co.aurasphere.botmill.core.annotation;

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

@Documented
@Target(ElementType.METHOD)
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface BotAuthorization {

}

0 comments on commit a0db75a

Please sign in to comment.