Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Menu
Open sidebar
zobierlabs
nifi-examples
Commits
6c40662f
Commit
6c40662f
authored
Jul 24, 2018
by
pcgrenier
Browse files
Move reporting sample out of .processor package
parent
9d39608d
Changes
3
Hide whitespace changes
Inline
Side-by-side
sample-reporting-task/src/main/java/rocks/nifi/examples/
processors/
reporting/BulletinReportingTask.java
→
sample-reporting-task/src/main/java/rocks/nifi/examples/reporting/BulletinReportingTask.java
View file @
6c40662f
package
rocks.nifi.examples.
processors.
reporting
;
package
rocks.nifi.examples.reporting
;
import
org.apache.nifi.annotation.documentation.CapabilityDescription
;
import
org.apache.nifi.annotation.documentation.Tags
;
...
...
@@ -49,7 +49,6 @@ public abstract class BulletinReportingTask extends AbstractReportingTask {
protected
List
<
Bulletin
>
getBulletins
(
final
ReportingContext
context
)
{
BulletinRepository
repo
=
context
.
getBulletinRepository
();
BulletinQuery
query
=
getBulletinQuery
(
context
);
List
<
Bulletin
>
bulletins
=
repo
.
findBulletins
(
query
);
...
...
sample-reporting-task/src/main/java/rocks/nifi/examples/
processors/
reporting/InfluxBulletinReportingTask.java
→
sample-reporting-task/src/main/java/rocks/nifi/examples/reporting/InfluxBulletinReportingTask.java
View file @
6c40662f
package
rocks.nifi.examples.
processors.
reporting
;
package
rocks.nifi.examples.reporting
;
import
org.apache.nifi.annotation.documentation.CapabilityDescription
;
import
org.apache.nifi.annotation.documentation.Tags
;
...
...
sample-reporting-task/src/main/resources/META-INF/services/org.apache.nifi.reporting.ReportingTask
View file @
6c40662f
rocks.nifi.examples.processors.reporting.InfluxBulletinReportingTask
\ No newline at end of file
rocks.nifi.examples.reporting.InfluxBulletinReportingTask
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment