source: tapas/common/implementation/com/ether/annotation/ControllerMethod.java @ 376

Last change on this file since 376 was 376, checked in by rboipsl, 12 years ago

Creation projet tapas

File size: 430 bytes
Line 
1package com.ether.annotation;
2
3import java.lang.annotation.ElementType;
4import java.lang.annotation.Retention;
5import java.lang.annotation.RetentionPolicy;
6import java.lang.annotation.Target;
7
8import org.jetbrains.annotations.NotNull;
9
10@Retention(RetentionPolicy.RUNTIME)
11@Target(ElementType.METHOD)
12public @interface ControllerMethod
13{
14        @NotNull
15    String view() default "";
16
17        @NotNull
18    boolean jsonResult() default false;
19}
Note: See TracBrowser for help on using the repository browser.