Class ContextParameter


  • public class ContextParameter
    extends java.lang.Object
    Represents a free parameter attachable to the context.
    Version:
    $Id: $Id
    Author:
    another
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String CTX_PARAM_CMS_VERSIONING
      Constant for cms versioning parameter.
    • Constructor Summary

      Constructors 
      Constructor Description
      ContextParameter()
      Constructor for ContextParameter.
      ContextParameter​(java.lang.String aName, java.lang.String aValue)
      Constructor for ContextParameter.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Getter for the field name.
      java.lang.String getValue()
      Getter for the field value.
      void setName​(java.lang.String aName)
      Setter for the field name.
      void setValue​(java.lang.String aValue)
      Setter for the field value.
      java.lang.String toString()
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • CTX_PARAM_CMS_VERSIONING

        public static final java.lang.String CTX_PARAM_CMS_VERSIONING
        Constant for cms versioning parameter.
        See Also:
        Constant Field Values
    • Constructor Detail

      • ContextParameter

        public ContextParameter()

        Constructor for ContextParameter.

      • ContextParameter

        public ContextParameter​(java.lang.String aName,
                                java.lang.String aValue)

        Constructor for ContextParameter.

        Parameters:
        aName - a String object.
        aValue - a String object.
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getName

        public java.lang.String getName()

        Getter for the field name.

        Returns:
        a String object.
      • setName

        public void setName​(java.lang.String aName)

        Setter for the field name.

        Parameters:
        aName - a String object.
      • getValue

        public java.lang.String getValue()

        Getter for the field value.

        Returns:
        a String object.
      • setValue

        public void setValue​(java.lang.String aValue)

        Setter for the field value.

        Parameters:
        aValue - a String object.