source: ether_megapoli/trunk/common/implementation/com/ether/annotation/ControllerMethod.java @ 268

Last change on this file since 268 was 268, checked in by vmipsl, 13 years ago

BO User

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