DRAFT

javax.servlet.annotation
Annotation Type WebInitParam


@Target(value=TYPE)
@Retention(value=RUNTIME)
@Documented
public @interface WebInitParam

Used to declare init params in servlets in filters

Since:
Servlet 3.0

Required Element Summary
 java.lang.String name
          Name of the init param
 java.lang.String value
          Value of the init param
 
Optional Element Summary
 java.lang.String description
          Description of the init param
 

Element Detail

name

public abstract java.lang.String name
Name of the init param


value

public abstract java.lang.String value
Value of the init param

description

public abstract java.lang.String description
Description of the init param

Default:
""

DRAFT

Submit a bug or feature

Copyright © 2009 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms.