Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.4)

Part Number E13941-04

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.


Copyright 1996, 2010, 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.

Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.4)

Part Number E13941-04