From a83ed34f91432de22552b8ab1abfd7791fbb4412 Mon Sep 17 00:00:00 2001 From: Joseph Percivall Date: Wed, 9 Sep 2015 16:50:25 -0400 Subject: [PATCH] Commit for NIFI-836 to fix broken javadoc @link elements Signed-off-by: Matt Gilman --- .../annotation/behavior/SupportsBatching.java | 8 ++-- .../controller/annotation/OnConfigured.java | 2 +- .../controller/repository/FlowFileRecord.java | 2 +- .../ProcessorInitializationContext.java | 2 +- .../processor/annotation/OnScheduled.java | 2 +- .../annotation/SupportsBatching.java | 6 +-- .../nifi/provenance/ProvenanceEventType.java | 2 +- .../nifi/provenance/ProvenanceReporter.java | 8 ++-- .../apache/nifi/util/MockProcessSession.java | 4 +- .../java/org/apache/nifi/util/TestRunner.java | 38 +++++++++---------- .../apache/nifi/connectable/Connectable.java | 12 +++--- .../nifi/controller/ProcessScheduler.java | 8 ++-- .../nifi/controller/StandardFunnel.java | 4 +- .../org/apache/nifi/groups/ProcessGroup.java | 2 +- .../scheduling/StandardProcessScheduler.java | 6 +-- 15 files changed, 53 insertions(+), 53 deletions(-) diff --git a/nifi-api/src/main/java/org/apache/nifi/annotation/behavior/SupportsBatching.java b/nifi-api/src/main/java/org/apache/nifi/annotation/behavior/SupportsBatching.java index 807e637f94..3ffe2d6308 100644 --- a/nifi-api/src/main/java/org/apache/nifi/annotation/behavior/SupportsBatching.java +++ b/nifi-api/src/main/java/org/apache/nifi/annotation/behavior/SupportsBatching.java @@ -27,14 +27,14 @@ import java.lang.annotation.Target; * Marker annotation a Processor implementation can use to indicate that users * should be able to supply a Batch Duration for the Processor. If a Processor * uses this annotation, it is allowing the Framework to batch - * {@link nifi.processor.ProcessSession ProcessSession}s' commits, as well as + * {@link org.apache.nifi.processor.ProcessSession ProcessSession}s' commits, as well as * allowing the Framework to return the same ProcessSession multiple times from * subsequent calls to - * {@link nifi.processor.ProcessSessionFactory ProcessSessionFactory}. - * {@link nifi.processor.ProcessSessionFactory#createSession() createSession()}. + * {@link org.apache.nifi.processor.ProcessSessionFactory ProcessSessionFactory}. + * {@link org.apache.nifi.processor.ProcessSessionFactory#createSession() createSession()}. * * When this Annotation is used, it is important to note that calls to - * {@link nifi.processor.ProcessSession#commit() ProcessSession.commit()} may + * {@link org.apache.nifi.processor.ProcessSession#commit() ProcessSession.commit()} may * not provide a guarantee that the data has been safely stored in NiFi's * Content Repository or FlowFile Repository. Therefore, it is not appropriate, * for instance, to use this annotation if the Processor will call diff --git a/nifi-api/src/main/java/org/apache/nifi/controller/annotation/OnConfigured.java b/nifi-api/src/main/java/org/apache/nifi/controller/annotation/OnConfigured.java index aef80acdb9..d56b969fb2 100644 --- a/nifi-api/src/main/java/org/apache/nifi/controller/annotation/OnConfigured.java +++ b/nifi-api/src/main/java/org/apache/nifi/controller/annotation/OnConfigured.java @@ -28,7 +28,7 @@ import java.lang.annotation.Target; * method should be called after all of the properties have been set for the * Controller Service. Methods using this annotation must take either 0 * arguments or a single argument of type - * {@link nifi.controller.ConfigurationContext ConfigurationContext}. + * {@link org.apache.nifi.controller.ConfigurationContext ConfigurationContext}. * * * @deprecated This annotation has been replaced by those in the diff --git a/nifi-api/src/main/java/org/apache/nifi/controller/repository/FlowFileRecord.java b/nifi-api/src/main/java/org/apache/nifi/controller/repository/FlowFileRecord.java index f2493f616e..b358cd9f60 100644 --- a/nifi-api/src/main/java/org/apache/nifi/controller/repository/FlowFileRecord.java +++ b/nifi-api/src/main/java/org/apache/nifi/controller/repository/FlowFileRecord.java @@ -42,7 +42,7 @@ public interface FlowFileRecord extends FlowFile { * FlowFile's content occurs. This mechanism allows multiple FlowFiles to * have the same ContentClaim, which can be significantly more efficient for * some implementations of - * {@link nifi.controller.repository.ContentRepository ContentRepository} + * {@link org.apache.nifi.controller.repository.ContentRepository ContentRepository} */ long getContentClaimOffset(); } diff --git a/nifi-api/src/main/java/org/apache/nifi/processor/ProcessorInitializationContext.java b/nifi-api/src/main/java/org/apache/nifi/processor/ProcessorInitializationContext.java index 7b09e1bafd..779633ccea 100644 --- a/nifi-api/src/main/java/org/apache/nifi/processor/ProcessorInitializationContext.java +++ b/nifi-api/src/main/java/org/apache/nifi/processor/ProcessorInitializationContext.java @@ -22,7 +22,7 @@ import org.apache.nifi.logging.ProcessorLog; /** *

* The ProcessorInitializationContext provides - * {@link nifi.processor.Processor Processor}s access to objects that may be of + * {@link org.apache.nifi.processor.Processor Processor}s access to objects that may be of * use throughout the life of the Processor. *

*/ diff --git a/nifi-api/src/main/java/org/apache/nifi/processor/annotation/OnScheduled.java b/nifi-api/src/main/java/org/apache/nifi/processor/annotation/OnScheduled.java index 3815de2f40..2fec39c2fd 100644 --- a/nifi-api/src/main/java/org/apache/nifi/processor/annotation/OnScheduled.java +++ b/nifi-api/src/main/java/org/apache/nifi/processor/annotation/OnScheduled.java @@ -29,7 +29,7 @@ import java.lang.annotation.Target; * will be called before any 'onTrigger' calls and will be called once each time * a processor instance is scheduled to run. Methods using this annotation must * take either 0 arguments or a single argument of type - * {@link nifi.processor.SchedulingContext SchedulingContext}. + * {@link org.apache.nifi.processor.SchedulingContext SchedulingContext}. * * If any method annotated with this annotation throws, the processor will not * be scheduled to run. diff --git a/nifi-api/src/main/java/org/apache/nifi/processor/annotation/SupportsBatching.java b/nifi-api/src/main/java/org/apache/nifi/processor/annotation/SupportsBatching.java index 5b3d1aa2f1..e39e21240c 100644 --- a/nifi-api/src/main/java/org/apache/nifi/processor/annotation/SupportsBatching.java +++ b/nifi-api/src/main/java/org/apache/nifi/processor/annotation/SupportsBatching.java @@ -27,13 +27,13 @@ import java.lang.annotation.Target; * Marker annotation a Processor implementation can use to indicate that users * should be able to supply a Batch Duration for the Processor. If a Processor * uses this annotation, it is allowing the Framework to batch - * {@link nifi.processor.ProcessSession ProcessSession}s' commits, as well as + * {@link org.apache.nifi.processor.ProcessSession ProcessSession}s' commits, as well as * allowing the Framework to return the same ProcessSession multiple times from * subsequent calls to - * {@link nifi.processor.ProcessSessionFactory ProcessSessionFactory}.{@link nifi.processor.ProcessSessionFactory#createSession() createSession()}. + * {@link org.apache.nifi.processor.ProcessSessionFactory ProcessSessionFactory}.{@link org.apache.nifi.processor.ProcessSessionFactory#createSession() createSession()}. * * When this Annotation is used, it is important to note that calls to - * {@link nifi.processor.ProcessSession#commit() ProcessSession.commit()} may + * {@link org.apache.nifi.processor.ProcessSession#commit() ProcessSession.commit()} may * not provide a guarantee that the data has been safely stored in NiFi's * Content Repository or FlowFile Repository. Therefore, it is not appropriate, * for instance, to use this annotation if the Processor will call diff --git a/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceEventType.java b/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceEventType.java index f2638fe16e..e5e47b7aa5 100644 --- a/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceEventType.java +++ b/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceEventType.java @@ -71,7 +71,7 @@ public enum ProvenanceEventType { ATTRIBUTES_MODIFIED, /** * ROUTE is used to show that a FlowFile was routed to a specified - * {@link nifi.processor.Relationship Relationship} and should provide + * {@link org.apache.nifi.processor.Relationship Relationship} and should provide * information about why the FlowFile was routed to this relationship. */ ROUTE, diff --git a/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceReporter.java b/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceReporter.java index da242b8f3d..db589f8fc4 100644 --- a/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceReporter.java +++ b/nifi-api/src/main/java/org/apache/nifi/provenance/ProvenanceReporter.java @@ -205,7 +205,7 @@ public interface ProvenanceReporter { * correlate the SEND and RECEIVE events. * @param force if true, this event will be added to the * Provenance Repository immediately and will still be persisted if the - * {@link nifi.processor.ProcessSession ProcessSession} to which this + * {@link org.apache.nifi.processor.ProcessSession ProcessSession} to which this * ProvenanceReporter is associated is rolled back. Otherwise, the Event * will be recorded only on a successful session commit. */ @@ -227,7 +227,7 @@ public interface ProvenanceReporter { * remote system's Distinguished Name * @param force if true, this event will be added to the * Provenance Repository immediately and will still be persisted if the - * {@link nifi.processor.ProcessSession ProcessSession} to which this + * {@link org.apache.nifi.processor.ProcessSession ProcessSession} to which this * ProvenanceReporter is associated is rolled back. Otherwise, the Event * will be recorded only on a successful session commit. */ @@ -249,7 +249,7 @@ public interface ProvenanceReporter { * data to the remote system * @param force if true, this event will be added to the * Provenance Repository immediately and will still be persisted if the - * {@link nifi.processor.ProcessSession ProcessSession} to which this + * {@link org.apache.nifi.processor.ProcessSession ProcessSession} to which this * ProvenanceReporter is associated is rolled back. Otherwise, the Event * will be recorded only on a successful session commit. */ @@ -273,7 +273,7 @@ public interface ProvenanceReporter { * data to the remote system * @param force if true, this event will be added to the * Provenance Repository immediately and will still be persisted if the - * {@link nifi.processor.ProcessSession ProcessSession} to which this + * {@link org.apache.nifi.processor.ProcessSession ProcessSession} to which this * ProvenanceReporter is associated is rolled back. Otherwise, the Event * will be recorded only on a successful session commit. */ diff --git a/nifi-mock/src/main/java/org/apache/nifi/util/MockProcessSession.java b/nifi-mock/src/main/java/org/apache/nifi/util/MockProcessSession.java index 4ad3138715..10608544d3 100644 --- a/nifi-mock/src/main/java/org/apache/nifi/util/MockProcessSession.java +++ b/nifi-mock/src/main/java/org/apache/nifi/util/MockProcessSession.java @@ -141,7 +141,7 @@ public class MockProcessSession implements ProcessSession { /** * Clear the 'committed' flag so that we can test that the next iteration of - * {@link nifi.processor.Processor#onTrigger} commits or rolls back the + * {@link org.apache.nifi.processor.Processor#onTrigger} commits or rolls back the * session */ public void clearCommited() { @@ -150,7 +150,7 @@ public class MockProcessSession implements ProcessSession { /** * Clear the 'rolledBack' flag so that we can test that the next iteration - * of {@link nifi.processor.Processor#onTrigger} commits or rolls back the + * of {@link org.apache.nifi.processor.Processor#onTrigger} commits or rolls back the * session */ public void clearRollback() { diff --git a/nifi-mock/src/main/java/org/apache/nifi/util/TestRunner.java b/nifi-mock/src/main/java/org/apache/nifi/util/TestRunner.java index 343fd93501..6bc3442af7 100644 --- a/nifi-mock/src/main/java/org/apache/nifi/util/TestRunner.java +++ b/nifi-mock/src/main/java/org/apache/nifi/util/TestRunner.java @@ -74,7 +74,7 @@ public interface TestRunner { void run(int iterations); /** - * performs the same operation as calling {@link #run(int, boolean, int)} + * performs the same operation as calling {@link #run(int, boolean, boolean)} * with a value of {@code iterations}, {@code stopOnFinish}, {@code true} * * @param iterations number of iterations @@ -89,7 +89,7 @@ public interface TestRunner { *
  • * If {@code initialize} is true, run all methods on the Processor that are * annotated with the - * {@link nifi.processor.annotation.OnScheduled @OnScheduled} annotation. If + * {@link org.apache.nifi.processor.annotation.OnScheduled @OnScheduled} annotation. If * any of these methods throws an Exception, the Unit Test will fail. *
  • *
  • @@ -104,7 +104,7 @@ public interface TestRunner { * As soon as the first thread finishes its execution of * {@link Processor#onTrigger(ProcessContext, ProcessSessionFactory) onTrigger}, * all methods on the Processor that are annotated with the - * {@link nifi.processor.annotation.OnUnscheduled @OnUnscheduled} annotation + * {@link org.apache.nifi.processor.annotation.OnUnscheduled @OnUnscheduled} annotation * are invoked. If any of these methods throws an Exception, the Unit Test * will fail. *
  • @@ -114,13 +114,13 @@ public interface TestRunner { *
  • * If and only if the value of shutdown is true: Call all * methods on the Processor that is annotated with the - * {@link nifi.processor.annotation.OnStopped @OnStopped} annotation. + * {@link org.apache.nifi.processor.annotation.OnStopped @OnStopped} annotation. *
  • * * * @param iterations number of iterations * @param stopOnFinish whether or not to run the Processor methods that are - * annotated with {@link nifi.processor.annotation.OnStopped @OnStopped} + * annotated with {@link org.apache.nifi.processor.annotation.OnStopped @OnStopped} * @param initialize true if must initialize */ void run(int iterations, boolean stopOnFinish, final boolean initialize); @@ -132,7 +132,7 @@ public interface TestRunner { *
  • * If {@code initialize} is true, run all methods on the Processor that are * annotated with the - * {@link nifi.processor.annotation.OnScheduled @OnScheduled} annotation. If + * {@link org.apache.nifi.processor.annotation.OnScheduled @OnScheduled} annotation. If * any of these methods throws an Exception, the Unit Test will fail. *
  • *
  • @@ -147,7 +147,7 @@ public interface TestRunner { * As soon as the first thread finishes its execution of * {@link Processor#onTrigger(ProcessContext, ProcessSessionFactory) onTrigger}, * all methods on the Processor that are annotated with the - * {@link nifi.processor.annotation.OnUnscheduled @OnUnscheduled} annotation + * {@link org.apache.nifi.processor.annotation.OnUnscheduled @OnUnscheduled} annotation * are invoked. If any of these methods throws an Exception, the Unit Test * will fail. *
  • @@ -157,22 +157,22 @@ public interface TestRunner { *
  • * If and only if the value of shutdown is true: Call all * methods on the Processor that is annotated with the - * {@link nifi.processor.annotation.OnStopped @OnStopped} annotation. + * {@link org.apache.nifi.processor.annotation.OnStopped @OnStopped} annotation. *
  • * * * @param iterations number of iterations * @param stopOnFinish whether or not to run the Processor methods that are - * annotated with {@link nifi.processor.annotation.OnStopped @OnStopped} + * annotated with {@link org.apache.nifi.processor.annotation.OnStopped @OnStopped} * @param initialize true if must initialize * @param runWait indicates the amount of time in milliseconds that the framework should wait for - * processors to stop running before calling the {@link nifi.processor.annotation.OnUnscheduled @OnUnscheduled} annotation + * processors to stop running before calling the {@link org.apache.nifi.processor.annotation.OnUnscheduled @OnUnscheduled} annotation */ void run(int iterations, boolean stopOnFinish, final boolean initialize, final long runWait); /** * Invokes all methods on the Processor that are annotated with the - * {@link nifi.processor.annotation.OnShutdown @OnShutdown} annotation. If + * {@link org.apache.nifi.processor.annotation.OnShutdown @OnShutdown} annotation. If * any of these methods throws an Exception, the Unit Test will fail */ void shutdown(); @@ -447,7 +447,7 @@ public interface TestRunner { * considered "available", meaning that the queues of all Connections that * contain this Relationship are not full. This is generally used only when * dealing with Processors that use the - * {@link nifi.processor.annotation.TriggerWhenAnyDestinationAvailable} + * {@link org.apache.nifi.processor.annotation.TriggerWhenAnyDestinationAvailable} * annotation. * * @param relationship to mark as available @@ -459,7 +459,7 @@ public interface TestRunner { * name should be considered "available", meaning that the queues of all * Connections that contain this Relationship are not full. This is * generally used only when dealing with Processors that use the - * {@link nifi.processor.annotation.TriggerWhenAnyDestinationAvailable} + * {@link org.apache.nifi.processor.annotation.TriggerWhenAnyDestinationAvailable} * * @param relationshipName relationship name */ @@ -470,7 +470,7 @@ public interface TestRunner { * considered "available", meaning that the queue of at least one Connection * that contain this Relationship is full. This is generally used only when * dealing with Processors that use the - * {@link nifi.processor.annotation.TriggerWhenAnyDestinationAvailable} + * {@link org.apache.nifi.processor.annotation.TriggerWhenAnyDestinationAvailable} * annotation. * * @param relationship to mark as unavailable @@ -482,7 +482,7 @@ public interface TestRunner { * should NOT be considered "available", meaning that the queue of at least * one Connection that contain this Relationship is full. This is generally * used only when dealing with Processors that use the - * {@link nifi.processor.annotation.TriggerWhenAnyDestinationAvailable} + * {@link org.apache.nifi.processor.annotation.TriggerWhenAnyDestinationAvailable} * * @param relationshipName name of relationship. */ @@ -493,7 +493,7 @@ public interface TestRunner { * configured Processor can access it using the given * identifier. The ControllerService is not expected to be * initialized, as the framework will create the appropriate - * {@link nifi.controller.ControllerServiceInitializationContext ControllerServiceInitializationContext} + * {@link org.apache.nifi.controller.ControllerServiceInitializationContext ControllerServiceInitializationContext} * and initialize the ControllerService with no specified properties. * * This will call any method on the given Controller Service that is @@ -511,7 +511,7 @@ public interface TestRunner { * configured Processor can access it using the given * identifier. The ControllerService is not expected to be * initialized, as the framework will create the appropriate - * {@link nifi.controller.ControllerServiceInitializationContext ControllerServiceInitializationContext} + * {@link org.apache.nifi.controller.ControllerServiceInitializationContext ControllerServiceInitializationContext} * and initialize the ControllerService with the given properties. * * This will call any method on the given Controller Service that is @@ -725,9 +725,9 @@ public interface TestRunner { * Expression Language. By default, the value is true, which * means that an Exception will be thrown if the Processor attempts to * obtain the configured value of a Property without calling - * {@link nifi.components.PropertyValue#evaluateAttributeExpressions evaluateAttributeExpressions} + * {@link org.apache.nifi.components.PropertyValue#evaluateAttributeExpressions evaluateAttributeExpressions} * on the Property Value or if - * {@link nifi.components.PropertyValue#evaluateAttributeExpressions evaluateAttributeExpressions} + * {@link org.apache.nifi.components.PropertyValue#evaluateAttributeExpressions evaluateAttributeExpressions} * is called but the PropertyDescriptor indicates that the Expression * Language is not supported. * diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/connectable/Connectable.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/connectable/Connectable.java index 7c4009231d..60b225a56d 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/connectable/Connectable.java +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/connectable/Connectable.java @@ -144,7 +144,7 @@ public interface Connectable extends Triggerable { /** * @return If true, - * {@link #onTrigger(nifi.processor.ProcessContext, nifi.processor.ProcessSessionFactory)} + * {@link #onTrigger(org.apache.nifi.processor.ProcessContext, org.apache.nifi.processor.ProcessSessionFactory)} * should be called even when this Connectable has no FlowFiles queued for * processing */ @@ -196,13 +196,13 @@ public interface Connectable extends Triggerable { /** * @param timeUnit unit over which to interpret the duration * @return the amount of time for which a FlowFile should be penalized when - * {@link ProcessSession#penalize(nifi.flowfile.FlowFile)} is called + * {@link ProcessSession#penalize(org.apache.nifi.flowfile.FlowFile)} is called */ long getPenalizationPeriod(final TimeUnit timeUnit); /** * @return a string representation for which a FlowFile should be penalized - * when {@link ProcessSession#penalize(nifi.flowfile.FlowFile)} is called + * when {@link ProcessSession#penalize(org.apache.nifi.flowfile.FlowFile)} is called */ String getPenalizationPeriod(); @@ -222,7 +222,7 @@ public interface Connectable extends Triggerable { /** * Updates the amount of time that this Connectable should avoid being * scheduled when the processor calls - * {@link nifi.processor.ProcessContext#yield() ProcessContext.yield()} + * {@link org.apache.nifi.processor.ProcessContext#yield() ProcessContext.yield()} * * @param yieldPeriod new yield period */ @@ -230,7 +230,7 @@ public interface Connectable extends Triggerable { /** * Updates the amount of time that this Connectable will penalize FlowFiles - * when {@link ProcessSession#penalize(nifi.flowfile.FlowFile)} is called + * when {@link ProcessSession#penalize(org.apache.nifi.flowfile.FlowFile)} is called * * @param penalizationPeriod new period */ @@ -240,7 +240,7 @@ public interface Connectable extends Triggerable { * Causes the processor not to be scheduled for some period of time. This * duration can be obtained and set via the * {@link #getYieldPeriod(TimeUnit)} and - * {@link #setYieldPeriod(long, TimeUnit)} methods. + * {@link #setYieldPeriod(String yieldPeriod)} methods. */ void yield(); diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/controller/ProcessScheduler.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/controller/ProcessScheduler.java index 2fdb762ad0..6d98e46021 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/controller/ProcessScheduler.java +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/controller/ProcessScheduler.java @@ -33,8 +33,8 @@ public interface ProcessScheduler { /** * Starts scheduling the given processor to run after invoking all methods - * on the underlying {@link nifi.processor.Processor FlowFileProcessor} that - * are annotated with the {@link OnScheduled} annotation. If the Processor + * on the underlying {@link org.apache.nifi.processor.Processor FlowFileProcessor} that + * are annotated with the {@link org.apache.nifi.annotation.lifecycle.OnScheduled} annotation. If the Processor * is already scheduled to run, does nothing. * * @param procNode to start @@ -44,8 +44,8 @@ public interface ProcessScheduler { /** * Stops scheduling the given processor to run and invokes all methods on - * the underlying {@link nifi.processor.Processor FlowFileProcessor} that - * are annotated with the {@link OnUnscheduled} annotation. This does not + * the underlying {@link org.apache.nifi.processor.Processor FlowFileProcessor} that + * are annotated with the {@link org.apache.nifi.annotation.lifecycle.OnUnscheduled} annotation. This does not * interrupt any threads that are currently running within the given * Processor. If the Processor is not scheduled to run, does nothing. * diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/controller/StandardFunnel.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/controller/StandardFunnel.java index 0effbaf297..0f596d88ae 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/controller/StandardFunnel.java +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/controller/StandardFunnel.java @@ -401,7 +401,7 @@ public class StandardFunnel implements Funnel { /** * Updates the amount of time that this processor should avoid being * scheduled when the processor calls - * {@link nifi.processor.ProcessContext#yield() ProcessContext.yield()} + * {@link org.apache.nifi.processor.ProcessContext#yield() ProcessContext.yield()} * * @param yieldPeriod new period */ @@ -439,7 +439,7 @@ public class StandardFunnel implements Funnel { * Causes the processor not to be scheduled for some period of time. This * duration can be obtained and set via the * {@link #getYieldPeriod(TimeUnit)} and - * {@link #setYieldPeriod(long, TimeUnit)} methods. + * {@link #setYieldPeriod(String)} methods. */ @Override public void yield() { diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/groups/ProcessGroup.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/groups/ProcessGroup.java index 0e2a3f9099..81ee5a018c 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/groups/ProcessGroup.java +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core-api/src/main/java/org/apache/nifi/groups/ProcessGroup.java @@ -328,7 +328,7 @@ public interface ProcessGroup { * Removes the given processor from this group, destroying the Processor. * The Processor is removed from the ProcessorRegistry, and any method in * the Processor that is annotated with the - * {@link nifi.processor.annotation.OnRemoved OnRemoved} annotation will be + * {@link org.apache.nifi.processor.annotation.OnRemoved OnRemoved} annotation will be * invoked. All outgoing connections will also be destroyed * * @param processor the Processor to remove diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/scheduling/StandardProcessScheduler.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/scheduling/StandardProcessScheduler.java index 2c0c99be55..9ff58c8e72 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/scheduling/StandardProcessScheduler.java +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/main/java/org/apache/nifi/controller/scheduling/StandardProcessScheduler.java @@ -278,7 +278,7 @@ public final class StandardProcessScheduler implements ProcessScheduler { } /** - * Starts scheduling the given processor to run after invoking all methods on the underlying {@link nifi.processor.Processor + * Starts scheduling the given processor to run after invoking all methods on the underlying {@link org.apache.nifi.processor.Processor * FlowFileProcessor} that are annotated with the {@link OnScheduled} annotation. */ @Override @@ -406,8 +406,8 @@ public final class StandardProcessScheduler implements ProcessScheduler { } /** - * Stops scheduling the given processor to run and invokes all methods on the underlying {@link nifi.processor.Processor FlowFileProcessor} that are annotated with the {@link OnUnscheduled} - * annotation. + * Stops scheduling the given processor to run and invokes all methods on the underlying {@link org.apache.nifi.processor.Processor FlowFileProcessor} that are annotated with the + * {@link OnUnscheduled} annotation. */ @Override public synchronized void stopProcessor(final ProcessorNode procNode) {