java.lang.Object
org.mobicents.slee.container.management.EnvironmentEntry
- All Implemented Interfaces:
- java.io.Serializable
- public class EnvironmentEntry
- extends java.lang.Object
- implements java.io.Serializable
Environment Entry in the SBB Deployment Descriptor.
Zero or more env-entry elements.
A description element.This is an optional informational element.
o An env-entry–name element. This element specifies the location
within the JNDI component environment to which the
environment entry value will be bound.
o An env-entry-value element. This element specifies the value
that will be bound to the location specified by the enventry–name element.
o An env-entry–type element. This element specifies the type of the value specified by the environment env-entry
element.
description
private java.lang.String description
name
private java.lang.String name
value
private java.lang.String value
type
private java.lang.String type
EnvironmentEntry
protected EnvironmentEntry(java.lang.String description,
java.lang.String name,
java.lang.String value,
java.lang.String type)
getDescription
public java.lang.String getDescription()
getName
public java.lang.String getName()
getType
public java.lang.String getType()
getValue
public java.lang.String getValue()
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method
never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string
concatenation with this object. If the result is
null, string concatenation will instead
use "null".
The default implementation returns
getClass().getName() + "@" +
Integer.toHexString(hashCode()).