Interface ImportActionParameter

    • Method Detail

      • getDefaultValue

        String getDefaultValue()
        Get the value for DefaultValue. (The parameter default value.)
        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.
      • isNullable

        boolean isNullable()
        Get the value for Nullable. (Is the parameter optional?)
        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.
      • setDefaultValue

        void setDefaultValue​(String newDefaultValue)
        Set the value for DefaultValue. (The parameter default value.) This value is optional.
        Parameters:
        newDefaultValue - the new value for DefaultValue.
        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.
      • setNullable

        void setNullable​(boolean newNullable)
        Set the value for Nullable. (Is the parameter optional?)
        Parameters:
        newNullable - the new value for Nullable.
        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.
      • getImportRuleSet

        ImportRuleSet getImportRuleSet()
        Get the ImportRuleSet.
        Returns:
        ImportRuleSet
        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.