com.ibm.cics.server

Class NameValueData

  • java.lang.Object
    • com.ibm.cics.server.NameValueData
  • Direct Known Subclasses:
    FormField, HttpHeader, QueryParm


    public abstract class NameValueData
    extends java.lang.Object

    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.

    Since CICS TS version:
    2.3
    Since package version:
    1.0
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      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
        Since CICS TS version:
        2.3
        Since package version:
        1.0
      • getValue

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

        Returns:
        The value
        Since CICS TS version:
        2.3
        Since package version:
        1.0