Package com.bea.wli.config.env
Class QualifiedEnvValue
java.lang.Object
com.bea.wli.config.env.NonQualifiedEnvValue
com.bea.wli.config.env.QualifiedEnvValue
- All Implemented Interfaces:
About
,Serializable
Represents an instance of an environment value embedded in a particular resource data.
This class extends
NonQualifiedEnvValue
and augments it by adding the reference
to the resource where the environment value exists. This class fully qualifies an
environment value along with the owner resource that contains it, its location within
the resource, its type, and finally its value.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionQualifiedEnvValue
(Ref owner, NonQualifiedEnvValue envValue) ConstructorQualifiedEnvValue
(Ref owner, String type, String location, Object value) Constructor -
Method Summary
Methods inherited from class com.bea.wli.config.env.NonQualifiedEnvValue
getEnvValueType, getLocation, getValue, isSameEnvVariable, toString
-
Constructor Details
-
QualifiedEnvValue
Constructor- Parameters:
owner
- reference to the resource that contains this env valueenvValue
- the environment value
-
QualifiedEnvValue
Constructor- Parameters:
owner
- reference to the resource that contains this env valuetype
- the type of the environment value. ENv value types are used as simple, and informal grouping constructs to refer to a class of env values. Cannot be null.location
- an opaque representation of the location of this env value inside the resource. The form and semantics of this location is specified and understood by the creator of this env value. Cannot be nullvalue
- The actual value. Can be null
-
-
Method Details
-
getOwner
Returns the reference to the resource that contains this environment value -
about
-
hashCode
public int hashCode()- Overrides:
hashCode
in classNonQualifiedEnvValue
-
equals
- Overrides:
equals
in classNonQualifiedEnvValue
-