Interface EntityDefinitionConstraintParameterMapping

    • Method Detail

      • getParameterName

        String getParameterName()
        Get the value for ParameterName. (The name of the parameter that this value applies to.) This value is mandatory, and therefore will not be null if this object has been retrieved from the database.
        Returns:
        the field
        Throws:
        ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.
      • getValue

        String getValue()
        Get the value for Value. (The value to set the parameter to or an sql expression that can be used by this parameter.) This value is mandatory, and therefore will not be null if this object has been retrieved from the database.
        Returns:
        the field
        Throws:
        ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.
      • setParameterName

        void setParameterName​(String newParameterName)
        Set the value for ParameterName. (The name of the parameter that this value applies to.) This value is mandatory.
        Parameters:
        newParameterName - the new value for ParameterName. If this is null, then the object cannot be persisted.
        Throws:
        ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.
      • setValue

        void setValue​(String newValue)
        Set the value for Value. (The value to set the parameter to or an sql expression that can be used by this parameter.) This value is mandatory.
        Parameters:
        newValue - the new value for Value. If this is null, then the object cannot be persisted.
        Throws:
        ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.