├── .gitignore ├── .travis.yml ├── README.md ├── nifi-by-example.iml ├── nifi-nar ├── nifi-nar.iml └── pom.xml ├── nifi-processors ├── nifi-processors.iml ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── zezutom │ │ │ └── processors │ │ │ └── nifi │ │ │ └── example │ │ │ ├── HTTPClient.java │ │ │ ├── HTTPResponse.java │ │ │ └── PostHTTPWithJsonBody.java │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.apache.nifi.processor.Processor │ └── test │ └── java │ └── org │ └── zezutom │ └── processors │ └── nifi │ └── example │ └── PostHTTPWithJsonBodyTest.java ├── pom.xml └── templates ├── http_post ├── HTTP_POST_Examples.xml ├── POST_via_InvokeHTTP.xml ├── POST_via_PostHTTP.xml ├── POST_with_a_Dynamic_Body.xml ├── POST_with_a_Dynamic_Body_using_ReplaceText.xml └── POST_with_a_Dynamic_Body_using_a_Custom_Processor.xml ├── ssl └── SSL_Service_Config.xml └── streaming └── web_proxy_analysis.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | target 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/README.md -------------------------------------------------------------------------------- /nifi-by-example.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/nifi-by-example.iml -------------------------------------------------------------------------------- /nifi-nar/nifi-nar.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/nifi-nar/nifi-nar.iml -------------------------------------------------------------------------------- /nifi-nar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/nifi-nar/pom.xml -------------------------------------------------------------------------------- /nifi-processors/nifi-processors.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/nifi-processors/nifi-processors.iml -------------------------------------------------------------------------------- /nifi-processors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/nifi-processors/pom.xml -------------------------------------------------------------------------------- /nifi-processors/src/main/java/org/zezutom/processors/nifi/example/HTTPClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/nifi-processors/src/main/java/org/zezutom/processors/nifi/example/HTTPClient.java -------------------------------------------------------------------------------- /nifi-processors/src/main/java/org/zezutom/processors/nifi/example/HTTPResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/nifi-processors/src/main/java/org/zezutom/processors/nifi/example/HTTPResponse.java -------------------------------------------------------------------------------- /nifi-processors/src/main/java/org/zezutom/processors/nifi/example/PostHTTPWithJsonBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/nifi-processors/src/main/java/org/zezutom/processors/nifi/example/PostHTTPWithJsonBody.java -------------------------------------------------------------------------------- /nifi-processors/src/main/resources/META-INF/services/org.apache.nifi.processor.Processor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/nifi-processors/src/main/resources/META-INF/services/org.apache.nifi.processor.Processor -------------------------------------------------------------------------------- /nifi-processors/src/test/java/org/zezutom/processors/nifi/example/PostHTTPWithJsonBodyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/nifi-processors/src/test/java/org/zezutom/processors/nifi/example/PostHTTPWithJsonBodyTest.java -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/pom.xml -------------------------------------------------------------------------------- /templates/http_post/HTTP_POST_Examples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/templates/http_post/HTTP_POST_Examples.xml -------------------------------------------------------------------------------- /templates/http_post/POST_via_InvokeHTTP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/templates/http_post/POST_via_InvokeHTTP.xml -------------------------------------------------------------------------------- /templates/http_post/POST_via_PostHTTP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/templates/http_post/POST_via_PostHTTP.xml -------------------------------------------------------------------------------- /templates/http_post/POST_with_a_Dynamic_Body.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/templates/http_post/POST_with_a_Dynamic_Body.xml -------------------------------------------------------------------------------- /templates/http_post/POST_with_a_Dynamic_Body_using_ReplaceText.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/templates/http_post/POST_with_a_Dynamic_Body_using_ReplaceText.xml -------------------------------------------------------------------------------- /templates/http_post/POST_with_a_Dynamic_Body_using_a_Custom_Processor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/templates/http_post/POST_with_a_Dynamic_Body_using_a_Custom_Processor.xml -------------------------------------------------------------------------------- /templates/ssl/SSL_Service_Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/templates/ssl/SSL_Service_Config.xml -------------------------------------------------------------------------------- /templates/streaming/web_proxy_analysis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zezutom/NiFiByExample/HEAD/templates/streaming/web_proxy_analysis.xml --------------------------------------------------------------------------------