NIFI-309 renaming DynamicRelationships

Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/86a429ff
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/86a429ff
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/86a429ff

Branch: refs/heads/develop
Commit: 86a429ff767527c08505c6cdf88d64b87f6fc1cc
Parents: c441f91
Author: danbress <[email protected]>
Authored: Wed Mar 18 16:20:05 2015 -0400
Committer: danbress <[email protected]>
Committed: Fri Mar 20 09:51:22 2015 -0400

----------------------------------------------------------------------
 .../documentation/DynamicRelationship.java      | 40 ++++++++++++++++++++
 .../documentation/DynamicRelationships.java     | 40 --------------------
 2 files changed, 40 insertions(+), 40 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/86a429ff/nifi/nifi-api/src/main/java/org/apache/nifi/annotation/documentation/DynamicRelationship.java
----------------------------------------------------------------------
diff --git 
a/nifi/nifi-api/src/main/java/org/apache/nifi/annotation/documentation/DynamicRelationship.java
 
b/nifi/nifi-api/src/main/java/org/apache/nifi/annotation/documentation/DynamicRelationship.java
new file mode 100644
index 0000000..0047cb1
--- /dev/null
+++ 
b/nifi/nifi-api/src/main/java/org/apache/nifi/annotation/documentation/DynamicRelationship.java
@@ -0,0 +1,40 @@
+package org.apache.nifi.annotation.documentation;
+
+import java.lang.annotation.Documented;
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Inherited;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+import org.apache.nifi.components.PropertyDescriptor;
+import org.apache.nifi.processor.Processor;
+import org.apache.nifi.processor.Relationship;
+
+/**
+ * Annotation to indicate that a {@link Processor} supports dynamic
+ * relationship. A dynamic {@link Relationship} is one where the relationship 
is
+ * generated based on a user defined {@link PropertyDescriptor}
+ * 
+ * @author
+ *
+ */
+@Documented
+@Target({ ElementType.TYPE })
+@Retention(RetentionPolicy.RUNTIME)
+@Inherited
+public @interface DynamicRelationships {
+    /**
+     * Describes the name(s) of the dynamic relationship(s)
+     * 
+     * @return a description of the name(s) of the dynamic relationship(s)
+     */
+    public String name();
+
+    /**
+     * Describes the data that should be routed to the dynamic relationship(s)
+     * 
+     * @return a description the data that should be routed to the dynamic 
relationship(s)
+     */
+    public String description();
+}

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/86a429ff/nifi/nifi-api/src/main/java/org/apache/nifi/annotation/documentation/DynamicRelationships.java
----------------------------------------------------------------------
diff --git 
a/nifi/nifi-api/src/main/java/org/apache/nifi/annotation/documentation/DynamicRelationships.java
 
b/nifi/nifi-api/src/main/java/org/apache/nifi/annotation/documentation/DynamicRelationships.java
deleted file mode 100644
index 0047cb1..0000000
--- 
a/nifi/nifi-api/src/main/java/org/apache/nifi/annotation/documentation/DynamicRelationships.java
+++ /dev/null
@@ -1,40 +0,0 @@
-package org.apache.nifi.annotation.documentation;
-
-import java.lang.annotation.Documented;
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Inherited;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-import org.apache.nifi.components.PropertyDescriptor;
-import org.apache.nifi.processor.Processor;
-import org.apache.nifi.processor.Relationship;
-
-/**
- * Annotation to indicate that a {@link Processor} supports dynamic
- * relationship. A dynamic {@link Relationship} is one where the relationship 
is
- * generated based on a user defined {@link PropertyDescriptor}
- * 
- * @author
- *
- */
-@Documented
-@Target({ ElementType.TYPE })
-@Retention(RetentionPolicy.RUNTIME)
-@Inherited
-public @interface DynamicRelationships {
-    /**
-     * Describes the name(s) of the dynamic relationship(s)
-     * 
-     * @return a description of the name(s) of the dynamic relationship(s)
-     */
-    public String name();
-
-    /**
-     * Describes the data that should be routed to the dynamic relationship(s)
-     * 
-     * @return a description the data that should be routed to the dynamic 
relationship(s)
-     */
-    public String description();
-}

Reply via email to