org.apache.catalina.deploy
Class ApplicationParameter

java.lang.Object
  |
  +--org.apache.catalina.deploy.ApplicationParameter

public final class ApplicationParameter
extends java.lang.Object

Representation of a context initialization parameter that is configured in the server configuration file, rather than the application deployment descriptor. This is convenient for establishing default values (which may be configured to allow application overrides or not) without having to modify the application deployment descriptor itself.

Version:
$Revision: 1.1 $ $Date: 2000/09/24 02:53:00 $
Author:
Craig R. McClanahan

Constructor Summary
ApplicationParameter()
           
 
Method Summary
 java.lang.String getName()
           
 boolean getOverride()
           
 java.lang.String getValue()
           
 void setName(java.lang.String name)
           
 void setOverride(boolean override)
           
 void setValue(java.lang.String value)
           
 java.lang.String toString()
          Return a String representation of this object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ApplicationParameter

public ApplicationParameter()
Method Detail

getName

public java.lang.String getName()

setName

public void setName(java.lang.String name)

getOverride

public boolean getOverride()

setOverride

public void setOverride(boolean override)

getValue

public java.lang.String getValue()

setValue

public void setValue(java.lang.String value)

toString

public java.lang.String toString()
Return a String representation of this object.
Overrides:
toString in class java.lang.Object


Copyright © 2000 Apache Software Foundation. All Rights Reserved.