Interface SAPAbapVariantParameterValue

    • Method Detail

      • getKind

        SAPAbapProgramParameterKind getKind()
        Get the value for Kind. (Kind of parameter.) This value is mandatory, and therefore will not be null if this object has been retrieved from the database.
        Returns:
        the field
        Throws:
        com.redwood.scheduler.api.exception.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. (Value of the parameter)
        Returns:
        the field
        Throws:
        com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.
      • setKind

        void setKind​(SAPAbapProgramParameterKind newKind)
        Set the value for Kind. (Kind of parameter.) This value is mandatory.
        Parameters:
        newKind - the new value for Kind. If this is null, then the object cannot be persisted.
        Throws:
        com.redwood.scheduler.api.exception.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. (Value of the parameter) This value is optional.
        Parameters:
        newValue - the new value for Value.
        Throws:
        com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException - This will be thrown if this method is called while the object is not attached to a session.
      • getSAPAbapVariant

        SAPAbapVariant getSAPAbapVariant()
        Get the SAPAbapVariant.
        Returns:
        SAPAbapVariant
        Throws:
        com.redwood.scheduler.api.exception.ObjectDeletedException - If this method is called when the object has been marked for deletion.
        com.redwood.scheduler.api.exception.ObjectNotAttachedToSessionException - If this method is called when the object has been removed from it's session.