This commit is contained in:
24
src/org/redkale/net/http/WebInitParam.java
Normal file
24
src/org/redkale/net/http/WebInitParam.java
Normal file
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package org.redkale.net.http;
|
||||
|
||||
import java.lang.annotation.*;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author zhangjx
|
||||
*/
|
||||
@Target({ElementType.TYPE})
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Documented
|
||||
public @interface WebInitParam {
|
||||
|
||||
String name();
|
||||
|
||||
String value();
|
||||
|
||||
String description() default "";
|
||||
}
|
||||
Reference in New Issue
Block a user