Class ContextEnvironment
- java.lang.Object
-
- org.apache.tomcat.util.descriptor.web.ResourceBase
-
- org.apache.tomcat.util.descriptor.web.ContextEnvironment
-
- All Implemented Interfaces:
java.io.Serializable,Injectable
public class ContextEnvironment extends ResourceBase
Representation of an application environment entry, as represented in an<env-entry>element in the deployment descriptor.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContextEnvironment()Default constructor for ContextEnvironment.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)booleangetOverride()Returns whether this environment entry allows overrides by the application deployment descriptor.java.lang.StringgetValue()Returns the value of this environment entry.inthashCode()voidsetOverride(boolean override)Sets whether this environment entry allows overrides by the application deployment descriptor.voidsetValue(java.lang.String value)Sets the value of this environment entry.java.lang.StringtoString()Return a String representation of this object.-
Methods inherited from class org.apache.tomcat.util.descriptor.web.ResourceBase
addInjectionTarget, getDescription, getInjectionTargets, getLookupName, getName, getNamingResources, getProperty, getType, listProperties, removeProperty, setDescription, setLookupName, setName, setNamingResources, setProperty, setType
-
-
-
-
Method Detail
-
getOverride
public boolean getOverride()
Returns whether this environment entry allows overrides by the application deployment descriptor.- Returns:
- true if overrides are allowed
-
setOverride
public void setOverride(boolean override)
Sets whether this environment entry allows overrides by the application deployment descriptor.- Parameters:
override- true if overrides are allowed
-
getValue
public java.lang.String getValue()
Returns the value of this environment entry.- Returns:
- the environment entry value
-
setValue
public void setValue(java.lang.String value)
Sets the value of this environment entry.- Parameters:
value- the environment entry value
-
toString
public java.lang.String toString()
Return a String representation of this object.- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classResourceBase
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classResourceBase
-
-