com.ibm.cics.server
Class NameValueData

java.lang.Object
  extended bycom.ibm.cics.server.NameValueData
Direct Known Subclasses:
FormField, HttpHeader

public abstract class NameValueData
extends java.lang.Object

Usage:
This abstract class is used to store name value pairs.

Protected constructors and setters allow the name and value of a name-value pair to be set.

Getter methods allow the name and value of a name-value pair to be obtained.


Method Summary
 java.lang.String getName()
          Usage:
Returns the name of a name-value pair.
 java.lang.String getValue()
          Usage:
Returns the value of a name-value pair.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getName

public java.lang.String getName()
Usage:
Returns the name of a name-value pair.

Returns:
The name
Throws:
None

getValue

public java.lang.String getValue()
Usage:
Returns the value of a name-value pair.

Returns:
The value
Throws:
None