Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.mobicents.slee.container.management
Class EnvironmentEntry  view EnvironmentEntry download EnvironmentEntry.java

java.lang.Object
  extended byorg.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.


Field Summary
private  java.lang.String description
           
private  java.lang.String name
           
private  java.lang.String type
           
private  java.lang.String value
           
 
Constructor Summary
protected EnvironmentEntry(java.lang.String description, java.lang.String name, java.lang.String value, java.lang.String type)
           
 
Method Summary
 java.lang.String getDescription()
           
 java.lang.String getName()
           
 java.lang.String getType()
           
 java.lang.String getValue()
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

description

private java.lang.String description

name

private java.lang.String name

value

private java.lang.String value

type

private java.lang.String type
Constructor Detail

EnvironmentEntry

protected EnvironmentEntry(java.lang.String description,
                           java.lang.String name,
                           java.lang.String value,
                           java.lang.String type)
Method Detail

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()).