Oracle

weblogic.servlet.annotation
Annotation Type WLInitParam


@Target(value={})
@Retention(value=RUNTIME)
public @interface WLInitParam

The WLInitParam annotation is used within the context of the WLServlet or WLFilter annotations to declare the 'init-param' attributes for the servlet and filter elements of the web.xml descriptor.

Example:

  initParams = {@WLInitParam(name="one", value="1"),
                @WLInitParam(name="two", value="2")}
 

Annotating a Servlet or Filter class with the above annotation is equivalent to declaring the following in the web.xml descriptor:

  . . .
  <init-param>
   <param-name>one</param-name>
   <param-value>1</param-value>
  </init-param>
  <init-param>
   <param-name>two</param-name>
   <param-value>2</param-value>
  </init-param>
  . . .
 


Required Element Summary
 String name
          The init parameter name.
 String value
          The init parameter value.
 

Element Detail

name

public abstract String name
The init parameter name.


value

public abstract String value
The init parameter value.


Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs103
Copyright 1996,2008, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.