NIFI-12108 This closes #7773. Deprecated SpringContextProcessor for removal

Signed-off-by: Joseph Witt <joewitt@apache.org>
This commit is contained in:
exceptionfactory 2023-09-21 15:58:50 -05:00 committed by Joseph Witt
parent e7215bf5c1
commit 1a5798b1fe
No known key found for this signature in database
GPG Key ID: 9093BF854F811A1A

View File

@ -19,6 +19,7 @@ package org.apache.nifi.spring;
import org.apache.commons.lang3.StringUtils;
import org.apache.nifi.annotation.behavior.TriggerWhenEmpty;
import org.apache.nifi.annotation.documentation.CapabilityDescription;
import org.apache.nifi.annotation.documentation.DeprecationNotice;
import org.apache.nifi.annotation.documentation.Tags;
import org.apache.nifi.annotation.lifecycle.OnScheduled;
import org.apache.nifi.annotation.lifecycle.OnStopped;
@ -133,6 +134,7 @@ import java.util.concurrent.TimeUnit;
* representation of the content that is being exchanged between NiFi and
* Spring.
*/
@DeprecationNotice(reason = "Alternative event-handling solutions should be used")
@TriggerWhenEmpty
@Tags({ "Spring", "Message", "Get", "Put", "Integration" })
@CapabilityDescription("A Processor that supports sending and receiving data from application defined in "