关联漏洞
标题:
Apache NiFi 操作系统命令注入漏洞
(CVE-2022-33140)
描述:Apache NiFi是美国阿帕奇(Apache)基金会的一套数据处理和分发系统。该系统主要用于数据路由、转换和系统中介逻辑。Apache NiFi Registry是其中的一个用于存储和管理版本化流程的注册表。 Apache NiFi 1.10.0版本至1.16.2版本、Apache NiFi Registry 0.6.0版本至1.16.2版本存在安全漏洞。攻击者利用该漏洞在Linux和macOS平台上注入操作系统命令。
介绍
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
# Apache NiFi
<img src="https://nifi.apache.org/images/apache-nifi-logo.svg" width="300" alt="Apache NiFi"/>
### Status
[](https://github.com/apache/nifi/actions/workflows/ci-workflow.yml)
[](https://github.com/apache/nifi/actions/workflows/system-tests.yml)
[](https://github.com/apache/nifi/actions/workflows/integration-tests.yml)
[](https://github.com/apache/nifi/actions/workflows/docker-tests.yml)
[](https://github.com/apache/nifi/actions/workflows/code-compliance.yml)
[](https://github.com/apache/nifi/actions/workflows/code-coverage.yml)
[](https://codecov.io/gh/apache/nifi)
### Resources
[](https://central.sonatype.com/artifact/org.apache.nifi/nifi-api)
[](https://central.sonatype.com/artifact/org.apache.nifi/nifi-nar-maven-plugin)
[](https://nifi.apache.org/download/)
[](https://hub.docker.com/r/apache/nifi/)
[](https://github.com/apache/nifi/blob/main/LICENSE)
[](https://javadoc.io/doc/org.apache.nifi/nifi-api)
### Contacts
[](https://issues.apache.org/jira/browse/NIFI)
[](https://s.apache.org/nifi-community-slack)
[](https://lists.apache.org/list.html?dev@nifi.apache.org)
[](https://lists.apache.org/list.html?users@nifi.apache.org)
### Community
[](https://join.slack.com/t/apachenifi/shared_invite/zt-11njbtkdx-ZRU8FKYSWoEHRJetidy0zA)
[](https://www.linkedin.com/company/apache-nifi/)
[](https://x.com/apachenifi)
## Features
[Apache NiFi](https://nifi.apache.org/) is an easy to use, powerful, and reliable system to process and distribute data.
NiFi automates cybersecurity, observability, event streams, and generative AI data pipelines and distribution
for thousands of companies worldwide across every industry.
- Browser User Interface
- Seamless experience for design, control, and monitoring
- Runtime management and versioned pipelines
- Secure by default with HTTPS
- Scalable Processing
- Configurable prioritization for throughput and latency
- Guaranteed delivery with retry and backoff strategies
- Horizontal scaling with clustering
- Provenance Tracking
- Searchable history with configurable attributes
- Graph data lineage from source to destination
- Metadata and content for each processing decision
- Extensible Design
- Plugin interface for Processors and Controller Services
- Support for Processors in native Python
- REST API for orchestration and monitoring
- Secure Configuration
- Single sign-on with OpenID Connect or SAML 2
- Flexible authorization policies for role-based access
- Encrypted communication with TLS and SFTP
## Requirements
NiFi supports modern operating systems and requires recent language versions for developing and running the application.
### Platform Requirements
- Java 21
### Optional Dependencies
- Python 3.10 or higher
## Projects
The source repository includes several component projects.
Please review individual project documentation for additional details.
- [Apache NiFi](https://nifi.apache.org/documentation/)
- [Apache NiFi Registry](https://github.com/apache/nifi/blob/main/nifi-registry/nifi-registry-assembly/README.md)
- [Apache NiFi MiNiFi](https://github.com/apache/nifi/blob/main/minifi/minifi-assembly/README.md)
## Getting Started
Project guides provide extensive documentation for installing and extending the application.
- [Getting Started](https://nifi.apache.org/documentation/nifi-latest/html/getting-started.html)
- [User Guide](https://nifi.apache.org/documentation/nifi-latest/html/user-guide.html)
- [Administrator Guide](https://nifi.apache.org/documentation/nifi-latest/html/administration-guide.html)
- [Developer Guide](https://nifi.apache.org/documentation/nifi-latest/html/developer-guide.html)
## Developing
NiFi uses the [Maven Wrapper](https://maven.apache.org/wrapper/) for project development. The Maven Wrapper provides
shell scripts that download and cache a selected version of [Apache Maven](https://maven.apache.org/) for running build
commands.
Developing on Microsoft Windows requires using `mvnw.cmd` instead of `mvnw` to run Maven commands.
### Building
Run the following command to build project modules using parallel execution:
```shell
./mvnw install -T1C
```
Run the following command to build project modules using parallel execution with static analysis to confirm compliance
with code and licensing requirements:
```shell
./mvnw install -T1C -P contrib-check
```
Run the following command to build the application binaries without building other optional modules:
```shell
./mvnw install -T1C -am -pl :nifi-assembly
```
### Binaries
The `nifi-assembly` module contains the binary distribution.
```shell
ls nifi-assembly/target/nifi-*-bin.zip
```
The `nifi-assembly` module includes the binary distribution in a directory for local development and testing.
```shell
cd nifi-assembly/target/nifi-*-bin/nifi-*/
```
## Running
NiFi provides shell scripts for starting and stopping the system.
Running on Microsoft Windows requires using `nifi.cmd` instead of `nifi.sh` for system commands.
### Starting
Run the following command to start NiFi from the distribution directory:
```shell
./bin/nifi.sh start
```
### Accessing
The default configuration generates a random username and password on startup. NiFi writes the generated credentials
to the application log located in `logs/nifi-app.log` under the NiFi installation directory.
The following command can be used to find the generated credentials on operating systems with `grep` installed:
```shell
grep Generated logs/nifi-app*log
```
NiFi logs the generated credentials as follows:
```shell
Generated Username [USERNAME]
Generated Password [PASSWORD]
```
The `USERNAME` will be a random UUID composed of 36 characters. The `PASSWORD` will be a random string.
The username and password can be replaced with custom credentials using the following command:
```shell
./bin/nifi.sh set-single-user-credentials <username> <password>
```
NiFi defaults to running on the `localhost` address with HTTPS on port `8443` at the following URL:
```
https://localhost:8443/nifi
```
Browsers will display a warning message indicating a potential security risk due to the self-signed certificate
generated during initialization. Production deployments should provision a certificate from a trusted certificate
authority and update the NiFi keystore and truststore configuration.
## License
Except as otherwise noted this software is licensed under the
[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.html)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
## Export Control
This distribution includes cryptographic software. The country in which you
currently reside may have restrictions on the import, possession, use, and/or
re-export to another country, of encryption software. BEFORE using any
encryption software, please check your country's laws, regulations and
policies concerning the import, possession, or use, and re-export of encryption
software, to see if this is permitted. See https://www.wassenaar.org for more
information.
The U.S. Government Department of Commerce, Bureau of Industry and Security
(BIS), has classified this software as Export Commodity Control Number (ECCN)
5D002.C.1, which includes information security software using or performing
cryptographic functions with asymmetric algorithms. The form and manner of this
Apache Software Foundation distribution makes it eligible for export under the
License Exception ENC Technology Software Unrestricted (TSU) exception (see the
BIS Export Administration Regulations, Section 740.13) for both object code and
source code.
The following provides more details on the included cryptographic software:
Apache NiFi uses the following libraries and frameworks for encrypted
communication and storage of sensitive information:
- [Apache MINA SSHD](https://mina.apache.org/sshd-project/)
- [Bouncy Castle](https://www.bouncycastle.org)
- [Jagged](https://github.com/exceptionfactory/jagged)
- [Java Cryptography Architecture](https://docs.oracle.com/en/java/javase/21/security/java-cryptography-architecture-jca-reference-guide.html)
文件快照
[4.0K] /data/pocs/a6405c6199b4fbaa3ca7f92b9fa479e41c05c184
├── [4.0K] c2
│ ├── [4.0K] c2-client-bundle
│ │ ├── [4.0K] c2-client-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] c2
│ │ │ └── [4.0K] client
│ │ │ └── [4.0K] api
│ │ │ └── [3.6K] C2Client.java
│ │ ├── [4.0K] c2-client-base
│ │ │ ├── [2.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] c2
│ │ │ ├── [4.0K] client
│ │ │ │ ├── [ 14K] C2ClientConfig.java
│ │ │ │ ├── [1.0K] IdGenerator.java
│ │ │ │ └── [2.8K] PersistentUuidGenerator.java
│ │ │ ├── [4.0K] serializer
│ │ │ │ ├── [3.6K] C2JacksonSerializer.java
│ │ │ │ ├── [2.2K] C2Serializer.java
│ │ │ │ └── [1.7K] OperandTypeDeserializer.java
│ │ │ └── [4.0K] util
│ │ │ ├── [1.5K] FileUtils.java
│ │ │ └── [1.1K] Preconditions.java
│ │ ├── [4.0K] c2-client-http
│ │ │ ├── [3.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] c2
│ │ │ │ └── [4.0K] client
│ │ │ │ └── [4.0K] http
│ │ │ │ ├── [9.5K] C2HttpClient.java
│ │ │ │ ├── [2.8K] C2RequestCompression.java
│ │ │ │ ├── [1.1K] C2ServerException.java
│ │ │ │ ├── [6.3K] OkHttpClientProvider.java
│ │ │ │ └── [4.0K] url
│ │ │ │ ├── [2.1K] C2UrlProviderFactory.java
│ │ │ │ ├── [1.6K] C2UrlProvider.java
│ │ │ │ ├── [2.0K] LegacyC2UrlProvider.java
│ │ │ │ └── [3.6K] ProxyAwareC2UrlProvider.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] c2
│ │ │ └── [4.0K] client
│ │ │ └── [4.0K] http
│ │ │ ├── [7.3K] C2HttpClientTest.java
│ │ │ ├── [4.2K] C2RequestCompressionTest.java
│ │ │ └── [4.0K] url
│ │ │ ├── [3.7K] C2UrlProviderFactoryTest.java
│ │ │ ├── [3.2K] LegacyC2UrlProviderTest.java
│ │ │ └── [7.3K] ProxyAwareC2ProviderTest.java
│ │ ├── [4.0K] c2-client-service
│ │ │ ├── [2.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] c2
│ │ │ │ │ └── [4.0K] client
│ │ │ │ │ └── [4.0K] service
│ │ │ │ │ ├── [ 12K] C2HeartbeatFactory.java
│ │ │ │ │ ├── [3.4K] C2HeartbeatManager.java
│ │ │ │ │ ├── [8.9K] C2OperationManager.java
│ │ │ │ │ ├── [3.1K] FlowIdHolder.java
│ │ │ │ │ ├── [4.7K] ManifestHashProvider.java
│ │ │ │ │ ├── [4.0K] model
│ │ │ │ │ │ └── [2.5K] RuntimeInfoWrapper.java
│ │ │ │ │ └── [4.0K] operation
│ │ │ │ │ ├── [6.0K] C2OperationHandler.java
│ │ │ │ │ ├── [2.8K] C2OperationHandlerProvider.java
│ │ │ │ │ ├── [1.2K] C2OperationRestartHandler.java
│ │ │ │ │ ├── [4.2K] DescribeManifestOperationHandler.java
│ │ │ │ │ ├── [1.2K] EmptyOperandPropertiesProvider.java
│ │ │ │ │ ├── [1.0K] FlowStateStrategy.java
│ │ │ │ │ ├── [1.2K] OperandPropertiesProvider.java
│ │ │ │ │ ├── [1.4K] OperationQueueDAO.java
│ │ │ │ │ ├── [3.0K] OperationQueue.java
│ │ │ │ │ ├── [2.9K] StartFlowOperationHandler.java
│ │ │ │ │ ├── [2.9K] StopFlowOperationHandler.java
│ │ │ │ │ ├── [2.6K] SupportedOperationsProvider.java
│ │ │ │ │ ├── [5.7K] SyncResourceOperationHandler.java
│ │ │ │ │ ├── [1.6K] SyncResourceStrategy.java
│ │ │ │ │ ├── [ 10K] TransferDebugOperationHandler.java
│ │ │ │ │ ├── [6.6K] UpdateAssetOperationHandler.java
│ │ │ │ │ ├── [6.9K] UpdateConfigurationOperationHandler.java
│ │ │ │ │ ├── [1.2K] UpdateConfigurationStrategy.java
│ │ │ │ │ └── [3.7K] UpdatePropertiesOperationHandler.java
│ │ │ │ └── [4.0K] minifi
│ │ │ │ └── [4.0K] validator
│ │ │ │ └── [1.9K] ValidationException.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] c2
│ │ │ └── [4.0K] client
│ │ │ └── [4.0K] service
│ │ │ ├── [9.5K] C2HeartbeatFactoryTest.java
│ │ │ ├── [6.2K] C2HeartbeatManagerTest.java
│ │ │ ├── [ 12K] C2OperationManagerTest.java
│ │ │ ├── [3.1K] ManifestHashProviderTest.java
│ │ │ └── [4.0K] operation
│ │ │ ├── [5.1K] C2OperationHandlerProviderTest.java
│ │ │ ├── [3.9K] DescribeManifestOperationHandlerTest.java
│ │ │ ├── [1.2K] EmptyOperandPropertiesProviderTest.java
│ │ │ ├── [4.5K] StartFlowOperationHandlerTest.java
│ │ │ ├── [4.4K] StopFlowOperationHandlerTest.java
│ │ │ ├── [3.6K] SupportedOperationsProviderTest.java
│ │ │ ├── [7.9K] SyncResourceOperationHandlerTest.java
│ │ │ ├── [ 13K] TransferDebugOperationHandlerTest.java
│ │ │ ├── [ 10K] UpdateAssetOperationHandlerTest.java
│ │ │ ├── [7.4K] UpdateConfigurationOperationHandlerTest.java
│ │ │ └── [4.9K] UpdatePropertiesOperationHandlerTest.java
│ │ ├── [1.4K] pom.xml
│ │ └── [3.5K] README.md
│ ├── [4.0K] c2-protocol
│ │ ├── [4.0K] c2-protocol-api
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] c2
│ │ │ └── [4.0K] protocol
│ │ │ └── [4.0K] api
│ │ │ ├── [2.8K] AgentInfo.java
│ │ │ ├── [2.6K] AgentManifest.java
│ │ │ ├── [1.4K] AgentRepositories.java
│ │ │ ├── [3.1K] AgentRepositoryStatus.java
│ │ │ ├── [1.7K] AgentResourceConsumption.java
│ │ │ ├── [2.5K] AgentStatus.java
│ │ │ ├── [4.3K] C2Heartbeat.java
│ │ │ ├── [1.3K] C2HeartbeatResponse.java
│ │ │ ├── [4.1K] C2OperationAck.java
│ │ │ ├── [4.5K] C2Operation.java
│ │ │ ├── [5.1K] C2OperationState.java
│ │ │ ├── [1.1K] ComponentStatus.java
│ │ │ ├── [2.3K] DeviceInfo.java
│ │ │ ├── [2.3K] FailureCause.java
│ │ │ ├── [3.2K] FlowInfo.java
│ │ │ ├── [3.1K] FlowQueueStatus.java
│ │ │ ├── [1.8K] FlowUri.java
│ │ │ ├── [1.8K] Location.java
│ │ │ ├── [1.7K] NetworkInfo.java
│ │ │ ├── [1.3K] OperandType.java
│ │ │ ├── [3.0K] Operation.java
│ │ │ ├── [2.0K] OperationState.java
│ │ │ ├── [2.1K] OperationType.java
│ │ │ ├── [3.9K] ProcessorBulletin.java
│ │ │ ├── [4.1K] ProcessorStatus.java
│ │ │ ├── [1.9K] ResourceInfo.java
│ │ │ ├── [4.1K] ResourceItem.java
│ │ │ ├── [2.2K] ResourcesGlobalHash.java
│ │ │ ├── [ 899] ResourceType.java
│ │ │ ├── [ 897] RunStatus.java
│ │ │ ├── [2.3K] SupportedOperation.java
│ │ │ └── [2.9K] SystemInfo.java
│ │ ├── [4.0K] c2-protocol-component-api
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] c2
│ │ │ └── [4.0K] protocol
│ │ │ └── [4.0K] component
│ │ │ └── [4.0K] api
│ │ │ ├── [1.4K] Attribute.java
│ │ │ ├── [3.0K] BuildInfo.java
│ │ │ ├── [3.1K] Bundle.java
│ │ │ ├── [3.5K] ComponentManifest.java
│ │ │ ├── [1.6K] ConfigurableComponentDefinition.java
│ │ │ ├── [3.0K] ConfigurableExtensionDefinition.java
│ │ │ ├── [ 994] ControllerServiceDefinition.java
│ │ │ ├── [3.0K] DefinedType.java
│ │ │ ├── [2.1K] DynamicProperty.java
│ │ │ ├── [1.4K] DynamicRelationship.java
│ │ │ ├── [6.1K] ExtensionComponent.java
│ │ │ ├── [ 993] FlowAnalysisRuleDefinition.java
│ │ │ ├── [2.2K] MultiProcessorUseCase.java
│ │ │ ├── [ 994] ParameterProviderDefinition.java
│ │ │ ├── [1.7K] ProcessorConfiguration.java
│ │ │ ├── [10.0K] ProcessorDefinition.java
│ │ │ ├── [2.3K] PropertyAllowableValue.java
│ │ │ ├── [2.0K] PropertyDependency.java
│ │ │ ├── [6.2K] PropertyDescriptor.java
│ │ │ ├── [1.8K] PropertyResourceDefinition.java
│ │ │ ├── [1.5K] Relationship.java
│ │ │ ├── [2.7K] ReportingTaskDefinition.java
│ │ │ ├── [2.0K] Restriction.java
│ │ │ ├── [3.7K] RuntimeManifest.java
│ │ │ ├── [4.6K] SchedulingDefaults.java
│ │ │ ├── [1.6K] Stateful.java
│ │ │ ├── [1.4K] SystemResourceConsideration.java
│ │ │ └── [2.5K] UseCase.java
│ │ └── [1.4K] pom.xml
│ └── [1.7K] pom.xml
├── [4.4K] checkstyle.xml
├── [ 828] codecov.yml
├── [2.6K] doap.rdf
├── [ 87K] KEYS
├── [ 20K] LICENSE
├── [4.0K] minifi
│ ├── [4.0K] minifi-assembly
│ │ ├── [ 30K] LICENSE
│ │ ├── [ 30K] NOTICE
│ │ ├── [ 25K] pom.xml
│ │ ├── [4.9K] README.md
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] assembly
│ │ │ ├── [ 11K] dependencies-windows-service.xml
│ │ │ └── [ 10K] dependencies.xml
│ │ └── [4.0K] resources
│ │ └── [1.2K] build.properties.template
│ ├── [4.0K] minifi-bom
│ │ └── [2.9K] pom.xml
│ ├── [4.0K] minifi-bootstrap
│ │ ├── [5.5K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] minifi
│ │ │ └── [4.0K] bootstrap
│ │ │ ├── [1.2K] BootstrapCommand.java
│ │ │ ├── [4.0K] command
│ │ │ │ ├── [6.2K] CommandRunnerFactory.java
│ │ │ │ ├── [1.0K] CommandRunner.java
│ │ │ │ ├── [1.8K] CompositeCommandRunner.java
│ │ │ │ ├── [3.9K] DumpRunner.java
│ │ │ │ ├── [2.6K] EnvRunner.java
│ │ │ │ ├── [2.1K] FlowStatusRunner.java
│ │ │ │ ├── [ 17K] StartRunner.java
│ │ │ │ ├── [3.0K] StatusRunner.java
│ │ │ │ └── [6.1K] StopRunner.java
│ │ │ ├── [4.0K] configuration
│ │ │ │ ├── [5.6K] ConfigurationChangeCoordinator.java
│ │ │ │ ├── [1.3K] ConfigurationChangeException.java
│ │ │ │ ├── [1.4K] ConfigurationChangeListener.java
│ │ │ │ ├── [1.1K] ConfigurationChangeNotifier.java
│ │ │ │ ├── [4.0K] differentiators
│ │ │ │ │ ├── [1.6K] Differentiator.java
│ │ │ │ │ └── [2.4K] WholeConfigDifferentiator.java
│ │ │ │ ├── [4.0K] ingestors
│ │ │ │ │ ├── [2.5K] AbstractPullChangeIngestor.java
│ │ │ │ │ ├── [ 11K] FileChangeIngestor.java
│ │ │ │ │ ├── [4.0K] interfaces
│ │ │ │ │ │ └── [1.3K] ChangeIngestor.java
│ │ │ │ │ ├── [ 16K] PullHttpChangeIngestor.java
│ │ │ │ │ └── [ 14K] RestChangeIngestor.java
│ │ │ │ └── [1.9K] ListenerHandleResult.java
│ │ │ ├── [1.2K] ConfigurationFileHolder.java
│ │ │ ├── [4.0K] exception
│ │ │ │ ├── [1.3K] InvalidCommandException.java
│ │ │ │ ├── [1.3K] InvalidConfigurationException.java
│ │ │ │ └── [1.5K] StartupFailureException.java
│ │ │ ├── [2.3K] MiNiFiParameters.java
│ │ │ ├── [1.7K] MiNiFiStatus.java
│ │ │ ├── [1.0K] QueryableStatusAggregator.java
│ │ │ ├── [ 13K] RunMiNiFi.java
│ │ │ ├── [1.8K] SensitiveProperty.java
│ │ │ ├── [4.0K] service
│ │ │ │ ├── [6.7K] BootstrapCodec.java
│ │ │ │ ├── [9.5K] BootstrapFileProvider.java
│ │ │ │ ├── [2.4K] CurrentPortProvider.java
│ │ │ │ ├── [2.7K] GracefulShutdownParameterProvider.java
│ │ │ │ ├── [5.2K] MiNiFiCommandSender.java
│ │ │ │ ├── [6.2K] MiNiFiConfigurationChangeListener.java
│ │ │ │ ├── [9.0K] MiNiFiExecCommandProvider.java
│ │ │ │ ├── [5.8K] MiNiFiListener.java
│ │ │ │ ├── [ 17K] MiNiFiPropertiesGenerator.java
│ │ │ │ ├── [1.9K] MiNiFiStatusProvider.java
│ │ │ │ ├── [4.1K] MiNiFiStdLogHandler.java
│ │ │ │ ├── [6.1K] PeriodicStatusReporterManager.java
│ │ │ │ ├── [4.3K] ReloadService.java
│ │ │ │ └── [4.8K] UpdatePropertiesService.java
│ │ │ ├── [1.7K] ShutdownHook.java
│ │ │ ├── [4.0K] status
│ │ │ │ ├── [3.5K] PeriodicStatusReporter.java
│ │ │ │ └── [4.0K] reporters
│ │ │ │ └── [5.5K] StatusLogger.java
│ │ │ ├── [1.1K] Status.java
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [1.5K] ByteBufferInputStream.java
│ │ │ │ ├── [2.7K] LimitingInputStream.java
│ │ │ │ ├── [3.4K] OrderedProperties.java
│ │ │ │ ├── [1.1K] ProcessUtils.java
│ │ │ │ └── [6.0K] UnixProcessUtils.java
│ │ │ └── [1.3K] WindowsService.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] minifi
│ │ │ └── [4.0K] bootstrap
│ │ │ ├── [4.0K] command
│ │ │ │ ├── [5.9K] CommandRunnerFactoryTest.java
│ │ │ │ ├── [2.7K] CompositeCommandRunnerTest.java
│ │ │ │ ├── [5.1K] DumpRunnerTest.java
│ │ │ │ ├── [3.3K] EnvRunnerTest.java
│ │ │ │ ├── [3.3K] FlowStatusRunnerTest.java
│ │ │ │ ├── [4.0K] StatusRunnerTest.java
│ │ │ │ └── [8.9K] StopRunnerTest.java
│ │ │ ├── [4.0K] configuration
│ │ │ │ ├── [4.0K] differentiators
│ │ │ │ │ └── [3.0K] WholeConfigDifferentiatorTest.java
│ │ │ │ └── [4.0K] ingestors
│ │ │ │ ├── [8.4K] FileChangeIngestorTest.java
│ │ │ │ ├── [4.7K] RestChangeIngestorCommonTest.java
│ │ │ │ └── [3.2K] RestChangeIngestorTest.java
│ │ │ ├── [4.0K] service
│ │ │ │ ├── [9.2K] BootstrapCodecTest.java
│ │ │ │ ├── [3.5K] CurrentPortProviderTest.java
│ │ │ │ ├── [3.2K] GracefulShutdownParameterProviderTest.java
│ │ │ │ └── [ 12K] MiNiFiPropertiesGeneratorTest.java
│ │ │ ├── [2.2K] ShutdownHookTest.java
│ │ │ ├── [4.0K] status
│ │ │ │ └── [4.0K] reporters
│ │ │ │ └── [ 10K] StatusLoggerTest.java
│ │ │ └── [4.0K] util
│ │ │ └── [2.8K] OrderedPropertiesTest.java
│ │ └── [4.0K] resources
│ │ ├── [5.4K] bootstrap.conf
│ │ ├── [4.0K] bootstrap-provenance-reporting
│ │ │ ├── [5.5K] bootstrap.conf.configured
│ │ │ ├── [5.3K] bootstrap.conf.default
│ │ │ └── [3.0K] config.yml
│ │ ├── [4.0K] bootstrap-ssl-ctx
│ │ │ ├── [4.9K] bootstrap.conf.configured
│ │ │ ├── [4.9K] bootstrap.conf.configured.invalid
│ │ │ ├── [4.7K] bootstrap.conf.default
│ │ │ └── [3.3K] config.yml
│ │ ├── [ 784] config-empty.yml
│ │ ├── [5.3K] config-funnel-and-rpg.yml
│ │ ├── [ 815] config-invalid.yml
│ │ ├── [3.3K] config-malformed-field.yml
│ │ ├── [1.4K] config-minimal.yml
│ │ ├── [3.3K] config-missing-required-field.yml
│ │ ├── [3.8K] config-multiple-input-ports.yml
│ │ ├── [3.3K] config-multiple-problems.yml
│ │ ├── [5.3K] config-multiple-processors.yml
│ │ ├── [3.9K] config-multiple-RPGs.yml
│ │ ├── [8.8K] config-process-groups.yml
│ │ ├── [1.6K] config-provenance-custom-repository.yml
│ │ ├── [1.6K] config-provenance-repository.yml
│ │ ├── [6.9K] config-reporting-task.yml
│ │ ├── [3.3K] config-v1.yml
│ │ ├── [3.3K] config.yml
│ │ ├── [1.8K] default.yml
│ │ ├── [9.9K] InvokeHttpMiNiFiProxyNoPasswordTemplateTest.yml
│ │ ├── [10.0K] InvokeHttpMiNiFiProxyPasswordTemplateTest.yml
│ │ ├── [3.4K] localhost-ks.jks
│ │ ├── [1.8K] localhost-ts.jks
│ │ ├── [4.0K] MINIFI-216
│ │ │ ├── [3.5K] configOverrides.yml
│ │ │ ├── [3.3K] config.yml
│ │ │ └── [4.5K] nifi.properties.before
│ │ ├── [4.0K] MINIFI-245
│ │ │ ├── [3.3K] config.yml
│ │ │ └── [4.5K] nifi.properties.before
│ │ ├── [4.0K] MINIFI-277
│ │ │ ├── [3.3K] config.yml
│ │ │ └── [4.5K] nifi.properties
│ │ ├── [4.0K] MINIFI-516
│ │ │ ├── [5.4K] bootstrap.conf
│ │ │ └── [3.1K] config.yml
│ │ ├── [4.0K] MINIFI-537
│ │ │ └── [1.5K] config.yml
│ │ ├── [4.0K] NIFI-8753
│ │ │ ├── [3.3K] config.yml
│ │ │ └── [4.5K] nifi.properties.before
│ │ ├── [ 916] orderedPropertiesExpected.properties
│ │ ├── [3.1K] SimpleRPGToLogAttributes.yml
│ │ └── [6.7K] stress-test-framework-funnel.yml
│ ├── [4.0K] minifi-commons
│ │ ├── [4.0K] minifi-commons-api
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] minifi
│ │ │ └── [4.0K] commons
│ │ │ ├── [4.0K] api
│ │ │ │ ├── [1.0K] MiNiFiCommandState.java
│ │ │ │ ├── [1.0K] MiNiFiConstants.java
│ │ │ │ └── [ 13K] MiNiFiProperties.java
│ │ │ └── [4.0K] service
│ │ │ ├── [1.3K] FlowEnrichService.java
│ │ │ ├── [1.2K] FlowPropertyAssetReferenceResolver.java
│ │ │ ├── [1.4K] FlowPropertyEncryptor.java
│ │ │ └── [1.6K] FlowSerDeService.java
│ │ ├── [4.0K] minifi-commons-framework
│ │ │ ├── [4.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] minifi
│ │ │ │ └── [4.0K] commons
│ │ │ │ ├── [4.0K] service
│ │ │ │ │ ├── [ 23K] StandardFlowEnrichService.java
│ │ │ │ │ ├── [3.7K] StandardFlowPropertyAssetReferenceResolverService.java
│ │ │ │ │ ├── [7.0K] StandardFlowPropertyEncryptor.java
│ │ │ │ │ └── [3.1K] StandardFlowSerDeService.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [3.7K] FlowUpdateUtils.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] minifi
│ │ │ │ └── [4.0K] commons
│ │ │ │ └── [4.0K] service
│ │ │ │ ├── [ 12K] StandardFlowEnrichServiceTest.java
│ │ │ │ ├── [5.4K] StandardFlowPropertyAssetReferenceResolverServiceTest.java
│ │ │ │ └── [ 15K] StandardFlowPropertyEncryptorTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [1011] default_flow.json
│ │ │ └── [4.0K] mockito-extensions
│ │ │ └── [ 17] org.mockito.plugins.MockMaker
│ │ ├── [4.0K] minifi-commons-utils
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] minifi
│ │ │ │ └── [4.0K] commons
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [2.0K] PropertyUtil.java
│ │ │ │ └── [1.6K] RetryUtil.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] minifi
│ │ │ └── [4.0K] commons
│ │ │ └── [4.0K] utils
│ │ │ └── [2.9K] PropertyUtilTest.java
│ │ ├── [4.0K] minifi-flow-status-report
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] minifi
│ │ │ │ └── [4.0K] commons
│ │ │ │ └── [4.0K] status
│ │ │ │ ├── [4.0K] common
│ │ │ │ │ ├── [1.2K] AbstractStatusBean.java
│ │ │ │ │ ├── [2.2K] BulletinStatus.java
│ │ │ │ │ └── [2.5K] ValidationError.java
│ │ │ │ ├── [4.0K] connection
│ │ │ │ │ ├── [2.0K] ConnectionHealth.java
│ │ │ │ │ ├── [2.8K] ConnectionStats.java
│ │ │ │ │ └── [2.7K] ConnectionStatusBean.java
│ │ │ │ ├── [4.0K] controllerservice
│ │ │ │ │ ├── [2.8K] ControllerServiceHealth.java
│ │ │ │ │ └── [3.0K] ControllerServiceStatus.java
│ │ │ │ ├── [8.7K] FlowStatusReport.java
│ │ │ │ ├── [4.0K] instance
│ │ │ │ │ ├── [2.9K] InstanceHealth.java
│ │ │ │ │ ├── [4.6K] InstanceStats.java
│ │ │ │ │ └── [3.0K] InstanceStatus.java
│ │ │ │ ├── [4.0K] processor
│ │ │ │ │ ├── [2.8K] ProcessorHealth.java
│ │ │ │ │ ├── [4.0K] ProcessorStats.java
│ │ │ │ │ └── [3.3K] ProcessorStatusBean.java
│ │ │ │ ├── [4.0K] reportingTask
│ │ │ │ │ ├── [3.3K] ReportingTaskHealth.java
│ │ │ │ │ └── [2.9K] ReportingTaskStatus.java
│ │ │ │ ├── [4.0K] rpg
│ │ │ │ │ ├── [2.5K] PortStatus.java
│ │ │ │ │ ├── [3.1K] RemoteProcessGroupHealth.java
│ │ │ │ │ ├── [2.5K] RemoteProcessGroupStats.java
│ │ │ │ │ └── [5.0K] RemoteProcessGroupStatusBean.java
│ │ │ │ ├── [4.0K] system
│ │ │ │ │ ├── [3.2K] ContentRepositoryUsage.java
│ │ │ │ │ ├── [2.8K] FlowfileRepositoryUsage.java
│ │ │ │ │ ├── [2.6K] GarbageCollectionStatus.java
│ │ │ │ │ ├── [5.1K] HeapStatus.java
│ │ │ │ │ ├── [4.6K] SystemDiagnosticsStatus.java
│ │ │ │ │ └── [2.2K] SystemProcessorStats.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [ 19K] StatusReportPopulator.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] minifi
│ │ │ └── [4.0K] commons
│ │ │ └── [4.0K] status
│ │ │ └── [4.0K] StatusReportTest.java
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] minifi-docker
│ │ ├── [4.0K] dockerhub
│ │ │ ├── [1.5K] DockerBuild.sh
│ │ │ ├── [2.1K] Dockerfile
│ │ │ ├── [ 807] DockerImage.txt
│ │ │ ├── [ 933] DockerRun.sh
│ │ │ ├── [3.3K] README.md
│ │ │ └── [4.0K] sh
│ │ │ └── [1.2K] start.sh
│ │ ├── [4.0K] dockermaven
│ │ │ ├── [2.3K] Dockerfile
│ │ │ └── [2.5K] integration-test.sh
│ │ ├── [8.7K] pom.xml
│ │ └── [1.4K] README.md
│ ├── [4.0K] minifi-docs
│ │ ├── [ 11K] LICENSE
│ │ ├── [ 166] NOTICE
│ │ ├── [3.1K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] assembly
│ │ │ └── [2.0K] dependencies.xml
│ │ └── [4.0K] markdown
│ │ ├── [ 12K] minifi-java-agent-quick-start.md
│ │ └── [ 65K] System_Admin_Guide.md
│ ├── [4.0K] minifi-integration-tests
│ │ ├── [4.8K] pom.xml
│ │ ├── [1.2K] README.md
│ │ └── [4.0K] src
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] minifi
│ │ │ └── [4.0K] integration
│ │ │ ├── [4.0K] standalone
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [3.5K] StandaloneJsonTest.java
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] LogUtil.java
│ │ └── [4.0K] resources
│ │ ├── [8.4K] bootstrap.conf
│ │ ├── [4.0K] conf
│ │ │ └── [4.8K] nifi.properties
│ │ ├── [1.5K] docker-compose-standalone.yml
│ │ ├── [ 905] Dockerfile.minifi.test
│ │ ├── [5.2K] logback.xml
│ │ ├── [4.0K] standalone
│ │ │ ├── [4.0K] CsvToJson
│ │ │ │ ├── [ 14K] CsvToJson.json
│ │ │ │ └── [ 260] expected.json
│ │ │ ├── [4.0K] DecompressionCircularFlow
│ │ │ │ ├── [ 33K] DecompressionCircularFlow.json
│ │ │ │ └── [ 257] expected.json
│ │ │ ├── [4.0K] MiNiFiTailLogAttribute
│ │ │ │ ├── [ 258] expected.json
│ │ │ │ └── [5.4K] MiNiFiTailLogAttribute.json
│ │ │ ├── [4.0K] MultipleRelationships
│ │ │ │ ├── [ 255] expected.json
│ │ │ │ └── [ 10K] MultipleRelationships.json
│ │ │ ├── [4.0K] ProcessGroups
│ │ │ │ ├── [ 258] expected.json
│ │ │ │ └── [ 13K] ProcessGroups.json
│ │ │ ├── [4.0K] ReplaceTextExpressionLanguageCSVReformatting
│ │ │ │ ├── [ 260] expected.json
│ │ │ │ └── [ 11K] ReplaceTextExpressionLanguageCSVReformatting.json
│ │ │ └── [4.0K] StressTestFramework
│ │ │ ├── [ 264] expected.json
│ │ │ └── [ 17K] StressTestFramework.json
│ │ └── [2.1K] tailFileServer.py
│ ├── [4.0K] minifi-nar-bundles
│ │ ├── [4.0K] minifi-framework-bundle
│ │ │ ├── [4.0K] minifi-framework
│ │ │ │ ├── [4.0K] minifi-framework-api
│ │ │ │ │ ├── [1.7K] pom.xml
│ │ │ │ │ └── [4.0K] src
│ │ │ │ │ └── [4.0K] main
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] minifi
│ │ │ │ │ ├── [1.2K] MiNiFiServer.java
│ │ │ │ │ └── [4.0K] status
│ │ │ │ │ └── [1.3K] StatusRequestException.java
│ │ │ │ ├── [4.0K] minifi-framework-core
│ │ │ │ │ ├── [6.1K] pom.xml
│ │ │ │ │ └── [4.0K] src
│ │ │ │ │ ├── [4.0K] main
│ │ │ │ │ │ └── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ ├── [4.0K] nifi
│ │ │ │ │ │ │ └── [4.0K] minifi
│ │ │ │ │ │ │ ├── [4.0K] c2
│ │ │ │ │ │ │ │ ├── [5.4K] BootstrapC2OperationRestartHandler.java
│ │ │ │ │ │ │ │ ├── [ 29K] C2NifiClientService.java
│ │ │ │ │ │ │ │ ├── [4.0K] command
│ │ │ │ │ │ │ │ │ ├── [3.8K] AgentPropertyValidationContext.java
│ │ │ │ │ │ │ │ │ ├── [4.1K] DefaultFlowStateStrategy.java
│ │ │ │ │ │ │ │ │ ├── [ 12K] DefaultUpdateConfigurationStrategy.java
│ │ │ │ │ │ │ │ │ ├── [6.7K] PropertiesPersister.java
│ │ │ │ │ │ │ │ │ ├── [4.0K] syncresource
│ │ │ │ │ │ │ │ │ │ ├── [7.8K] DefaultSyncResourceStrategy.java
│ │ │ │ │ │ │ │ │ │ ├── [ 10K] FileResourceRepository.java
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] ResourceRepository.java
│ │ │ │ │ │ │ │ │ │ └── [1.3K] SyncResourcePropertyProvider.java
│ │ │ │ │ │ │ │ │ ├── [2.8K] TransferDebugCommandHelper.java
│ │ │ │ │ │ │ │ │ ├── [2.3K] UpdatableProperty.java
│ │ │ │ │ │ │ │ │ ├── [2.7K] UpdateAssetCommandHelper.java
│ │ │ │ │ │ │ │ │ └── [3.2K] UpdatePropertiesPropertyProvider.java
│ │ │ │ │ │ │ │ └── [3.0K] FileBasedOperationQueueDAO.java
│ │ │ │ │ │ │ ├── [4.0K] status
│ │ │ │ │ │ │ │ ├── [ 16K] StatusConfigReporter.java
│ │ │ │ │ │ │ │ └── [ 23K] StatusRequestParser.java
│ │ │ │ │ │ │ └── [4.0K] validator
│ │ │ │ │ │ │ └── [6.6K] FlowValidator.java
│ │ │ │ │ │ └── [4.0K] zookeeper
│ │ │ │ │ │ └── [4.0K] server
│ │ │ │ │ │ └── [4.0K] quorum
│ │ │ │ │ │ └── [1.5K] QuorumPeerConfig.java
│ │ │ │ │ └── [4.0K] test
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] minifi
│ │ │ │ │ ├── [4.0K] c2
│ │ │ │ │ │ ├── [7.6K] BootstrapC2OperationRestartHandlerTest.java
│ │ │ │ │ │ ├── [4.0K] command
│ │ │ │ │ │ │ ├── [7.3K] DefaultFlowStateStrategyTest.java
│ │ │ │ │ │ │ ├── [9.7K] DefaultUpdateConfigurationStrategyTest.java
│ │ │ │ │ │ │ ├── [7.2K] PropertiesPersisterTest.java
│ │ │ │ │ │ │ ├── [4.0K] syncresource
│ │ │ │ │ │ │ │ ├── [ 18K] DefaultSyncResourceStrategyTest.java
│ │ │ │ │ │ │ │ └── [ 23K] FileResourceRepositoryTest.java
│ │ │ │ │ │ │ ├── [2.8K] TransferDebugCommandHelperTest.java
│ │ │ │ │ │ │ ├── [4.6K] UpdateAssetCommandHelperTest.java
│ │ │ │ │ │ │ └── [3.7K] UpdatePropertiesPropertyProviderTest.java
│ │ │ │ │ │ └── [4.4K] FileBasedOperationQueueDAOTest.java
│ │ │ │ │ └── [4.0K] status
│ │ │ │ │ └── [ 38K] StatusConfigReporterTest.java
│ │ │ │ ├── [4.0K] minifi-nar-unloader
│ │ │ │ │ ├── [2.6K] pom.xml
│ │ │ │ │ └── [4.0K] src
│ │ │ │ │ ├── [4.0K] main
│ │ │ │ │ │ └── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] minifi
│ │ │ │ │ │ └── [4.0K] nar
│ │ │ │ │ │ ├── [2.0K] NarAutoUnloader.java
│ │ │ │ │ │ ├── [2.3K] NarAutoUnloaderTaskFactory.java
│ │ │ │ │ │ ├── [3.4K] NarAutoUnloaderTask.java
│ │ │ │ │ │ └── [2.5K] NarAutoUnloadService.java
│ │ │ │ │ └── [4.0K] test
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] minifi
│ │ │ │ │ └── [4.0K] nar
│ │ │ │ │ └── [3.2K] NarAutoUnloadServiceTest.java
│ │ │ │ ├── [4.0K] minifi-properties-loader
│ │ │ │ │ ├── [2.2K] pom.xml
│ │ │ │ │ └── [4.0K] src
│ │ │ │ │ └── [4.0K] main
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] minifi
│ │ │ │ │ └── [4.0K] properties
│ │ │ │ │ ├── [2.6K] BootstrapProperties.java
│ │ │ │ │ ├── [1.2K] BootstrapPropertiesLoader.java
│ │ │ │ │ ├── [1.8K] DuplicateDetectingProperties.java
│ │ │ │ │ ├── [2.8K] MiNiFiPropertiesLoader.java
│ │ │ │ │ ├── [2.0K] MultiSourceMinifiProperties.java
│ │ │ │ │ └── [2.6K] PropertiesLoader.java
│ │ │ │ ├── [4.0K] minifi-resources
│ │ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ │ ├── [ 535] NOTICE
│ │ │ │ │ ├── [2.6K] pom.xml
│ │ │ │ │ └── [4.0K] src
│ │ │ │ │ └── [4.0K] main
│ │ │ │ │ ├── [4.0K] assembly
│ │ │ │ │ │ └── [1.9K] dependencies.xml
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ ├── [4.0K] bin
│ │ │ │ │ │ ├── [ 970] delete-service.bat
│ │ │ │ │ │ ├── [1.9K] dump-minifi.bat
│ │ │ │ │ │ ├── [1.9K] flowstatus-minifi.bat
│ │ │ │ │ │ ├── [2.5K] install-service.bat
│ │ │ │ │ │ ├── [1.3K] minifi-env.bat
│ │ │ │ │ │ ├── [1.3K] minifi-env.sh
│ │ │ │ │ │ ├── [ 13K] minifi.sh
│ │ │ │ │ │ ├── [2.3K] run-minifi.bat
│ │ │ │ │ │ └── [1.9K] status-minifi.bat
│ │ │ │ │ └── [4.0K] conf
│ │ │ │ │ ├── [8.8K] bootstrap.conf
│ │ │ │ │ ├── [ 889] flow.json.raw
│ │ │ │ │ ├── [6.7K] logback.xml
│ │ │ │ │ └── [4.5K] state-management.xml
│ │ │ │ ├── [4.0K] minifi-runtime
│ │ │ │ │ ├── [3.6K] pom.xml
│ │ │ │ │ └── [4.0K] src
│ │ │ │ │ ├── [4.0K] main
│ │ │ │ │ │ └── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] minifi
│ │ │ │ │ │ ├── [4.0K] bootstrap
│ │ │ │ │ │ │ ├── [ 12K] BootstrapListener.java
│ │ │ │ │ │ │ ├── [1.2K] BootstrapRequest.java
│ │ │ │ │ │ │ ├── [2.9K] BootstrapRequestReader.java
│ │ │ │ │ │ │ ├── [4.7K] DumpUtil.java
│ │ │ │ │ │ │ └── [2.7K] LimitingInputStream.java
│ │ │ │ │ │ ├── [ 12K] MiNiFi.java
│ │ │ │ │ │ └── [4.0K] util
│ │ │ │ │ │ └── [2.2K] BootstrapClassLoaderUtils.java
│ │ │ │ │ └── [4.0K] test
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [1.6K] flow.xml.gz
│ │ │ │ ├── [4.0K] minifi-server
│ │ │ │ │ ├── [4.0K] pom.xml
│ │ │ │ │ └── [4.0K] src
│ │ │ │ │ └── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] minifi
│ │ │ │ │ │ └── [8.5K] StandardMiNiFiServer.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ ├── [ 17K] LICENSE
│ │ │ │ │ ├── [8.7K] NOTICE
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 824] org.apache.nifi.NiFiServer
│ │ │ │ └── [1.6K] pom.xml
│ │ │ ├── [4.0K] minifi-framework-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 18K] LICENSE
│ │ │ │ └── [7.7K] NOTICE
│ │ │ ├── [4.0K] minifi-server-nar
│ │ │ │ ├── [4.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 17K] LICENSE
│ │ │ │ └── [1.9K] NOTICE
│ │ │ └── [3.2K] pom.xml
│ │ ├── [4.0K] minifi-provenance-repository-bundle
│ │ │ ├── [4.0K] minifi-provenance-repositories
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] provenance
│ │ │ │ │ └── [4.3K] NoOpProvenanceRepository.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 832] org.apache.nifi.provenance.ProvenanceEventRepository
│ │ │ │ └── [ 832] org.apache.nifi.provenance.ProvenanceRepository
│ │ │ ├── [4.0K] minifi-provenance-repository-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ └── [ 386] NOTICE
│ │ │ └── [1.4K] pom.xml
│ │ ├── [4.0K] minifi-standard-nar
│ │ │ ├── [3.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 17K] LICENSE
│ │ │ └── [6.3K] NOTICE
│ │ ├── [4.0K] minifi-update-attribute-nar
│ │ │ ├── [2.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 837] NOTICE
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] minifi-toolkit
│ │ ├── [4.0K] minifi-toolkit-assembly
│ │ │ ├── [ 18K] LICENSE
│ │ │ ├── [6.1K] NOTICE
│ │ │ ├── [4.8K] pom.xml
│ │ │ ├── [5.7K] README.md
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] assembly
│ │ │ │ └── [2.4K] dependencies.xml
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] bin
│ │ │ │ ├── [1.4K] config.bat
│ │ │ │ └── [3.2K] config.sh
│ │ │ └── [4.0K] classpath
│ │ │ └── [1.4K] logback.xml
│ │ ├── [4.0K] minifi-toolkit-configuration
│ │ │ ├── [3.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] minifi
│ │ │ └── [4.0K] toolkit
│ │ │ └── [4.0K] configuration
│ │ │ ├── [3.6K] ConfigMain.java
│ │ │ ├── [1.2K] ConfigTransformException.java
│ │ │ ├── [4.0K] json
│ │ │ │ ├── [9.2K] ComponentPropertyProvider.java
│ │ │ │ ├── [ 27K] ConfigSchemaToVersionedDataFlowTransformer.java
│ │ │ │ ├── [1.7K] ObjectMapperUtils.java
│ │ │ │ ├── [5.6K] TransformNifiCommandFactory.java
│ │ │ │ └── [7.6K] TransformYamlCommandFactory.java
│ │ │ ├── [1.0K] PathInputStreamFactory.java
│ │ │ └── [1.0K] PathOutputStreamFactory.java
│ │ ├── [4.0K] minifi-toolkit-schema
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] minifi
│ │ │ │ └── [4.0K] toolkit
│ │ │ │ └── [4.0K] schema
│ │ │ │ ├── [4.0K] common
│ │ │ │ │ ├── [9.7K] BaseSchema.java
│ │ │ │ │ ├── [1.7K] BaseSchemaWithIdAndName.java
│ │ │ │ │ ├── [2.5K] BaseSchemaWithId.java
│ │ │ │ │ ├── [1.9K] CollectionOverlap.java
│ │ │ │ │ ├── [1.4K] CollectionUtil.java
│ │ │ │ │ ├── [3.3K] CommonPropertyKeys.java
│ │ │ │ │ ├── [1.4K] ConvertableSchema.java
│ │ │ │ │ ├── [1.5K] Schema.java
│ │ │ │ │ ├── [1.8K] StringUtil.java
│ │ │ │ │ └── [1.1K] WritableSchema.java
│ │ │ │ ├── [2.3K] ComponentStatusRepositorySchema.java
│ │ │ │ ├── [ 15K] ConfigSchema.java
│ │ │ │ ├── [5.7K] ConnectionSchema.java
│ │ │ │ ├── [5.9K] ContentRepositorySchema.java
│ │ │ │ ├── [2.6K] ControllerServiceSchema.java
│ │ │ │ ├── [4.5K] CorePropertiesSchema.java
│ │ │ │ ├── [4.0K] exception
│ │ │ │ │ ├── [1.2K] SchemaInstantiatonException.java
│ │ │ │ │ └── [ 999] SchemaLoaderException.java
│ │ │ │ ├── [2.0K] FlowControllerSchema.java
│ │ │ │ ├── [3.8K] FlowFileRepositorySchema.java
│ │ │ │ ├── [1.1K] FunnelSchema.java
│ │ │ │ ├── [1.1K] PortSchema.java
│ │ │ │ ├── [8.2K] ProcessGroupSchema.java
│ │ │ │ ├── [6.6K] ProcessorSchema.java
│ │ │ │ ├── [6.6K] ProvenanceReportingSchema.java
│ │ │ │ ├── [5.1K] ProvenanceRepositorySchema.java
│ │ │ │ ├── [2.7K] RemotePortSchema.java
│ │ │ │ ├── [9.5K] RemoteProcessGroupSchema.java
│ │ │ │ ├── [4.0K] ReportingSchema.java
│ │ │ │ ├── [7.5K] SecurityPropertiesSchema.java
│ │ │ │ ├── [2.2K] SensitivePropsSchema.java
│ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ ├── [1.2K] ConfigRepresenter.java
│ │ │ │ │ ├── [4.7K] SchemaLoader.java
│ │ │ │ │ └── [1.8K] SchemaSaver.java
│ │ │ │ ├── [3.3K] SwapSchema.java
│ │ │ │ ├── [4.0K] v1
│ │ │ │ │ ├── [ 15K] ConfigSchemaV1.java
│ │ │ │ │ ├── [4.9K] ConnectionSchemaV1.java
│ │ │ │ │ ├── [5.9K] ProcessorSchemaV1.java
│ │ │ │ │ └── [4.3K] RemoteProcessGroupSchemaV1.java
│ │ │ │ └── [4.0K] v2
│ │ │ │ ├── [ 11K] ConfigSchemaV2.java
│ │ │ │ ├── [3.8K] CorePropertiesSchemaV2.java
│ │ │ │ ├── [8.1K] ProcessGroupSchemaV2.java
│ │ │ │ └── [5.1K] RemoteProcessGroupSchemaV2.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] minifi
│ │ │ │ └── [4.0K] toolkit
│ │ │ │ └── [4.0K] schema
│ │ │ │ ├── [7.8K] ConfigSchemaTest.java
│ │ │ │ ├── [9.7K] ConnectionSchemaTest.java
│ │ │ │ ├── [2.8K] ProcessGroupSchemaTest.java
│ │ │ │ ├── [8.8K] RemoteProcessGroupSchemaTest.java
│ │ │ │ ├── [2.4K] SecurityPropertiesSchemaTest.java
│ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ └── [5.0K] SchemaLoaderTest.java
│ │ │ │ ├── [4.0K] v1
│ │ │ │ │ ├── [5.4K] ConfigSchemaV1Test.java
│ │ │ │ │ ├── [7.9K] ConnectionSchemaV1Test.java
│ │ │ │ │ └── [9.6K] ProcessorSchemaV1Test.java
│ │ │ │ └── [4.0K] v2
│ │ │ │ └── [3.9K] RemoteProcessGroupSchemaV2Test.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [1.6K] config-minimal-v2.yml
│ │ │ ├── [1.6K] config-minimal-v3.yml
│ │ │ └── [1.5K] config-minimal.yml
│ │ └── [1.6K] pom.xml
│ └── [1.9K] pom.xml
├── [ 10K] mvnw
├── [6.7K] mvnw.cmd
├── [4.0K] nifi-assembly
│ ├── [148K] LICENSE
│ ├── [103K] NOTICE
│ ├── [ 45K] pom.xml
│ ├── [4.9K] README.md
│ └── [4.0K] src
│ └── [4.0K] main
│ └── [4.0K] assembly
│ ├── [7.8K] common.xml
│ ├── [2.3K] core.xml
│ ├── [1.1K] dependencies.xml
│ └── [1.1K] extension-manifests.xml
├── [4.0K] nifi-bom
│ └── [8.6K] pom.xml
├── [4.0K] nifi-bootstrap
│ ├── [1.6K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] bootstrap
│ │ ├── [2.2K] BootstrapProcess.java
│ │ ├── [4.0K] command
│ │ │ ├── [2.4K] ApplicationProcessStatusBootstrapCommand.java
│ │ │ ├── [1.1K] BootstrapCommand.java
│ │ │ ├── [1.2K] BootstrapCommandProvider.java
│ │ │ ├── [1.3K] CommandStatus.java
│ │ │ ├── [4.2K] GetRunCommandBootstrapCommand.java
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [1.1K] BootstrapArgument.java
│ │ │ │ ├── [1.2K] BootstrapArgumentParser.java
│ │ │ │ ├── [1.8K] FileResponseStreamHandler.java
│ │ │ │ ├── [ 983] HttpRequestMethod.java
│ │ │ │ ├── [1.6K] LoggerResponseStreamHandler.java
│ │ │ │ ├── [1.2K] ResponseStreamHandler.java
│ │ │ │ └── [2.2K] StandardBootstrapArgumentParser.java
│ │ │ ├── [8.4K] ManagementServerBootstrapCommand.java
│ │ │ ├── [4.0K] process
│ │ │ │ ├── [1.2K] ManagementServerAddressProvider.java
│ │ │ │ ├── [1.1K] ProcessBuilderProvider.java
│ │ │ │ ├── [2.8K] ProcessHandleManagementServerAddressProvider.java
│ │ │ │ ├── [1.3K] ProcessHandleProvider.java
│ │ │ │ ├── [3.2K] StandardManagementServerAddressProvider.java
│ │ │ │ ├── [5.3K] StandardProcessBuilderProvider.java
│ │ │ │ ├── [3.6K] StandardProcessHandleProvider.java
│ │ │ │ ├── [2.5K] VirtualMachineManagementServerAddressProvider.java
│ │ │ │ └── [5.5K] VirtualMachineProcessHandleProvider.java
│ │ │ ├── [5.6K] RunBootstrapCommand.java
│ │ │ ├── [1.7K] SequenceBootstrapCommand.java
│ │ │ ├── [ 12K] StandardBootstrapCommandProvider.java
│ │ │ ├── [4.0K] StartBootstrapCommand.java
│ │ │ ├── [6.4K] StopBootstrapCommand.java
│ │ │ └── [1.1K] UnknownBootstrapCommand.java
│ │ ├── [4.0K] configuration
│ │ │ ├── [1.2K] ApplicationClassName.java
│ │ │ ├── [1.4K] BootstrapProperty.java
│ │ │ ├── [2.5K] ConfigurationProvider.java
│ │ │ ├── [ 986] EnvironmentVariable.java
│ │ │ ├── [1.3K] ManagementServerPath.java
│ │ │ ├── [ 11K] StandardConfigurationProvider.java
│ │ │ └── [1.6K] SystemProperty.java
│ │ ├── [4.0K] process
│ │ │ ├── [4.2K] AbstractFileBasedRuntimeValidator.java
│ │ │ ├── [2.6K] AvailableLocalPorts.java
│ │ │ ├── [3.2K] FileHandles.java
│ │ │ ├── [3.1K] ForkedProcesses.java
│ │ │ ├── [2.6K] RuntimeValidatorExecutor.java
│ │ │ ├── [1.1K] RuntimeValidator.java
│ │ │ ├── [2.2K] RuntimeValidatorResult.java
│ │ │ ├── [3.4K] SocketTimedWaitDuration.java
│ │ │ └── [2.4K] Swappiness.java
│ │ └── [4.0K] property
│ │ ├── [1.2K] ApplicationPropertyHandler.java
│ │ └── [ 15K] SecurityApplicationPropertyHandler.java
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] bootstrap
│ │ ├── [4.0K] command
│ │ │ ├── [2.5K] ApplicationProcessStatusBootstrapCommandTest.java
│ │ │ ├── [3.4K] GetRunCommandBootstrapCommandTest.java
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [1.8K] FileResponseStreamHandlerTest.java
│ │ │ │ └── [1.9K] StandardBootstrapArgumentParserTest.java
│ │ │ ├── [6.1K] ManagementServerBootstrapCommandTest.java
│ │ │ ├── [4.0K] process
│ │ │ │ ├── [3.0K] ProcessHandleManagementServerAddressProviderTest.java
│ │ │ │ ├── [1.7K] StandardManagementServerAddressProviderTest.java
│ │ │ │ ├── [3.2K] StandardProcessBuilderProviderTest.java
│ │ │ │ ├── [1.9K] StandardProcessHandleProviderTest.java
│ │ │ │ └── [2.3K] VirtualMachineProcessHandleProviderTest.java
│ │ │ ├── [1.9K] RunBootstrapCommandTest.java
│ │ │ ├── [1.5K] StandardBootstrapCommandProviderTest.java
│ │ │ ├── [2.8K] StartBootstrapCommandTest.java
│ │ │ └── [3.2K] StopBootstrapCommandTest.java
│ │ ├── [4.0K] configuration
│ │ │ └── [7.7K] StandardConfigurationProviderTest.java
│ │ ├── [4.0K] process
│ │ │ └── [9.0K] RuntimeValidatorExecutorTest.java
│ │ └── [4.0K] property
│ │ └── [ 11K] SecurityApplicationPropertyHandlerTest.java
│ └── [4.0K] resources
│ ├── [1.9K] limits
│ └── [1.9K] limits_not_enough
├── [4.0K] nifi-code-coverage
│ └── [ 63K] pom.xml
├── [4.0K] nifi-commons
│ ├── [4.0K] nifi-build
│ │ ├── [1.2K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] build
│ │ └── [2.5K] VerifyBuildLocaleTest.java
│ ├── [4.0K] nifi-calcite-utils
│ │ ├── [3.2K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] sql
│ │ │ ├── [1.2K] ArrayType.java
│ │ │ ├── [8.1K] CalciteDatabase.java
│ │ │ ├── [3.2K] ColumnSchema.java
│ │ │ ├── [1.2K] ColumnType.java
│ │ │ ├── [4.0K] internal
│ │ │ │ ├── [3.6K] CalciteTable.java
│ │ │ │ ├── [3.9K] NiFiProjectTableScanRule.java
│ │ │ │ ├── [5.3K] NiFiTableEnumerator.java
│ │ │ │ └── [4.4K] NiFiTableScan.java
│ │ │ ├── [2.0K] IterableRowStream.java
│ │ │ ├── [1.3K] MapType.java
│ │ │ ├── [5.9K] NiFiTable.java
│ │ │ ├── [1017] NiFiTableSchema.java
│ │ │ ├── [1.4K] ResettableDataSource.java
│ │ │ ├── [1.4K] RowStream.java
│ │ │ └── [2.4K] ScalarType.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] sql
│ │ └── [6.6K] TestCalciteDatabase.java
│ ├── [4.0K] nifi-content-viewer-utils
│ │ ├── [1.9K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] web
│ │ └── [4.1K] HttpServletContentRequestContext.java
│ ├── [4.0K] nifi-custom-ui-utils
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] web
│ │ ├── [2.5K] HttpServletConfigurationRequestContext.java
│ │ └── [1.9K] HttpServletRequestContext.java
│ ├── [4.0K] nifi-data-provenance-utils
│ │ ├── [1.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] provenance
│ │ │ ├── [2.8K] AsyncLineageSubmission.java
│ │ │ ├── [2.9K] AsyncQuerySubmission.java
│ │ │ ├── [4.0K] lineage
│ │ │ │ ├── [2.1K] EdgeNode.java
│ │ │ │ ├── [2.6K] EventNode.java
│ │ │ │ ├── [2.2K] FlowFileLineage.java
│ │ │ │ └── [2.1K] FlowFileNode.java
│ │ │ ├── [3.1K] NamedSearchableField.java
│ │ │ ├── [4.5K] PlaceholderProvenanceEvent.java
│ │ │ ├── [1.1K] ProgressiveResult.java
│ │ │ ├── [2.1K] SearchableFieldParser.java
│ │ │ ├── [5.2K] SearchableFields.java
│ │ │ ├── [ 12K] StandardLineageResult.java
│ │ │ ├── [ 28K] StandardProvenanceEventRecord.java
│ │ │ └── [8.3K] StandardQueryResult.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] provenance
│ │ └── [2.5K] StandardProvenanceEventRecordTest.java
│ ├── [4.0K] nifi-deprecation-log
│ │ ├── [1.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] deprecation
│ │ │ └── [4.0K] log
│ │ │ ├── [1.5K] DeprecationException.java
│ │ │ ├── [1.4K] DeprecationLoggerFactory.java
│ │ │ ├── [1.2K] DeprecationLogger.java
│ │ │ └── [2.6K] StandardDeprecationLogger.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] deprecation
│ │ └── [4.0K] log
│ │ ├── [1.5K] DeprecationExceptionTest.java
│ │ ├── [1.4K] DeprecationLoggerFactoryTest.java
│ │ └── [2.7K] StandardDeprecationLoggerTest.java
│ ├── [4.0K] nifi-expression-language
│ │ ├── [5.5K] pom.xml
│ │ ├── [8.5K] README
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] antlr3
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] attribute
│ │ │ │ └── [4.0K] expression
│ │ │ │ └── [4.0K] language
│ │ │ │ └── [4.0K] antlr
│ │ │ │ ├── [6.9K] AttributeExpressionLexer.g
│ │ │ │ └── [6.7K] AttributeExpressionParser.g
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] attribute
│ │ │ └── [4.0K] expression
│ │ │ └── [4.0K] language
│ │ │ ├── [2.8K] AttributesAndState.java
│ │ │ ├── [4.0K] compile
│ │ │ │ └── [ 85K] ExpressionCompiler.java
│ │ │ ├── [2.1K] CompiledExpression.java
│ │ │ ├── [1.8K] EmptyPreparedQuery.java
│ │ │ ├── [4.0K] evaluation
│ │ │ │ ├── [1.5K] BooleanEvaluator.java
│ │ │ │ ├── [1.4K] BooleanQueryResult.java
│ │ │ │ ├── [4.0K] cast
│ │ │ │ │ ├── [2.0K] BooleanCastEvaluator.java
│ │ │ │ │ ├── [6.4K] DateCastEvaluator.java
│ │ │ │ │ ├── [4.4K] DecimalCastEvaluator.java
│ │ │ │ │ ├── [2.5K] EpochTimeEvaluator.java
│ │ │ │ │ ├── [4.5K] InstantCastEvaluator.java
│ │ │ │ │ ├── [4.5K] NumberCastEvaluator.java
│ │ │ │ │ ├── [1.9K] StringCastEvaluator.java
│ │ │ │ │ └── [4.7K] WholeNumberCastEvaluator.java
│ │ │ │ ├── [1.5K] DateEvaluator.java
│ │ │ │ ├── [1.4K] DateQueryResult.java
│ │ │ │ ├── [1.5K] DecimalEvaluator.java
│ │ │ │ ├── [1.4K] DecimalQueryResult.java
│ │ │ │ ├── [1.5K] Evaluator.java
│ │ │ │ ├── [2.2K] EvaluatorState.java
│ │ │ │ ├── [4.0K] functions
│ │ │ │ │ ├── [2.9K] AndEvaluator.java
│ │ │ │ │ ├── [2.1K] AppendEvaluator.java
│ │ │ │ │ ├── [2.0K] Base64DecodeEvaluator.java
│ │ │ │ │ ├── [2.0K] Base64EncodeEvaluator.java
│ │ │ │ │ ├── [3.9K] CharSequenceTranslatorEvaluator.java
│ │ │ │ │ ├── [2.1K] ContainsEvaluator.java
│ │ │ │ │ ├── [2.4K] DivideEvaluator.java
│ │ │ │ │ ├── [2.1K] EndsWithEvaluator.java
│ │ │ │ │ ├── [3.2K] EqualsEvaluator.java
│ │ │ │ │ ├── [2.3K] EqualsIgnoreCaseEvaluator.java
│ │ │ │ │ ├── [2.2K] EvaluateELStringEvaluator.java
│ │ │ │ │ ├── [3.1K] FindEvaluator.java
│ │ │ │ │ ├── [4.6K] FormatEvaluator.java
│ │ │ │ │ ├── [2.3K] FromRadixEvaluator.java
│ │ │ │ │ ├── [9.0K] GetDelimitedFieldEvaluator.java
│ │ │ │ │ ├── [2.0K] GetStateVariableEvaluator.java
│ │ │ │ │ ├── [3.2K] GetUriEvaluator.java
│ │ │ │ │ ├── [2.4K] GreaterThanEvaluator.java
│ │ │ │ │ ├── [2.4K] GreaterThanOrEqualEvaluator.java
│ │ │ │ │ ├── [2.9K] HashEvaluator.java
│ │ │ │ │ ├── [2.1K] HostnameEvaluator.java
│ │ │ │ │ ├── [2.3K] IfElseEvaluator.java
│ │ │ │ │ ├── [2.1K] IndexOfEvaluator.java
│ │ │ │ │ ├── [2.3K] InEvaluator.java
│ │ │ │ │ ├── [2.7K] InstantFormatEvaluator.java
│ │ │ │ │ ├── [1.8K] IPEvaluator.java
│ │ │ │ │ ├── [1.9K] IsEmptyEvaluator.java
│ │ │ │ │ ├── [2.6K] IsJsonEvaluator.java
│ │ │ │ │ ├── [1.8K] IsNullEvaluator.java
│ │ │ │ │ ├── [1.6K] JsonPathAddEvaluator.java
│ │ │ │ │ ├── [5.1K] JsonPathBaseEvaluator.java
│ │ │ │ │ ├── [2.7K] JsonPathDeleteEvaluator.java
│ │ │ │ │ ├── [2.8K] JsonPathEvaluator.java
│ │ │ │ │ ├── [2.7K] JsonPathPutEvaluator.java
│ │ │ │ │ ├── [1.5K] JsonPathSetEvaluator.java
│ │ │ │ │ ├── [3.7K] JsonPathUpdateEvaluator.java
│ │ │ │ │ ├── [2.1K] LastIndexOfEvaluator.java
│ │ │ │ │ ├── [1.8K] LengthEvaluator.java
│ │ │ │ │ ├── [2.4K] LessThanEvaluator.java
│ │ │ │ │ ├── [2.4K] LessThanOrEqualEvaluator.java
│ │ │ │ │ ├── [3.1K] MatchesEvaluator.java
│ │ │ │ │ ├── [7.9K] MathEvaluator.java
│ │ │ │ │ ├── [2.4K] MinusEvaluator.java
│ │ │ │ │ ├── [2.4K] ModEvaluator.java
│ │ │ │ │ ├── [2.4K] MultiplyEvaluator.java
│ │ │ │ │ ├── [1.9K] NotEvaluator.java
│ │ │ │ │ ├── [1.8K] NotNullEvaluator.java
│ │ │ │ │ ├── [1.5K] NowEvaluator.java
│ │ │ │ │ ├── [1.9K] NumberToDateEvaluator.java
│ │ │ │ │ ├── [2.0K] NumberToInstantEvaluator.java
│ │ │ │ │ ├── [1.7K] OneUpSequenceEvaluator.java
│ │ │ │ │ ├── [2.9K] OrEvaluator.java
│ │ │ │ │ ├── [2.8K] PaddingEvaluator.java
│ │ │ │ │ ├── [1.5K] PadLeftEvaluator.java
│ │ │ │ │ ├── [1.5K] PadRightEvaluator.java
│ │ │ │ │ ├── [2.4K] PlusEvaluator.java
│ │ │ │ │ ├── [2.1K] PrependEvaluator.java
│ │ │ │ │ ├── [1.7K] RandomNumberGeneratorEvaluator.java
│ │ │ │ │ ├── [3.4K] RepeatEvaluator.java
│ │ │ │ │ ├── [2.3K] ReplaceAllEvaluator.java
│ │ │ │ │ ├── [4.3K] ReplaceByPatternEvaluator.java
│ │ │ │ │ ├── [2.1K] ReplaceEmptyEvaluator.java
│ │ │ │ │ ├── [2.3K] ReplaceEvaluator.java
│ │ │ │ │ ├── [2.3K] ReplaceFirstEvaluator.java
│ │ │ │ │ ├── [2.0K] ReplaceNullEvaluator.java
│ │ │ │ │ ├── [2.1K] StartsWithEvaluator.java
│ │ │ │ │ ├── [5.1K] StringToDateEvaluator.java
│ │ │ │ │ ├── [2.8K] StringToInstantEvaluator.java
│ │ │ │ │ ├── [2.4K] SubstringAfterEvaluator.java
│ │ │ │ │ ├── [2.3K] SubstringAfterLastEvaluator.java
│ │ │ │ │ ├── [2.4K] SubstringBeforeEvaluator.java
│ │ │ │ │ ├── [2.3K] SubstringBeforeLastEvaluator.java
│ │ │ │ │ ├── [2.8K] SubstringEvaluator.java
│ │ │ │ │ ├── [1.6K] ThreadEvaluator.java
│ │ │ │ │ ├── [1.8K] ToLowerEvaluator.java
│ │ │ │ │ ├── [3.1K] ToRadixEvaluator.java
│ │ │ │ │ ├── [1.8K] ToStringEvaluator.java
│ │ │ │ │ ├── [1.8K] ToUpperEvaluator.java
│ │ │ │ │ ├── [1.8K] TrimEvaluator.java
│ │ │ │ │ ├── [2.0K] UrlDecodeEvaluator.java
│ │ │ │ │ ├── [2.0K] UrlEncodeEvaluator.java
│ │ │ │ │ ├── [2.6K] Uuid3Evaluator.java
│ │ │ │ │ ├── [2.3K] Uuid5Evaluator.java
│ │ │ │ │ └── [1.6K] UuidEvaluator.java
│ │ │ │ ├── [1.5K] InstantEvaluator.java
│ │ │ │ ├── [1.4K] InstantQueryResult.java
│ │ │ │ ├── [4.0K] literals
│ │ │ │ │ ├── [1.7K] BooleanLiteralEvaluator.java
│ │ │ │ │ ├── [1.7K] DecimalLiteralEvaluator.java
│ │ │ │ │ ├── [2.9K] StringLiteralEvaluator.java
│ │ │ │ │ ├── [1.8K] ToLiteralEvaluator.java
│ │ │ │ │ └── [1.7K] WholeNumberLiteralEvaluator.java
│ │ │ │ ├── [1.4K] NumberEvaluator.java
│ │ │ │ ├── [1.4K] NumberQueryResult.java
│ │ │ │ ├── [1.0K] QueryResult.java
│ │ │ │ ├── [4.0K] reduce
│ │ │ │ │ ├── [2.4K] CountEvaluator.java
│ │ │ │ │ ├── [2.6K] JoinEvaluator.java
│ │ │ │ │ └── [1014] ReduceEvaluator.java
│ │ │ │ ├── [4.0K] selection
│ │ │ │ │ ├── [2.9K] AllAttributesEvaluator.java
│ │ │ │ │ ├── [2.9K] AnyAttributeEvaluator.java
│ │ │ │ │ ├── [2.0K] AttributeEvaluator.java
│ │ │ │ │ ├── [3.9K] DelineatedAttributeEvaluator.java
│ │ │ │ │ ├── [1.2K] IteratingEvaluator.java
│ │ │ │ │ ├── [2.6K] MappingEvaluator.java
│ │ │ │ │ ├── [1.1K] MultiAttributeEvaluator.java
│ │ │ │ │ ├── [3.6K] MultiMatchAttributeEvaluator.java
│ │ │ │ │ ├── [3.2K] MultiNamedAttributeEvaluator.java
│ │ │ │ │ └── [1.9K] ParameterEvaluator.java
│ │ │ │ ├── [1.4K] StringEvaluator.java
│ │ │ │ ├── [1.4K] StringQueryResult.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ └── [3.7K] NumberParsing.java
│ │ │ │ ├── [1.5K] WholeNumberEvaluator.java
│ │ │ │ └── [1.4K] WholeNumberQueryResult.java
│ │ │ ├── [1.7K] EvaluationContext.java
│ │ │ ├── [4.0K] exception
│ │ │ │ ├── [1.3K] AttributeExpressionLanguageException.java
│ │ │ │ ├── [1.4K] AttributeExpressionLanguageParsingException.java
│ │ │ │ └── [1.1K] IllegalAttributeException.java
│ │ │ ├── [1.4K] Expression.java
│ │ │ ├── [2.3K] InvalidPreparedQuery.java
│ │ │ ├── [1.3K] NamedVariableImpact.java
│ │ │ ├── [1023] NoVariablesImpacted.java
│ │ │ ├── [1.9K] ParameterExpression.java
│ │ │ ├── [2.2K] ParametersDisabledEvaluationContext.java
│ │ │ ├── [2.2K] PreparedQuery.java
│ │ │ ├── [ 20K] Query.java
│ │ │ ├── [2.6K] StandardAttributeExpression.java
│ │ │ ├── [2.6K] StandardEvaluationContext.java
│ │ │ ├── [2.6K] StandardExpressionLanguageCompiler.java
│ │ │ ├── [8.9K] StandardPreparedQuery.java
│ │ │ ├── [ 11K] StandardPropertyValue.java
│ │ │ ├── [1.3K] StringLiteralExpression.java
│ │ │ ├── [6.6K] ValueLookup.java
│ │ │ └── [1.0K] VariableImpact.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] attribute
│ │ │ └── [4.0K] expression
│ │ │ └── [4.0K] language
│ │ │ ├── [128K] TestQuery.java
│ │ │ ├── [ 18K] TestStandardPreparedQuery.java
│ │ │ └── [5.6K] TestValueLookup.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] json
│ │ └── [ 511] address-book.json
│ ├── [4.0K] nifi-flow-encryptor
│ │ ├── [1.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] flow
│ │ │ └── [4.0K] encryptor
│ │ │ ├── [1.6K] AbstractFlowEncryptor.java
│ │ │ ├── [4.0K] command
│ │ │ │ ├── [9.2K] FlowEncryptorCommand.java
│ │ │ │ ├── [1.5K] SetSensitivePropertiesAlgorithm.java
│ │ │ │ └── [1.8K] SetSensitivePropertiesKey.java
│ │ │ ├── [1.6K] FlowEncryptor.java
│ │ │ └── [4.3K] JsonFlowEncryptor.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] flow
│ │ │ └── [4.0K] encryptor
│ │ │ ├── [4.0K] command
│ │ │ │ ├── [7.9K] FlowEncryptorCommandTest.java
│ │ │ │ ├── [1.9K] SetSensitivePropertiesAlgorithmTest.java
│ │ │ │ └── [1.9K] SetSensitivePropertiesKeyTest.java
│ │ │ └── [5.9K] JsonFlowEncryptorTest.java
│ │ └── [4.0K] resources
│ │ ├── [ 869] blank.nifi.properties
│ │ └── [ 928] populated.nifi.properties
│ ├── [4.0K] nifi-flowfile-packager
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] util
│ │ │ ├── [1.1K] FlowFilePackager.java
│ │ │ ├── [4.3K] FlowFilePackagerV1.java
│ │ │ ├── [5.3K] FlowFilePackagerV2.java
│ │ │ ├── [3.8K] FlowFilePackagerV3.java
│ │ │ ├── [1.1K] FlowFileUnpackager.java
│ │ │ ├── [5.2K] FlowFileUnpackagerV1.java
│ │ │ ├── [5.2K] FlowFileUnpackagerV2.java
│ │ │ ├── [5.8K] FlowFileUnpackagerV3.java
│ │ │ └── [4.9K] Unpackage.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] util
│ │ └── [2.4K] TestPackageUnpackageV3.java
│ ├── [4.0K] nifi-hashicorp-vault
│ │ ├── [2.9K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] vault
│ │ │ └── [4.0K] hashicorp
│ │ │ ├── [4.0K] config
│ │ │ │ ├── [1.5K] HashiCorpVaultApplicationContext.java
│ │ │ │ ├── [8.4K] HashiCorpVaultConfiguration.java
│ │ │ │ ├── [ 11K] HashiCorpVaultProperties.java
│ │ │ │ ├── [1.2K] HashiCorpVaultProperty.java
│ │ │ │ ├── [2.4K] HashiCorpVaultPropertySource.java
│ │ │ │ ├── [2.7K] HashiCorpVaultSslProperties.java
│ │ │ │ └── [4.0K] lookup
│ │ │ │ ├── [4.1K] BeanPropertyLookup.java
│ │ │ │ ├── [1.8K] PropertyLookup.java
│ │ │ │ └── [1.8K] ValuePropertyLookup.java
│ │ │ ├── [1.2K] HashiCorpVaultConfigurationException.java
│ │ │ └── [8.0K] StandardHashiCorpVaultCommunicationService.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] vault
│ │ └── [4.0K] hashicorp
│ │ ├── [9.9K] TestHashiCorpVaultConfiguration.java
│ │ └── [2.7K] TestStandardHashiCorpVaultCommunicationService.java
│ ├── [4.0K] nifi-hashicorp-vault-api
│ │ ├── [1.3K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] vault
│ │ └── [4.0K] hashicorp
│ │ └── [5.3K] HashiCorpVaultCommunicationService.java
│ ├── [4.0K] nifi-hl7-query-language
│ │ ├── [5.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] antlr3
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] hl7
│ │ │ │ └── [4.0K] query
│ │ │ │ └── [4.0K] antlr
│ │ │ │ ├── [4.2K] HL7QueryLexer.g
│ │ │ │ └── [3.2K] HL7QueryParser.g
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] hl7
│ │ │ ├── [4.0K] hapi
│ │ │ │ ├── [1.2K] EmptyField.java
│ │ │ │ ├── [2.7K] HapiField.java
│ │ │ │ ├── [3.3K] HapiMessage.java
│ │ │ │ ├── [2.1K] HapiSegment.java
│ │ │ │ └── [1.3K] SingleValueField.java
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [4.0K] exception
│ │ │ │ │ └── [1.3K] InvalidHL7Exception.java
│ │ │ │ └── [ 992] HL7Reader.java
│ │ │ ├── [4.0K] model
│ │ │ │ ├── [ 961] HL7Component.java
│ │ │ │ ├── [ 889] HL7Field.java
│ │ │ │ ├── [ 987] HL7Message.java
│ │ │ │ └── [ 951] HL7Segment.java
│ │ │ └── [4.0K] query
│ │ │ ├── [1019] Declaration.java
│ │ │ ├── [4.0K] evaluator
│ │ │ │ ├── [1006] BooleanEvaluator.java
│ │ │ │ ├── [4.0K] comparison
│ │ │ │ │ ├── [3.7K] AbstractComparisonEvaluator.java
│ │ │ │ │ ├── [2.2K] AbstractNumericComparison.java
│ │ │ │ │ ├── [1.3K] EqualsEvaluator.java
│ │ │ │ │ ├── [1.2K] GreaterThanEvaluator.java
│ │ │ │ │ ├── [1.2K] GreaterThanOrEqualEvaluator.java
│ │ │ │ │ ├── [2.2K] IsNullEvaluator.java
│ │ │ │ │ ├── [1.2K] LessThanEvaluator.java
│ │ │ │ │ ├── [1.2K] LessThanOrEqualEvaluator.java
│ │ │ │ │ ├── [1.3K] NotEqualsEvaluator.java
│ │ │ │ │ ├── [1.4K] NotEvaluator.java
│ │ │ │ │ └── [2.2K] NotNullEvaluator.java
│ │ │ │ ├── [1.0K] Evaluator.java
│ │ │ │ ├── [1007] IntegerEvaluator.java
│ │ │ │ ├── [4.0K] literal
│ │ │ │ │ ├── [1.2K] IntegerLiteralEvaluator.java
│ │ │ │ │ └── [1.2K] StringLiteralEvaluator.java
│ │ │ │ ├── [4.0K] logic
│ │ │ │ │ ├── [1.6K] AndEvaluator.java
│ │ │ │ │ └── [1.5K] OrEvaluator.java
│ │ │ │ ├── [4.0K] message
│ │ │ │ │ ├── [1.6K] DeclaredReferenceEvaluator.java
│ │ │ │ │ ├── [2.9K] DotEvaluator.java
│ │ │ │ │ ├── [2.3K] FieldEvaluator.java
│ │ │ │ │ ├── [1.2K] MessageEvaluator.java
│ │ │ │ │ └── [1.9K] SegmentEvaluator.java
│ │ │ │ └── [1003] StringEvaluator.java
│ │ │ ├── [4.0K] exception
│ │ │ │ └── [1.3K] HL7QueryParsingException.java
│ │ │ ├── [ 16K] HL7Query.java
│ │ │ ├── [1000] QueryResult.java
│ │ │ ├── [4.0K] result
│ │ │ │ ├── [1.7K] MissedResult.java
│ │ │ │ ├── [2.1K] StandardQueryResult.java
│ │ │ │ └── [1.3K] StandardResultHit.java
│ │ │ ├── [ 974] ResultHit.java
│ │ │ └── [1.2K] Selection.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] hl7
│ │ └── [4.0K] query
│ │ └── [ 14K] TestHL7Query.java
│ ├── [4.0K] nifi-jetty-configuration
│ │ ├── [2.5K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] jetty
│ │ │ └── [4.0K] configuration
│ │ │ └── [4.0K] connector
│ │ │ ├── [1.2K] ApplicationLayerProtocol.java
│ │ │ ├── [1.1K] ServerConnectorFactory.java
│ │ │ └── [8.6K] StandardServerConnectorFactory.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] jetty
│ │ └── [4.0K] configuration
│ │ └── [4.0K] connector
│ │ └── [9.0K] StandardServerConnectorFactoryTest.java
│ ├── [4.0K] nifi-json-schema-api
│ │ ├── [1.4K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] json
│ │ └── [4.0K] schema
│ │ ├── [1.4K] JsonSchema.java
│ │ └── [2.0K] SchemaVersion.java
│ ├── [4.0K] nifi-json-schema-shared
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] schema
│ │ └── [4.0K] access
│ │ └── [1.3K] JsonSchemaRegistryComponent.java
│ ├── [4.0K] nifi-json-utils
│ │ ├── [1.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processor
│ │ │ └── [4.0K] util
│ │ │ └── [2.1K] JsonValidator.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] processor
│ │ └── [4.1K] TestJsonValidator.java
│ ├── [4.0K] nifi-kubernetes-client
│ │ ├── [2.1K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] kubernetes
│ │ │ └── [4.0K] client
│ │ │ ├── [1.1K] KubernetesClientProvider.java
│ │ │ ├── [1.0K] NamespaceProvider.java
│ │ │ ├── [2.0K] ServiceAccountNamespaceProvider.java
│ │ │ └── [1.6K] StandardKubernetesClientProvider.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] kubernetes
│ │ └── [4.0K] client
│ │ ├── [1.7K] ServiceAccountNamespaceProviderTest.java
│ │ └── [1.9K] StandardKubernetesClientProviderTest.java
│ ├── [4.0K] nifi-metrics
│ │ ├── [1.8K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] metrics
│ │ └── [4.0K] jvm
│ │ ├── [9.8K] JmxJvmMetrics.java
│ │ └── [9.3K] JvmMetrics.java
│ ├── [4.0K] nifi-parameter
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] parameter
│ │ │ ├── [3.1K] AbstractParameterParser.java
│ │ │ ├── [1.8K] EscapedParameterReference.java
│ │ │ ├── [2.6K] ExpressionLanguageAgnosticParameterParser.java
│ │ │ ├── [4.0K] ExpressionLanguageAwareParameterParser.java
│ │ │ ├── [2.2K] ParameterLookup.java
│ │ │ ├── [1.2K] ParameterParser.java
│ │ │ ├── [1008] ParameterReference.java
│ │ │ ├── [2.3K] ParameterToken.java
│ │ │ ├── [1.1K] ParameterTokenList.java
│ │ │ ├── [2.2K] StandardParameterReference.java
│ │ │ ├── [3.6K] StandardParameterTokenList.java
│ │ │ └── [1.5K] StartCharacterEscape.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] parameter
│ │ ├── [9.5K] TestExpressionLanguageAgnosticParameterParser.java
│ │ ├── [9.0K] TestExpressionLanguageAwareParameterParser.java
│ │ └── [5.0K] TestStandardParameterTokenList.java
│ ├── [4.0K] nifi-per-process-group-logging
│ │ ├── [1.7K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org.apache.nifi.logging
│ │ └── [1.7K] NifiDiscriminator.java
│ ├── [4.0K] nifi-properties
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] util
│ │ │ ├── [1.3K] NiFiBootstrapPropertiesLoader.java
│ │ │ ├── [2.5K] NiFiBootstrapUtils.java
│ │ │ └── [ 87K] NiFiProperties.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] util
│ │ │ └── [ 18K] NiFiPropertiesTest.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] NiFiProperties
│ │ └── [4.0K] conf
│ │ ├── [4.5K] nifi.blank.properties
│ │ ├── [4.5K] nifi.missing.properties
│ │ └── [4.8K] nifi.properties
│ ├── [4.0K] nifi-property-encryptor
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] encrypt
│ │ │ ├── [4.9K] CipherPropertyEncryptor.java
│ │ │ ├── [1.2K] EncryptionException.java
│ │ │ ├── [5.3K] KeyedCipherPropertyEncryptor.java
│ │ │ ├── [1.6K] PropertyEncryptionMethod.java
│ │ │ ├── [3.0K] PropertyEncryptorBuilder.java
│ │ │ ├── [1.5K] PropertyEncryptor.java
│ │ │ ├── [1.3K] PropertySecretKeyProvider.java
│ │ │ └── [5.1K] StandardPropertySecretKeyProvider.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] encrypt
│ │ ├── [4.1K] KeyedCipherPropertyEncryptorTest.java
│ │ └── [2.2K] StandardPropertySecretKeyProviderTest.java
│ ├── [4.0K] nifi-property-utils
│ │ ├── [1.2K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ ├── [4.0K] properties
│ │ │ │ ├── [6.1K] AbstractBootstrapPropertiesLoader.java
│ │ │ │ ├── [1.3K] ApplicationProperties.java
│ │ │ │ ├── [3.3K] BootstrapProperties.java
│ │ │ │ ├── [1.7K] ReadableProperties.java
│ │ │ │ └── [2.0K] StandardReadableProperties.java
│ │ │ └── [4.0K] util
│ │ │ └── [ 18K] StringUtils.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] util
│ │ └── [4.9K] StringUtilsTest.java
│ ├── [4.0K] nifi-record
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ ├── [4.0K] schema
│ │ │ │ └── [4.0K] access
│ │ │ │ ├── [1.3K] SchemaField.java
│ │ │ │ └── [1.2K] SchemaNotFoundException.java
│ │ │ └── [4.0K] serialization
│ │ │ ├── [4.0K] AbstractRecordSetWriter.java
│ │ │ ├── [1.2K] MalformedRecordException.java
│ │ │ ├── [4.0K] record
│ │ │ │ ├── [2.3K] DataType.java
│ │ │ │ ├── [4.0K] field
│ │ │ │ │ ├── [1.5K] DateTimeFormatterRegistry.java
│ │ │ │ │ ├── [1.6K] FieldConversionException.java
│ │ │ │ │ ├── [1.5K] FieldConverter.java
│ │ │ │ │ ├── [1.3K] FieldConverterRegistry.java
│ │ │ │ │ ├── [3.8K] ObjectLocalDateFieldConverter.java
│ │ │ │ │ ├── [7.1K] ObjectLocalDateTimeFieldConverter.java
│ │ │ │ │ ├── [4.1K] ObjectLocalTimeFieldConverter.java
│ │ │ │ │ ├── [3.8K] ObjectOffsetDateTimeFieldConverter.java
│ │ │ │ │ ├── [5.2K] ObjectStringFieldConverter.java
│ │ │ │ │ ├── [2.4K] ObjectTimeFieldConverter.java
│ │ │ │ │ ├── [2.1K] ObjectTimestampFieldConverter.java
│ │ │ │ │ └── [2.9K] StandardFieldConverterRegistry.java
│ │ │ │ ├── [1.4K] ListRecordSet.java
│ │ │ │ ├── [ 29K] MapRecord.java
│ │ │ │ ├── [2.0K] PushBackRecordSet.java
│ │ │ │ ├── [1.2K] RawRecordWriter.java
│ │ │ │ ├── [5.0K] RecordField.java
│ │ │ │ ├── [1.5K] RecordFieldRemovalPath.java
│ │ │ │ ├── [ 16K] RecordFieldType.java
│ │ │ │ ├── [ 11K] Record.java
│ │ │ │ ├── [4.1K] RecordSchema.java
│ │ │ │ ├── [2.9K] RecordSet.java
│ │ │ │ ├── [ 22K] ResultSetRecordSet.java
│ │ │ │ ├── [2.1K] SchemaIdentifier.java
│ │ │ │ ├── [3.6K] SerializedForm.java
│ │ │ │ ├── [4.6K] StandardSchemaIdentifier.java
│ │ │ │ ├── [4.0K] type
│ │ │ │ │ ├── [2.9K] ArrayDataType.java
│ │ │ │ │ ├── [3.0K] ChoiceDataType.java
│ │ │ │ │ ├── [2.1K] DecimalDataType.java
│ │ │ │ │ ├── [1.9K] EnumDataType.java
│ │ │ │ │ ├── [2.8K] MapDataType.java
│ │ │ │ │ └── [3.7K] RecordDataType.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ ├── [2.5K] DataTypeSet.java
│ │ │ │ │ ├── [ 85K] DataTypeUtils.java
│ │ │ │ │ └── [1.2K] IllegalTypeConversionException.java
│ │ │ │ └── [4.0K] validation
│ │ │ │ ├── [1011] RecordSchemaValidator.java
│ │ │ │ ├── [1014] SchemaValidationResult.java
│ │ │ │ ├── [ 975] ValidationContext.java
│ │ │ │ ├── [1.0K] ValidationError.java
│ │ │ │ └── [1.4K] ValidationErrorType.java
│ │ │ ├── [5.0K] RecordReader.java
│ │ │ ├── [2.3K] RecordSetWriter.java
│ │ │ ├── [1.6K] RecordWriter.java
│ │ │ ├── [1.1K] SchemaValidationException.java
│ │ │ ├── [ 11K] SimpleRecordSchema.java
│ │ │ └── [2.3K] WriteResult.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] serialization
│ │ ├── [4.0K] record
│ │ │ ├── [4.0K] field
│ │ │ │ ├── [5.1K] ObjectOffsetDateTimeFieldConverterTest.java
│ │ │ │ ├── [6.5K] ObjectStringFieldConverterTest.java
│ │ │ │ ├── [3.0K] ObjectTimeFieldConverterTest.java
│ │ │ │ ├── [7.9K] ObjectTimestampFieldConverterTest.java
│ │ │ │ └── [4.4K] TestObjectLocalDateTimeFieldConverter.java
│ │ │ ├── [ 37K] ResultSetRecordSetTest.java
│ │ │ ├── [ 55K] TestDataTypeUtils.java
│ │ │ ├── [ 19K] TestMapRecord.java
│ │ │ └── [4.0K] util
│ │ │ ├── [2.5K] TestDataTypeSet.java
│ │ │ └── [1.2K] TriFunction.java
│ │ └── [10.0K] TestSimpleRecordSchema.java
│ ├── [4.0K] nifi-record-path
│ │ ├── [5.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] antlr3
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] record
│ │ │ │ └── [4.0K] path
│ │ │ │ ├── [3.9K] RecordPathLexer.g
│ │ │ │ └── [5.8K] RecordPathParser.g
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] record
│ │ │ └── [4.0K] path
│ │ │ ├── [3.4K] ArrayIndexFieldValue.java
│ │ │ ├── [4.0K] exception
│ │ │ │ └── [1.2K] RecordPathException.java
│ │ │ ├── [2.6K] FieldValue.java
│ │ │ ├── [4.0K] filter
│ │ │ │ ├── [3.3K] BinaryOperatorFilter.java
│ │ │ │ ├── [1.2K] Contains.java
│ │ │ │ ├── [2.8K] ContainsRegex.java
│ │ │ │ ├── [1.2K] EndsWith.java
│ │ │ │ ├── [2.4K] EqualsFilter.java
│ │ │ │ ├── [2.1K] FunctionFilter.java
│ │ │ │ ├── [1.3K] GreaterThanFilter.java
│ │ │ │ ├── [1.3K] GreaterThanOrEqualFilter.java
│ │ │ │ ├── [1.5K] IsBlank.java
│ │ │ │ ├── [1.5K] IsEmpty.java
│ │ │ │ ├── [1.3K] LessThanFilter.java
│ │ │ │ ├── [1.3K] LessThanOrEqualFilter.java
│ │ │ │ ├── [2.8K] MatchesRegex.java
│ │ │ │ ├── [2.3K] NotEqualsFilter.java
│ │ │ │ ├── [1.8K] NotFilter.java
│ │ │ │ ├── [2.9K] NumericBinaryOperatorFilter.java
│ │ │ │ ├── [1.6K] NumericComparisonFilter.java
│ │ │ │ ├── [1.2K] RecordPathFilter.java
│ │ │ │ ├── [1.2K] StartsWith.java
│ │ │ │ └── [2.1K] StringComparisonFilter.java
│ │ │ ├── [4.0K] functions
│ │ │ │ ├── [2.9K] Anchored.java
│ │ │ │ ├── [3.1K] ArrayOf.java
│ │ │ │ ├── [2.4K] Base64Decode.java
│ │ │ │ ├── [2.4K] Base64Encode.java
│ │ │ │ ├── [2.1K] Coalesce.java
│ │ │ │ ├── [2.3K] Concat.java
│ │ │ │ ├── [1.9K] Count.java
│ │ │ │ ├── [3.2K] EscapeJson.java
│ │ │ │ ├── [1.7K] FieldName.java
│ │ │ │ ├── [2.1K] FilterFunction.java
│ │ │ │ ├── [4.7K] Format.java
│ │ │ │ ├── [3.1K] Hash.java
│ │ │ │ ├── [3.2K] Join.java
│ │ │ │ ├── [2.2K] MapOf.java
│ │ │ │ ├── [2.1K] NoArgStringFunction.java
│ │ │ │ ├── [4.0K] Padding.java
│ │ │ │ ├── [1.7K] PadLeft.java
│ │ │ │ ├── [1.7K] PadRight.java
│ │ │ │ ├── [3.2K] RecordOf.java
│ │ │ │ ├── [2.7K] Replace.java
│ │ │ │ ├── [2.5K] ReplaceNull.java
│ │ │ │ ├── [3.9K] ReplaceRegex.java
│ │ │ │ ├── [2.6K] SubstringAfter.java
│ │ │ │ ├── [2.7K] SubstringAfterLast.java
│ │ │ │ ├── [2.5K] SubstringBefore.java
│ │ │ │ ├── [2.5K] SubstringBeforeLast.java
│ │ │ │ ├── [4.4K] Substring.java
│ │ │ │ ├── [3.2K] ToBytes.java
│ │ │ │ ├── [6.3K] ToDate.java
│ │ │ │ ├── [1.2K] ToLowerCase.java
│ │ │ │ ├── [3.5K] ToString.java
│ │ │ │ ├── [1.2K] ToUpperCase.java
│ │ │ │ ├── [1.2K] TrimString.java
│ │ │ │ ├── [7.0K] UnescapeJson.java
│ │ │ │ └── [2.9K] UUID5.java
│ │ │ ├── [2.7K] MapEntryFieldValue.java
│ │ │ ├── [1.7K] NumericRange.java
│ │ │ ├── [4.0K] paths
│ │ │ │ ├── [2.9K] ArrayIndexPath.java
│ │ │ │ ├── [3.8K] ChildFieldPath.java
│ │ │ │ ├── [1.7K] CurrentFieldPath.java
│ │ │ │ ├── [4.7K] DescendantFieldPath.java
│ │ │ │ ├── [1.5K] LiteralValuePath.java
│ │ │ │ ├── [3.5K] MultiArrayIndexPath.java
│ │ │ │ ├── [2.5K] MultiMapKeyPath.java
│ │ │ │ ├── [1.6K] ParentPath.java
│ │ │ │ ├── [2.8K] PredicatePath.java
│ │ │ │ ├── [ 31K] RecordPathCompiler.java
│ │ │ │ ├── [3.6K] RecordPathSegment.java
│ │ │ │ ├── [1.7K] RootPath.java
│ │ │ │ ├── [2.4K] SingularMapKeyPath.java
│ │ │ │ ├── [2.2K] WildcardChildPath.java
│ │ │ │ ├── [4.2K] WildcardDescendantPath.java
│ │ │ │ └── [3.5K] WildcardIndexPath.java
│ │ │ ├── [5.6K] RecordFieldRemover.java
│ │ │ ├── [1.0K] RecordPathEvaluationContext.java
│ │ │ ├── [4.4K] RecordPath.java
│ │ │ ├── [ 979] RecordPathResult.java
│ │ │ ├── [5.5K] StandardFieldValue.java
│ │ │ ├── [1.4K] StandardRecordPathEvaluationContext.java
│ │ │ ├── [1.3K] StandardRecordPathResult.java
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [5.0K] FieldValueLogicalPathBuilder.java
│ │ │ │ ├── [1.7K] FieldValueWalker.java
│ │ │ │ ├── [3.5K] Filters.java
│ │ │ │ ├── [1.4K] RecordPathCache.java
│ │ │ │ └── [1.6K] RecordPathUtils.java
│ │ │ └── [4.0K] validation
│ │ │ ├── [1.9K] RecordPathPropertyNameValidator.java
│ │ │ └── [2.2K] RecordPathValidator.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] record
│ │ └── [4.0K] path
│ │ ├── [4.0K] TestRecordFieldRemover.java
│ │ ├── [143K] TestRecordPath.java
│ │ └── [4.0K] util
│ │ ├── [4.3K] AbstractWalkerTest.java
│ │ ├── [3.9K] TestFieldValueLogicalPathBuilder.java
│ │ └── [1.9K] TestFieldValueWalker.java
│ ├── [4.0K] nifi-schema-utils
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] repository
│ │ │ └── [4.0K] schema
│ │ │ ├── [1.5K] ByteArrayCache.java
│ │ │ ├── [2.8K] ComplexRecordField.java
│ │ │ ├── [3.1K] FieldCache.java
│ │ │ ├── [2.6K] FieldMapRecord.java
│ │ │ ├── [2.9K] FieldType.java
│ │ │ ├── [2.2K] MapRecordField.java
│ │ │ ├── [1.2K] NamedValue.java
│ │ │ ├── [1.0K] NoOpFieldCache.java
│ │ │ ├── [1.0K] RecordField.java
│ │ │ ├── [1.0K] RecordIterator.java
│ │ │ ├── [1.0K] Record.java
│ │ │ ├── [7.4K] RecordSchema.java
│ │ │ ├── [ 918] Repetition.java
│ │ │ ├── [ 10K] SchemaRecordReader.java
│ │ │ ├── [9.9K] SchemaRecordWriter.java
│ │ │ ├── [2.4K] SimpleRecordField.java
│ │ │ ├── [1.3K] SingleRecordIterator.java
│ │ │ └── [2.1K] UnionRecordField.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] repository
│ │ └── [4.0K] schema
│ │ ├── [ 13K] TestSchemaRecordReader.java
│ │ └── [ 21K] TestSchemaRecordReaderWriter.java
│ ├── [4.0K] nifi-security-cert
│ │ ├── [1.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] security
│ │ │ └── [4.0K] cert
│ │ │ ├── [1.3K] CertificateAttributeReader.java
│ │ │ ├── [2.3K] GeneralNameType.java
│ │ │ ├── [1.5K] PeerIdentityProvider.java
│ │ │ ├── [1.6K] PrincipalFormatter.java
│ │ │ ├── [3.9K] StandardCertificateAttributeReader.java
│ │ │ ├── [3.4K] StandardPeerIdentityProvider.java
│ │ │ ├── [2.9K] StandardPrincipalFormatter.java
│ │ │ ├── [2.2K] StandardSubjectAlternativeName.java
│ │ │ └── [1.3K] SubjectAlternativeName.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] security
│ │ └── [4.0K] cert
│ │ ├── [5.2K] StandardCertificateAttributeReaderTest.java
│ │ ├── [3.4K] StandardPeerIdentityProviderTest.java
│ │ └── [3.0K] StandardPrincipalFormatterTest.java
│ ├── [4.0K] nifi-security-cert-builder
│ │ ├── [1.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] security
│ │ │ └── [4.0K] cert
│ │ │ └── [4.0K] builder
│ │ │ ├── [1.1K] CertificateBuilder.java
│ │ │ └── [ 11K] StandardCertificateBuilder.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] security
│ │ └── [4.0K] cert
│ │ └── [4.0K] builder
│ │ └── [7.8K] StandardCertificateBuilderTest.java
│ ├── [4.0K] nifi-security-crypto-key
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] security
│ │ │ └── [4.0K] crypto
│ │ │ └── [4.0K] key
│ │ │ ├── [4.0K] argon2
│ │ │ │ ├── [2.1K] Argon2DerivedKeyParameterSpec.java
│ │ │ │ └── [3.8K] Argon2DerivedKeyProvider.java
│ │ │ ├── [1.2K] DerivedKey.java
│ │ │ ├── [1.1K] DerivedKeyParameterSpec.java
│ │ │ ├── [1.2K] DerivedKeyProvider.java
│ │ │ ├── [1.6K] DerivedKeySpec.java
│ │ │ ├── [1.8K] DerivedSecretKey.java
│ │ │ ├── [4.0K] pbkdf2
│ │ │ │ ├── [1.6K] Pbkdf2DerivedKeyParameterSpec.java
│ │ │ │ └── [3.3K] Pbkdf2DerivedKeyProvider.java
│ │ │ └── [2.0K] StandardDerivedKeySpec.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] security
│ │ └── [4.0K] crypto
│ │ └── [4.0K] key
│ │ ├── [4.0K] argon2
│ │ │ └── [3.0K] Argon2DerivedKeyProviderTest.java
│ │ └── [4.0K] pbkdf2
│ │ └── [2.7K] Pbkdf2DerivedKeyProviderTest.java
│ ├── [4.0K] nifi-security-identity
│ │ ├── [1.7K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] authorization
│ │ └── [4.0K] util
│ │ ├── [2.0K] IdentityMapping.java
│ │ └── [9.0K] IdentityMappingUtil.java
│ ├── [4.0K] nifi-security-kerberos
│ │ ├── [2.5K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] security
│ │ │ └── [4.0K] krb
│ │ │ ├── [ 11K] AbstractKerberosUser.java
│ │ │ ├── [1.1K] ConfigurationUtil.java
│ │ │ ├── [3.8K] KerberosAction.java
│ │ │ ├── [1.7K] KerberosKeytabUser.java
│ │ │ ├── [1.6K] KerberosPasswordUser.java
│ │ │ ├── [1.6K] KerberosTicketCacheUser.java
│ │ │ ├── [3.1K] KeytabConfiguration.java
│ │ │ ├── [1.8K] PasswordConfiguration.java
│ │ │ ├── [2.9K] TicketCacheConfiguration.java
│ │ │ └── [2.3K] UsernamePasswordCallbackHandler.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] security
│ │ └── [4.0K] krb
│ │ ├── [2.4K] KDCServer.java
│ │ ├── [8.4K] KerberosUserIT.java
│ │ ├── [1.8K] TestKerberosKeytabUser.java
│ │ ├── [1.7K] TestKerberosPasswordUser.java
│ │ ├── [2.7K] TestKerberosTicketCacheUser.java
│ │ └── [1.9K] TestKeytabConfiguration.java
│ ├── [4.0K] nifi-security-kerberos-api
│ │ ├── [1.2K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] security
│ │ └── [4.0K] krb
│ │ ├── [1.2K] KerberosLoginException.java
│ │ └── [4.6K] KerberosUser.java
│ ├── [4.0K] nifi-security-proxied-entity
│ │ ├── [1.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] security
│ │ │ └── [4.0K] proxied
│ │ │ └── [4.0K] entity
│ │ │ ├── [1.2K] ProxiedEntityEncoder.java
│ │ │ └── [3.4K] StandardProxiedEntityEncoder.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] security
│ │ └── [4.0K] proxied
│ │ └── [4.0K] entity
│ │ └── [1.8K] StandardProxiedEntityEncoderTest.java
│ ├── [4.0K] nifi-security-ssl
│ │ ├── [1.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] security
│ │ │ └── [4.0K] ssl
│ │ │ ├── [1.5K] BuilderConfigurationException.java
│ │ │ ├── [5.0K] EphemeralKeyStoreBuilder.java
│ │ │ ├── [1.2K] InputStreamKeyStoreBuilder.java
│ │ │ ├── [1.2K] KeyManagerBuilder.java
│ │ │ ├── [1.1K] KeyManagerFactoryBuilder.java
│ │ │ ├── [1.1K] KeyManagerListener.java
│ │ │ ├── [1.1K] KeyStoreBuilder.java
│ │ │ ├── [3.3K] PemCertificateKeyStoreBuilder.java
│ │ │ ├── [1.3K] PemCertificateReader.java
│ │ │ ├── [4.1K] PemPrivateKeyCertificateKeyStoreBuilder.java
│ │ │ ├── [1.2K] PemPrivateKeyReader.java
│ │ │ ├── [1.4K] ReadEntityException.java
│ │ │ ├── [1.1K] SslContextBuilder.java
│ │ │ ├── [3.1K] StandardKeyManagerBuilder.java
│ │ │ ├── [3.0K] StandardKeyManagerFactoryBuilder.java
│ │ │ ├── [3.7K] StandardKeyStoreBuilder.java
│ │ │ ├── [4.4K] StandardPemCertificateReader.java
│ │ │ ├── [9.9K] StandardPemPrivateKeyReader.java
│ │ │ ├── [5.7K] StandardSslContextBuilder.java
│ │ │ ├── [2.8K] StandardTrustManagerBuilder.java
│ │ │ ├── [2.6K] StandardTrustManagerFactoryBuilder.java
│ │ │ ├── [3.5K] StandardX509ExtendedKeyManager.java
│ │ │ ├── [3.6K] StandardX509ExtendedTrustManager.java
│ │ │ ├── [1.2K] TrustManagerBuilder.java
│ │ │ ├── [1.1K] TrustManagerFactoryBuilder.java
│ │ │ └── [1.2K] TrustManagerListener.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] security
│ │ └── [4.0K] ssl
│ │ ├── [4.3K] EphemeralKeyStoreBuilderTest.java
│ │ ├── [2.8K] PemCertificateKeyStoreBuilderTest.java
│ │ ├── [3.4K] PemPrivateKeyCertificateKeyStoreBuilderTest.java
│ │ ├── [2.1K] StandardKeyStoreBuilderTest.java
│ │ ├── [6.6K] StandardPemCertificateReaderTest.java
│ │ ├── [8.9K] StandardPemPrivateKeyReaderTest.java
│ │ ├── [2.8K] StandardSslContextBuilderTest.java
│ │ ├── [3.7K] StandardX509ExtendedKeyManagerTest.java
│ │ └── [3.7K] StandardX509ExtendedTrustManagerTest.java
│ ├── [4.0K] nifi-security-utils-api
│ │ ├── [1.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] security
│ │ │ └── [4.0K] util
│ │ │ ├── [2.4K] ClientAuth.java
│ │ │ ├── [1.8K] KeystoreType.java
│ │ │ ├── [5.7K] TlsConfiguration.java
│ │ │ ├── [1.5K] TlsException.java
│ │ │ └── [4.0K] TlsPlatform.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] security
│ │ └── [4.0K] util
│ │ └── [3.0K] TlsPlatformTest.java
│ ├── [4.0K] nifi-single-user-utils
│ │ ├── [1.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] authentication
│ │ │ └── [4.0K] single
│ │ │ └── [4.0K] user
│ │ │ ├── [4.0K] command
│ │ │ │ └── [4.5K] SetSingleUserCredentials.java
│ │ │ ├── [4.0K] encoder
│ │ │ │ ├── [2.0K] BCryptPasswordEncoder.java
│ │ │ │ └── [1.4K] PasswordEncoder.java
│ │ │ ├── [1.6K] SingleUserCredentials.java
│ │ │ └── [4.0K] writer
│ │ │ ├── [1.2K] LoginCredentialsWriter.java
│ │ │ └── [8.3K] StandardLoginCredentialsWriter.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] authentication
│ │ │ └── [4.0K] single
│ │ │ └── [4.0K] user
│ │ │ ├── [4.0K] command
│ │ │ │ └── [4.6K] SetSingleUserCredentialsTest.java
│ │ │ ├── [4.0K] encoder
│ │ │ │ └── [1.9K] BCryptPasswordEncoderTest.java
│ │ │ └── [4.0K] writer
│ │ │ └── [3.9K] StandardLoginCredentialsWriterTest.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] conf
│ │ ├── [1.2K] login-identity-providers.xml
│ │ ├── [ 869] login.nifi.properties
│ │ ├── [1.2K] populated-login-identity-providers.xml
│ │ └── [1.2K] standard-login-identity-providers.xml
│ ├── [4.0K] nifi-site-to-site-client
│ │ ├── [5.0K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] remote
│ │ │ ├── [1.4K] AbstractCommunicationsSession.java
│ │ │ ├── [ 18K] AbstractTransaction.java
│ │ │ ├── [4.0K] client
│ │ │ │ ├── [4.3K] AbstractPeerPersistence.java
│ │ │ │ ├── [1.8K] AbstractSiteToSiteClient.java
│ │ │ │ ├── [2.1K] FilePeerPersistence.java
│ │ │ │ ├── [4.0K] http
│ │ │ │ │ ├── [ 11K] HttpClient.java
│ │ │ │ │ └── [1.6K] TransportProtocolVersionNegotiator.java
│ │ │ │ ├── [ 946] KeystoreType.java
│ │ │ │ ├── [1.1K] PeerPersistence.java
│ │ │ │ ├── [ 27K] PeerSelector.java
│ │ │ │ ├── [3.0K] PeerStatusProvider.java
│ │ │ │ ├── [ 10K] SiteInfoProvider.java
│ │ │ │ ├── [6.6K] SiteToSiteClientConfig.java
│ │ │ │ ├── [ 39K] SiteToSiteClient.java
│ │ │ │ ├── [4.0K] socket
│ │ │ │ │ ├── [1.8K] EndpointConnection.java
│ │ │ │ │ ├── [ 25K] EndpointConnectionPool.java
│ │ │ │ │ ├── [7.9K] SocketClient.java
│ │ │ │ │ ├── [1.2K] SocketPeerIdentityProvider.java
│ │ │ │ │ └── [3.0K] StandardSocketPeerIdentityProvider.java
│ │ │ │ └── [2.7K] StatePeerPersistence.java
│ │ │ ├── [1.8K] ClientTransactionCompletion.java
│ │ │ ├── [4.0K] cluster
│ │ │ │ ├── [2.2K] AdaptedNodeInformation.java
│ │ │ │ ├── [3.0K] ClusterNodeInformation.java
│ │ │ │ ├── [1.9K] NodeInformationAdapter.java
│ │ │ │ └── [3.7K] NodeInformation.java
│ │ │ ├── [4.0K] codec
│ │ │ │ ├── [2.7K] FlowFileCodec.java
│ │ │ │ └── [4.5K] StandardFlowFileCodec.java
│ │ │ ├── [1.8K] Communicant.java
│ │ │ ├── [4.0K] exception
│ │ │ │ ├── [1.8K] HandshakeException.java
│ │ │ │ ├── [1.3K] PortNotRunningException.java
│ │ │ │ ├── [1.4K] ProtocolException.java
│ │ │ │ ├── [1.2K] UnknownPortException.java
│ │ │ │ └── [1.3K] UnreachableClusterException.java
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [4.0K] http
│ │ │ │ │ ├── [2.8K] HttpCommunicationsSession.java
│ │ │ │ │ ├── [2.1K] HttpInput.java
│ │ │ │ │ ├── [1.8K] HttpOutput.java
│ │ │ │ │ └── [2.7K] HttpServerCommunicationsSession.java
│ │ │ │ └── [4.0K] socket
│ │ │ │ ├── [2.9K] SocketCommunicationsSession.java
│ │ │ │ ├── [2.9K] SocketInput.java
│ │ │ │ └── [2.3K] SocketOutput.java
│ │ │ ├── [2.5K] PeerDescription.java
│ │ │ ├── [4.4K] Peer.java
│ │ │ ├── [3.2K] PeerStatus.java
│ │ │ ├── [4.0K] protocol
│ │ │ │ ├── [2.6K] ClientProtocol.java
│ │ │ │ ├── [1.2K] CommunicationsInput.java
│ │ │ │ ├── [1.0K] CommunicationsOutput.java
│ │ │ │ ├── [2.2K] CommunicationsSession.java
│ │ │ │ ├── [1.4K] DataPacket.java
│ │ │ │ ├── [2.2K] HandshakeProperty.java
│ │ │ │ ├── [4.0K] http
│ │ │ │ │ ├── [9.3K] HttpClientTransaction.java
│ │ │ │ │ ├── [1.9K] HttpHeaders.java
│ │ │ │ │ └── [1.7K] HttpProxy.java
│ │ │ │ ├── [1.5K] RequestType.java
│ │ │ │ ├── [6.0K] ResponseCode.java
│ │ │ │ ├── [1.7K] Response.java
│ │ │ │ ├── [ 906] SiteToSiteTransportProtocol.java
│ │ │ │ └── [4.0K] socket
│ │ │ │ ├── [ 11K] SocketClientProtocol.java
│ │ │ │ └── [3.8K] SocketClientTransaction.java
│ │ │ ├── [3.5K] RemoteResourceInitiator.java
│ │ │ ├── [2.4K] TransactionCompletion.java
│ │ │ ├── [7.9K] Transaction.java
│ │ │ ├── [1.2K] TransferDirection.java
│ │ │ ├── [4.0K] util
│ │ │ │ ├── [2.0K] EventReportUtil.java
│ │ │ │ ├── [2.9K] ExtendTransactionCommand.java
│ │ │ │ ├── [2.6K] PeerStatusCache.java
│ │ │ │ ├── [ 63K] SiteToSiteRestApiClient.java
│ │ │ │ └── [1.7K] StandardDataPacket.java
│ │ │ └── [ 958] VersionedRemoteResource.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] remote
│ │ ├── [4.0K] client
│ │ │ ├── [4.0K] socket
│ │ │ │ └── [3.8K] StandardSocketPeerIdentityProviderTest.java
│ │ │ └── [8.6K] TestSiteInfoProvider.java
│ │ ├── [4.0K] protocol
│ │ │ ├── [4.0K] http
│ │ │ │ └── [ 19K] TestHttpClientTransaction.java
│ │ │ ├── [9.4K] SiteToSiteTestUtils.java
│ │ │ └── [4.0K] socket
│ │ │ └── [ 17K] TestSocketClientTransaction.java
│ │ └── [4.0K] util
│ │ ├── [2.9K] TestExtendTransactionCommand.java
│ │ └── [8.1K] TestSiteToSiteRestApiClient.java
│ ├── [4.0K] nifi-swagger-integration
│ │ ├── [1.8K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] swagger
│ │ └── [4.0K] integration
│ │ └── [1.4K] StandardObjectMapperProcessor.java
│ ├── [4.0K] nifi-utils
│ │ ├── [2.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ ├── [4.0K] flowfile
│ │ │ │ └── [4.0K] attributes
│ │ │ │ ├── [1.1K] FlowFileMediaType.java
│ │ │ │ ├── [2.7K] FragmentAttributes.java
│ │ │ │ ├── [1.2K] SiteToSiteAttributes.java
│ │ │ │ └── [1.3K] StandardFlowFileMediaType.java
│ │ │ ├── [4.0K] processor
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [2.4K] FlowFileFilters.java
│ │ │ ├── [4.0K] remote
│ │ │ │ ├── [4.0K] exception
│ │ │ │ │ └── [1.0K] TransmissionDisabledException.java
│ │ │ │ ├── [4.0K] io
│ │ │ │ │ ├── [5.5K] CompressionInputStream.java
│ │ │ │ │ ├── [4.9K] CompressionOutputStream.java
│ │ │ │ │ ├── [2.9K] InterruptableInputStream.java
│ │ │ │ │ ├── [2.2K] InterruptableOutputStream.java
│ │ │ │ │ └── [4.0K] socket
│ │ │ │ │ └── [1.7K] NetworkUtils.java
│ │ │ │ ├── [1.2K] StandardVersionNegotiatorFactory.java
│ │ │ │ ├── [2.5K] StandardVersionNegotiator.java
│ │ │ │ ├── [ 914] VersionNegotiatorFactory.java
│ │ │ │ └── [2.2K] VersionNegotiator.java
│ │ │ ├── [4.0K] stream
│ │ │ │ └── [4.0K] io
│ │ │ │ ├── [3.1K] ByteCountingInputStream.java
│ │ │ │ ├── [2.0K] ByteCountingOutputStream.java
│ │ │ │ ├── [4.0K] exception
│ │ │ │ │ ├── [1.1K] BytePatternNotFoundException.java
│ │ │ │ │ └── [1.0K] TokenTooLargeException.java
│ │ │ │ ├── [1.5K] GZIPOutputStream.java
│ │ │ │ ├── [3.7K] LimitingInputStream.java
│ │ │ │ ├── [3.6K] MaxLengthInputStream.java
│ │ │ │ ├── [2.5K] MinimumLengthInputStream.java
│ │ │ │ ├── [1.8K] NonCloseableInputStream.java
│ │ │ │ ├── [1.5K] NonCloseableOutputStream.java
│ │ │ │ ├── [1.5K] NonFlushableOutputStream.java
│ │ │ │ ├── [1.4K] NullOutputStream.java
│ │ │ │ ├── [2.7K] RepeatingInputStream.java
│ │ │ │ ├── [ 12K] StreamUtils.java
│ │ │ │ ├── [2.0K] SynchronizedByteCountingOutputStream.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ ├── [6.6K] AbstractDemarcator.java
│ │ │ │ │ ├── [5.5K] AbstractTextDemarcator.java
│ │ │ │ │ ├── [4.5K] LineDemarcator.java
│ │ │ │ │ ├── [2.1K] NonThreadSafeCircularBuffer.java
│ │ │ │ │ ├── [6.0K] StreamDemarcator.java
│ │ │ │ │ └── [7.8K] TextLineDemarcator.java
│ │ │ │ └── [1.4K] ZipOutputStream.java
│ │ │ └── [4.0K] util
│ │ │ ├── [3.8K] ComponentIdGenerator.java
│ │ │ ├── [4.0K] concurrency
│ │ │ │ ├── [1.8K] DebugDisabledTimedLock.java
│ │ │ │ ├── [4.1K] DebugEnabledTimedLock.java
│ │ │ │ ├── [1.0K] DebuggableTimedLock.java
│ │ │ │ └── [1.9K] TimedLock.java
│ │ │ ├── [2.8K] DomUtils.java
│ │ │ ├── [1.5K] EscapeUtils.java
│ │ │ ├── [4.0K] file
│ │ │ │ ├── [4.0K] classloader
│ │ │ │ │ └── [7.8K] ClassLoaderUtils.java
│ │ │ │ ├── [ 26K] FileUtils.java
│ │ │ │ └── [4.0K] monitor
│ │ │ │ ├── [4.0K] CompoundUpdateMonitor.java
│ │ │ │ ├── [1.3K] DigestUpdateMonitor.java
│ │ │ │ ├── [1.1K] LastModifiedMonitor.java
│ │ │ │ ├── [4.0K] SynchronousFileWatcher.java
│ │ │ │ └── [ 996] UpdateMonitor.java
│ │ │ ├── [ 12K] FormatUtils.java
│ │ │ ├── [4.0K] NaiveSearchRingBuffer.java
│ │ │ ├── [8.6K] RingBuffer.java
│ │ │ ├── [4.0K] search
│ │ │ │ ├── [4.0K] ahocorasick
│ │ │ │ │ ├── [5.5K] AhoCorasick.java
│ │ │ │ │ ├── [1.8K] Node.java
│ │ │ │ │ └── [1.9K] SearchState.java
│ │ │ │ ├── [2.0K] Search.java
│ │ │ │ └── [4.1K] SearchTerm.java
│ │ │ ├── [4.0K] security
│ │ │ │ └── [2.7K] MessageDigestUtils.java
│ │ │ ├── [4.0K] StopWatch.java
│ │ │ ├── [2.9K] StringSelector.java
│ │ │ ├── [4.0K] text
│ │ │ │ ├── [1.3K] DateTimeFormatterMatcher.java
│ │ │ │ ├── [3.0K] DateTimeMatcherCompiler.java
│ │ │ │ ├── [2.9K] DateTimeMatcher.java
│ │ │ │ ├── [1.6K] ListDateTimeMatcher.java
│ │ │ │ ├── [ 18K] RegexDateTimeMatcher.java
│ │ │ │ └── [1.6K] StartsWithDigitsDateTimeMatcher.java
│ │ │ ├── [4.0K] timebuffer
│ │ │ │ ├── [1.6K] CountSizeEntityAccess.java
│ │ │ │ ├── [1.6K] CountSumMinMaxAccess.java
│ │ │ │ ├── [ 974] EntityAccess.java
│ │ │ │ ├── [1.5K] LongEntityAccess.java
│ │ │ │ ├── [5.0K] TimedBuffer.java
│ │ │ │ ├── [1.3K] TimedCountSize.java
│ │ │ │ ├── [2.9K] TimestampedLongAggregation.java
│ │ │ │ └── [1.1K] TimestampedLong.java
│ │ │ ├── [ 896] Triple.java
│ │ │ └── [2.0K] Tuple.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ ├── [4.0K] processor
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [5.0K] FlowFileFiltersTest.java
│ │ │ ├── [4.0K] remote
│ │ │ │ └── [4.0K] io
│ │ │ │ └── [5.4K] TestCompressionInputOutputStreams.java
│ │ │ ├── [4.0K] stream
│ │ │ │ └── [4.0K] io
│ │ │ │ ├── [3.1K] ByteCountingInputStreamTest.java
│ │ │ │ ├── [1.4K] ByteCountingOutputStreamTest.java
│ │ │ │ ├── [2.3K] LimitingInputStreamTest.java
│ │ │ │ ├── [6.1K] MaxLengthInputStreamTest.java
│ │ │ │ ├── [1.5K] TestNonFlushableOutputStream.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [ 16K] StreamDemarcatorTest.java
│ │ │ │ ├── [5.6K] TestLineDemarcator.java
│ │ │ │ └── [ 14K] TextLineDemarcatorTest.java
│ │ │ └── [4.0K] util
│ │ │ ├── [4.0K] file
│ │ │ │ ├── [4.0K] classloader
│ │ │ │ │ └── [6.6K] TestClassLoaderUtils.java
│ │ │ │ └── [4.0K] monitor
│ │ │ │ ├── [2.6K] TestCompoundUpdateMonitor.java
│ │ │ │ └── [2.1K] TestSynchronousFileWatcher.java
│ │ │ ├── [4.0K] locale
│ │ │ │ └── [2.6K] TestLocaleOfTestSuite.java
│ │ │ ├── [3.5K] StringSelectorTest.java
│ │ │ ├── [ 12K] TestFormatUtils.java
│ │ │ ├── [2.3K] TestNaiveSearchRingBuffer.java
│ │ │ ├── [4.0K] text
│ │ │ │ └── [3.5K] TestRegexDateTimeMatcher.java
│ │ │ ├── [4.0K] timebuffer
│ │ │ │ ├── [5.6K] TestRingBuffer.java
│ │ │ │ └── [3.9K] TestTimedBuffer.java
│ │ │ └── [4.0K] validator
│ │ │ ├── [2.9K] InstrumentedStandardValidator.java
│ │ │ └── [ 25K] TestStandardValidators.java
│ │ └── [4.0K] resources
│ │ ├── [4.0K] TestClassLoaderUtils
│ │ │ └── [ 827] TestSuccess.jar
│ │ └── [ 777] this_file_exists.txt
│ ├── [4.0K] nifi-uuid5
│ │ ├── [1.2K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] uuid5
│ │ │ └── [3.3K] Uuid5Util.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] uuid5
│ │ └── [1.6K] Uuid5UtilTest.java
│ ├── [4.0K] nifi-web-client
│ │ ├── [1.7K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] web
│ │ │ └── [4.0K] client
│ │ │ ├── [4.0K] proxy
│ │ │ │ └── [1.5K] ProxyContext.java
│ │ │ ├── [4.0K] redirect
│ │ │ │ └── [1.1K] RedirectHandling.java
│ │ │ ├── [4.0K] ssl
│ │ │ │ ├── [1.1K] SSLContextProvider.java
│ │ │ │ ├── [1.2K] SSLSocketFactoryProvider.java
│ │ │ │ ├── [2.7K] StandardSSLContextProvider.java
│ │ │ │ ├── [1.6K] StandardSSLSocketFactoryProvider.java
│ │ │ │ └── [1.4K] TlsContext.java
│ │ │ ├── [2.0K] StandardHttpEntityHeaders.java
│ │ │ ├── [2.0K] StandardHttpResponseEntity.java
│ │ │ ├── [6.6K] StandardHttpUriBuilder.java
│ │ │ └── [ 15K] StandardWebClientService.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] web
│ │ └── [4.0K] client
│ │ ├── [ 11K] StandardHttpUriBuilderTest.java
│ │ └── [ 18K] StandardWebClientServiceTest.java
│ ├── [4.0K] nifi-web-client-api
│ │ ├── [1.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] web
│ │ │ └── [4.0K] client
│ │ │ └── [4.0K] api
│ │ │ ├── [1.0K] HttpContentType.java
│ │ │ ├── [1.6K] HttpEntityHeaders.java
│ │ │ ├── [2.2K] HttpHeaderName.java
│ │ │ ├── [1.7K] HttpRequestBodySpec.java
│ │ │ ├── [1.4K] HttpRequestHeadersSpec.java
│ │ │ ├── [1010] HttpRequestMethod.java
│ │ │ ├── [1.1K] HttpRequestUriSpec.java
│ │ │ ├── [1.6K] HttpResponseEntity.java
│ │ │ ├── [1.4K] HttpResponseStatus.java
│ │ │ ├── [2.2K] HttpUriBuilder.java
│ │ │ ├── [1.8K] MediaType.java
│ │ │ ├── [2.1K] MultipartFormDataStreamBuilder.java
│ │ │ ├── [1.6K] StandardHttpContentType.java
│ │ │ ├── [1.1K] StandardHttpRequestMethod.java
│ │ │ ├── [7.2K] StandardMultipartFormDataStreamBuilder.java
│ │ │ ├── [1.7K] WebClientServiceException.java
│ │ │ └── [2.2K] WebClientService.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] web
│ │ └── [4.0K] client
│ │ └── [4.0K] api
│ │ └── [6.1K] StandardMultipartFormDataStreamBuilderTest.java
│ ├── [4.0K] nifi-web-servlet-shared
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] web
│ │ │ └── [4.0K] servlet
│ │ │ ├── [4.0K] filter
│ │ │ │ └── [2.5K] QueryStringToFragmentFilter.java
│ │ │ └── [4.0K] shared
│ │ │ ├── [1.5K] ProxyHeader.java
│ │ │ ├── [4.5K] RequestUriBuilder.java
│ │ │ ├── [1.3K] RequestUriProvider.java
│ │ │ └── [6.7K] StandardRequestUriProvider.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] web
│ │ └── [4.0K] servlet
│ │ └── [4.0K] shared
│ │ ├── [4.5K] RequestUriBuilderTest.java
│ │ └── [ 14K] StandardRequestUriProviderTest.java
│ ├── [4.0K] nifi-web-utils
│ │ ├── [2.4K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] web
│ │ └── [4.0K] util
│ │ ├── [1.8K] ObjectMapperResolver.java
│ │ └── [3.3K] WebClientUtils.java
│ ├── [4.0K] nifi-write-ahead-log
│ │ ├── [1.6K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ ├── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] wali
│ │ │ │ ├── [2.0K] BlockingQueuePool.java
│ │ │ │ ├── [1.7K] ByteArrayDataOutputStream.java
│ │ │ │ ├── [ 16K] HashMapSnapshot.java
│ │ │ │ ├── [ 973] JournalRecovery.java
│ │ │ │ ├── [1.2K] JournalSummary.java
│ │ │ │ ├── [ 28K] LengthDelimitedJournal.java
│ │ │ │ ├── [ 937] ObjectPool.java
│ │ │ │ ├── [1.2K] RecordLookup.java
│ │ │ │ ├── [ 15K] SequentialAccessWriteAheadLog.java
│ │ │ │ ├── [1022] SnapshotCapture.java
│ │ │ │ ├── [1.7K] SnapshotRecovery.java
│ │ │ │ ├── [1.5K] StandardJournalRecovery.java
│ │ │ │ ├── [1.6K] StandardJournalSummary.java
│ │ │ │ ├── [1.9K] StandardSnapshotRecovery.java
│ │ │ │ ├── [2.1K] WriteAheadJournal.java
│ │ │ │ └── [1.3K] WriteAheadSnapshot.java
│ │ │ └── [4.0K] wali
│ │ │ ├── [2.1K] SerDeFactory.java
│ │ │ ├── [6.9K] SerDe.java
│ │ │ ├── [1.4K] SingletonSerDeFactory.java
│ │ │ ├── [2.4K] SyncListener.java
│ │ │ ├── [1.5K] UpdateType.java
│ │ │ └── [4.7K] WriteAheadRepository.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ ├── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] wali
│ │ │ ├── [4.0K] TestBlockingQueuePool.java
│ │ │ ├── [8.2K] TestHashMapSnapshot.java
│ │ │ ├── [ 25K] TestLengthDelimitedJournal.java
│ │ │ └── [ 16K] TestSequentialAccessWriteAheadLog.java
│ │ └── [4.0K] wali
│ │ ├── [2.8K] DummyRecord.java
│ │ └── [8.1K] DummyRecordSerde.java
│ ├── [4.0K] nifi-xml-processing
│ │ ├── [2.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] xml
│ │ │ └── [4.0K] processing
│ │ │ ├── [4.0K] parsers
│ │ │ │ ├── [1.3K] DocumentProvider.java
│ │ │ │ └── [4.6K] StandardDocumentProvider.java
│ │ │ ├── [1.6K] ProcessingAttribute.java
│ │ │ ├── [1.2K] ProcessingException.java
│ │ │ ├── [1.7K] ProcessingFeature.java
│ │ │ ├── [4.0K] sax
│ │ │ │ ├── [1.2K] InputSourceParser.java
│ │ │ │ └── [3.6K] StandardInputSourceParser.java
│ │ │ ├── [4.0K] stream
│ │ │ │ ├── [2.0K] StandardXMLEventReaderProvider.java
│ │ │ │ ├── [2.0K] StandardXMLStreamReaderProvider.java
│ │ │ │ ├── [1.2K] XMLEventReaderProvider.java
│ │ │ │ └── [1.2K] XMLStreamReaderProvider.java
│ │ │ ├── [4.0K] transform
│ │ │ │ ├── [4.2K] StandardTransformProvider.java
│ │ │ │ └── [1.2K] TransformProvider.java
│ │ │ └── [4.0K] validation
│ │ │ ├── [1.2K] SchemaValidator.java
│ │ │ └── [2.2K] StandardSchemaValidator.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] xml
│ │ │ └── [4.0K] processing
│ │ │ ├── [4.0K] parsers
│ │ │ │ └── [3.9K] StandardDocumentProviderTest.java
│ │ │ ├── [2.5K] ResourceProvider.java
│ │ │ ├── [4.0K] sax
│ │ │ │ └── [3.3K] StandardInputSourceParserTest.java
│ │ │ ├── [4.0K] stream
│ │ │ │ ├── [2.8K] StandardXMLEventReaderProviderTest.java
│ │ │ │ └── [2.8K] StandardXMLStreamReaderProviderTest.java
│ │ │ ├── [4.0K] transform
│ │ │ │ └── [3.4K] StandardTransformProviderTest.java
│ │ │ └── [4.0K] validation
│ │ │ └── [2.9K] StandardSchemaValidatorTest.java
│ │ └── [4.0K] resources
│ │ ├── [ 951] standard-document-doctype-entity.xml
│ │ ├── [ 874] standard-document-doctype.xml
│ │ ├── [ 855] standard-document.xml
│ │ ├── [ 972] standard-namespace-document-doctype-entity.xml
│ │ ├── [ 876] standard-namespace-document.xml
│ │ └── [ 961] standard-schema.xsd
│ └── [4.2K] pom.xml
├── [4.0K] nifi-docker
│ ├── [4.0K] dockerhub
│ │ ├── [2.0K] DockerBuild.sh
│ │ ├── [4.9K] Dockerfile
│ │ ├── [ 800] DockerImage.txt
│ │ ├── [1.1K] DockerRun.sh
│ │ ├── [6.7K] pom.xml
│ │ ├── [ 13K] README.md
│ │ └── [4.0K] sh
│ │ ├── [1.9K] common.sh
│ │ ├── [4.8K] secure.sh
│ │ ├── [6.8K] start.sh
│ │ ├── [1.0K] toolkit.sh
│ │ ├── [1.4K] update_cluster_state_management.sh
│ │ ├── [2.4K] update_login_providers.sh
│ │ └── [2.2K] update_oidc_properties.sh
│ ├── [4.0K] dockermaven
│ │ ├── [4.6K] Dockerfile
│ │ ├── [3.2K] integration-test.sh
│ │ └── [9.8K] pom.xml
│ ├── [1.3K] pom.xml
│ └── [1.5K] README.md
├── [4.0K] nifi-docs
│ ├── [ 13K] LICENSE
│ ├── [ 163] NOTICE
│ ├── [7.0K] pom.xml
│ └── [4.0K] src
│ └── [4.0K] main
│ ├── [4.0K] asciidoc
│ │ ├── [299K] administration-guide.adoc
│ │ ├── [ 30K] asciidoc-mod.css
│ │ ├── [140K] developer-guide.adoc
│ │ ├── [110K] expression-language-guide.adoc
│ │ ├── [ 53K] getting-started.adoc
│ │ ├── [ 20K] images
│ │ │ ├── [175K] abc-restricted-component-flow.png
│ │ │ ├── [176K] abc-versioned-flow.png
│ │ │ ├── [102K] access-policy-config-start.png
│ │ │ ├── [ 800] addConnect.png
│ │ │ ├── [ 95K] add-controller-service-window.png
│ │ │ ├── [ 81K] add-flow-analysis-rule-window.png
│ │ │ ├── [106K] add-input-port-S2S.png
│ │ │ ├── [107K] add-output-port-S2S.png
│ │ │ ├── [ 71K] add-parameter-during-parameter-context-creation.png
│ │ │ ├── [ 58K] add-parameter-provider-window.png
│ │ │ ├── [ 21K] add-process-group-import.png
│ │ │ ├── [203K] add-processor.png
│ │ │ ├── [104K] add-processor-version-example.png
│ │ │ ├── [ 99K] add-processor-version-sort-filter.png
│ │ │ ├── [187K] add-processor-with-tag-cloud.png
│ │ │ ├── [ 15K] add-property-sensitive-value-dialog.png
│ │ │ ├── [ 19K] add-registry-client.png
│ │ │ ├── [166K] add-reporting-task-window.png
│ │ │ ├── [ 74K] align-horizontally-after.png
│ │ │ ├── [141K] align-horizontally-before.png
│ │ │ ├── [139K] align-vertically-after.png
│ │ │ ├── [181K] align-vertically-before.png
│ │ │ ├── [ 63K] allow-weak-crypto.png
│ │ │ ├── [458K] argon2-salt.png
│ │ │ ├── [121K] autocomplete-parameter-example.png
│ │ │ ├── [ 12K] back_pressure_full.png
│ │ │ ├── [ 25K] back_pressure_indicator_hover.png
│ │ │ ├── [ 27K] back_pressure_indicators.png
│ │ │ ├── [ 20K] back_pressure_prediction_model_example.png
│ │ │ ├── [156K] bcrypt-salt.png
│ │ │ ├── [638K] browser-present-client-cert.png
│ │ │ ├── [526K] browser-warning-insecure-site.png
│ │ │ ├── [ 755] buttonDisable.png
│ │ │ ├── [ 627] buttonEnable.png
│ │ │ ├── [ 516] buttonStart.png
│ │ │ ├── [ 354] buttonStop.png
│ │ │ ├── [ 56K] change-version-dialog.png
│ │ │ ├── [187K] change-version.png
│ │ │ ├── [104K] cluster_connection_summary.png
│ │ │ ├── [ 26K] comments-tab.png
│ │ │ ├── [199K] component-linking-processor.png
│ │ │ ├── [3.5K] components.png
│ │ │ ├── [ 38K] component-version-dialog.png
│ │ │ ├── [ 78K] configure-controller-service-properties.png
│ │ │ ├── [ 68K] configure-controller-service-settings.png
│ │ │ ├── [ 79K] configure-flow-analysis-rule-properties.png
│ │ │ ├── [ 77K] configure-flow-analysis-rule-settings.png
│ │ │ ├── [110K] configure-parameter-on-the-fly.png
│ │ │ ├── [ 50K] configure-parameter-provider-properties.png
│ │ │ ├── [ 50K] configure-parameter-provider-settings.png
│ │ │ ├── [ 58K] configure-processor-with-version-information.png
│ │ │ ├── [ 28K] configure-registry-client-properties.png
│ │ │ ├── [ 33K] configure-registry-client-settings.png
│ │ │ ├── [ 35K] configure-remote-process-group.png
│ │ │ ├── [ 95K] configure-reporting-task-properties.png
│ │ │ ├── [ 69K] configure-reporting-task-settings.png
│ │ │ ├── [ 72K] connection-settings.png
│ │ │ ├── [143K] context-menu-parameters-option.png
│ │ │ ├── [ 17K] controller-services-configure-buttons.png
│ │ │ ├── [9.4K] controller-services-info-buttons.png
│ │ │ ├── [ 91K] controller-services-tab.png
│ │ │ ├── [139K] controller-settings-selection.png
│ │ │ ├── [131K] convert-property-to-parameter.png
│ │ │ ├── [170K] CopyOnWrite.png
│ │ │ ├── [ 30K] create-connection.png
│ │ │ ├── [119K] create-service-ssl-context.png
│ │ │ ├── [ 61K] DataIngress.png
│ │ │ ├── [ 13K] disconnect-dialog.png
│ │ │ ├── [ 90K] disconnected-node-cluster-mgt.png
│ │ │ ├── [ 67K] edit-parameter-context.png
│ │ │ ├── [ 46K] edit-property-dropdown.png
│ │ │ ├── [ 39K] edit-property-textarea.png
│ │ │ ├── [141K] el-param-support-help-text.png
│ │ │ ├── [ 47K] enable-controller-service-scope.png
│ │ │ ├── [ 32K] event-attributes.png
│ │ │ ├── [ 31K] event-content.png
│ │ │ ├── [ 36K] event-details.png
│ │ │ ├── [125K] existing-parameter-selected.png
│ │ │ ├── [ 83K] existing-parameters-example.png
│ │ │ ├── [183K] expanded-events.png
│ │ │ ├── [9.1K] expand-event.png
│ │ │ ├── [ 74K] failure-port-config.png
│ │ │ ├── [ 19K] file_expiration_clock.png
│ │ │ ├── [8.9K] find-parents.png
│ │ │ ├── [ 17K] flow-analysis-rules-configure-buttons.png
│ │ │ ├── [ 13K] flow-analysis-rules-info-buttons.png
│ │ │ ├── [168K] flow-analysis-rules-tab.png
│ │ │ ├── [147K] flow-version-changed.png
│ │ │ ├── [198K] Funnels.png
│ │ │ ├── [260K] getfile-permissions.png
│ │ │ ├── [ 32K] global-menu.png
│ │ │ ├── [ 16K] group-creation-dialog.png
│ │ │ ├── [ 612] icon1.png
│ │ │ ├── [ 724] icon2.png
│ │ │ ├── [ 751] icon3.png
│ │ │ ├── [ 780] iconAccessPolicies.png
│ │ │ ├── [ 815] iconAddUser.png
│ │ │ ├── [ 553] iconAlert.png
│ │ │ ├── [ 944] iconConfigure.png
│ │ │ ├── [1.1K] iconConnection.png
│ │ │ ├── [ 595] iconConnect.png
│ │ │ ├── [ 548] iconConvertToParameter.png
│ │ │ ├── [ 574] iconDelete.png
│ │ │ ├── [ 704] iconDetails.png
│ │ │ ├── [ 533] iconDisable.png
│ │ │ ├── [ 618] iconDisconnect.png
│ │ │ ├── [ 929] iconDownloadTemplate.png
│ │ │ ├── [ 652] iconEdit.png
│ │ │ ├── [ 359] iconEnable.png
│ │ │ ├── [ 429] iconExport.png
│ │ │ ├── [ 747] iconFetch.png
│ │ │ ├── [1.0K] iconFunnel.png
│ │ │ ├── [ 385] iconGoTo.png
│ │ │ ├── [ 301] iconInfo2.png
│ │ │ ├── [ 562] iconInfo.png
│ │ │ ├── [ 623] iconInputPort.png
│ │ │ ├── [ 166] iconKebab.png
│ │ │ ├── [ 788] iconLabel.png
│ │ │ ├── [ 472] iconLineage.png
│ │ │ ├── [ 792] iconLoadBalance.png
│ │ │ ├── [1.2K] iconLocallyModified.png
│ │ │ ├── [1.3K] iconLocallyModifiedStale.png
│ │ │ ├── [ 406] iconNotSecure.png
│ │ │ ├── [ 589] iconOffload.png
│ │ │ ├── [ 811] iconOutputPort.png
│ │ │ ├── [ 883] iconProcessGroup.png
│ │ │ ├── [1.6K] iconProcessor.png
│ │ │ ├── [4.4K] iconProvenance.png
│ │ │ ├── [ 848] iconRemoteProcessGroup.png
│ │ │ ├── [ 136] iconResize.png
│ │ │ ├── [ 336] iconRun.png
│ │ │ ├── [ 386] iconSecure.png
│ │ │ ├── [1.4K] iconStale.png
│ │ │ ├── [ 483] iconStart.png
│ │ │ ├── [ 206] iconStop.png
│ │ │ ├── [ 973] iconSyncFailure.png
│ │ │ ├── [4.8K] iconTerminate.png
│ │ │ ├── [ 760] iconTransmissionActive.png
│ │ │ ├── [ 837] iconTransmissionInactive.png
│ │ │ ├── [ 996] iconUpToDate.png
│ │ │ ├── [ 633] iconUserPolicies.png
│ │ │ ├── [105K] import-version-dialog.png
│ │ │ ├── [109K] import-xyz-flow-fails.png
│ │ │ ├── [ 65K] individual-parameter-context-polices.png
│ │ │ ├── [ 62K] install-download-link.png
│ │ │ ├── [ 24K] invalid-processor.png
│ │ │ ├── [590K] keychain-access-certificate-listing.png
│ │ │ ├── [386K] keychain-access-trust-certificate.png
│ │ │ ├── [251K] keytabcredentialsservice-permissions.png
│ │ │ ├── [ 90K] keytabCredentialsService-pg.png
│ │ │ ├── [ 90K] keytabCredentialsService-rpg.png
│ │ │ ├── [ 809] lineage-flowfile.png
│ │ │ ├── [ 39K] lineage-graph-annotated.png
│ │ │ ├── [ 34K] load_balance_active_connection.png
│ │ │ ├── [ 82K] load_balance_compression_options.png
│ │ │ ├── [ 30K] load_balance_configured_connection.png
│ │ │ ├── [ 12K] load_balance_distributed_connection.png
│ │ │ ├── [264K] local-changes-pg-inside.png
│ │ │ ├── [194K] local-changes-pg-selected.png
│ │ │ ├── [ 11K] login.png
│ │ │ ├── [ 86K] new-flow.png
│ │ │ ├── [126K] new-parameter-referenced.png
│ │ │ ├── [ 68K] new_variable-apply.png
│ │ │ ├── [663K] nifi-application-running-browser.png
│ │ │ ├── [264K] nifi-app-log-ui-available.png
│ │ │ ├── [115K] nifi-cluster-tls-toolkit-certificate-diagram.png
│ │ │ ├── [103K] nifi-connection-bend-points.png
│ │ │ ├── [ 26K] nifi-connection-menu.png
│ │ │ ├── [ 86K] nifi-connection.png
│ │ │ ├── [142K] nifi-flow-authenticated.png
│ │ │ ├── [448K] nifi-home-dir-listing.png
│ │ │ ├── [108K] nifi-legacy-salt.png
│ │ │ ├── [ 61K] nifi-login.png
│ │ │ ├── [169K] nifi-navigation.png
│ │ │ ├── [104K] nifi-notifications.png
│ │ │ ├── [ 84K] nifi_pc1_parameters_new.png
│ │ │ ├── [ 77K] nifi_pc1_parameters.png
│ │ │ ├── [ 81K] nifi-process-group-menu.png
│ │ │ ├── [ 70K] nifi-processor-menu.png
│ │ │ ├── [ 90K] nifi-rpg-menu.png
│ │ │ ├── [696K] nifi-running-tls-client-certificate.png
│ │ │ ├── [758K] nifi-secure-cluster-no-permissions.png
│ │ │ ├── [745K] nifi-secure-cluster-permissions.png
│ │ │ ├── [676K] nifi-secure-cluster-status.png
│ │ │ ├── [108K] nifi-tls-standalone-external-certificate-diagram.png
│ │ │ ├── [105K] nifi-tls-toolkit-standalone-cert-diagram.png
│ │ │ ├── [120K] nifi-toolbar-components.png
│ │ │ ├── [234K] nifi-toolkit-home-dir-listing.png
│ │ │ ├── [832K] nifi-trusted-server-certificate.png
│ │ │ ├── [ 35K] nifi-users-dialog.png
│ │ │ ├── [ 90K] offloaded-node-cluster-mgt.png
│ │ │ ├── [ 89K] offloading-node-cluster-mgt.png
│ │ │ ├── [117K] openssl-salt.png
│ │ │ ├── [ 59K] override_policy_copy_empty.png
│ │ │ ├── [151K] parameter-contexts-selection.png
│ │ │ ├── [ 66K] parameter-contexts-settings.png
│ │ │ ├── [ 16K] parameter-provider-edit-buttons.png
│ │ │ ├── [ 56K] parameter-providers-tab.png
│ │ │ ├── [ 13K] parameter-provider-tasks-info-buttons.png
│ │ │ ├── [138K] parameters-validate-affected-components.png
│ │ │ ├── [ 13K] parent-found.png
│ │ │ ├── [311K] PassByReference.png
│ │ │ ├── [140K] pbkdf2-salt.png
│ │ │ ├── [ 83K] pc1_parameters.png
│ │ │ ├── [ 94K] primary-node-cluster-mgt.png
│ │ │ ├── [230K] primary-node-processor.png
│ │ │ ├── [312K] primary-node-processors-summary.png
│ │ │ ├── [ 71K] process-group-anatomy.png
│ │ │ ├── [173K] process-group-configuration-options.png
│ │ │ ├── [142K] process-group-configuration-parameters.png
│ │ │ ├── [273K] process-group-configuration-window.png
│ │ │ ├── [196K] process-group-controller-services-scope.png
│ │ │ ├── [ 41K] process-group-modify-policy-add-user2.png
│ │ │ ├── [ 61K] process-group-modify-policy.png
│ │ │ ├── [ 77K] process-group-parameter-context-menu.png
│ │ │ ├── [138K] process-group-version-control-stopped.png
│ │ │ ├── [ 40K] process-group-view-policy-add-user2.png
│ │ │ ├── [ 61K] process-group-view-policy.png
│ │ │ ├── [ 58K] processor-anatomy.png
│ │ │ ├── [ 81K] processor-change-version.png
│ │ │ ├── [ 27K] processor-connection-bubble.png
│ │ │ ├── [ 40K] processor-cs-version-match.png
│ │ │ ├── [ 43K] processor-cs-version-mismatch-config.png
│ │ │ ├── [ 87K] processor-cs-version-mismatch-warnings.png
│ │ │ ├── [ 49K] processor-inherited-modify-policy.png
│ │ │ ├── [ 72K] processor-modify-policy.png
│ │ │ ├── [ 42K] processor-replacement-modify-policy.png
│ │ │ ├── [ 42K] processor-replacement-view-policy.png
│ │ │ ├── [ 31K] processor-version-information-example.png
│ │ │ ├── [ 72K] processor-view-policy.png
│ │ │ ├── [ 33K] properties-tab.png
│ │ │ ├── [109K] provenance-annotated.png
│ │ │ ├── [280K] provenance-table.png
│ │ │ ├── [155K] puthdfs-no-kerberosCS.png
│ │ │ ├── [233K] puthdfs-permissions.png
│ │ │ ├── [159K] puthdfs-properties_2.png
│ │ │ ├── [160K] puthdfs-properties.png
│ │ │ ├── [ 59K] reference-parameter-available-parameters.png
│ │ │ ├── [ 53K] reference-parameter-option.png
│ │ │ ├── [ 54K] registry-client-added.png
│ │ │ ├── [ 56K] registry-clients-tab.png
│ │ │ ├── [ 42K] relationships-tab.png
│ │ │ ├── [ 51K] remote-group-anatomy.png
│ │ │ ├── [ 93K] remote-group-ports-dialog.png
│ │ │ ├── [104K] remote-port-connection-status.png
│ │ │ ├── [128K] replacetext-processor-added.png
│ │ │ ├── [ 18K] reporting-tasks-edit-buttons.png
│ │ │ ├── [ 13K] reporting-tasks-info-buttons.png
│ │ │ ├── [ 69K] reporting-tasks-tab.png
│ │ │ ├── [ 603] restricted.png
│ │ │ ├── [141K] revert-failure.png
│ │ │ ├── [ 70K] revert-local-changes-dialog.png
│ │ │ ├── [132K] revert-success.png
│ │ │ ├── [186K] s2s-rproxy-http.svg
│ │ │ ├── [190K] s2s-rproxy-portnumber.svg
│ │ │ ├── [193K] s2s-rproxy-servername.svg
│ │ │ ├── [ 68K] save-flow-version-commit.png
│ │ │ ├── [ 48K] save-flow-version-dialog.png
│ │ │ ├── [ 43K] scheduling-tab.png
│ │ │ ├── [157K] scrypt-salt.png
│ │ │ ├── [ 43K] search-events.png
│ │ │ ├── [ 44K] search-receive-event-abc.png
│ │ │ ├── [ 72K] settings-general-tab.png
│ │ │ ├── [ 49K] settings-tab.png
│ │ │ ├── [ 66K] show-local-changes-dialog.png
│ │ │ ├── [ 62K] simple-flow.png
│ │ │ ├── [183K] start-version-control.png
│ │ │ ├── [ 53K] stats-history.png
│ │ │ ├── [ 17K] stop-version-control-dialog.png
│ │ │ ├── [187K] stop-version-control.png
│ │ │ ├── [100K] summary-annotated.png
│ │ │ ├── [111K] summary_connections.png
│ │ │ ├── [ 85K] summary-table.png
│ │ │ ├── [ 63K] sys_admin-restricted-component-access-policy.png
│ │ │ ├── [6.3K] terminated-thread.png
│ │ │ ├── [103K] test_user-import-abc-flow.png
│ │ │ ├── [144K] test_user-import-success.png
│ │ │ ├── [103K] test_user-import-xyz-flow.png
│ │ │ ├── [ 78K] test_user-restricted-component-read-filesystem.png
│ │ │ ├── [ 76K] test_user-restricted-component-write-filesystem.png
│ │ │ ├── [107K] test_user-revert-local-changes-2.png
│ │ │ ├── [107K] test_user-revert-local-changes.png
│ │ │ ├── [148K] tls-authorizers-file-accessPolicyProvider.png
│ │ │ ├── [121K] tls-authorizers-file-userGroupProvider.png
│ │ │ ├── [ 45K] tls-certificate-folder.png
│ │ │ ├── [144K] update-parameter-context.png
│ │ │ ├── [183K] UpdatingAttributes.png
│ │ │ ├── [112K] user1-create-connection.png
│ │ │ ├── [132K] user1-edit-connection.png
│ │ │ ├── [134K] user1-full-access.png
│ │ │ ├── [121K] user2-can-connect.png
│ │ │ ├── [124K] user2-connected-processors.png
│ │ │ ├── [134K] user2-edit-connection.png
│ │ │ ├── [134K] user2-edit-processor.png
│ │ │ ├── [128K] user2-moved-processor.png
│ │ │ ├── [117K] user2-no-connection.png
│ │ │ ├── [142K] user2-no-edit-connection.png
│ │ │ ├── [133K] user2-restricted-access.png
│ │ │ ├── [ 13K] user-creation-dialog.png
│ │ │ ├── [105K] user-policies-detail.png
│ │ │ ├── [ 39K] user-policies.png
│ │ │ ├── [ 24K] valid-processor.png
│ │ │ ├── [534K] verify-release-gpg-and-checksums.png
│ │ │ ├── [143K] versioned-flow-imported.png
│ │ │ ├── [139K] versioned-process-group.png
│ │ │ ├── [181K] version-states-display.png
│ │ │ ├── [159K] version-state-summary-page.png
│ │ │ ├── [237K] WebCrawler.png
│ │ │ ├── [177K] xyz-flow.png
│ │ │ ├── [144K] xyz-process-group.png
│ │ │ ├── [ 76K] zero-leader-cluster-http-access.png
│ │ │ ├── [ 66K] zero-leader-cluster.png
│ │ │ └── [ 44K] zero-leader-node.png
│ │ ├── [4.0K] misc
│ │ │ └── [ 70K] WebCrawler.json
│ │ ├── [ 37K] nifi-in-depth.adoc
│ │ ├── [ 20K] overview.adoc
│ │ ├── [ 49K] python-developer-guide.adoc
│ │ ├── [ 44K] record-path-guide.adoc
│ │ ├── [ 20K] toolkit-guide.adoc
│ │ ├── [229K] user-guide.adoc
│ │ └── [ 46K] walkthroughs.adoc
│ └── [4.0K] assembly
│ └── [1.6K] dependencies.xml
├── [4.0K] nifi-extension-bom
│ └── [ 23K] pom.xml
├── [4.0K] nifi-extension-bundles
│ ├── [4.0K] nifi-airtable-bundle
│ │ ├── [4.0K] nifi-airtable-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.7K] NOTICE
│ │ ├── [4.0K] nifi-airtable-processors
│ │ │ ├── [2.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] airtable
│ │ │ │ │ ├── [4.0K] parse
│ │ │ │ │ │ ├── [2.6K] AirtableRecordSetFlowFileWriter.java
│ │ │ │ │ │ ├── [2.0K] AirtableRetrievePageResult.java
│ │ │ │ │ │ ├── [1.4K] AirtableRetrieveTableResult.java
│ │ │ │ │ │ └── [6.2K] AirtableTableRetriever.java
│ │ │ │ │ ├── [ 18K] QueryAirtableTable.java
│ │ │ │ │ └── [4.0K] service
│ │ │ │ │ ├── [4.2K] AirtableGetRecordsParameters.java
│ │ │ │ │ ├── [5.5K] AirtableRestService.java
│ │ │ │ │ └── [1.0K] RateLimitExceededException.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.airtable.QueryAirtableTable
│ │ │ │ │ └── [2.3K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 837] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] airtable
│ │ │ ├── [2.4K] TestAirtableRestService.java
│ │ │ └── [7.1K] TestQueryAirtableTable.java
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-amqp-bundle
│ │ ├── [4.0K] nifi-amqp-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [1.8K] NOTICE
│ │ ├── [4.0K] nifi-amqp-processors
│ │ │ ├── [3.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] amqp
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ ├── [ 17K] AbstractAMQPProcessor.java
│ │ │ │ │ ├── [5.5K] AMQPConsumer.java
│ │ │ │ │ ├── [1.3K] AMQPException.java
│ │ │ │ │ ├── [4.8K] AMQPPublisher.java
│ │ │ │ │ ├── [2.5K] AMQPResource.java
│ │ │ │ │ ├── [1.3K] AMQPRollbackException.java
│ │ │ │ │ ├── [3.5K] AMQPWorker.java
│ │ │ │ │ ├── [ 19K] ConsumeAMQP.java
│ │ │ │ │ └── [ 20K] PublishAMQP.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.amqp.processors.ConsumeAMQP
│ │ │ │ │ │ └── [3.4K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.amqp.processors.PublishAMQP
│ │ │ │ │ └── [5.7K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 869] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] amqp
│ │ │ └── [4.0K] processors
│ │ │ ├── [3.5K] AbstractAMQPProcessorTest.java
│ │ │ ├── [6.3K] AMQPConsumerTest.java
│ │ │ ├── [4.3K] AMQPPublisherTest.java
│ │ │ ├── [ 21K] ConsumeAMQPTest.java
│ │ │ ├── [ 11K] PublishAMQPTest.java
│ │ │ ├── [ 34K] TestChannel.java
│ │ │ └── [7.6K] TestConnection.java
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] nifi-apicurio-bundle
│ │ ├── [4.0K] nifi-apicurio-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 555] NOTICE
│ │ ├── [4.0K] nifi-apicurio-schema-registry-service
│ │ │ ├── [3.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] apicurio
│ │ │ │ │ └── [4.0K] schemaregistry
│ │ │ │ │ ├── [7.1K] ApicurioSchemaRegistry.java
│ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ ├── [2.2K] ApicurioSchemaRegistryClient.java
│ │ │ │ │ │ ├── [1.9K] CachingSchemaRegistryClient.java
│ │ │ │ │ │ ├── [2.8K] SchemaRegistryApiClient.java
│ │ │ │ │ │ └── [1.2K] SchemaRegistryClient.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [2.7K] SchemaUtils.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 844] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] apicurio
│ │ │ │ └── [4.0K] schemaregistry
│ │ │ │ ├── [4.0K] client
│ │ │ │ │ ├── [4.3K] ApicurioSchemaRegistryClientTest.java
│ │ │ │ │ ├── [4.7K] CachingSchemaRegistryClientTest.java
│ │ │ │ │ └── [3.1K] SchemaRegistryApiClientTest.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [2.3K] SchemaUtilsTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 210] schema_response.json
│ │ │ ├── [ 217] schema_response_version_3.json
│ │ │ └── [ 222] schema_response_version_latest.json
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-asana-bundle
│ │ ├── [4.0K] nifi-asana-processors
│ │ │ ├── [2.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] asana
│ │ │ │ │ ├── [3.5K] AsanaObjectType.java
│ │ │ │ │ ├── [2.2K] GenericObjectSerDe.java
│ │ │ │ │ ├── [ 22K] GetAsanaObject.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [1.4K] AbstractAsanaObjectFetcher.java
│ │ │ │ │ ├── [1.1K] AsanaObjectFetcherException.java
│ │ │ │ │ ├── [2.2K] AsanaObjectFetcher.java
│ │ │ │ │ ├── [2.3K] AsanaObject.java
│ │ │ │ │ ├── [ 918] AsanaObjectState.java
│ │ │ │ │ ├── [3.0K] AsanaProjectEventFetcher.java
│ │ │ │ │ ├── [1.4K] AsanaProjectFetcher.java
│ │ │ │ │ ├── [2.1K] AsanaProjectMembershipFetcher.java
│ │ │ │ │ ├── [2.4K] AsanaProjectStatusAttachmentFetcher.java
│ │ │ │ │ ├── [2.1K] AsanaProjectStatusFetcher.java
│ │ │ │ │ ├── [2.0K] AsanaStoryFetcher.java
│ │ │ │ │ ├── [1.2K] AsanaTagFetcher.java
│ │ │ │ │ ├── [2.2K] AsanaTaskAttachmentFetcher.java
│ │ │ │ │ ├── [3.5K] AsanaTaskFetcher.java
│ │ │ │ │ ├── [1.3K] AsanaTeamFetcher.java
│ │ │ │ │ ├── [2.0K] AsanaTeamMemberFetcher.java
│ │ │ │ │ ├── [1.3K] AsanaUserFetcher.java
│ │ │ │ │ └── [6.7K] GenericAsanaObjectFetcher.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.asana.GetAsanaObject
│ │ │ │ │ └── [4.3K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 842] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] asana
│ │ │ ├── [3.7K] AbstractAsanaObjectFetcherTest.java
│ │ │ ├── [5.1K] AsanaObjectTest.java
│ │ │ ├── [6.3K] AsanaProjectEventFetcherTest.java
│ │ │ ├── [5.5K] AsanaProjectFetcherTest.java
│ │ │ ├── [7.5K] AsanaProjectMembershipFetcherTest.java
│ │ │ ├── [ 10K] AsanaProjectStatusAttachmentFetcherTest.java
│ │ │ ├── [7.1K] AsanaProjectStatusFetcherTest.java
│ │ │ ├── [ 17K] AsanaStoryFetcherTest.java
│ │ │ ├── [4.8K] AsanaTagFetcherTest.java
│ │ │ ├── [ 19K] AsanaTaskAttachmentFetcherTest.java
│ │ │ ├── [ 17K] AsanaTaskFetcherTest.java
│ │ │ ├── [4.9K] AsanaTeamFetcherTest.java
│ │ │ ├── [6.6K] AsanaTeamMemberFetcherTest.java
│ │ │ ├── [5.0K] AsanaUserFetcherTest.java
│ │ │ ├── [8.5K] GenericAsanaObjectFetcherTest.java
│ │ │ ├── [3.1K] GenericObjectSerDeTest.java
│ │ │ ├── [ 18K] GetAsanaObjectConfigurationTest.java
│ │ │ ├── [ 13K] GetAsanaObjectLifecycleTest.java
│ │ │ └── [4.0K] mocks
│ │ │ ├── [1.7K] MockAbstractAsanaObjectFetcher.java
│ │ │ ├── [1.3K] MockAsanaClientProviderService.java
│ │ │ ├── [2.6K] MockDistributedMapCacheClient.java
│ │ │ ├── [1.3K] MockGenericAsanaObjectFetcher.java
│ │ │ └── [1.4K] MockGetAsanaObject.java
│ │ ├── [4.0K] nifi-asana-processors-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 662] NOTICE
│ │ ├── [4.0K] nifi-asana-services
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] controller
│ │ │ │ │ └── [4.0K] asana
│ │ │ │ │ ├── [ 10K] StandardAsanaClient.java
│ │ │ │ │ └── [4.9K] StandardAsanaClientProviderService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.controller.asana.AsanaClientService
│ │ │ │ │ └── [3.2K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 862] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] controller
│ │ │ └── [4.0K] asana
│ │ │ └── [7.4K] StandardAsanaClientProviderServiceTest.java
│ │ ├── [4.0K] nifi-asana-services-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] controller
│ │ │ └── [4.0K] asana
│ │ │ ├── [ 990] AsanaClientException.java
│ │ │ ├── [7.5K] AsanaClient.java
│ │ │ ├── [1.3K] AsanaClientProviderService.java
│ │ │ └── [1.4K] AsanaEventsCollection.java
│ │ ├── [4.0K] nifi-asana-services-api-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 12K] LICENSE
│ │ │ └── [3.2K] NOTICE
│ │ ├── [4.0K] nifi-asana-services-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 177] NOTICE
│ │ └── [2.7K] pom.xml
│ ├── [4.0K] nifi-asn1-bundle
│ │ ├── [4.0K] nifi-asn1-nar
│ │ │ └── [1.7K] pom.xml
│ │ ├── [4.0K] nifi-asn1-services
│ │ │ ├── [ 252] checkstyle-suppressions.xml
│ │ │ ├── [7.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ ├── [4.0K] com
│ │ │ │ │ │ └── [4.0K] beanit
│ │ │ │ │ │ └── [4.0K] asn1bean
│ │ │ │ │ │ └── [4.0K] compiler
│ │ │ │ │ │ └── [1.3K] BerClassWriterFactory.java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] jasn1
│ │ │ │ │ ├── [4.0K] convert
│ │ │ │ │ │ ├── [4.0K] converters
│ │ │ │ │ │ │ ├── [3.2K] BerArrayConverter.java
│ │ │ │ │ │ │ ├── [1.8K] BerBitStringConverter.java
│ │ │ │ │ │ │ ├── [1.8K] BerBooleanConverter.java
│ │ │ │ │ │ │ ├── [1.9K] BerDateConverter.java
│ │ │ │ │ │ │ ├── [2.0K] BerDateTimeConverter.java
│ │ │ │ │ │ │ ├── [1.8K] BerEnumConverter.java
│ │ │ │ │ │ │ ├── [2.0K] BerIntegerConverter.java
│ │ │ │ │ │ │ ├── [1.9K] BerOctetStringConverter.java
│ │ │ │ │ │ │ ├── [1.8K] BerRealConverter.java
│ │ │ │ │ │ │ ├── [3.0K] BerRecordConverter.java
│ │ │ │ │ │ │ ├── [3.2K] BerStringConverter.java
│ │ │ │ │ │ │ ├── [1.9K] BerTimeOfDayConverter.java
│ │ │ │ │ │ │ └── [3.9K] TbcdStringConverter.java
│ │ │ │ │ │ ├── [3.6K] JASN1ConverterImpl.java
│ │ │ │ │ │ ├── [1.1K] JASN1Converter.java
│ │ │ │ │ │ └── [1.2K] JASN1TypeAndValueConverter.java
│ │ │ │ │ ├── [ 19K] JASN1Reader.java
│ │ │ │ │ ├── [7.4K] JASN1RecordReader.java
│ │ │ │ │ ├── [4.0K] JASN1Utils.java
│ │ │ │ │ ├── [4.0K] preprocess
│ │ │ │ │ │ ├── [3.9K] AsnPreprocessorEngine.java
│ │ │ │ │ │ ├── [ 958] AsnPreprocessor.java
│ │ │ │ │ │ └── [4.0K] preprocessors
│ │ │ │ │ │ ├── [3.8K] ConstraintAsnPreprocessor.java
│ │ │ │ │ │ ├── [1.9K] HuggingCommentAsnPreprocessor.java
│ │ │ │ │ │ └── [3.8K] VersionBracketAsnPreprocessor.java
│ │ │ │ │ ├── [1.2K] RecordModelIteratorProvider.java
│ │ │ │ │ ├── [3.4K] RecordSchemaProvider.java
│ │ │ │ │ └── [3.8K] StandardRecordModelIteratorProvider.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.jasn1.JASN1Reader
│ │ │ │ │ └── [7.5K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 815] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] jasn1
│ │ │ │ ├── [7.3K] ExampleDataGenerator.java
│ │ │ │ ├── [8.7K] JASN1ReaderTest.java
│ │ │ │ ├── [4.0K] preprocess
│ │ │ │ │ ├── [6.8K] AsnPreprocessorEngineTest.java
│ │ │ │ │ └── [4.0K] preprocessors
│ │ │ │ │ ├── [1.9K] AbstractAsnPreprocessorTest.java
│ │ │ │ │ ├── [1.2K] ConstraintAsnPreprocessorTest.java
│ │ │ │ │ ├── [1.2K] HuggingCommentAsnPreprocessorTest.java
│ │ │ │ │ └── [1.2K] VersionBracketAsnPreprocessorTest.java
│ │ │ │ ├── [7.8K] TestJASN1RecordReader.java
│ │ │ │ ├── [ 14K] TestJASN1RecordReaderWithComplexTypes.java
│ │ │ │ ├── [ 11K] TestJASN1RecordReaderWithSimpleTypes.java
│ │ │ │ ├── [6.1K] TestRecordSchemaProvider.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [1.7K] JASN1DataWriter.java
│ │ │ │ ├── [3.2K] JASN1ReadRecordTester.java
│ │ │ │ └── [4.4K] RecordTestUtil.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 29K] ASN1.json
│ │ │ ├── [ 159] cant_compile.asn
│ │ │ ├── [ 157] cant_compile_mac_windows.asn
│ │ │ ├── [ 395] cant_parse.asn
│ │ │ ├── [ 452] complex_types.asn
│ │ │ ├── [ 741] example.asn
│ │ │ ├── [4.0K] examples
│ │ │ │ ├── [ 65] basic-types.dat
│ │ │ │ ├── [ 374] composite.dat
│ │ │ │ ├── [ 124] multi-record.dat
│ │ │ │ └── [ 22] tbcd-string.dat
│ │ │ ├── [ 225] preprocessed_test_complex_for_preprocessing.asn
│ │ │ ├── [ 340] preprocessed_test_constraints.asn
│ │ │ ├── [ 152] preprocessed_test_hugging_comment.asn
│ │ │ ├── [ 891] preprocessed_test_version_bracket.asn
│ │ │ ├── [1.8K] README.md
│ │ │ ├── [ 839] simple_types.asn
│ │ │ ├── [ 639] tbcd_string.asn
│ │ │ ├── [ 234] test.asn
│ │ │ ├── [ 206] test_complex_for_preprocessing.asn
│ │ │ ├── [ 512] test_constraints.asn
│ │ │ ├── [ 151] test_hugging_comment.asn
│ │ │ └── [ 817] test_version_bracket.asn
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-atlassian-bundle
│ │ ├── [4.0K] nifi-atlassian-extensions
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] atlassian
│ │ │ │ └── [4.0K] bitbucket
│ │ │ │ ├── [2.5K] BitbucketAuthenticationType.java
│ │ │ │ ├── [7.9K] BitbucketFlowRegistryClient.java
│ │ │ │ └── [ 26K] BitbucketRepositoryClient.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 844] org.apache.nifi.registry.flow.FlowRegistryClient
│ │ ├── [4.0K] nifi-atlassian-nar
│ │ │ └── [1.8K] pom.xml
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-avro-bundle
│ │ ├── [4.0K] nifi-avro-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [2.7K] NOTICE
│ │ ├── [4.0K] nifi-avro-processors
│ │ │ ├── [2.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] avro
│ │ │ │ │ ├── [9.8K] ExtractAvroMetadata.java
│ │ │ │ │ └── [ 17K] SplitAvro.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 891] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] avro
│ │ │ │ ├── [1.6K] AvroTestUtil.java
│ │ │ │ ├── [ 13K] TestExtractAvroMetadata.java
│ │ │ │ └── [ 15K] TestSplitAvro.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 36] array.avsc
│ │ │ └── [ 245] user.avsc
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-aws-bundle
│ │ ├── [4.0K] nifi-aws-abstract-processors
│ │ │ ├── [5.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] aws
│ │ │ ├── [ 16K] AbstractAWSCredentialsProviderProcessor.java
│ │ │ ├── [4.0K] credentials
│ │ │ │ └── [4.0K] provider
│ │ │ │ └── [2.7K] PropertiesCredentialsProvider.java
│ │ │ ├── [4.0K] dynamodb
│ │ │ │ ├── [ 15K] AbstractDynamoDBProcessor.java
│ │ │ │ └── [2.0K] ItemKeys.java
│ │ │ ├── [4.0K] kinesis
│ │ │ │ └── [3.4K] KinesisProcessorUtils.java
│ │ │ ├── [4.0K] ml
│ │ │ │ ├── [7.8K] AbstractAwsMachineLearningJobStarter.java
│ │ │ │ └── [5.5K] AbstractAwsMachineLearningJobStatusProcessor.java
│ │ │ ├── [4.0K] s3
│ │ │ │ └── [ 23K] AbstractS3Processor.java
│ │ │ ├── [4.0K] signer
│ │ │ │ ├── [2.1K] AwsCustomSignerUtil.java
│ │ │ │ └── [2.5K] AwsSignerType.java
│ │ │ ├── [4.0K] util
│ │ │ │ └── [3.8K] RegionUtilV1.java
│ │ │ └── [4.0K] v2
│ │ │ ├── [5.3K] AbstractAwsAsyncProcessor.java
│ │ │ ├── [ 17K] AbstractAwsProcessor.java
│ │ │ ├── [4.7K] AbstractAwsSyncProcessor.java
│ │ │ ├── [1.3K] AwsHttpClientConfigurer.java
│ │ │ └── [2.1K] RegionUtilV2.java
│ │ ├── [4.0K] nifi-aws-nar
│ │ │ ├── [3.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [8.1K] NOTICE
│ │ ├── [4.0K] nifi-aws-parameter-providers
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] parameter
│ │ │ │ │ └── [4.0K] aws
│ │ │ │ │ └── [ 18K] AwsSecretsManagerParameterProvider.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.parameter.aws.AwsSecretsManagerParameterProvider
│ │ │ │ │ └── [2.1K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 847] org.apache.nifi.parameter.ParameterProvider
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] parameter
│ │ │ └── [4.0K] aws
│ │ │ └── [ 14K] TestAwsSecretsManagerParameterProvider.java
│ │ ├── [4.0K] nifi-aws-parameter-value-providers
│ │ │ ├── [2.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] stateless
│ │ │ │ │ └── [4.0K] parameter
│ │ │ │ │ └── [7.6K] AwsSecretsManagerParameterValueProvider.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 858] org.apache.nifi.stateless.parameter.ParameterValueProvider
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] stateless
│ │ │ └── [4.0K] parameter
│ │ │ └── [9.7K] TestSecretsManagerParameterValueProvider.java
│ │ ├── [4.0K] nifi-aws-processors
│ │ │ ├── [ 12K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] aws
│ │ │ │ │ ├── [4.0K] cloudwatch
│ │ │ │ │ │ └── [ 16K] PutCloudWatchMetric.java
│ │ │ │ │ ├── [4.0K] credentials
│ │ │ │ │ │ └── [4.0K] provider
│ │ │ │ │ │ ├── [4.0K] factory
│ │ │ │ │ │ │ ├── [3.8K] CredentialsStrategy.java
│ │ │ │ │ │ │ └── [4.0K] strategies
│ │ │ │ │ │ │ ├── [3.2K] AbstractBooleanCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [4.5K] AbstractCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [3.1K] AccessKeyPairCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [2.2K] AnonymousCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [ 14K] AssumeRoleCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [2.5K] ExplicitDefaultCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [2.7K] FileCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [2.3K] ImplicitDefaultCredentialsStrategy.java
│ │ │ │ │ │ │ └── [2.5K] NamedProfileCredentialsStrategy.java
│ │ │ │ │ │ └── [4.0K] service
│ │ │ │ │ │ └── [ 19K] AWSCredentialsProviderControllerService.java
│ │ │ │ │ ├── [4.0K] dynamodb
│ │ │ │ │ │ ├── [9.3K] DeleteDynamoDB.java
│ │ │ │ │ │ ├── [ 17K] GetDynamoDB.java
│ │ │ │ │ │ ├── [ 11K] PutDynamoDB.java
│ │ │ │ │ │ ├── [ 23K] PutDynamoDBRecord.java
│ │ │ │ │ │ └── [4.5K] RecordToItemConverter.java
│ │ │ │ │ ├── [4.0K] kinesis
│ │ │ │ │ │ ├── [4.0K] firehose
│ │ │ │ │ │ │ └── [9.7K] PutKinesisFirehose.java
│ │ │ │ │ │ ├── [4.0K] property
│ │ │ │ │ │ │ └── [1.7K] OutputStrategy.java
│ │ │ │ │ │ └── [4.0K] stream
│ │ │ │ │ │ ├── [ 48K] ConsumeKinesisStream.java
│ │ │ │ │ │ ├── [4.0K] pause
│ │ │ │ │ │ │ ├── [ 954] RecordProcessorBlocker.java
│ │ │ │ │ │ │ └── [3.4K] StandardRecordProcessorBlocker.java
│ │ │ │ │ │ ├── [ 11K] PutKinesisStream.java
│ │ │ │ │ │ └── [4.0K] record
│ │ │ │ │ │ ├── [ 16K] AbstractKinesisRecordProcessor.java
│ │ │ │ │ │ ├── [4.0K] converter
│ │ │ │ │ │ │ ├── [1.2K] RecordConverterIdentity.java
│ │ │ │ │ │ │ ├── [1.1K] RecordConverter.java
│ │ │ │ │ │ │ └── [4.8K] RecordConverterWrapper.java
│ │ │ │ │ │ ├── [3.4K] KinesisRecordProcessorRaw.java
│ │ │ │ │ │ └── [ 10K] KinesisRecordProcessorRecord.java
│ │ │ │ │ ├── [4.0K] lambda
│ │ │ │ │ │ └── [ 12K] PutLambda.java
│ │ │ │ │ ├── [4.0K] ml
│ │ │ │ │ │ ├── [4.0K] polly
│ │ │ │ │ │ │ ├── [6.2K] GetAwsPollyJobStatus.java
│ │ │ │ │ │ │ └── [3.1K] StartAwsPollyJob.java
│ │ │ │ │ │ ├── [4.0K] textract
│ │ │ │ │ │ │ ├── [7.4K] GetAwsTextractJobStatus.java
│ │ │ │ │ │ │ ├── [6.3K] StartAwsTextractJob.java
│ │ │ │ │ │ │ └── [1.8K] TextractType.java
│ │ │ │ │ │ ├── [4.0K] transcribe
│ │ │ │ │ │ │ ├── [4.8K] GetAwsTranscribeJobStatus.java
│ │ │ │ │ │ │ └── [3.2K] StartAwsTranscribeJob.java
│ │ │ │ │ │ └── [4.0K] translate
│ │ │ │ │ │ ├── [5.1K] GetAwsTranslateJobStatus.java
│ │ │ │ │ │ └── [3.1K] StartAwsTranslateJob.java
│ │ │ │ │ ├── [4.0K] s3
│ │ │ │ │ │ ├── [4.0K] api
│ │ │ │ │ │ │ ├── [1.9K] MetadataTarget.java
│ │ │ │ │ │ │ └── [1.8K] TagsTarget.java
│ │ │ │ │ │ ├── [ 12K] CopyS3Object.java
│ │ │ │ │ │ ├── [6.4K] DeleteS3Object.java
│ │ │ │ │ │ ├── [4.0K] encryption
│ │ │ │ │ │ │ ├── [4.8K] ClientSideCEncryptionStrategy.java
│ │ │ │ │ │ │ ├── [2.8K] ClientSideKMSEncryptionStrategy.java
│ │ │ │ │ │ │ ├── [ 929] NoOpEncryptionStrategy.java
│ │ │ │ │ │ │ ├── [3.5K] S3EncryptionStrategy.java
│ │ │ │ │ │ │ ├── [3.9K] ServerSideCEncryptionStrategy.java
│ │ │ │ │ │ │ ├── [2.1K] ServerSideKMSEncryptionStrategy.java
│ │ │ │ │ │ │ ├── [1.9K] ServerSideS3EncryptionStrategy.java
│ │ │ │ │ │ │ └── [ 12K] StandardS3EncryptionService.java
│ │ │ │ │ │ ├── [ 29K] FetchS3Object.java
│ │ │ │ │ │ ├── [9.8K] GetS3ObjectMetadata.java
│ │ │ │ │ │ ├── [9.1K] GetS3ObjectTags.java
│ │ │ │ │ │ ├── [ 59K] ListS3.java
│ │ │ │ │ │ ├── [ 56K] PutS3Object.java
│ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ └── [6.9K] S3FileResourceService.java
│ │ │ │ │ │ └── [ 10K] TagS3Object.java
│ │ │ │ │ ├── [4.0K] sns
│ │ │ │ │ │ └── [ 11K] PutSNS.java
│ │ │ │ │ └── [4.0K] sqs
│ │ │ │ │ ├── [5.3K] DeleteSQS.java
│ │ │ │ │ ├── [ 11K] GetSQS.java
│ │ │ │ │ └── [9.5K] PutSQS.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.dynamodb.PutDynamoDBRecord
│ │ │ │ │ │ └── [ 10K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.kinesis.stream.ConsumeKinesisStream
│ │ │ │ │ │ └── [2.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.ml.polly.GetAwsPollyJobStatus
│ │ │ │ │ │ └── [1.6K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.ml.polly.StartAwsPollyJob
│ │ │ │ │ │ └── [2.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.ml.textract.GetAwsTextractJobStatus
│ │ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.ml.textract.StartAwsTextractJob
│ │ │ │ │ │ └── [4.1K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.ml.transcribe.GetAwsTranscribeJobStatus
│ │ │ │ │ │ └── [1.1K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.ml.transcribe.StartAwsTranscribeJob
│ │ │ │ │ │ └── [3.2K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.ml.translate.GetAwsTranslateJobStatus
│ │ │ │ │ │ └── [1.7K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.ml.translate.StartAwsTranslateJob
│ │ │ │ │ │ └── [2.7K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.s3.encryption.StandardS3EncryptionService
│ │ │ │ │ │ └── [2.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.aws.s3.ListS3
│ │ │ │ │ │ └── [3.5K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.aws.s3.PutS3Object
│ │ │ │ │ └── [2.6K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [1019] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [2.3K] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] aws
│ │ │ │ ├── [4.0K] cloudwatch
│ │ │ │ │ ├── [2.7K] ITPutCloudWatchMetric.java
│ │ │ │ │ ├── [1.8K] MockPutCloudWatchMetric.java
│ │ │ │ │ └── [ 12K] TestPutCloudWatchMetric.java
│ │ │ │ ├── [4.0K] credentials
│ │ │ │ │ └── [4.0K] provider
│ │ │ │ │ └── [4.0K] service
│ │ │ │ │ ├── [ 19K] AWSCredentialsProviderControllerServiceTest.java
│ │ │ │ │ ├── [4.4K] MockAWSProcessor.java
│ │ │ │ │ └── [8.0K] TestAWSCredentialsProviderControllerServiceStrategies.java
│ │ │ │ ├── [4.0K] dynamodb
│ │ │ │ │ ├── [6.8K] AbstractDynamoDBIT.java
│ │ │ │ │ ├── [3.1K] AbstractDynamoDBTest.java
│ │ │ │ │ ├── [ 12K] DeleteDynamoDBTest.java
│ │ │ │ │ ├── [ 17K] GetDynamoDBTest.java
│ │ │ │ │ ├── [6.3K] ITDynamoDB.java
│ │ │ │ │ ├── [2.7K] ItemKeysTest.java
│ │ │ │ │ ├── [6.3K] ITPutDynamoDBRecord.java
│ │ │ │ │ ├── [ 15K] PutDynamoDBRecordTest.java
│ │ │ │ │ ├── [ 16K] PutDynamoDBTest.java
│ │ │ │ │ └── [ 14K] RecordToItemConverterTest.java
│ │ │ │ ├── [4.0K] kinesis
│ │ │ │ │ ├── [4.0K] firehose
│ │ │ │ │ │ └── [2.8K] TestPutKinesisFirehose.java
│ │ │ │ │ └── [4.0K] stream
│ │ │ │ │ ├── [5.9K] ITConsumeKinesisStream.java
│ │ │ │ │ ├── [4.0K] pause
│ │ │ │ │ │ └── [7.5K] TestStandardRecordProcessorBlocker.java
│ │ │ │ │ ├── [4.0K] record
│ │ │ │ │ │ ├── [8.7K] TestAbstractKinesisRecordProcessor.java
│ │ │ │ │ │ ├── [ 12K] TestKinesisRecordProcessorRaw.java
│ │ │ │ │ │ └── [ 19K] TestKinesisRecordProcessorRecord.java
│ │ │ │ │ ├── [ 21K] TestConsumeKinesisStream.java
│ │ │ │ │ └── [3.0K] TestPutKinesisStream.java
│ │ │ │ ├── [4.0K] lambda
│ │ │ │ │ └── [6.0K] TestPutLambda.java
│ │ │ │ ├── [4.0K] ml
│ │ │ │ │ ├── [4.0K] polly
│ │ │ │ │ │ ├── [6.4K] GetAwsPollyStatusTest.java
│ │ │ │ │ │ └── [7.2K] StartAwsPollyJobTest.java
│ │ │ │ │ ├── [4.0K] textract
│ │ │ │ │ │ ├── [8.3K] GetAwsTextractJobStatusTest.java
│ │ │ │ │ │ └── [ 16K] StartAwsTextractJobStatusTest.java
│ │ │ │ │ ├── [4.0K] transcribe
│ │ │ │ │ │ ├── [6.8K] GetAwsTranscribeJobStatusTest.java
│ │ │ │ │ │ └── [7.2K] StartAwsTranscribeJobTest.java
│ │ │ │ │ └── [4.0K] translate
│ │ │ │ │ ├── [6.9K] GetAwsTranslateJobStatusTest.java
│ │ │ │ │ └── [7.0K] StartAwsTranslateJobTest.java
│ │ │ │ ├── [4.0K] s3
│ │ │ │ │ ├── [ 10K] AbstractS3IT.java
│ │ │ │ │ ├── [4.0K] encryption
│ │ │ │ │ │ ├── [1.3K] S3EncryptionTestUtil.java
│ │ │ │ │ │ ├── [2.7K] TestClientSideCEncryptionStrategyKeyValidation.java
│ │ │ │ │ │ ├── [8.3K] TestS3EncryptionStrategies.java
│ │ │ │ │ │ ├── [2.3K] TestServerSideCEncryptionStrategyKeyValidation.java
│ │ │ │ │ │ ├── [4.6K] TestStandardS3EncryptionService.java
│ │ │ │ │ │ └── [9.6K] TestStandardS3EncryptionServiceValidation.java
│ │ │ │ │ ├── [3.6K] ITDeleteS3Object.java
│ │ │ │ │ ├── [5.2K] ITFetchS3Object.java
│ │ │ │ │ ├── [7.6K] ITListS3.java
│ │ │ │ │ ├── [ 49K] ITPutS3Object.java
│ │ │ │ │ ├── [4.8K] ITTagS3Object.java
│ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ └── [6.5K] S3FileResourceServiceTest.java
│ │ │ │ │ ├── [4.6K] TestCopyS3Object.java
│ │ │ │ │ ├── [6.6K] TestDeleteS3Object.java
│ │ │ │ │ ├── [ 18K] TestFetchS3Object.java
│ │ │ │ │ ├── [8.3K] TestGetS3ObjectMetadata.java
│ │ │ │ │ ├── [7.9K] TestGetS3ObjectTags.java
│ │ │ │ │ ├── [ 38K] TestListS3.java
│ │ │ │ │ ├── [ 14K] TestPutS3Object.java
│ │ │ │ │ └── [ 14K] TestTagS3Object.java
│ │ │ │ ├── [4.0K] sns
│ │ │ │ │ ├── [4.8K] ITPutSNS.java
│ │ │ │ │ └── [6.7K] TestPutSNS.java
│ │ │ │ ├── [4.0K] sqs
│ │ │ │ │ ├── [3.8K] AbstractSQSIT.java
│ │ │ │ │ ├── [2.8K] ITDeleteSQS.java
│ │ │ │ │ ├── [3.0K] ITGetSQS.java
│ │ │ │ │ ├── [2.0K] ITPutSQS.java
│ │ │ │ │ ├── [5.4K] TestDeleteSQS.java
│ │ │ │ │ ├── [8.2K] TestGetSQS.java
│ │ │ │ │ └── [6.0K] TestPutSQS.java
│ │ │ │ └── [4.0K] testutil
│ │ │ │ └── [2.8K] AuthUtils.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] dynamodb
│ │ │ │ ├── [1.5K] multipleChunks.json
│ │ │ │ ├── [ 155] multipleInputs.json
│ │ │ │ ├── [ 10] nonRecordOriented.txt
│ │ │ │ └── [ 49] singleInput.json
│ │ │ ├── [ 14] hello.txt
│ │ │ └── [ 51] mock-aws-credentials.properties
│ │ ├── [4.0K] nifi-aws-schema-registry-service
│ │ │ ├── [4.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] aws
│ │ │ │ │ └── [4.0K] schemaregistry
│ │ │ │ │ ├── [3.4K] AmazonGlueEncodedSchemaReferenceReader.java
│ │ │ │ │ ├── [ 13K] AmazonGlueSchemaRegistry.java
│ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ ├── [2.6K] CachingSchemaRegistryClient.java
│ │ │ │ │ │ ├── [7.1K] GlueSchemaRegistryClient.java
│ │ │ │ │ │ └── [1.4K] SchemaRegistryClient.java
│ │ │ │ │ ├── [4.0K] serde
│ │ │ │ │ │ ├── [1.1K] AWSSchemaRegistryConstants.java
│ │ │ │ │ │ ├── [6.2K] GlueSchemaRegistryDeserializerDataParser.java
│ │ │ │ │ │ └── [1.2K] GlueSchemaRegistryIncompatibleDataException.java
│ │ │ │ │ └── [2.0K] WireFormatAwsGlueSchemaId.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 915] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] aws
│ │ │ └── [4.0K] schemaregistry
│ │ │ └── [4.0K] client
│ │ │ ├── [4.5K] CachingSchemaRegistryClientTest.java
│ │ │ └── [5.7K] GlueSchemaRegistryClientTest.java
│ │ ├── [4.0K] nifi-aws-service-api
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] aws
│ │ │ ├── [4.0K] credentials
│ │ │ │ └── [4.0K] provider
│ │ │ │ ├── [2.1K] AwsCredentialsProviderService.java
│ │ │ │ └── [4.0K] service
│ │ │ │ └── [2.6K] AWSCredentialsProviderService.java
│ │ │ └── [4.0K] s3
│ │ │ └── [3.5K] AmazonS3EncryptionService.java
│ │ ├── [4.0K] nifi-aws-service-api-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [2.3K] NOTICE
│ │ └── [3.4K] pom.xml
│ ├── [4.0K] nifi-azure-bundle
│ │ ├── [4.0K] nifi-azure-graph-authorizer
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] authorization
│ │ │ │ └── [4.0K] azure
│ │ │ │ ├── [ 22K] AzureGraphUserGroupProvider.java
│ │ │ │ ├── [6.6K] ClientCredentialAuthProvider.java
│ │ │ │ └── [5.8K] ImmutableAzureGraphUserGroup.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 845] org.apache.nifi.authorization.UserGroupProvider
│ │ ├── [4.0K] nifi-azure-nar
│ │ │ ├── [2.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 25K] LICENSE
│ │ │ └── [9.6K] NOTICE
│ │ ├── [4.0K] nifi-azure-parameter-providers
│ │ │ ├── [2.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] parameter
│ │ │ │ │ └── [4.0K] azure
│ │ │ │ │ └── [9.5K] AzureKeyVaultSecretsParameterProvider.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.parameter.azure.AzureKeyVaultSecretsParameterProvider
│ │ │ │ │ └── [2.1K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 852] org.apache.nifi.parameter.ParameterProvider
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] parameter
│ │ │ │ └── [4.0K] azure
│ │ │ │ └── [9.9K] TestAzureKeyVaultSecretsParameterProvider.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] mockito-extensions
│ │ │ └── [ 798] org.mockito.plugins.MockMaker
│ │ ├── [4.0K] nifi-azure-processors
│ │ │ ├── [7.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] processors
│ │ │ │ │ │ └── [4.0K] azure
│ │ │ │ │ │ ├── [7.0K] AbstractAzureBlobProcessor_v12.java
│ │ │ │ │ │ ├── [3.4K] AbstractAzureDataLakeStorageProcessor.java
│ │ │ │ │ │ ├── [1.8K] AzureServiceEndpoints.java
│ │ │ │ │ │ ├── [8.0K] ClientSideEncryptionSupport.java
│ │ │ │ │ │ ├── [4.0K] cosmos
│ │ │ │ │ │ │ └── [4.0K] document
│ │ │ │ │ │ │ ├── [ 12K] AbstractAzureCosmosDBProcessor.java
│ │ │ │ │ │ │ ├── [3.6K] AzureCosmosDBUtils.java
│ │ │ │ │ │ │ └── [9.8K] PutAzureCosmosDBRecord.java
│ │ │ │ │ │ ├── [4.0K] data
│ │ │ │ │ │ │ └── [4.0K] explorer
│ │ │ │ │ │ │ ├── [3.0K] KustoIngestDataFormat.java
│ │ │ │ │ │ │ ├── [ 13K] PutAzureDataExplorer.java
│ │ │ │ │ │ │ └── [6.9K] QueryAzureDataExplorer.java
│ │ │ │ │ │ ├── [4.0K] eventhub
│ │ │ │ │ │ │ ├── [4.0K] checkpoint
│ │ │ │ │ │ │ │ ├── [1.1K] CheckpointStoreKey.java
│ │ │ │ │ │ │ │ ├── [1.1K] CheckpointStoreKeyPrefix.java
│ │ │ │ │ │ │ │ ├── [1.6K] CheckpointStrategy.java
│ │ │ │ │ │ │ │ ├── [ 19K] ComponentStateCheckpointStore.java
│ │ │ │ │ │ │ │ ├── [6.8K] ComponentStateCheckpointStoreUtils.java
│ │ │ │ │ │ │ │ └── [4.0K] exception
│ │ │ │ │ │ │ │ ├── [1.0K] ClusterNodeDisconnectedException.java
│ │ │ │ │ │ │ │ ├── [1.2K] ComponentStateCheckpointStoreException.java
│ │ │ │ │ │ │ │ ├── [1.0K] ConcurrentStateModificationException.java
│ │ │ │ │ │ │ │ └── [1.1K] StateNotAvailableException.java
│ │ │ │ │ │ │ ├── [ 42K] ConsumeAzureEventHub.java
│ │ │ │ │ │ │ ├── [ 22K] GetAzureEventHub.java
│ │ │ │ │ │ │ ├── [4.0K] position
│ │ │ │ │ │ │ │ ├── [2.4K] EarliestEventPositionProvider.java
│ │ │ │ │ │ │ │ ├── [1.2K] EventPositionProvider.java
│ │ │ │ │ │ │ │ └── [6.3K] LegacyBlobStorageEventPositionProvider.java
│ │ │ │ │ │ │ ├── [ 14K] PutAzureEventHub.java
│ │ │ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ │ │ └── [8.1K] AzureEventHubUtils.java
│ │ │ │ │ │ └── [4.0K] storage
│ │ │ │ │ │ ├── [4.0K] AbstractListAzureProcessor.java
│ │ │ │ │ │ ├── [ 22K] CopyAzureBlobStorage_v12.java
│ │ │ │ │ │ ├── [7.1K] DeleteAzureBlobStorage_v12.java
│ │ │ │ │ │ ├── [6.2K] DeleteAzureDataLakeStorage.java
│ │ │ │ │ │ ├── [ 12K] FetchAzureBlobStorage_v12.java
│ │ │ │ │ │ ├── [ 11K] FetchAzureDataLakeStorage.java
│ │ │ │ │ │ ├── [ 14K] ListAzureBlobStorage_v12.java
│ │ │ │ │ │ ├── [ 16K] ListAzureDataLakeStorage.java
│ │ │ │ │ │ ├── [ 14K] MoveAzureDataLakeStorage.java
│ │ │ │ │ │ ├── [ 13K] PutAzureBlobStorage_v12.java
│ │ │ │ │ │ ├── [ 19K] PutAzureDataLakeStorage.java
│ │ │ │ │ │ ├── [4.0K] queue
│ │ │ │ │ │ │ ├── [9.0K] AbstractAzureQueueStorage_v12.java
│ │ │ │ │ │ │ ├── [ 10K] GetAzureQueueStorage_v12.java
│ │ │ │ │ │ │ └── [7.2K] PutAzureQueueStorage_v12.java
│ │ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ │ ├── [2.7K] AbstractStorageClientFactory.java
│ │ │ │ │ │ ├── [2.6K] ADLSAttributes.java
│ │ │ │ │ │ ├── [6.1K] ADLSFileInfo.java
│ │ │ │ │ │ ├── [ 21K] AzureStorageUtils.java
│ │ │ │ │ │ ├── [2.7K] BlobAttributes.java
│ │ │ │ │ │ ├── [8.4K] BlobInfo.java
│ │ │ │ │ │ ├── [4.3K] BlobServiceClientFactory.java
│ │ │ │ │ │ ├── [1.6K] ClientSideEncryptionMethod.java
│ │ │ │ │ │ ├── [5.2K] DataLakeServiceClientFactory.java
│ │ │ │ │ │ ├── [1.1K] FlowFileResultCarrier.java
│ │ │ │ │ │ └── [1.8K] WritingStrategy.java
│ │ │ │ │ ├── [4.0K] services
│ │ │ │ │ │ └── [4.0K] azure
│ │ │ │ │ │ ├── [4.0K] cosmos
│ │ │ │ │ │ │ └── [4.0K] document
│ │ │ │ │ │ │ └── [5.3K] AzureCosmosDBClientService.java
│ │ │ │ │ │ ├── [4.0K] data
│ │ │ │ │ │ │ └── [4.0K] explorer
│ │ │ │ │ │ │ ├── [1.6K] KustoAuthenticationStrategy.java
│ │ │ │ │ │ │ ├── [1.5K] KustoIngestQueryResponse.java
│ │ │ │ │ │ │ ├── [ 22K] StandardKustoIngestService.java
│ │ │ │ │ │ │ └── [7.2K] StandardKustoQueryService.java
│ │ │ │ │ │ ├── [4.0K] eventhub
│ │ │ │ │ │ │ ├── [1.8K] AzureAuthenticationStrategy.java
│ │ │ │ │ │ │ └── [ 13K] AzureEventHubRecordSink.java
│ │ │ │ │ │ ├── [5.3K] StandardAzureCredentialsControllerService.java
│ │ │ │ │ │ └── [4.0K] storage
│ │ │ │ │ │ ├── [8.8K] ADLSCredentialsControllerService.java
│ │ │ │ │ │ ├── [3.0K] ADLSCredentialsControllerServiceLookup.java
│ │ │ │ │ │ ├── [6.7K] AzureBlobStorageFileResourceService.java
│ │ │ │ │ │ ├── [7.4K] AzureDataLakeStorageFileResourceService.java
│ │ │ │ │ │ ├── [3.2K] AzureStorageCredentialsControllerServiceLookup_v12.java
│ │ │ │ │ │ └── [5.9K] AzureStorageCredentialsControllerService_v12.java
│ │ │ │ │ └── [4.0K] shared
│ │ │ │ │ └── [4.0K] azure
│ │ │ │ │ └── [4.0K] eventhubs
│ │ │ │ │ ├── [2.1K] AzureEventHubComponent.java
│ │ │ │ │ └── [2.0K] AzureEventHubTransportType.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.azure.storage.PutAzureDataLakeStorage
│ │ │ │ │ │ └── [3.0K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.services.azure.storage.ADLSCredentialsControllerService
│ │ │ │ │ └── [1.8K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [1.6K] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [1.9K] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ ├── [4.0K] processors
│ │ │ │ └── [4.0K] azure
│ │ │ │ ├── [4.0K] cosmos
│ │ │ │ │ └── [4.0K] document
│ │ │ │ │ ├── [8.1K] ITAbstractAzureCosmosDBDocument.java
│ │ │ │ │ ├── [3.1K] MockTestBase.java
│ │ │ │ │ └── [ 12K] PutAzureCosmosDBRecordTest.java
│ │ │ │ ├── [4.0K] data
│ │ │ │ │ └── [4.0K] explorer
│ │ │ │ │ ├── [6.9K] PutAzureDataExplorerTest.java
│ │ │ │ │ └── [4.8K] QueryAzureDataExplorerTest.java
│ │ │ │ ├── [4.0K] eventhub
│ │ │ │ │ ├── [4.0K] checkpoint
│ │ │ │ │ │ ├── [8.2K] AbstractCheckpointStoreTest.java
│ │ │ │ │ │ ├── [3.3K] AbstractComponentStateCheckpointStoreTest.java
│ │ │ │ │ │ ├── [8.4K] ComponentStateCheckpointStoreConcurrencyTest.java
│ │ │ │ │ │ ├── [ 11K] ComponentStateCheckpointStoreFailureTest.java
│ │ │ │ │ │ ├── [ 16K] ComponentStateCheckpointStoreTest.java
│ │ │ │ │ │ └── [5.6K] ComponentStateCheckpointStoreUtilsTest.java
│ │ │ │ │ ├── [9.6K] GetAzureEventHubTest.java
│ │ │ │ │ ├── [4.0K] position
│ │ │ │ │ │ └── [5.5K] LegacyBlobStorageEventPositionProviderTest.java
│ │ │ │ │ ├── [7.5K] PutAzureEventHubTest.java
│ │ │ │ │ └── [ 26K] TestConsumeAzureEventHub.java
│ │ │ │ ├── [4.0K] storage
│ │ │ │ │ ├── [4.0K] queue
│ │ │ │ │ │ ├── [2.0K] AbstractTestAzureQueueStorage_v12.java
│ │ │ │ │ │ ├── [3.0K] TestGetAzureQueueStorage_v12.java
│ │ │ │ │ │ └── [3.9K] TestPutAzureQueueStorage_v12.java
│ │ │ │ │ ├── [3.8K] TestAbstractAzureDataLakeStorage.java
│ │ │ │ │ ├── [6.6K] TestClientSideEncryptionSupport.java
│ │ │ │ │ ├── [3.6K] TestPutAzureDataLakeStorage.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [4.3K] BlobInfoTest.java
│ │ │ │ │ ├── [3.6K] BlobServiceClientFactoryTest.java
│ │ │ │ │ └── [3.7K] DataLakeServiceClientFactoryTest.java
│ │ │ │ └── [2.0K] TestAzureServiceEndpoints.java
│ │ │ └── [4.0K] services
│ │ │ └── [4.0K] azure
│ │ │ ├── [4.0K] cosmos
│ │ │ │ └── [4.0K] document
│ │ │ │ └── [2.4K] TestAzureCosmosDBClientService.java
│ │ │ ├── [4.0K] data
│ │ │ │ └── [4.0K] explorer
│ │ │ │ └── [3.4K] StandardKustoQueryServiceTest.java
│ │ │ ├── [4.0K] eventhub
│ │ │ │ └── [7.9K] TestAzureEventHubRecordSink.java
│ │ │ ├── [4.0K] storage
│ │ │ │ ├── [7.4K] AzureBlobStorageFileResourceServiceTest.java
│ │ │ │ ├── [ 11K] AzureDataLakeStorageFileResourceServiceTest.java
│ │ │ │ ├── [ 16K] TestADLSCredentialsControllerService.java
│ │ │ │ ├── [6.4K] TestADLSCredentialsControllerServiceLookup.java
│ │ │ │ ├── [6.7K] TestAzureStorageCredentialsControllerServiceLookup_v12.java
│ │ │ │ └── [ 12K] TestAzureStorageCredentialsControllerService_v12.java
│ │ │ └── [3.6K] TestStandardAzureCredentialsControllerService.java
│ │ ├── [4.0K] nifi-azure-reporting-task
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] reporting
│ │ │ │ │ └── [4.0K] azure
│ │ │ │ │ └── [4.0K] loganalytics
│ │ │ │ │ ├── [9.1K] AbstractAzureLogAnalyticsReportingTask.java
│ │ │ │ │ ├── [4.0K] api
│ │ │ │ │ │ └── [6.6K] AzureLogAnalyticsMetricsFactory.java
│ │ │ │ │ ├── [ 30K] AzureLogAnalyticsProvenanceReportingTask.java
│ │ │ │ │ ├── [9.6K] AzureLogAnalyticsReportingTask.java
│ │ │ │ │ ├── [3.5K] Metric.java
│ │ │ │ │ ├── [2.8K] MetricNames.java
│ │ │ │ │ └── [4.9K] MetricsBuilder.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] reporting
│ │ │ │ │ └── [4.0K] azure
│ │ │ │ │ └── [4.0K] loganalytics
│ │ │ │ │ └── [4.0K] AzureLogAnalyticsReportingTask
│ │ │ │ │ └── [1.5K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 942] org.apache.nifi.reporting.ReportingTask
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] reporting
│ │ │ └── [4.0K] azure
│ │ │ └── [4.0K] loganalytics
│ │ │ ├── [4.6K] TestAzureLogAnalyticsProvenanceReportingTask.java
│ │ │ ├── [ 12K] TestAzureLogAnalyticsReportingTask.java
│ │ │ ├── [2.8K] TestMetricsFactory.java
│ │ │ └── [3.9K] TestVerification.java
│ │ ├── [4.0K] nifi-azure-services-api
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [4.0K] azure
│ │ │ │ ├── [1.8K] AzureCredentialsService.java
│ │ │ │ ├── [4.0K] cosmos
│ │ │ │ │ └── [1.1K] AzureCosmosDBConnectionService.java
│ │ │ │ ├── [4.0K] data
│ │ │ │ │ └── [4.0K] explorer
│ │ │ │ │ ├── [3.3K] KustoIngestionRequest.java
│ │ │ │ │ ├── [1.4K] KustoIngestionResult.java
│ │ │ │ │ ├── [1.8K] KustoIngestService.java
│ │ │ │ │ ├── [1.7K] KustoQueryResponse.java
│ │ │ │ │ └── [1.2K] KustoQueryService.java
│ │ │ │ ├── [4.0K] storage
│ │ │ │ │ ├── [7.8K] ADLSCredentialsDetails.java
│ │ │ │ │ ├── [1.3K] ADLSCredentialsService.java
│ │ │ │ │ ├── [1.7K] AzureStorageConflictResolutionStrategy.java
│ │ │ │ │ ├── [7.2K] AzureStorageCredentialsDetails_v12.java
│ │ │ │ │ ├── [1.5K] AzureStorageCredentialsService_v12.java
│ │ │ │ │ └── [2.1K] AzureStorageCredentialsType.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [2.2K] ProxyOptionsUtils.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] services
│ │ │ └── [4.0K] azure
│ │ │ └── [4.0K] util
│ │ │ └── [5.3K] ProxyOptionsUtilsTest.java
│ │ ├── [4.0K] nifi-azure-services-api-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 12K] LICENSE
│ │ │ └── [1.6K] NOTICE
│ │ └── [3.8K] pom.xml
│ ├── [4.0K] nifi-box-bundle
│ │ ├── [4.0K] nifi-box-nar
│ │ │ ├── [3.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 447] NOTICE
│ │ ├── [4.0K] nifi-box-processors
│ │ │ ├── [3.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] box
│ │ │ │ │ ├── [4.0K] BoxEventJsonArrayWriter.java
│ │ │ │ │ ├── [1.7K] BoxFileAttributes.java
│ │ │ │ │ ├── [5.7K] BoxFileInfo.java
│ │ │ │ │ ├── [2.5K] BoxFileUtils.java
│ │ │ │ │ ├── [1.7K] BoxFlowFileAttribute.java
│ │ │ │ │ ├── [1.2K] BoxGroupAttributes.java
│ │ │ │ │ ├── [3.1K] BoxMetadataJsonArrayWriter.java
│ │ │ │ │ ├── [ 10K] ConsumeBoxEnterpriseEvents.java
│ │ │ │ │ ├── [ 10K] ConsumeBoxEvents.java
│ │ │ │ │ ├── [ 13K] CreateBoxFileMetadataInstance.java
│ │ │ │ │ ├── [ 14K] CreateBoxMetadataTemplate.java
│ │ │ │ │ ├── [8.6K] DeleteBoxFileMetadataInstance.java
│ │ │ │ │ ├── [ 17K] ExtractStructuredBoxFileMetadata.java
│ │ │ │ │ ├── [ 12K] FetchBoxFileInfo.java
│ │ │ │ │ ├── [7.9K] FetchBoxFile.java
│ │ │ │ │ ├── [ 11K] FetchBoxFileMetadataInstance.java
│ │ │ │ │ ├── [ 12K] FetchBoxFileRepresentation.java
│ │ │ │ │ ├── [ 17K] GetBoxFileCollaborators.java
│ │ │ │ │ ├── [7.7K] GetBoxGroupMembers.java
│ │ │ │ │ ├── [ 13K] ListBoxFileInfo.java
│ │ │ │ │ ├── [ 11K] ListBoxFile.java
│ │ │ │ │ ├── [9.9K] ListBoxFileMetadataInstances.java
│ │ │ │ │ ├── [ 11K] ListBoxFileMetadataTemplates.java
│ │ │ │ │ ├── [ 20K] PutBoxFile.java
│ │ │ │ │ ├── [ 15K] UpdateBoxFileMetadataInstance.java
│ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ ├── [1.5K] BoxDate.java
│ │ │ │ │ └── [3.8K] BoxMetadataUtils.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.box.ConsumeBoxEnterpriseEvents
│ │ │ │ │ │ └── [ 946] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.box.FetchBoxFile
│ │ │ │ │ │ └── [1.3K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.box.ListBoxFile
│ │ │ │ │ │ └── [1.1K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.box.PutBoxFile
│ │ │ │ │ └── [1.1K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [1.7K] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] box
│ │ │ ├── [5.1K] AbstractBoxFileTest.java
│ │ │ ├── [5.6K] BoxEventJsonArrayWriterTest.java
│ │ │ ├── [5.4K] BoxMetadataJsonArrayWriterTest.java
│ │ │ ├── [4.9K] BoxParseJsonTest.java
│ │ │ ├── [8.2K] ConsumeBoxEnterpriseEventsTest.java
│ │ │ ├── [3.0K] ConsumeBoxEventsTest.java
│ │ │ ├── [7.8K] CreateBoxFileMetadataInstanceTest.java
│ │ │ ├── [9.7K] CreateBoxMetadataTemplateTest.java
│ │ │ ├── [4.8K] DeleteBoxFileMetadataInstanceTest.java
│ │ │ ├── [ 14K] ExtractStructuredBoxFileMetadataTest.java
│ │ │ ├── [9.6K] FetchBoxFileInfoTest.java
│ │ │ ├── [7.0K] FetchBoxFileMetadataInstanceTest.java
│ │ │ ├── [9.1K] FetchBoxFileRepresentationTest.java
│ │ │ ├── [4.4K] FetchBoxFileTest.java
│ │ │ ├── [3.0K] FileListingTestTrait.java
│ │ │ ├── [ 20K] GetBoxFileCollaboratorsTest.java
│ │ │ ├── [6.4K] GetBoxGroupMembersTest.java
│ │ │ ├── [9.6K] ListBoxFileInfoTest.java
│ │ │ ├── [4.2K] ListBoxFileListingTest.java
│ │ │ ├── [7.5K] ListBoxFileMetadataInstancesTest.java
│ │ │ ├── [7.8K] ListBoxFileMetadataTemplatesTest.java
│ │ │ ├── [4.3K] ListBoxFileTest.java
│ │ │ ├── [9.3K] PutBoxFileTest.java
│ │ │ ├── [ 16K] UpdateBoxFileMetadataInstanceTest.java
│ │ │ └── [4.0K] utils
│ │ │ └── [1.5K] BoxDateTest.java
│ │ ├── [4.0K] nifi-box-services
│ │ │ ├── [2.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] box
│ │ │ │ │ └── [4.0K] controllerservices
│ │ │ │ │ ├── [1.8K] BoxAppActor.java
│ │ │ │ │ ├── [4.4K] DeveloperBoxClientService.java
│ │ │ │ │ └── [ 11K] JsonConfigBasedBoxClientService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.box.controllerservices.JsonConfigBasedBoxClientService
│ │ │ │ │ └── [2.4K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 917] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] box
│ │ │ └── [4.0K] controllerservices
│ │ │ └── [6.3K] JsonConfigBasedBoxClientServiceTestRunnerTest.java
│ │ ├── [4.0K] nifi-box-services-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] box
│ │ │ └── [4.0K] controllerservices
│ │ │ └── [1.5K] BoxClientService.java
│ │ ├── [4.0K] nifi-box-services-api-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 14K] LICENSE
│ │ │ └── [1.2K] NOTICE
│ │ ├── [4.0K] nifi-box-services-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 447] NOTICE
│ │ └── [2.0K] pom.xml
│ ├── [4.0K] nifi-cdc
│ │ ├── [4.0K] nifi-cdc-api
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] cdc
│ │ │ ├── [1.4K] CDCException.java
│ │ │ └── [4.0K] event
│ │ │ ├── [1.3K] BaseEventInfo.java
│ │ │ ├── [1.3K] BaseRowEventInfo.java
│ │ │ ├── [2.0K] BaseTableEventInfo.java
│ │ │ ├── [2.0K] ColumnDefinition.java
│ │ │ ├── [1.3K] EventInfo.java
│ │ │ ├── [4.0K] io
│ │ │ │ ├── [2.7K] AbstractEventWriter.java
│ │ │ │ ├── [2.7K] EventWriterConfiguration.java
│ │ │ │ ├── [2.3K] EventWriter.java
│ │ │ │ └── [2.0K] FlowFileEventWriteStrategy.java
│ │ │ ├── [1.3K] RowEventException.java
│ │ │ ├── [1.0K] RowEventInfo.java
│ │ │ ├── [1.1K] TableEventInfo.java
│ │ │ ├── [2.5K] TableInfoCacheKey.java
│ │ │ └── [2.6K] TableInfo.java
│ │ ├── [4.0K] nifi-cdc-mysql-bundle
│ │ │ ├── [4.0K] nifi-cdc-mysql-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [ 419] NOTICE
│ │ │ ├── [4.0K] nifi-cdc-mysql-processors
│ │ │ │ ├── [2.9K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] cdc
│ │ │ │ │ │ └── [4.0K] mysql
│ │ │ │ │ │ ├── [4.0K] event
│ │ │ │ │ │ │ ├── [1.7K] BaseBinlogEventInfo.java
│ │ │ │ │ │ │ ├── [2.2K] BaseBinlogRowEventInfo.java
│ │ │ │ │ │ │ ├── [2.3K] BaseBinlogTableEventInfo.java
│ │ │ │ │ │ │ ├── [1.5K] BeginTransactionEventInfo.java
│ │ │ │ │ │ │ ├── [1.2K] BinlogEventInfo.java
│ │ │ │ │ │ │ ├── [2.4K] BinlogEventListener.java
│ │ │ │ │ │ │ ├── [2.0K] BinlogLifecycleListener.java
│ │ │ │ │ │ │ ├── [1.1K] BinlogTableEventInfo.java
│ │ │ │ │ │ │ ├── [1.5K] CommitTransactionEventInfo.java
│ │ │ │ │ │ │ ├── [2.3K] DataCaptureState.java
│ │ │ │ │ │ │ ├── [1.7K] DDLEventInfo.java
│ │ │ │ │ │ │ ├── [1.6K] DeleteRowsEventInfo.java
│ │ │ │ │ │ │ ├── [4.0K] handler
│ │ │ │ │ │ │ │ ├── [2.8K] BeginEventHandler.java
│ │ │ │ │ │ │ │ ├── [1.8K] BinlogEventHandler.java
│ │ │ │ │ │ │ │ ├── [3.5K] CommitEventHandler.java
│ │ │ │ │ │ │ │ ├── [2.9K] DDLEventHandler.java
│ │ │ │ │ │ │ │ ├── [2.7K] DeleteEventHandler.java
│ │ │ │ │ │ │ │ ├── [2.7K] InsertEventHandler.java
│ │ │ │ │ │ │ │ └── [2.7K] UpdateEventHandler.java
│ │ │ │ │ │ │ ├── [1.6K] InsertRowsEventInfo.java
│ │ │ │ │ │ │ ├── [4.0K] io
│ │ │ │ │ │ │ │ ├── [7.7K] AbstractBinlogEventWriter.java
│ │ │ │ │ │ │ │ ├── [2.5K] AbstractBinlogTableEventWriter.java
│ │ │ │ │ │ │ │ ├── [1.4K] BeginTransactionEventWriter.java
│ │ │ │ │ │ │ │ ├── [2.3K] CommitTransactionEventWriter.java
│ │ │ │ │ │ │ │ ├── [2.5K] DDLEventWriter.java
│ │ │ │ │ │ │ │ ├── [4.4K] DeleteRowsWriter.java
│ │ │ │ │ │ │ │ ├── [4.4K] InsertRowsWriter.java
│ │ │ │ │ │ │ │ └── [4.8K] UpdateRowsWriter.java
│ │ │ │ │ │ │ ├── [1.4K] RawBinlogEvent.java
│ │ │ │ │ │ │ └── [2.0K] UpdateRowsEventInfo.java
│ │ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ │ ├── [ 75K] CaptureChangeMySQL.java
│ │ │ │ │ │ └── [4.0K] ssl
│ │ │ │ │ │ ├── [2.3K] BinaryLogSSLSocketFactory.java
│ │ │ │ │ │ ├── [1.1K] ConnectionPropertiesProvider.java
│ │ │ │ │ │ ├── [2.2K] SecurityProperty.java
│ │ │ │ │ │ └── [4.6K] StandardConnectionPropertiesProvider.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 837] org.apache.nifi.processor.Processor
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] cdc
│ │ │ │ └── [4.0K] mysql
│ │ │ │ ├── [4.0K] event
│ │ │ │ │ └── [4.0K] io
│ │ │ │ │ └── [1.5K] TestInsertRowsWriter.java
│ │ │ │ ├── [5.2K] EventUtils.java
│ │ │ │ ├── [4.1K] MockBinlogClient.java
│ │ │ │ └── [4.0K] processors
│ │ │ │ ├── [ 69K] CaptureChangeMySQLTest.java
│ │ │ │ └── [4.0K] ssl
│ │ │ │ ├── [2.8K] BinaryLogSSLSocketFactoryTest.java
│ │ │ │ └── [7.5K] StandardConnectionPropertiesProviderTest.java
│ │ │ └── [1.8K] pom.xml
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-cipher-bundle
│ │ ├── [4.0K] nifi-cipher-nar
│ │ │ └── [1.7K] pom.xml
│ │ ├── [4.0K] nifi-cipher-processors
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] cipher
│ │ │ │ │ ├── [4.0K] age
│ │ │ │ │ │ ├── [2.9K] AbstractAgeKeyReader.java
│ │ │ │ │ │ ├── [1.7K] AgeKeyIndicator.java
│ │ │ │ │ │ ├── [1.4K] AgeKeyReader.java
│ │ │ │ │ │ ├── [6.3K] AgeKeyValidator.java
│ │ │ │ │ │ ├── [2.4K] AgePrivateKeyReader.java
│ │ │ │ │ │ ├── [2.4K] AgePublicKeyReader.java
│ │ │ │ │ │ ├── [1.4K] FileEncoding.java
│ │ │ │ │ │ └── [1.5K] KeySource.java
│ │ │ │ │ ├── [ 13K] DecryptContentAge.java
│ │ │ │ │ ├── [ 13K] EncryptContentAge.java
│ │ │ │ │ ├── [4.0K] io
│ │ │ │ │ │ └── [3.7K] ChannelStreamCallback.java
│ │ │ │ │ └── [ 12K] VerifyContentMAC.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 936] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] cipher
│ │ │ ├── [4.0K] age
│ │ │ │ ├── [2.6K] AgePrivateKeyReaderTest.java
│ │ │ │ └── [2.5K] AgePublicKeyReaderTest.java
│ │ │ ├── [9.4K] DecryptContentAgeTest.java
│ │ │ ├── [9.8K] EncryptContentAgeTest.java
│ │ │ ├── [4.0K] io
│ │ │ │ └── [3.8K] ChannelStreamCallbackTest.java
│ │ │ └── [8.6K] VerifyContentMACTest.java
│ │ └── [1.9K] pom.xml
│ ├── [4.0K] nifi-compress-bundle
│ │ ├── [4.0K] nifi-compress-nar
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 748] NOTICE
│ │ ├── [4.0K] nifi-compress-processors
│ │ │ ├── [3.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] compress
│ │ │ │ │ ├── [ 20K] ModifyCompression.java
│ │ │ │ │ └── [4.0K] property
│ │ │ │ │ ├── [2.7K] CompressionStrategy.java
│ │ │ │ │ └── [1.6K] FilenameStrategy.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 835] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] compress
│ │ │ │ └── [ 19K] TestModifyCompression.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] CompressedData
│ │ │ ├── [ 154] SampleFile1.txt.bz2
│ │ │ ├── [ 321] SampleFile1.txt.gz
│ │ │ ├── [ 67K] SampleFileConcat.txt
│ │ │ ├── [ 542] SampleFileConcat.txt.bz2
│ │ │ ├── [ 33K] SampleFile.txt
│ │ │ ├── [ 71] SampleFile.txt.br
│ │ │ ├── [ 388] SampleFile.txt.bz2
│ │ │ ├── [ 321] SampleFile.txt.gz
│ │ │ ├── [ 217] SampleFile.txt.lz4
│ │ │ ├── [1.7K] SampleFile.txt.snappy
│ │ │ ├── [1.6K] SampleFile.txt.sz
│ │ │ ├── [ 309] SampleFile.txt.zlib
│ │ │ └── [ 80] SampleFile.txt.zst
│ │ └── [1.4K] pom.xml
│ ├── [4.0K] nifi-confluent-platform-bundle
│ │ ├── [4.0K] nifi-confluent-platform-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resource
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 14K] LICENSE
│ │ │ └── [5.4K] NOTICE
│ │ ├── [4.0K] nifi-confluent-schema-registry-service
│ │ │ ├── [3.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] confluent
│ │ │ │ │ └── [4.0K] schemaregistry
│ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ ├── [ 984] AuthenticationType.java
│ │ │ │ │ │ ├── [2.6K] CachingSchemaRegistryClient.java
│ │ │ │ │ │ ├── [ 16K] RestSchemaRegistryClient.java
│ │ │ │ │ │ └── [1.3K] SchemaRegistryClient.java
│ │ │ │ │ ├── [3.1K] ConfluentEncodedSchemaReferenceReader.java
│ │ │ │ │ ├── [4.2K] ConfluentEncodedSchemaReferenceWriter.java
│ │ │ │ │ ├── [ 15K] ConfluentSchemaRegistry.java
│ │ │ │ │ └── [2.0K] MultipleURLValidator.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [1005] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] confluent
│ │ │ └── [4.0K] schemaregistry
│ │ │ ├── [3.7K] ConfluentEncodedSchemaReferenceReaderTest.java
│ │ │ ├── [4.3K] ConfluentEncodedSchemaReferenceWriterTest.java
│ │ │ └── [4.2K] ConfluentSchemaRegistryTest.java
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] nifi-dropbox-bundle
│ │ ├── [4.0K] nifi-dropbox-processors
│ │ │ ├── [3.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] dropbox
│ │ │ │ │ ├── [1.8K] DropboxAttributes.java
│ │ │ │ │ ├── [5.6K] DropboxFileInfo.java
│ │ │ │ │ ├── [1.8K] DropboxFlowFileAttribute.java
│ │ │ │ │ ├── [4.9K] DropboxTrait.java
│ │ │ │ │ ├── [8.3K] FetchDropbox.java
│ │ │ │ │ ├── [ 13K] ListDropbox.java
│ │ │ │ │ └── [ 17K] PutDropbox.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 922] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] dropbox
│ │ │ ├── [5.3K] AbstractDropboxTest.java
│ │ │ ├── [5.6K] FetchDropboxTest.java
│ │ │ ├── [9.4K] ListDropboxTest.java
│ │ │ └── [ 13K] PutDropboxTest.java
│ │ ├── [4.0K] nifi-dropbox-processors-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.4K] NOTICE
│ │ ├── [4.0K] nifi-dropbox-services
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [4.0K] dropbox
│ │ │ │ └── [4.8K] StandardDropboxCredentialService.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] docs
│ │ │ │ └── [4.0K] org.apache.nifi.services.dropbox.StandardDropboxCredentialService
│ │ │ │ └── [4.0K] additionalDetails.md
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 846] org.apache.nifi.controller.ControllerService
│ │ ├── [4.0K] nifi-dropbox-services-api
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] dropbox
│ │ │ └── [4.0K] credentials
│ │ │ └── [4.0K] service
│ │ │ ├── [1.5K] DropboxCredentialDetails.java
│ │ │ └── [1.8K] DropboxCredentialService.java
│ │ ├── [4.0K] nifi-dropbox-services-api-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 182] NOTICE
│ │ ├── [4.0K] nifi-dropbox-services-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 178] NOTICE
│ │ └── [1.8K] pom.xml
│ ├── [4.0K] nifi-elasticsearch-bundle
│ │ ├── [4.0K] nifi-elasticsearch-client-service
│ │ │ ├── [6.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] elasticsearch
│ │ │ │ │ ├── [ 54K] ElasticSearchClientServiceImpl.java
│ │ │ │ │ ├── [ 12K] ElasticSearchLookupService.java
│ │ │ │ │ └── [4.7K] ElasticSearchStringLookupService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.elasticsearch.ElasticSearchClientServiceImpl
│ │ │ │ │ │ └── [2.8K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.elasticsearch.ElasticSearchLookupService
│ │ │ │ │ └── [1.7K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 962] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] elasticsearch
│ │ │ │ ├── [3.1K] IndexOperationResponseTest.java
│ │ │ │ ├── [4.0K] integration
│ │ │ │ │ ├── [3.6K] AbstractElasticsearch_IT.java
│ │ │ │ │ ├── [ 55K] ElasticSearchClientService_IT.java
│ │ │ │ │ └── [9.6K] ElasticSearchLookupService_IT.java
│ │ │ │ ├── [3.3K] SearchResponseTest.java
│ │ │ │ ├── [2.1K] TestControllerServiceProcessor.java
│ │ │ │ ├── [4.9K] TestElasticSearchClientService.java
│ │ │ │ ├── [1.9K] TestSchemaRegistry.java
│ │ │ │ └── [4.0K] unit
│ │ │ │ ├── [7.3K] ElasticSearchClientServiceImplTest.java
│ │ │ │ ├── [3.7K] ElasticSearchLookupServiceTest.java
│ │ │ │ └── [3.2K] ElasticSearchStringLookupServiceTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [3.6K] setup-7.script
│ │ │ ├── [3.6K] setup-8.script
│ │ │ └── [3.6K] setup-9.script
│ │ ├── [4.0K] nifi-elasticsearch-client-service-api
│ │ │ ├── [2.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] elasticsearch
│ │ │ ├── [1.7K] AuthorizationScheme.java
│ │ │ ├── [1.2K] DeleteOperationResponse.java
│ │ │ ├── [ 24K] ElasticSearchClientService.java
│ │ │ ├── [2.1K] ElasticsearchException.java
│ │ │ ├── [1.7K] ElasticsearchRequestOptions.java
│ │ │ ├── [4.1K] IndexOperationRequest.java
│ │ │ ├── [2.5K] IndexOperationResponse.java
│ │ │ ├── [1003] OperationResponse.java
│ │ │ ├── [3.0K] SearchResponse.java
│ │ │ └── [1.1K] UpdateOperationResponse.java
│ │ ├── [4.0K] nifi-elasticsearch-client-service-api-nar
│ │ │ └── [1.8K] pom.xml
│ │ ├── [4.0K] nifi-elasticsearch-client-service-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 15K] LICENSE
│ │ │ └── [ 18K] NOTICE
│ │ ├── [4.0K] nifi-elasticsearch-restapi-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 15K] LICENSE
│ │ │ └── [ 18K] NOTICE
│ │ ├── [4.0K] nifi-elasticsearch-restapi-processors
│ │ │ ├── [6.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] elasticsearch
│ │ │ │ │ ├── [7.0K] AbstractByQueryElasticsearch.java
│ │ │ │ │ ├── [ 21K] AbstractJsonQueryElasticsearch.java
│ │ │ │ │ ├── [ 17K] AbstractPaginatedJsonQueryElasticsearch.java
│ │ │ │ │ ├── [ 15K] AbstractPutElasticsearch.java
│ │ │ │ │ ├── [4.0K] api
│ │ │ │ │ │ ├── [1.5K] AggregationResultsFormat.java
│ │ │ │ │ │ ├── [1.7K] BulkOperation.java
│ │ │ │ │ │ ├── [1.8K] JsonQueryParameters.java
│ │ │ │ │ │ ├── [2.7K] PaginatedJsonQueryParameters.java
│ │ │ │ │ │ ├── [2.0K] PaginationType.java
│ │ │ │ │ │ ├── [1.5K] QueryDefinitionType.java
│ │ │ │ │ │ ├── [2.1K] ResultOutputStrategy.java
│ │ │ │ │ │ └── [1.5K] SearchResultsFormat.java
│ │ │ │ │ ├── [ 19K] ConsumeElasticsearch.java
│ │ │ │ │ ├── [4.5K] DeleteByQueryElasticsearch.java
│ │ │ │ │ ├── [ 26K] ElasticsearchRestProcessor.java
│ │ │ │ │ ├── [ 16K] GetElasticsearch.java
│ │ │ │ │ ├── [6.3K] JsonQueryElasticsearch.java
│ │ │ │ │ ├── [6.0K] PaginatedJsonQueryElasticsearch.java
│ │ │ │ │ ├── [ 19K] PutElasticsearchJson.java
│ │ │ │ │ ├── [ 50K] PutElasticsearchRecord.java
│ │ │ │ │ ├── [ 15K] SearchElasticsearch.java
│ │ │ │ │ └── [4.3K] UpdateByQueryElasticsearch.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.elasticsearch.ConsumeElasticsearch
│ │ │ │ │ │ └── [4.4K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.elasticsearch.DeleteByQueryElasticsearch
│ │ │ │ │ │ └── [1.2K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.elasticsearch.JsonQueryElasticsearch
│ │ │ │ │ │ └── [2.1K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.elasticsearch.PaginatedJsonQueryElasticsearch
│ │ │ │ │ │ └── [2.7K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.elasticsearch.PutElasticsearchJson
│ │ │ │ │ │ └── [4.6K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.elasticsearch.PutElasticsearchRecord
│ │ │ │ │ │ └── [6.3K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.elasticsearch.SearchElasticsearch
│ │ │ │ │ │ └── [4.3K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.elasticsearch.UpdateByQueryElasticsearch
│ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [1.3K] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] elasticsearch
│ │ │ │ ├── [ 16K] AbstractByQueryElasticsearchTest.java
│ │ │ │ ├── [ 36K] AbstractJsonQueryElasticsearchTest.java
│ │ │ │ ├── [ 22K] AbstractPaginatedJsonQueryElasticsearchTest.java
│ │ │ │ ├── [3.3K] AbstractPutElasticsearchTest.java
│ │ │ │ ├── [ 16K] ConsumeElasticsearchTest.java
│ │ │ │ ├── [1.5K] DeleteByQueryElasticsearchTest.java
│ │ │ │ ├── [ 13K] GetElasticsearchTest.java
│ │ │ │ ├── [4.0K] integration
│ │ │ │ │ ├── [1.7K] AbstractByQueryElasticsearch_IT.java
│ │ │ │ │ ├── [5.3K] AbstractElasticsearch_IT.java
│ │ │ │ │ ├── [7.5K] AbstractElasticsearchRestProcessor_IT.java
│ │ │ │ │ ├── [3.1K] AbstractJsonQueryElasticsearch_IT.java
│ │ │ │ │ ├── [3.0K] ConsumeElasticsearch_IT.java
│ │ │ │ │ ├── [1.2K] DeleteByQueryElasticsearch_IT.java
│ │ │ │ │ ├── [5.3K] GetElasticsearch_IT.java
│ │ │ │ │ ├── [1.2K] JsonQueryElasticsearch_IT.java
│ │ │ │ │ ├── [1.2K] PaginatedJsonQueryElasticsearch_IT.java
│ │ │ │ │ ├── [1.2K] PutElasticsearchJson_IT.java
│ │ │ │ │ ├── [9.8K] PutElasticsearchRecord_IT.java
│ │ │ │ │ ├── [1.2K] SearchElasticsearch_IT.java
│ │ │ │ │ └── [1.2K] UpdateByQueryElasticsearch_IT.java
│ │ │ │ ├── [1011] JsonQueryElasticsearchNoInputTest.java
│ │ │ │ ├── [1.4K] JsonQueryElasticsearchTest.java
│ │ │ │ ├── [2.6K] JsonUtils.java
│ │ │ │ ├── [4.0K] mock
│ │ │ │ │ ├── [5.5K] AbstractMockElasticsearchClient.java
│ │ │ │ │ ├── [2.8K] MockBulkLoadClientService.java
│ │ │ │ │ └── [1.2K] MockElasticsearchException.java
│ │ │ │ ├── [3.8K] PaginatedJsonQueryElasticsearchTest.java
│ │ │ │ ├── [ 29K] PutElasticsearchJsonTest.java
│ │ │ │ ├── [ 65K] PutElasticsearchRecordTest.java
│ │ │ │ ├── [ 14K] SearchElasticsearchTest.java
│ │ │ │ ├── [ 11K] TestElasticsearchClientService.java
│ │ │ │ └── [1.5K] UpdateByQueryElasticsearchTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] AbstractByQueryElasticsearchTest
│ │ │ │ ├── [ 67] matchQuery.json
│ │ │ │ └── [ 70] matchUsingExpressionLanguageQuery.json
│ │ │ ├── [4.0K] AbstractJsonQueryElasticsearchTest
│ │ │ │ ├── [ 233] matchAllAggregationWithDefaultTermsInExpressionLanguageQuery.json
│ │ │ │ └── [ 213] matchAllAggregationWithDefaultTermsQuery.json
│ │ │ ├── [4.0K] AbstractPaginatedJsonQueryElasticsearchTest
│ │ │ │ ├── [ 111] matchAllWithSortByMessageQuery.json
│ │ │ │ ├── [ 80] matchAllWithSortByMsgQueryWithoutSize.json
│ │ │ │ └── [ 94] matchAllWithSortByMsgQueryWithSize.json
│ │ │ ├── [4.0K] common
│ │ │ │ ├── [ 119] dynamicTemplates.json
│ │ │ │ ├── [ 43] matchAllQuery.json
│ │ │ │ └── [2.7K] sampleErrorResponse.json
│ │ │ ├── [ 591] DocumentExample.json
│ │ │ ├── [4.0K] PutElasticsearchJsonTest
│ │ │ │ ├── [ 447] batchWithError.json
│ │ │ │ ├── [ 440] batchWithoutError.json
│ │ │ │ ├── [ 53] flowFileContents.json
│ │ │ │ └── [ 58] script.json
│ │ │ ├── [4.0K] PutElasticsearchRecordTest
│ │ │ │ ├── [ 408] 10_flowFileContents.json
│ │ │ │ ├── [1.3K] 1_flowFileContents.json
│ │ │ │ ├── [ 966] 2_flowFileContents.json
│ │ │ │ ├── [ 252] 2_flowFileContents_stringified.json
│ │ │ │ ├── [ 405] 3_flowFileContents.json
│ │ │ │ ├── [ 866] 4_flowFileContents.json
│ │ │ │ ├── [ 138] 5_flowFileContents.json
│ │ │ │ ├── [ 138] 6_flowFileContents.json
│ │ │ │ ├── [ 159] 7_flowFileContents.json
│ │ │ │ ├── [ 171] 8_flowFileContents.json
│ │ │ │ ├── [ 679] 9_flowFileContents.json
│ │ │ │ ├── [1.1K] dateTimeFormattingTestSchema.json
│ │ │ │ ├── [ 372] errorTestSchema.json
│ │ │ │ ├── [ 228] flowFileContentMaps.json
│ │ │ │ ├── [2.2K] recordPathTestSchema.json
│ │ │ │ ├── [ 57] script.json
│ │ │ │ ├── [ 91] scriptParams.json
│ │ │ │ ├── [ 389] simpleSchema.json
│ │ │ │ └── [ 446] values.json
│ │ │ ├── [1.0K] setup-7.script
│ │ │ ├── [1.0K] setup-8.script
│ │ │ ├── [1.0K] setup-9.script
│ │ │ └── [4.0K] TestElasticsearchClientService
│ │ │ ├── [ 959] aggsResult.json
│ │ │ └── [1.7K] hitsResult.json
│ │ ├── [4.0K] nifi-elasticsearch-test-utils
│ │ │ ├── [3.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] elasticsearch
│ │ │ ├── [4.0K] integration
│ │ │ │ └── [9.6K] AbstractElasticsearchITBase.java
│ │ │ └── [2.5K] MapBuilder.java
│ │ ├── [5.7K] pom.xml
│ │ └── [4.6K] README.md
│ ├── [4.0K] nifi-email-bundle
│ │ ├── [4.0K] nifi-email-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 14K] LICENSE
│ │ │ └── [5.0K] NOTICE
│ │ ├── [4.0K] nifi-email-processors
│ │ │ ├── [4.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] email
│ │ │ │ │ ├── [ 19K] AbstractEmailProcessor.java
│ │ │ │ │ ├── [3.6K] ConsumeIMAP.java
│ │ │ │ │ ├── [2.2K] ConsumePOP3.java
│ │ │ │ │ ├── [9.6K] ExtractEmailAttachments.java
│ │ │ │ │ └── [ 14K] ExtractEmailHeaders.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.email.ConsumeIMAP
│ │ │ │ │ │ └── [1.9K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.email.ConsumePOP3
│ │ │ │ │ └── [1.9K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 981] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] email
│ │ │ ├── [3.5K] GenerateAttachment.java
│ │ │ ├── [5.9K] TestConsumeEmail.java
│ │ │ ├── [4.1K] TestExtractEmailAttachments.java
│ │ │ └── [6.6K] TestExtractEmailHeaders.java
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-enrich-bundle
│ │ ├── [4.0K] nifi-enrich-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [3.4K] NOTICE
│ │ ├── [4.0K] nifi-enrich-processors
│ │ │ ├── [5.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ ├── [6.7K] AbstractEnrichIP.java
│ │ │ │ │ ├── [ 10K] GeoEnrichIP.java
│ │ │ │ │ ├── [ 18K] GeoEnrichIPRecord.java
│ │ │ │ │ └── [7.0K] ISPEnrichIP.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 905] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ ├── [8.8K] GeoEnrichTestUtils.java
│ │ │ │ ├── [ 12K] TestGeoEnrichIP.java
│ │ │ │ ├── [7.6K] TestGeoEnrichIPRecord.java
│ │ │ │ └── [ 13K] TestISPEnrichIP.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] avro
│ │ │ │ └── [ 662] record_schema.avsc
│ │ │ ├── [4.0K] json
│ │ │ │ ├── [ 66] one_record.json
│ │ │ │ ├── [ 53] one_record_no_geo.json
│ │ │ │ └── [ 119] two_records_for_split.json
│ │ │ └── [4.0K] mockito-extensions
│ │ │ └── [ 799] org.mockito.plugins.MockMaker
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] nifi-evtx-bundle
│ │ ├── [4.0K] nifi-evtx-nar
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.3K] NOTICE
│ │ ├── [4.0K] nifi-evtx-processors
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] evtx
│ │ │ │ │ ├── [1.9K] MalformedChunkHandler.java
│ │ │ │ │ ├── [ 14K] ParseEvtx.java
│ │ │ │ │ ├── [4.0K] parser
│ │ │ │ │ │ ├── [8.8K] BinaryReader.java
│ │ │ │ │ │ ├── [2.4K] Block.java
│ │ │ │ │ │ ├── [4.0K] bxml
│ │ │ │ │ │ │ ├── [1.7K] AttributeNode.java
│ │ │ │ │ │ │ ├── [1.1K] BxmlNodeFactory.java
│ │ │ │ │ │ │ ├── [5.3K] BxmlNode.java
│ │ │ │ │ │ │ ├── [2.4K] BxmlNodeWithTokenAndString.java
│ │ │ │ │ │ │ ├── [1.5K] BxmlNodeWithToken.java
│ │ │ │ │ │ │ ├── [2.1K] CDataSectionNode.java
│ │ │ │ │ │ │ ├── [1.7K] CloseElementNode.java
│ │ │ │ │ │ │ ├── [1.6K] CloseEmptyElementNode.java
│ │ │ │ │ │ │ ├── [1.7K] CloseStartElementNode.java
│ │ │ │ │ │ │ ├── [2.2K] ConditionalSubstitutionNode.java
│ │ │ │ │ │ │ ├── [1.6K] EndOfStreamNode.java
│ │ │ │ │ │ │ ├── [1.7K] EntityReferenceNode.java
│ │ │ │ │ │ │ ├── [2.2K] NameStringNode.java
│ │ │ │ │ │ │ ├── [2.1K] NormalSubstitutionNode.java
│ │ │ │ │ │ │ ├── [3.0K] OpenStartElementNode.java
│ │ │ │ │ │ │ ├── [2.1K] ProcessingInstructionDataNode.java
│ │ │ │ │ │ │ ├── [1.7K] ProcessingInstructionTargetNode.java
│ │ │ │ │ │ │ ├── [3.4K] RootNode.java
│ │ │ │ │ │ │ ├── [2.3K] StreamStartNode.java
│ │ │ │ │ │ │ ├── [3.2K] TemplateInstanceNode.java
│ │ │ │ │ │ │ ├── [2.6K] TemplateNode.java
│ │ │ │ │ │ │ ├── [4.0K] value
│ │ │ │ │ │ │ │ ├── [1.8K] BinaryTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.6K] BooleanTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.6K] BXmlTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.6K] DoubleTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.7K] FiletimeTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.6K] FloatTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.5K] GuidTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.5K] Hex32TypeNode.java
│ │ │ │ │ │ │ │ ├── [1.5K] Hex64TypeNode.java
│ │ │ │ │ │ │ │ ├── [1.4K] NullTypeNode.java
│ │ │ │ │ │ │ │ ├── [2.0K] SIDTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.5K] SignedByteTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.6K] SignedDWordTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.6K] SignedQWordTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.5K] SignedWordTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.6K] SizeTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.6K] StringTypeNode.java
│ │ │ │ │ │ │ │ ├── [2.2K] SystemtimeTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.5K] UnsignedByteTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.6K] UnsignedDWordTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.5K] UnsignedQWordTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.5K] UnsignedWordTypeNode.java
│ │ │ │ │ │ │ │ ├── [1.2K] VariantTypeNodeFactory.java
│ │ │ │ │ │ │ │ ├── [1.9K] VariantTypeNode.java
│ │ │ │ │ │ │ │ ├── [2.7K] WStringArrayTypeNode.java
│ │ │ │ │ │ │ │ └── [1.7K] WStringTypeNode.java
│ │ │ │ │ │ │ └── [5.3K] ValueNode.java
│ │ │ │ │ │ ├── [4.0K] BxmlNodeVisitor.java
│ │ │ │ │ │ ├── [7.9K] ChunkHeader.java
│ │ │ │ │ │ ├── [1.1K] FileHeaderFactory.java
│ │ │ │ │ │ ├── [5.5K] FileHeader.java
│ │ │ │ │ │ ├── [1.6K] MalformedChunkException.java
│ │ │ │ │ │ ├── [2.8K] NumberUtil.java
│ │ │ │ │ │ └── [2.6K] Record.java
│ │ │ │ │ ├── [2.1K] ResultProcessor.java
│ │ │ │ │ ├── [1021] RootNodeHandlerFactory.java
│ │ │ │ │ ├── [1.0K] RootNodeHandler.java
│ │ │ │ │ ├── [1.1K] XmlBxmlNodeVisitorFactory.java
│ │ │ │ │ ├── [7.0K] XmlBxmlNodeVisitor.java
│ │ │ │ │ └── [3.0K] XmlRootNodeHandler.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.evtx.ParseEvtx
│ │ │ │ │ └── [3.3K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 827] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] evtx
│ │ │ │ ├── [3.1K] MalformedChunkHandlerTest.java
│ │ │ │ ├── [ 24K] ParseEvtxTest.java
│ │ │ │ ├── [4.0K] parser
│ │ │ │ │ ├── [8.0K] BinaryReaderTest.java
│ │ │ │ │ ├── [4.0K] bxml
│ │ │ │ │ │ ├── [2.7K] AttributeNodeTest.java
│ │ │ │ │ │ ├── [1.5K] BxmlNodeTestBase.java
│ │ │ │ │ │ ├── [1.3K] BxmlNodeWithTokenAndStringTestBase.java
│ │ │ │ │ │ ├── [1.1K] BxmlNodeWithTokenTestBase.java
│ │ │ │ │ │ ├── [2.1K] CDataSectionNodeTest.java
│ │ │ │ │ │ ├── [1.8K] CloseElementNodeTest.java
│ │ │ │ │ │ ├── [2.0K] CloseEmptyElementNodeTest.java
│ │ │ │ │ │ ├── [2.0K] CloseStartElementNodeTest.java
│ │ │ │ │ │ ├── [2.3K] ConditionalSubstitutionNodeTest.java
│ │ │ │ │ │ ├── [2.0K] EndOfStreamNodeTest.java
│ │ │ │ │ │ ├── [2.3K] EntityReferenceNodeTest.java
│ │ │ │ │ │ ├── [2.7K] NameStringNodeTest.java
│ │ │ │ │ │ ├── [2.3K] NormalSubstitutionNodeTest.java
│ │ │ │ │ │ ├── [4.3K] OpenStartElementNodeTest.java
│ │ │ │ │ │ ├── [2.7K] ProcessingInstructionDataNodeTest.java
│ │ │ │ │ │ ├── [2.3K] ProcessingInstructionTargetNodeTest.java
│ │ │ │ │ │ ├── [2.6K] RootNodeTest.java
│ │ │ │ │ │ ├── [2.1K] StreamStartNodeTest.java
│ │ │ │ │ │ ├── [3.9K] TemplateInstanceNodeTest.java
│ │ │ │ │ │ ├── [2.8K] TemplateNodeTest.java
│ │ │ │ │ │ ├── [4.0K] value
│ │ │ │ │ │ │ ├── [2.5K] BinaryTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.6K] BooleanTypeNodeTest.java
│ │ │ │ │ │ │ ├── [2.1K] BXmlTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.4K] DoubleTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.5K] FiletimeTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.4K] FloatTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.3K] GuidTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.5K] Hex32TypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.5K] Hex64TypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.3K] NullTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.5K] SIDTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.3K] SignedByteTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.4K] SignedDWordTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.4K] SignedQWordTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.4K] SignedWordTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.8K] SizeTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.7K] StringTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.7K] SystemtimeTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.4K] UnsignedByteTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.4K] UnsignedDWordTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.4K] UnsignedQWordTypeNodeTest.java
│ │ │ │ │ │ │ ├── [1.4K] UnsignedWordTypeNodeTest.java
│ │ │ │ │ │ │ ├── [2.2K] WStringArrayTypeNodeTest.java
│ │ │ │ │ │ │ └── [1.6K] WStringTypeNodeTest.java
│ │ │ │ │ │ └── [2.3K] ValueNodeTest.java
│ │ │ │ │ ├── [6.3K] ChunkHeaderTest.java
│ │ │ │ │ ├── [3.6K] FileHeaderTest.java
│ │ │ │ │ ├── [2.8K] RecordTest.java
│ │ │ │ │ └── [5.9K] TestBinaryReaderBuilder.java
│ │ │ │ ├── [3.8K] ResultProcessorTest.java
│ │ │ │ ├── [ 12K] XmlBxmlNodeVisitorTest.java
│ │ │ │ └── [2.7K] XmlRootNodeHandlerTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [1.1M] 1344_events.evtx
│ │ │ ├── [1.0M] 3778_events_not_exported.evtx
│ │ │ └── [1.1M] application-logs.evtx
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-extension-utils
│ │ ├── [4.0K] nifi-bin-manager
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processor
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] bin
│ │ │ ├── [ 17K] BinFiles.java
│ │ │ ├── [8.7K] Bin.java
│ │ │ ├── [ 12K] BinManager.java
│ │ │ ├── [2.1K] BinProcessingResult.java
│ │ │ ├── [1.7K] EvictionReason.java
│ │ │ └── [1.7K] InsertionLocation.java
│ │ ├── [4.0K] nifi-conflict-resolution
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] conflict
│ │ │ └── [4.0K] resolution
│ │ │ └── [2.0K] ConflictResolutionStrategy.java
│ │ ├── [4.0K] nifi-database-test-utils
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] db
│ │ │ └── [4.1K] SimpleCommerceDataSet.java
│ │ ├── [4.0K] nifi-database-utils
│ │ │ ├── [4.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [4.0K] db
│ │ │ │ ├── [1.5K] AvroUtil.java
│ │ │ │ ├── [ 48K] JdbcCommon.java
│ │ │ │ ├── [5.6K] JdbcProperties.java
│ │ │ │ └── [1.2K] SensitiveValueWrapper.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] db
│ │ │ ├── [2.0K] JdbcCommonTestUtils.java
│ │ │ ├── [5.8K] TestJdbcClobReadable.java
│ │ │ ├── [5.2K] TestJdbcCommonConvertToAvro.java
│ │ │ ├── [ 40K] TestJdbcCommon.java
│ │ │ ├── [8.4K] TestJdbcHugeStream.java
│ │ │ └── [4.5K] TestJdbcTypesH2.java
│ │ ├── [4.0K] nifi-dbcp-base
│ │ │ ├── [2.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] dbcp
│ │ │ │ ├── [ 12K] AbstractDBCPConnectionPool.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [5.9K] DataSourceConfiguration.java
│ │ │ │ ├── [ 11K] DBCPProperties.java
│ │ │ │ └── [2.0K] DefaultDataSourceValues.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] dbcp
│ │ │ └── [4.3K] AbstractDBCPConnectionPoolTest.java
│ │ ├── [4.0K] nifi-event-listen
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processor
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [4.0K] listen
│ │ │ │ ├── [9.5K] AbstractListenEventBatchingProcessor.java
│ │ │ │ ├── [ 12K] AbstractListenEventProcessor.java
│ │ │ │ ├── [4.0K] dispatcher
│ │ │ │ │ ├── [1.4K] AsyncChannelDispatcher.java
│ │ │ │ │ ├── [1.3K] ByteBufferFactory.java
│ │ │ │ │ ├── [1.8K] ByteBufferPool.java
│ │ │ │ │ ├── [1.5K] ByteBufferSource.java
│ │ │ │ │ ├── [1.8K] ChannelDispatcher.java
│ │ │ │ │ └── [7.4K] DatagramChannelDispatcher.java
│ │ │ │ ├── [4.0K] event
│ │ │ │ │ ├── [1.5K] EventFactory.java
│ │ │ │ │ ├── [1.2K] EventFactoryUtil.java
│ │ │ │ │ ├── [1.5K] Event.java
│ │ │ │ │ ├── [2.4K] EventQueue.java
│ │ │ │ │ ├── [1.3K] NetworkEventFactory.java
│ │ │ │ │ ├── [1.5K] StandardEventFactory.java
│ │ │ │ │ ├── [1.6K] StandardEvent.java
│ │ │ │ │ └── [1.3K] StandardNetworkEventFactory.java
│ │ │ │ ├── [6.1K] EventBatcher.java
│ │ │ │ ├── [1.5K] FlowFileEventBatch.java
│ │ │ │ ├── [7.4K] ListenerProperties.java
│ │ │ │ ├── [4.0K] queue
│ │ │ │ │ └── [2.3K] TrackingLinkedBlockingQueue.java
│ │ │ │ └── [4.0K] response
│ │ │ │ ├── [1.6K] ChannelResponder.java
│ │ │ │ └── [1.0K] ChannelResponse.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processor
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] listen
│ │ │ ├── [4.4K] EventBatcherTest.java
│ │ │ └── [4.0K] queue
│ │ │ └── [2.7K] TrackingLinkedBlockingQueueTest.java
│ │ ├── [4.0K] nifi-event-put
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processor
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] put
│ │ │ └── [ 21K] AbstractPutEventProcessor.java
│ │ ├── [4.0K] nifi-event-transport
│ │ │ ├── [2.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] event
│ │ │ │ └── [4.0K] transport
│ │ │ │ ├── [4.0K] configuration
│ │ │ │ │ ├── [1.0K] BufferAllocator.java
│ │ │ │ │ ├── [ 927] LineEnding.java
│ │ │ │ │ ├── [1.2K] ShutdownQuietPeriod.java
│ │ │ │ │ ├── [1.2K] ShutdownTimeout.java
│ │ │ │ │ └── [ 939] TransportProtocol.java
│ │ │ │ ├── [1.4K] EventDroppedException.java
│ │ │ │ ├── [1.3K] EventException.java
│ │ │ │ ├── [1.0K] EventSenderFactory.java
│ │ │ │ ├── [1.0K] EventSender.java
│ │ │ │ ├── [1.0K] EventServerFactory.java
│ │ │ │ ├── [1.2K] EventServer.java
│ │ │ │ ├── [4.0K] message
│ │ │ │ │ └── [1.7K] ByteArrayMessage.java
│ │ │ │ ├── [4.0K] netty
│ │ │ │ │ ├── [5.3K] ByteArrayMessageNettyEventServerFactory.java
│ │ │ │ │ ├── [1.9K] ByteArrayNettyEventSenderFactory.java
│ │ │ │ │ ├── [4.0K] channel
│ │ │ │ │ │ ├── [3.1K] ByteArrayMessageChannelHandler.java
│ │ │ │ │ │ ├── [2.1K] FilteringByteArrayMessageChannelHandler.java
│ │ │ │ │ │ ├── [1.8K] LogExceptionChannelHandler.java
│ │ │ │ │ │ ├── [4.0K] pool
│ │ │ │ │ │ │ └── [1.8K] InitializingChannelPoolHandler.java
│ │ │ │ │ │ ├── [4.0K] ssl
│ │ │ │ │ │ │ ├── [2.3K] ClientSslStandardChannelInitializer.java
│ │ │ │ │ │ │ └── [3.2K] ServerSslHandlerChannelInitializer.java
│ │ │ │ │ │ └── [3.0K] StandardChannelInitializer.java
│ │ │ │ │ ├── [1.5K] CloseContextIdleStateHandler.java
│ │ │ │ │ ├── [4.0K] codec
│ │ │ │ │ │ ├── [2.1K] DatagramByteArrayMessageDecoder.java
│ │ │ │ │ │ ├── [2.1K] InputStreamMessageEncoder.java
│ │ │ │ │ │ └── [3.9K] SocketByteArrayMessageDecoder.java
│ │ │ │ │ ├── [1.3K] DelimitedInputStream.java
│ │ │ │ │ ├── [2.4K] EventLoopGroupFactory.java
│ │ │ │ │ ├── [1.0K] FilteringStrategy.java
│ │ │ │ │ ├── [8.0K] NettyEventSenderFactory.java
│ │ │ │ │ ├── [4.9K] NettyEventSender.java
│ │ │ │ │ ├── [8.9K] NettyEventServerFactory.java
│ │ │ │ │ ├── [3.6K] NettyEventServer.java
│ │ │ │ │ ├── [2.2K] StreamingNettyEventSenderFactory.java
│ │ │ │ │ └── [2.4K] StringNettyEventSenderFactory.java
│ │ │ │ ├── [1.1K] NetworkEvent.java
│ │ │ │ └── [1.3K] SslSessionStatus.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] event
│ │ │ └── [4.0K] transport
│ │ │ └── [4.0K] netty
│ │ │ ├── [3.0K] NettyEventSenderFactoryTest.java
│ │ │ ├── [2.2K] NettyEventSenderTest.java
│ │ │ ├── [2.1K] NettyEventServerTest.java
│ │ │ └── [9.6K] StringNettyEventSenderFactoryTest.java
│ │ ├── [4.0K] nifi-file-transfer
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processor
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [4.0K] file
│ │ │ │ └── [4.0K] transfer
│ │ │ │ ├── [ 20K] FetchFileTransfer.java
│ │ │ │ ├── [7.7K] FileInfo.java
│ │ │ │ ├── [ 17K] FileTransfer.java
│ │ │ │ ├── [ 14K] GetFileTransfer.java
│ │ │ │ ├── [7.2K] ListFileTransfer.java
│ │ │ │ ├── [1.2K] PermissionDeniedException.java
│ │ │ │ └── [ 14K] PutFileTransfer.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processor
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] file
│ │ │ └── [4.0K] transfer
│ │ │ └── [1.4K] TestFileInfo.java
│ │ ├── [4.0K] nifi-git-flow-registry
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] flow
│ │ │ │ └── [4.0K] git
│ │ │ │ ├── [ 36K] AbstractGitFlowRegistryClient.java
│ │ │ │ ├── [4.0K] client
│ │ │ │ │ ├── [1.2K] GitCommit.java
│ │ │ │ │ ├── [2.9K] GitCreateContentRequest.java
│ │ │ │ │ └── [5.4K] GitRepositoryClient.java
│ │ │ │ └── [4.0K] serialize
│ │ │ │ ├── [1.2K] FlowSnapshotSerializer.java
│ │ │ │ ├── [2.7K] JacksonFlowSnapshotSerializer.java
│ │ │ │ ├── [1.7K] SortedEnumSetSerializer.java
│ │ │ │ ├── [2.7K] SortedStringCollectionsModule.java
│ │ │ │ ├── [3.2K] SortedStringListSerializer.java
│ │ │ │ ├── [1.7K] SortedStringSetSerializer.java
│ │ │ │ ├── [2.4K] VersionedComponentCollectionSerializer.java
│ │ │ │ └── [2.8K] VersionedComponentModule.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] flow
│ │ │ └── [4.0K] git
│ │ │ └── [4.0K] serialize
│ │ │ └── [5.5K] JacksonFlowSnapshotSerializerTest.java
│ │ ├── [4.0K] nifi-hadoop-utils
│ │ │ ├── [4.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] hadoop
│ │ │ │ │ └── [8.2K] SecurityUtil.java
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] hadoop
│ │ │ │ ├── [ 27K] AbstractHadoopProcessor.java
│ │ │ │ ├── [2.7K] CompressionType.java
│ │ │ │ ├── [3.0K] ExtendedConfiguration.java
│ │ │ │ ├── [2.9K] HadoopValidators.java
│ │ │ │ ├── [2.7K] HDFSResourceHelper.java
│ │ │ │ └── [1.9K] HdfsResources.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 504] NOTICE
│ │ ├── [4.0K] nifi-listed-entity
│ │ │ ├── [3.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processor
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [4.0K] list
│ │ │ │ ├── [ 54K] AbstractListProcessor.java
│ │ │ │ ├── [2.5K] EntityListing.java
│ │ │ │ ├── [1.7K] ListableEntity.java
│ │ │ │ ├── [2.0K] ListableEntityWrapper.java
│ │ │ │ ├── [1.4K] ListedEntity.java
│ │ │ │ ├── [ 20K] ListedEntityTracker.java
│ │ │ │ └── [6.5K] ListProcessorTestWatcher.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processor
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] list
│ │ │ └── [ 25K] TestAbstractListProcessor.java
│ │ ├── [4.0K] nifi-migration-utils
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] migration
│ │ │ │ └── [5.8K] ProxyServiceMigration.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] migration
│ │ │ └── [6.1K] ProxyServiceMigrationTest.java
│ │ ├── [4.0K] nifi-put-pattern
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processor
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [4.0K] pattern
│ │ │ │ ├── [1.2K] DiscontinuedException.java
│ │ │ │ ├── [4.8K] ErrorTypes.java
│ │ │ │ ├── [9.7K] ExceptionHandler.java
│ │ │ │ ├── [5.3K] PartialFunctions.java
│ │ │ │ ├── [3.7K] PutGroup.java
│ │ │ │ ├── [ 11K] Put.java
│ │ │ │ ├── [ 11K] RollbackOnFailure.java
│ │ │ │ └── [1.9K] RoutingResult.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processor
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] pattern
│ │ │ ├── [7.2K] TestExceptionHandler.java
│ │ │ └── [5.4K] TestRollbackOnFailure.java
│ │ ├── [4.0K] nifi-record-path-property
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] record
│ │ │ └── [4.0K] path
│ │ │ └── [4.0K] property
│ │ │ └── [4.9K] RecordPathPropertyUtil.java
│ │ ├── [4.0K] nifi-record-utils
│ │ │ ├── [4.0K] nifi-avro-record-utils
│ │ │ │ ├── [4.3K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] avro
│ │ │ │ │ │ ├── [2.0K] AvroSchemaValidator.java
│ │ │ │ │ │ └── [ 54K] AvroTypeUtil.java
│ │ │ │ │ ├── [4.0K] schema
│ │ │ │ │ │ └── [4.0K] access
│ │ │ │ │ │ ├── [2.6K] AvroSchemaTextStrategy.java
│ │ │ │ │ │ ├── [4.1K] InferenceSchemaStrategy.java
│ │ │ │ │ │ ├── [ 11K] SchemaAccessUtils.java
│ │ │ │ │ │ └── [2.5K] WriteAvroSchemaAttributeStrategy.java
│ │ │ │ │ └── [4.0K] serialization
│ │ │ │ │ ├── [4.8K] JsonInferenceSchemaRegistryService.java
│ │ │ │ │ ├── [ 12K] SchemaRegistryRecordSetWriter.java
│ │ │ │ │ └── [8.6K] SchemaRegistryService.java
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] avro
│ │ │ │ │ │ └── [ 60K] TestAvroTypeUtil.java
│ │ │ │ │ └── [4.0K] schema
│ │ │ │ │ └── [4.0K] access
│ │ │ │ │ └── [5.9K] InferenceSchemaStrategyTest.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] avro
│ │ │ │ │ ├── [ 269] data.avro
│ │ │ │ │ ├── [ 631] defaultArrayInRecords1.json
│ │ │ │ │ ├── [ 633] defaultArrayInRecords2.json
│ │ │ │ │ ├── [ 224] defaultArrayValue1.json
│ │ │ │ │ ├── [ 224] defaultArrayValue2.json
│ │ │ │ │ ├── [ 341] schema.json
│ │ │ │ │ └── [ 163] simpleSchema.json
│ │ │ │ ├── [ 314] person.avsc
│ │ │ │ └── [ 246] person-old-schema.avsc
│ │ │ ├── [4.0K] nifi-hadoop-record-utils
│ │ │ │ ├── [3.2K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] hadoop
│ │ │ │ ├── [ 13K] AbstractFetchHDFSRecord.java
│ │ │ │ ├── [ 23K] AbstractPutHDFSRecord.java
│ │ │ │ ├── [4.0K] exception
│ │ │ │ │ ├── [1.2K] FailureException.java
│ │ │ │ │ ├── [1.2K] InvalidSchemaException.java
│ │ │ │ │ └── [1.2K] RecordReaderFactoryException.java
│ │ │ │ └── [4.0K] record
│ │ │ │ ├── [1.1K] HDFSRecordReader.java
│ │ │ │ └── [1.9K] HDFSRecordWriter.java
│ │ │ ├── [4.0K] nifi-json-record-utils
│ │ │ │ ├── [2.3K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] json
│ │ │ │ ├── [ 19K] AbstractJsonRowRecordReader.java
│ │ │ │ ├── [2.4K] JsonParserFactory.java
│ │ │ │ ├── [10.0K] JsonPathRowRecordReader.java
│ │ │ │ ├── [3.1K] JsonRecordSource.java
│ │ │ │ ├── [4.4K] JsonSchemaInference.java
│ │ │ │ ├── [ 12K] JsonTreeRowRecordReader.java
│ │ │ │ ├── [ 902] OutputGrouping.java
│ │ │ │ ├── [1.7K] SchemaApplicationStrategy.java
│ │ │ │ ├── [1.7K] StartingFieldStrategy.java
│ │ │ │ ├── [1.3K] TokenParserFactory.java
│ │ │ │ └── [ 20K] WriteJsonResult.java
│ │ │ ├── [4.0K] nifi-mock-record-utils
│ │ │ │ ├── [2.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] serialization
│ │ │ │ │ └── [4.0K] record
│ │ │ │ │ ├── [2.6K] ArrayListRecordReader.java
│ │ │ │ │ ├── [3.8K] ArrayListRecordWriter.java
│ │ │ │ │ ├── [4.4K] CommaSeparatedRecordReader.java
│ │ │ │ │ ├── [ 939] MockRecordFailureType.java
│ │ │ │ │ ├── [4.5K] MockRecordParser.java
│ │ │ │ │ ├── [7.9K] MockRecordWriter.java
│ │ │ │ │ └── [4.1K] MockSchemaRegistry.java
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] serialization
│ │ │ │ └── [4.0K] record
│ │ │ │ └── [2.5K] TestMockSchemaRegistry.java
│ │ │ ├── [4.0K] nifi-schema-inference-utils
│ │ │ │ ├── [1.7K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] schema
│ │ │ │ └── [4.0K] inference
│ │ │ │ ├── [5.0K] FieldTypeInference.java
│ │ │ │ ├── [ 13K] HierarchicalSchemaInference.java
│ │ │ │ ├── [1.0K] RecordSourceFactory.java
│ │ │ │ ├── [ 965] RecordSource.java
│ │ │ │ ├── [1.0K] SchemaInferenceEngine.java
│ │ │ │ └── [2.6K] TimeValueInference.java
│ │ │ ├── [4.0K] nifi-standard-record-utils
│ │ │ │ ├── [2.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] csv
│ │ │ │ │ │ ├── [ 19K] CSVUtils.java
│ │ │ │ │ │ └── [4.7K] CSVValidators.java
│ │ │ │ │ ├── [ 923] NullSuppression.java
│ │ │ │ │ ├── [4.0K] schema
│ │ │ │ │ │ ├── [4.0K] access
│ │ │ │ │ │ │ ├── [1.6K] InheritSchemaFromRecord.java
│ │ │ │ │ │ │ ├── [1.6K] JsonSchemaAccessStrategy.java
│ │ │ │ │ │ │ ├── [1.6K] NopSchemaAccessWriter.java
│ │ │ │ │ │ │ ├── [1.9K] SchemaAccessStrategy.java
│ │ │ │ │ │ │ ├── [2.5K] SchemaAccessWriter.java
│ │ │ │ │ │ │ ├── [3.1K] SchemaNameAsAttribute.java
│ │ │ │ │ │ │ ├── [4.5K] SchemaNamePropertyStrategy.java
│ │ │ │ │ │ │ ├── [3.8K] SchemaReferenceReaderSchemaAccessStrategy.java
│ │ │ │ │ │ │ └── [2.2K] SchemaReferenceWriterSchemaAccessWriter.java
│ │ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ │ ├── [1.5K] SchemaValidationContext.java
│ │ │ │ │ │ ├── [1.6K] StandardSchemaValidationResult.java
│ │ │ │ │ │ ├── [ 15K] StandardSchemaValidator.java
│ │ │ │ │ │ └── [4.5K] StandardValidationError.java
│ │ │ │ │ └── [4.0K] serialization
│ │ │ │ │ ├── [2.4K] CacheIdSchemaAccessWriter.java
│ │ │ │ │ ├── [1.7K] DateTimeFormatValidator.java
│ │ │ │ │ ├── [3.5K] DateTimeUtils.java
│ │ │ │ │ ├── [1.1K] SplitRecordSetHandlerException.java
│ │ │ │ │ └── [3.5K] SplitRecordSetHandler.java
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] csv
│ │ │ │ │ └── [6.1K] CSVUtilsTest.java
│ │ │ │ ├── [4.0K] schema
│ │ │ │ │ ├── [4.0K] access
│ │ │ │ │ │ ├── [2.1K] AbstractSchemaAccessStrategyTest.java
│ │ │ │ │ │ ├── [1.4K] SchemaIdentifierMatcher.java
│ │ │ │ │ │ ├── [4.0K] TestSchemaNameAsAttribute.java
│ │ │ │ │ │ └── [6.8K] TestSchemaNamePropertyStrategy.java
│ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ └── [ 22K] TestStandardSchemaValidator.java
│ │ │ │ └── [4.0K] serialization
│ │ │ │ └── [9.0K] SplitRecordSetHandlerTest.java
│ │ │ ├── [4.0K] nifi-yaml-record-utils
│ │ │ │ ├── [2.0K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] yaml
│ │ │ │ ├── [2.7K] YamlParserFactory.java
│ │ │ │ └── [2.5K] YamlTreeRowRecordReader.java
│ │ │ └── [1.9K] pom.xml
│ │ ├── [4.0K] nifi-reporting-utils
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] reporting
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ ├── [4.0K] api
│ │ │ │ │ │ ├── [3.0K] MetricBuilder.java
│ │ │ │ │ │ ├── [1.1K] MetricFields.java
│ │ │ │ │ │ └── [3.2K] MetricsBuilder.java
│ │ │ │ │ ├── [2.4K] MetricNames.java
│ │ │ │ │ └── [ 11K] MetricsService.java
│ │ │ │ └── [4.0K] provenance
│ │ │ │ ├── [6.4K] ComponentMapHolder.java
│ │ │ │ ├── [1.2K] ParentProcessGroupSearchNode.java
│ │ │ │ └── [ 16K] ProvenanceEventConsumer.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] reporting
│ │ │ └── [4.0K] util
│ │ │ └── [4.0K] provenance
│ │ │ └── [3.8K] ProvenanceEventConsumerTest.java
│ │ ├── [4.0K] nifi-resource-transfer
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] transfer
│ │ │ │ ├── [2.1K] ResourceTransferProperties.java
│ │ │ │ ├── [1.6K] ResourceTransferSource.java
│ │ │ │ └── [2.8K] ResourceTransferUtils.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] transfer
│ │ │ └── [4.0K] ResourceTransferUtilsTest.java
│ │ ├── [4.0K] nifi-service-utils
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] service
│ │ │ │ └── [4.0K] lookup
│ │ │ │ └── [6.5K] AbstractSingleAttributeBasedControllerServiceLookup.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] service
│ │ │ └── [4.0K] lookup
│ │ │ └── [ 10K] TestAbstractSingleAttributeBasedControllerServiceLookup.java
│ │ ├── [4.0K] nifi-syslog-utils
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] syslog
│ │ │ │ ├── [4.0K] attributes
│ │ │ │ │ ├── [1.9K] Syslog5424Attributes.java
│ │ │ │ │ └── [1.8K] SyslogAttributes.java
│ │ │ │ ├── [4.0K] events
│ │ │ │ │ ├── [3.2K] Syslog5424Event.java
│ │ │ │ │ └── [4.7K] SyslogEvent.java
│ │ │ │ ├── [4.0K] keyproviders
│ │ │ │ │ ├── [2.9K] SimpleKeyProvider.java
│ │ │ │ │ └── [3.0K] SyslogPrefixedKeyProvider.java
│ │ │ │ ├── [4.0K] parsers
│ │ │ │ │ ├── [2.7K] StrictSyslog5424Parser.java
│ │ │ │ │ └── [6.4K] SyslogParser.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [1.3K] NifiStructuredDataPolicy.java
│ │ │ │ └── [1.2K] NilHandlingPolicy.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] syslog
│ │ │ ├── [7.9K] BaseStrictSyslog5424ParserTest.java
│ │ │ ├── [1.1K] StrictSyslog5424ParserDashPolicyTest.java
│ │ │ ├── [1.1K] StrictSyslog5424ParserNullPolicyTest.java
│ │ │ ├── [1.1K] StrictSyslog5424ParserOmitPolicyTest.java
│ │ │ └── [ 10K] TestSyslogParser.java
│ │ └── [2.3K] pom.xml
│ ├── [4.0K] nifi-flow-registry-client-bundle
│ │ ├── [4.0K] nifi-flow-registry-client-nar
│ │ │ └── [1.8K] pom.xml
│ │ ├── [4.0K] nifi-flow-registry-client-services
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] flow
│ │ │ │ ├── [ 17K] NifiRegistryFlowRegistryClient.java
│ │ │ │ └── [7.5K] NifiRegistryUtil.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 841] org.apache.nifi.registry.flow.FlowRegistryClient
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-gcp-bundle
│ │ ├── [4.0K] nifi-gcp-nar
│ │ │ ├── [ 10K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 19K] LICENSE
│ │ │ └── [4.6K] NOTICE
│ │ ├── [4.0K] nifi-gcp-parameter-providers
│ │ │ ├── [1.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] parameter
│ │ │ │ │ └── [4.0K] gcp
│ │ │ │ │ └── [9.9K] GcpSecretManagerParameterProvider.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.parameter.gcp.GcpSecretManagerParameterProvider
│ │ │ │ │ └── [1.9K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 846] org.apache.nifi.parameter.ParameterProvider
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] parameter
│ │ │ │ └── [4.0K] gcp
│ │ │ │ └── [ 10K] TestGcpSecretManagerParameterProvider.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] mockito-extensions
│ │ │ └── [ 798] org.mockito.plugins.MockMaker
│ │ ├── [4.0K] nifi-gcp-processors
│ │ │ ├── [8.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] gcp
│ │ │ │ │ ├── [8.4K] AbstractGCPProcessor.java
│ │ │ │ │ ├── [4.0K] bigquery
│ │ │ │ │ │ ├── [9.4K] AbstractBigQueryProcessor.java
│ │ │ │ │ │ ├── [2.5K] BigQueryAttributes.java
│ │ │ │ │ │ ├── [4.0K] proto
│ │ │ │ │ │ │ └── [5.3K] ProtoUtils.java
│ │ │ │ │ │ └── [ 23K] PutBigQuery.java
│ │ │ │ │ ├── [4.0K] credentials
│ │ │ │ │ │ ├── [4.0K] factory
│ │ │ │ │ │ │ ├── [5.5K] CredentialPropertyDescriptors.java
│ │ │ │ │ │ │ ├── [4.8K] CredentialsFactory.java
│ │ │ │ │ │ │ ├── [2.9K] CredentialsStrategy.java
│ │ │ │ │ │ │ ├── [1.8K] DelegationStrategy.java
│ │ │ │ │ │ │ └── [4.0K] strategies
│ │ │ │ │ │ │ ├── [3.0K] AbstractBooleanCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [3.6K] AbstractCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [2.5K] AbstractServiceAccountCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [2.0K] ComputeEngineCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [2.0K] ExplicitApplicationDefaultCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [1.8K] ImplicitApplicationDefaultCredentialsStrategy.java
│ │ │ │ │ │ │ ├── [2.0K] JsonFileServiceAccountCredentialsStrategy.java
│ │ │ │ │ │ │ └── [1.9K] JsonStringServiceAccountCredentialsStrategy.java
│ │ │ │ │ │ └── [4.0K] service
│ │ │ │ │ │ └── [7.1K] GCPCredentialsControllerService.java
│ │ │ │ │ ├── [4.0K] drive
│ │ │ │ │ │ ├── [ 26K] FetchGoogleDrive.java
│ │ │ │ │ │ ├── [4.8K] GoogleDriveAttributes.java
│ │ │ │ │ │ ├── [ 14K] GoogleDriveFileInfo.java
│ │ │ │ │ │ ├── [7.7K] GoogleDriveTrait.java
│ │ │ │ │ │ ├── [ 20K] ListGoogleDrive.java
│ │ │ │ │ │ └── [ 21K] PutGoogleDrive.java
│ │ │ │ │ ├── [3.3K] ProxyAwareTransportFactory.java
│ │ │ │ │ ├── [4.0K] pubsub
│ │ │ │ │ │ ├── [7.9K] AbstractGCPubSubProcessor.java
│ │ │ │ │ │ ├── [4.0K] consume
│ │ │ │ │ │ │ ├── [9.1K] AbstractPubSubMessageConverter.java
│ │ │ │ │ │ │ ├── [1.8K] OutputStrategy.java
│ │ │ │ │ │ │ ├── [1.7K] ProcessingStrategy.java
│ │ │ │ │ │ │ ├── [1.3K] PubSubMessageConverter.java
│ │ │ │ │ │ │ ├── [1.8K] RecordStreamPubSubMessageConverter.java
│ │ │ │ │ │ │ ├── [4.9K] WrapperRecord.java
│ │ │ │ │ │ │ └── [1.8K] WrapperRecordStreamPubSubMessageConverter.java
│ │ │ │ │ │ ├── [ 23K] ConsumeGCPubSub.java
│ │ │ │ │ │ ├── [4.0K] publish
│ │ │ │ │ │ │ ├── [5.7K] FlowFileResult.java
│ │ │ │ │ │ │ ├── [1.8K] MessageDerivationStrategy.java
│ │ │ │ │ │ │ └── [1.6K] TrackedApiFutureCallback.java
│ │ │ │ │ │ ├── [ 26K] PublishGCPubSub.java
│ │ │ │ │ │ └── [3.4K] PubSubAttributes.java
│ │ │ │ │ ├── [4.0K] storage
│ │ │ │ │ │ ├── [8.1K] AbstractGCSProcessor.java
│ │ │ │ │ │ ├── [5.6K] DeleteGCSObject.java
│ │ │ │ │ │ ├── [ 21K] FetchGCSObject.java
│ │ │ │ │ │ ├── [6.7K] GCSFileResourceService.java
│ │ │ │ │ │ ├── [ 48K] ListGCSBucket.java
│ │ │ │ │ │ ├── [ 29K] PutGCSObject.java
│ │ │ │ │ │ ├── [ 10K] StorageAttributes.java
│ │ │ │ │ │ └── [2.2K] Util.java
│ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ └── [1.8K] GoogleUtils.java
│ │ │ │ │ └── [4.0K] vision
│ │ │ │ │ ├── [3.6K] AbstractGcpVisionProcessor.java
│ │ │ │ │ ├── [5.1K] AbstractGetGcpVisionAnnotateOperationStatus.java
│ │ │ │ │ ├── [5.9K] AbstractStartGcpVisionOperation.java
│ │ │ │ │ ├── [2.0K] GetGcpVisionAnnotateFilesOperationStatus.java
│ │ │ │ │ ├── [2.0K] GetGcpVisionAnnotateImagesOperationStatus.java
│ │ │ │ │ ├── [4.5K] StartGcpVisionAnnotateFilesOperation.java
│ │ │ │ │ └── [4.3K] StartGcpVisionAnnotateImagesOperation.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.gcp.bigquery.PutBigQuery
│ │ │ │ │ │ └── [2.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.gcp.drive.FetchGoogleDrive
│ │ │ │ │ │ └── [2.2K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.gcp.drive.ListGoogleDrive
│ │ │ │ │ │ └── [2.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.gcp.drive.PutGoogleDrive
│ │ │ │ │ │ └── [2.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.gcp.storage.ListGCSBucket
│ │ │ │ │ │ └── [4.8K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.gcp.vision.GetGcpVisionAnnotateFilesOperationStatus
│ │ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.gcp.vision.GetGcpVisionAnnotateImagesOperationStatus
│ │ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.gcp.vision.StartGcpVisionAnnotateFilesOperation
│ │ │ │ │ │ └── [3.9K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.gcp.vision.StartGcpVisionAnnotateImagesOperation
│ │ │ │ │ └── [4.2K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 925] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [1.6K] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] gcp
│ │ │ │ ├── [4.0K] bigquery
│ │ │ │ │ ├── [ 26K] PutBigQueryIT.java
│ │ │ │ │ └── [ 27K] PutBigQueryTest.java
│ │ │ │ ├── [4.0K] credentials
│ │ │ │ │ ├── [4.0K] factory
│ │ │ │ │ │ ├── [6.7K] CredentialsFactoryTest.java
│ │ │ │ │ │ └── [3.1K] MockCredentialsFactoryProcessor.java
│ │ │ │ │ └── [4.0K] service
│ │ │ │ │ ├── [7.1K] GCPCredentialsServiceTest.java
│ │ │ │ │ └── [2.1K] MockCredentialsServiceProcessor.java
│ │ │ │ ├── [4.0K] drive
│ │ │ │ │ ├── [6.4K] AbstractGoogleDriveIT.java
│ │ │ │ │ ├── [4.9K] AbstractGoogleDriveTest.java
│ │ │ │ │ ├── [5.6K] FetchGoogleDriveIT.java
│ │ │ │ │ ├── [ 10K] FetchGoogleDriveTest.java
│ │ │ │ │ ├── [5.5K] ListGoogleDriveIT.java
│ │ │ │ │ ├── [6.4K] ListGoogleDrivePathTest.java
│ │ │ │ │ ├── [8.7K] ListGoogleDriveSimpleTest.java
│ │ │ │ │ ├── [ 16K] ListGoogleDriveTestRunnerTest.java
│ │ │ │ │ ├── [2.6K] OutputChecker.java
│ │ │ │ │ ├── [6.1K] PutGoogleDriveIT.java
│ │ │ │ │ └── [9.0K] PutGoogleDriveTest.java
│ │ │ │ ├── [ 950] GCPIntegrationTests.java
│ │ │ │ ├── [4.0K] pubsub
│ │ │ │ │ ├── [2.1K] AbstractGCPubSubIT.java
│ │ │ │ │ ├── [4.4K] ConsumeGCPubSubIT.java
│ │ │ │ │ ├── [ 12K] ConsumeGCPubSubTest.java
│ │ │ │ │ ├── [3.1K] PublishGCPubSubIT.java
│ │ │ │ │ └── [ 12K] PublishGCPubSubTest.java
│ │ │ │ ├── [4.0K] storage
│ │ │ │ │ ├── [7.5K] AbstractGCSIT.java
│ │ │ │ │ ├── [5.1K] AbstractGCSTest.java
│ │ │ │ │ ├── [3.2K] DeleteGCSObjectIT.java
│ │ │ │ │ ├── [5.6K] DeleteGCSObjectTest.java
│ │ │ │ │ ├── [4.4K] FetchGCSObjectIT.java
│ │ │ │ │ ├── [ 25K] FetchGCSObjectTest.java
│ │ │ │ │ ├── [6.6K] GCSFileResourceServiceTest.java
│ │ │ │ │ ├── [5.2K] ListGCSBucketIT.java
│ │ │ │ │ ├── [ 43K] ListGCSBucketTest.java
│ │ │ │ │ ├── [5.3K] PutGCSObjectIT.java
│ │ │ │ │ ├── [ 23K] PutGCSObjectTest.java
│ │ │ │ │ ├── [1.4K] StorageAttributesTest.java
│ │ │ │ │ └── [1.7K] UtilTest.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ └── [2.1K] MockReadChannel.java
│ │ │ │ └── [4.0K] vision
│ │ │ │ ├── [5.4K] GetGcpVisionAnnotateFilesOperationStatusTest.java
│ │ │ │ ├── [5.5K] GetGcpVisionAnnotateImagesOperationStatusTest.java
│ │ │ │ ├── [4.8K] StartGcpVisionAnnotateFilesOperationTest.java
│ │ │ │ └── [4.5K] StartGcpVisionAnnotateImagesOperationTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] bigquery
│ │ │ │ ├── [ 30] avrodecimal.avro
│ │ │ │ ├── [ 311] avrodecimal.avsc
│ │ │ │ ├── [ 126] avrofloat.avro
│ │ │ │ ├── [ 194] avrofloat.avsc
│ │ │ │ ├── [ 2] avroint.avro
│ │ │ │ ├── [ 190] avroint.avsc
│ │ │ │ ├── [2.8K] schema-correct-data-with-date.avsc
│ │ │ │ ├── [ 582] streaming-bad-data.json
│ │ │ │ ├── [ 591] streaming-correct-data.json
│ │ │ │ ├── [ 826] streaming-correct-data-with-date-formatted.json
│ │ │ │ └── [ 734] streaming-correct-data-with-date.json
│ │ │ ├── [ 237] mock-gcp-application-default-credentials.json
│ │ │ ├── [2.2K] mock-gcp-service-account.json
│ │ │ ├── [4.0K] mockito-extensions
│ │ │ │ └── [ 17] org.mockito.plugins.MockMaker
│ │ │ ├── [4.0K] pubsub
│ │ │ │ ├── [ 374] records.avro
│ │ │ │ └── [ 258] records.json
│ │ │ └── [4.0K] vision
│ │ │ ├── [ 477] annotate-file.json
│ │ │ └── [ 374] annotate-image.json
│ │ ├── [4.0K] nifi-gcp-services-api
│ │ │ ├── [2.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] gcp
│ │ │ └── [4.0K] credentials
│ │ │ └── [4.0K] service
│ │ │ └── [1.9K] GCPCredentialsService.java
│ │ ├── [4.0K] nifi-gcp-services-api-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [2.0K] NOTICE
│ │ └── [2.4K] pom.xml
│ ├── [4.0K] nifi-geohash-bundle
│ │ ├── [4.0K] nifi-geohash-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 11K] LICENSE
│ │ ├── [4.0K] nifi-geohash-processors
│ │ │ ├── [3.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] geohash
│ │ │ │ │ └── [ 24K] GeohashRecord.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.geohash.GeohashRecord
│ │ │ │ │ └── [1.9K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 829] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] geohash
│ │ │ │ └── [8.7K] GeohashRecordTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 101] decode-record.json
│ │ │ ├── [ 210] encode-records-with-illegal-arguments.json
│ │ │ ├── [ 94] encode-records-with-incorrect-format.json
│ │ │ └── [ 353] record_schema.avsc
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-github-bundle
│ │ ├── [4.0K] nifi-github-extensions
│ │ │ ├── [2.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] github
│ │ │ │ │ ├── [1.7K] GitHubAuthenticationType.java
│ │ │ │ │ ├── [6.4K] GitHubFlowRegistryClient.java
│ │ │ │ │ ├── [ 21K] GitHubRepositoryClient.java
│ │ │ │ │ ├── [1.3K] PrivateKeyReader.java
│ │ │ │ │ └── [3.9K] StandardPrivateKeyReader.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 828] org.apache.nifi.registry.flow.FlowRegistryClient
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] github
│ │ │ └── [ 19K] GitHubFlowRegistryClientTest.java
│ │ ├── [4.0K] nifi-github-nar
│ │ │ └── [1.7K] pom.xml
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] nifi-gitlab-bundle
│ │ ├── [4.0K] nifi-gitlab-extensions
│ │ │ ├── [2.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] gitlab
│ │ │ │ ├── [1.5K] GitLabAuthenticationType.java
│ │ │ │ ├── [6.7K] GitLabFlowRegistryClient.java
│ │ │ │ ├── [ 21K] GitLabRepositoryClient.java
│ │ │ │ └── [1.4K] PersonalAccessToken.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 828] org.apache.nifi.registry.flow.FlowRegistryClient
│ │ ├── [4.0K] nifi-gitlab-nar
│ │ │ └── [1.7K] pom.xml
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] nifi-graph-bundle
│ │ ├── [4.0K] nifi-graph-client-service-api
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] graph
│ │ │ ├── [1.5K] GraphClientService.java
│ │ │ ├── [ 966] GraphQueryResultCallback.java
│ │ │ └── [1.0K] TinkerPopClientService.java
│ │ ├── [4.0K] nifi-graph-client-service-api-nar
│ │ │ └── [1.8K] pom.xml
│ │ ├── [4.0K] nifi-graph-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.6K] NOTICE
│ │ ├── [4.0K] nifi-graph-processors
│ │ │ ├── [4.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] graph
│ │ │ │ │ ├── [4.1K] AbstractGraphExecutor.java
│ │ │ │ │ ├── [8.0K] ExecuteGraphQuery.java
│ │ │ │ │ └── [ 15K] ExecuteGraphQueryRecord.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.graph.ExecuteGraphQuery
│ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 888] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] graph
│ │ │ │ ├── [7.7K] ExecuteGraphQueryRecordTest.java
│ │ │ │ ├── [2.1K] MockCypherClientService.java
│ │ │ │ ├── [4.1K] TestExecuteGraphQuery.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [5.5K] InMemoryGraphClient.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 33] testAttributes.json
│ │ │ ├── [ 17] testFlowFileContent.json
│ │ │ └── [ 27] testFlowFileList.json
│ │ ├── [4.0K] nifi-graph-test-clients
│ │ │ ├── [4.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ ├── [4.0K] commons
│ │ │ │ └── [4.0K] lang
│ │ │ │ ├── [2.0K] NotImplementedException.java
│ │ │ │ └── [1.2K] UnhandledException.java
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] graph
│ │ │ └── [3.9K] InMemoryJanusGraphClientService.java
│ │ ├── [4.0K] nifi-neo4j-cypher-service
│ │ │ ├── [5.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] graph
│ │ │ │ │ └── [ 13K] Neo4JCypherClientService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 828] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] graph
│ │ │ ├── [8.8K] ITNeo4JCypherClientServiceSSL.java
│ │ │ └── [7.5K] ITNeo4JCypherExecutorNoSSL.java
│ │ ├── [4.0K] nifi-neo4j-cypher-service-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [5.3K] NOTICE
│ │ ├── [4.0K] nifi-other-graph-services
│ │ │ ├── [4.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] graph
│ │ │ │ │ ├── [4.0K] gremlin
│ │ │ │ │ │ └── [1.4K] SimpleEntry.java
│ │ │ │ │ └── [ 26K] TinkerpopClientService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.graph.TinkerpopClientService
│ │ │ │ │ └── [4.0K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 827] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] graph
│ │ │ │ └── [1.0K] TestableGremlinClientService.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 965] gremlin.yml
│ │ │ ├── [1.4K] setup.gremlin
│ │ │ └── [ 875] teardown.gremlin
│ │ ├── [4.0K] nifi-other-graph-services-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 16K] LICENSE
│ │ │ └── [ 15K] NOTICE
│ │ └── [1.8K] pom.xml
│ ├── [4.0K] nifi-groovyx-bundle
│ │ ├── [4.0K] nifi-groovyx-nar
│ │ │ ├── [2.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 38K] LICENSE
│ │ │ └── [3.5K] NOTICE
│ │ ├── [4.0K] nifi-groovyx-processors
│ │ │ ├── [3.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] groovyx
│ │ │ │ │ ├── [ 27K] ExecuteGroovyScript.java
│ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ ├── [2.8K] GroovyProcessSessionWrap.java
│ │ │ │ │ │ ├── [8.8K] GroovySessionFile.java
│ │ │ │ │ │ ├── [ 47K] ProcessSessionWrap.java
│ │ │ │ │ │ └── [6.2K] SessionFile.java
│ │ │ │ │ ├── [3.2K] GroovyMethods.java
│ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ └── [2.9K] OSql.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [2.4K] Files.java
│ │ │ │ │ └── [6.4K] Throwables.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.groovyx.ExecuteGroovyScript
│ │ │ │ │ └── [ 11K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 836] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] groovyx
│ │ │ │ └── [ 27K] ExecuteGroovyScriptTest.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] groovy
│ │ │ ├── [ 975] test_attributes_passed_to_SQL.groovy
│ │ │ ├── [1022] test_ctl_01_access.groovy
│ │ │ ├── [1.2K] test_no_input.groovy
│ │ │ ├── [1.1K] test_onStart_onStop.groovy
│ │ │ ├── [1.7K] test_onTrigger_changeContent.groovy
│ │ │ ├── [1.4K] test_onTrigger_changeContentX.groovy
│ │ │ ├── [1.1K] test_onTrigger.groovy
│ │ │ ├── [ 916] test_onTriggerX.groovy
│ │ │ ├── [ 948] test_onUnscheduled.groovy
│ │ │ ├── [1.8K] test_record_reader_writer.groovy
│ │ │ ├── [1.3K] test_sql_01_select.groovy
│ │ │ ├── [1.2K] test_sql_02_blob_write.groovy
│ │ │ ├── [1.2K] test_sql_03_blob_read.groovy
│ │ │ ├── [2.0K] test_sql_04_insert_and_json.groovy
│ │ │ └── [ 247] test_sql_04_insert_and_json.json
│ │ └── [2.5K] pom.xml
│ ├── [4.0K] nifi-hadoop-bundle
│ │ ├── [4.0K] nifi-hadoop-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [1.2K] NOTICE
│ │ ├── [4.0K] nifi-hdfs-processors
│ │ │ ├── [6.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ └── [4.0K] resource
│ │ │ │ │ │ └── [4.0K] hadoop
│ │ │ │ │ │ ├── [ 13K] HDFSExternalResourceProvider.java
│ │ │ │ │ │ └── [3.1K] HDFSResourceInputStream.java
│ │ │ │ │ ├── [4.0K] nar
│ │ │ │ │ │ └── [4.0K] hadoop
│ │ │ │ │ │ └── [4.0K] util
│ │ │ │ │ │ └── [1.3K] ExtensionFilter.java
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] hadoop
│ │ │ │ │ ├── [8.4K] CreateHadoopSequenceFile.java
│ │ │ │ │ ├── [ 12K] DeleteHDFS.java
│ │ │ │ │ ├── [ 11K] FetchHDFS.java
│ │ │ │ │ ├── [6.7K] FlowFileStreamUnpackerSequenceFileWriter.java
│ │ │ │ │ ├── [ 40K] GetHDFSFileInfo.java
│ │ │ │ │ ├── [ 25K] GetHDFS.java
│ │ │ │ │ ├── [7.4K] GetHDFSSequenceFile.java
│ │ │ │ │ ├── [4.0K] inotify
│ │ │ │ │ │ ├── [1.0K] EventAttributes.java
│ │ │ │ │ │ ├── [2.2K] EventTypeValidator.java
│ │ │ │ │ │ ├── [ 17K] GetHDFSEvents.java
│ │ │ │ │ │ └── [1.5K] NotificationEventPathFilter.java
│ │ │ │ │ ├── [5.0K] KeyValueReader.java
│ │ │ │ │ ├── [ 19K] ListHDFS.java
│ │ │ │ │ ├── [ 26K] MoveHDFS.java
│ │ │ │ │ ├── [ 31K] PutHDFS.java
│ │ │ │ │ ├── [5.9K] SequenceFileWriterImpl.java
│ │ │ │ │ ├── [2.3K] TarUnpackerSequenceFileWriter.java
│ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ ├── [5.7K] ByteFilteringOutputStream.java
│ │ │ │ │ │ ├── [4.7K] FileStatusIterable.java
│ │ │ │ │ │ ├── [2.1K] FileStatusManager.java
│ │ │ │ │ │ ├── [3.5K] FilterMode.java
│ │ │ │ │ │ ├── [1.2K] GSSExceptionRollbackYieldSessionHandler.java
│ │ │ │ │ │ ├── [4.5K] HDFSListing.java
│ │ │ │ │ │ ├── [2.2K] InputStreamWritable.java
│ │ │ │ │ │ ├── [1.9K] LongSerDe.java
│ │ │ │ │ │ ├── [2.9K] OutputStreamWritable.java
│ │ │ │ │ │ ├── [1.1K] SequenceFileReader.java
│ │ │ │ │ │ ├── [1.9K] SequenceFileWriter.java
│ │ │ │ │ │ ├── [1.7K] StringSerDe.java
│ │ │ │ │ │ └── [4.0K] writer
│ │ │ │ │ │ ├── [4.0K] FlowFileHadoopFileStatusWriter.java
│ │ │ │ │ │ ├── [ 11K] HadoopFileStatusWriter.java
│ │ │ │ │ │ └── [7.7K] RecordHadoopFileStatusWriter.java
│ │ │ │ │ ├── [4.7K] ValueReader.java
│ │ │ │ │ └── [2.2K] ZipUnpackerSequenceFileWriter.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.hadoop.CreateHadoopSequenceFile
│ │ │ │ │ │ └── [3.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.hadoop.ListHDFS
│ │ │ │ │ │ └── [7.8K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.hadoop.PutHDFS
│ │ │ │ │ └── [2.7K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 847] org.apache.nifi.flow.resource.ExternalResourceProvider
│ │ │ │ └── [1.2K] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] nar
│ │ │ │ │ └── [4.0K] hadoop
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [2.9K] ExtensionFilterTest.java
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] hadoop
│ │ │ │ ├── [8.7K] AbstractHadoopTest.java
│ │ │ │ ├── [5.0K] GetHDFSSequenceFileTest.java
│ │ │ │ ├── [ 16K] GetHDFSTest.java
│ │ │ │ ├── [4.0K] inotify
│ │ │ │ │ ├── [4.1K] TestEventTypeValidator.java
│ │ │ │ │ ├── [ 11K] TestGetHDFSEvents.java
│ │ │ │ │ ├── [2.6K] TestNotificationEventPathFilter.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [2.8K] EventTestUtils.java
│ │ │ │ ├── [ 15K] MoveHDFSTest.java
│ │ │ │ ├── [ 41K] PutHDFSTest.java
│ │ │ │ ├── [1.5K] SimpleHadoopProcessor.java
│ │ │ │ ├── [ 15K] TestCreateHadoopSequenceFile.java
│ │ │ │ ├── [ 15K] TestDeleteHDFS.java
│ │ │ │ ├── [ 10K] TestFetchHDFS.java
│ │ │ │ ├── [ 41K] TestGetHDFSFileInfo.java
│ │ │ │ ├── [ 28K] TestListHDFS.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [ 12K] MockFileSystem.java
│ │ │ │ └── [5.3K] TestFileStatusIterator.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [1.1K] core-site-broken.xml
│ │ │ ├── [1.1K] core-site-perms.xml
│ │ │ ├── [1.2K] core-site-security.xml
│ │ │ ├── [1.0K] core-site.xml
│ │ │ ├── [4.0K] testdata
│ │ │ │ ├── [1.4M] 13545312236534130.tar
│ │ │ │ ├── [1.4M] 13545423550275052.zip
│ │ │ │ ├── [1.4M] 13545479542069498.pkg
│ │ │ │ ├── [488K] randombytes-1
│ │ │ │ ├── [488K] randombytes-1.gz
│ │ │ │ ├── [488K] randombytes-2
│ │ │ │ └── [488K] randombytes-3
│ │ │ ├── [4.0K] testdata-avro
│ │ │ │ └── [ 171] input.avro
│ │ │ └── [4.0K] TestGetHDFSFileInfo
│ │ │ ├── [1.9K] testRecursiveGroupAllToAttributes.json
│ │ │ ├── [ 652] testRecursiveGroupDirToAttributes-dir1.json
│ │ │ ├── [ 654] testRecursiveGroupDirToAttributes-dir2.json
│ │ │ ├── [1.0K] testRecursiveGroupDirToAttributes-mydir.json
│ │ │ ├── [ 227] testRecursiveGroupDirToAttributes-regDir2.json
│ │ │ ├── [ 226] testRecursiveGroupDirToAttributes-regDir.json
│ │ │ └── [2.2K] testRunWithPermissionsExceptionContent.json
│ │ └── [4.0K] pom.xml
│ ├── [4.0K] nifi-hadoop-libraries-bundle
│ │ ├── [4.0K] nifi-hadoop-libraries-nar
│ │ │ ├── [9.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 24K] LICENSE
│ │ │ └── [ 14K] NOTICE
│ │ └── [2.4K] pom.xml
│ ├── [4.0K] nifi-hashicorp-vault-bundle
│ │ ├── [4.0K] nifi-hashicorp-vault-client-service
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] vault
│ │ │ │ │ └── [4.0K] hashicorp
│ │ │ │ │ └── [9.4K] StandardHashiCorpVaultClientService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.vault.hashicorp.StandardHashiCorpVaultClientService
│ │ │ │ │ └── [5.9K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 848] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] vault
│ │ │ └── [4.0K] hashicorp
│ │ │ └── [5.5K] TestStandardHashiCorpVaultClientService.java
│ │ ├── [4.0K] nifi-hashicorp-vault-client-service-api
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] vault
│ │ │ └── [4.0K] hashicorp
│ │ │ ├── [5.8K] HashiCorpVaultClientService.java
│ │ │ └── [ 985] VaultAuthenticationMethod.java
│ │ ├── [4.0K] nifi-hashicorp-vault-client-service-api-nar
│ │ │ └── [1.8K] pom.xml
│ │ ├── [4.0K] nifi-hashicorp-vault-nar
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 472] NOTICE
│ │ ├── [4.0K] nifi-hashicorp-vault-parameter-provider
│ │ │ ├── [2.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] vault
│ │ │ │ │ └── [4.0K] hashicorp
│ │ │ │ │ └── [9.0K] HashiCorpVaultParameterProvider.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 845] org.apache.nifi.parameter.ParameterProvider
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] vault
│ │ │ └── [4.0K] hashicorp
│ │ │ └── [7.5K] TestHashiCorpVaultParameterProvider.java
│ │ ├── [4.0K] nifi-hashicorp-vault-parameter-value-provider
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] stateless
│ │ │ │ │ └── [4.0K] parameter
│ │ │ │ │ └── [4.5K] HashiCorpVaultParameterValueProvider.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 854] org.apache.nifi.stateless.parameter.ParameterValueProvider
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] stateless
│ │ │ └── [4.0K] parameter
│ │ │ └── [5.9K] TestHashiCorpVaultParameterValueProvider.java
│ │ └── [1.9K] pom.xml
│ ├── [4.0K] nifi-hazelcast-bundle
│ │ ├── [4.0K] nifi-hazelcast-services
│ │ │ ├── [2.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] hazelcast
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ ├── [4.0K] cache
│ │ │ │ │ │ └── [4.2K] IMapBasedHazelcastCache.java
│ │ │ │ │ ├── [4.0K] cacheclient
│ │ │ │ │ │ └── [ 12K] HazelcastMapCacheClient.java
│ │ │ │ │ └── [4.0K] cachemanager
│ │ │ │ │ ├── [ 14K] EmbeddedHazelcastCacheManager.java
│ │ │ │ │ ├── [7.0K] ExternalHazelcastCacheManager.java
│ │ │ │ │ └── [4.9K] IMapBasedHazelcastCacheManager.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.hazelcast.services.cacheclient.HazelcastMapCacheClient
│ │ │ │ │ │ └── [1.8K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.hazelcast.services.cachemanager.EmbeddedHazelcastCacheManager
│ │ │ │ │ │ └── [3.7K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.hazelcast.services.cachemanager.ExternalHazelcastCacheManager
│ │ │ │ │ └── [1.9K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [1007] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] hazelcast
│ │ │ └── [4.0K] services
│ │ │ ├── [4.0K] cache
│ │ │ │ ├── [2.6K] HashMapHazelcastCache.java
│ │ │ │ └── [4.5K] IMapBasedHazelcastCacheTest.java
│ │ │ ├── [4.0K] cacheclient
│ │ │ │ └── [ 13K] HazelcastMapCacheClientTest.java
│ │ │ ├── [4.0K] cachemanager
│ │ │ │ ├── [3.0K] AbstractHazelcastCacheManagerTest.java
│ │ │ │ ├── [1.7K] EmbeddedHazelcastCacheManagerTest.java
│ │ │ │ ├── [2.5K] ExternalHazelcastCacheManagerTest.java
│ │ │ │ └── [4.5K] TestHazelcastProcessor.java
│ │ │ └── [1.7K] DummyStringSerializer.java
│ │ ├── [4.0K] nifi-hazelcast-services-api
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] hazelcast
│ │ │ └── [4.0K] services
│ │ │ ├── [4.0K] cache
│ │ │ │ └── [5.6K] HazelcastCache.java
│ │ │ └── [4.0K] cachemanager
│ │ │ └── [1.7K] HazelcastCacheManager.java
│ │ ├── [4.0K] nifi-hazelcast-services-api-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 246] NOTICE
│ │ ├── [4.0K] nifi-hazelcast-services-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 495] NOTICE
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] nifi-hl7-bundle
│ │ ├── [4.0K] nifi-hl7-nar
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [1.1K] NOTICE
│ │ ├── [4.0K] nifi-hl7-processors
│ │ │ ├── [4.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] hl7
│ │ │ │ │ ├── [ 17K] ExtractHL7Attributes.java
│ │ │ │ │ └── [9.7K] RouteHL7.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 872] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] hl7
│ │ │ └── [ 19K] TestExtractHL7Attributes.java
│ │ └── [1.4K] pom.xml
│ ├── [4.0K] nifi-hubspot-bundle
│ │ ├── [4.0K] nifi-hubspot-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.4K] NOTICE
│ │ ├── [4.0K] nifi-hubspot-processors
│ │ │ ├── [3.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] hubspot
│ │ │ │ │ ├── [ 20K] GetHubSpot.java
│ │ │ │ │ ├── [4.8K] HubSpotObjectType.java
│ │ │ │ │ └── [1.2K] IncrementalFieldType.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.hubspot.GetHubSpot
│ │ │ │ │ └── [1.8K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 827] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] hubspot
│ │ │ │ └── [ 11K] GetHubSpotTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 771] expected_flowfile_content.json
│ │ │ ├── [ 260] expected_request_body.json
│ │ │ ├── [ 920] simple_response.json
│ │ │ └── [ 36] zero_result.json
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-iotdb-bundle
│ │ ├── [4.0K] nifi-iotdb-nar
│ │ │ └── [1.7K] pom.xml
│ │ ├── [4.0K] nifi-iotdb-processors
│ │ │ ├── [2.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ ├── [ 15K] AbstractIoTDB.java
│ │ │ │ │ ├── [4.0K] model
│ │ │ │ │ │ ├── [3.6K] DatabaseField.java
│ │ │ │ │ │ ├── [2.9K] DatabaseSchema.java
│ │ │ │ │ │ └── [1.2K] ValidationResult.java
│ │ │ │ │ ├── [ 11K] PutIoTDBRecord.java
│ │ │ │ │ └── [8.3K] QueryIoTDBRecord.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 866] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ ├── [ 11K] AbstractIoTDBTest.java
│ │ │ └── [3.1K] PutIoTDBRecordTest.java
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] nifi-jms-bundle
│ │ ├── [4.0K] nifi-jms-cf-service
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] jms
│ │ │ └── [4.0K] cf
│ │ │ ├── [6.9K] AbstractJMSConnectionFactoryProvider.java
│ │ │ ├── [1.9K] CachedJMSConnectionFactoryHandler.java
│ │ │ ├── [1.7K] IJMSConnectionFactoryProvider.java
│ │ │ ├── [1019] JMSConnectionFactoryHandlerDefinition.java
│ │ │ └── [1.1K] JMSConnectionFactoryProviderDefinition.java
│ │ ├── [4.0K] nifi-jms-cf-service-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 541] NOTICE
│ │ ├── [4.0K] nifi-jms-processors
│ │ │ ├── [4.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] jms
│ │ │ │ │ ├── [4.0K] cf
│ │ │ │ │ │ ├── [ 14K] JMSConnectionFactoryHandler.java
│ │ │ │ │ │ ├── [5.7K] JMSConnectionFactoryProperties.java
│ │ │ │ │ │ ├── [4.1K] JMSConnectionFactoryProvider.java
│ │ │ │ │ │ ├── [6.0K] JndiJmsConnectionFactoryHandler.java
│ │ │ │ │ │ ├── [9.0K] JndiJmsConnectionFactoryProperties.java
│ │ │ │ │ │ ├── [3.5K] JndiJmsConnectionFactoryProvider.java
│ │ │ │ │ │ └── [3.7K] Utils.java
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ ├── [ 22K] AbstractJMSProcessor.java
│ │ │ │ │ ├── [ 27K] ConsumeJMS.java
│ │ │ │ │ ├── [4.0K] ioconcept
│ │ │ │ │ │ ├── [4.0K] reader
│ │ │ │ │ │ │ ├── [1.1K] FlowFileReaderCallback.java
│ │ │ │ │ │ │ ├── [1.1K] FlowFileReader.java
│ │ │ │ │ │ │ ├── [ 929] MessageHandler.java
│ │ │ │ │ │ │ ├── [4.0K] record
│ │ │ │ │ │ │ │ ├── [1.3K] ProvenanceEventTemplates.java
│ │ │ │ │ │ │ │ └── [3.5K] RecordSupplier.java
│ │ │ │ │ │ │ └── [3.2K] StateTrackingFlowFileReader.java
│ │ │ │ │ │ └── [4.0K] writer
│ │ │ │ │ │ ├── [ 973] AttributeSource.java
│ │ │ │ │ │ ├── [1.2K] FlowFileWriterCallback.java
│ │ │ │ │ │ ├── [1.1K] FlowFileWriter.java
│ │ │ │ │ │ ├── [ 927] Marshaller.java
│ │ │ │ │ │ └── [4.0K] record
│ │ │ │ │ │ ├── [2.0K] OutputStrategy.java
│ │ │ │ │ │ ├── [4.0K] RecordUtils.java
│ │ │ │ │ │ └── [9.6K] RecordWriter.java
│ │ │ │ │ ├── [ 15K] JMSConsumer.java
│ │ │ │ │ ├── [9.7K] JMSPublisher.java
│ │ │ │ │ ├── [2.4K] JMSWorker.java
│ │ │ │ │ ├── [8.4K] MessageBodyToBytesConverter.java
│ │ │ │ │ └── [ 19K] PublishJMS.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.jms.cf.JMSConnectionFactoryProvider
│ │ │ │ │ │ └── [8.4K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.jms.cf.JndiJmsConnectionFactoryProvider
│ │ │ │ │ │ └── [4.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.jms.processors.ConsumeJMS
│ │ │ │ │ │ └── [3.6K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.jms.processors.PublishJMS
│ │ │ │ │ └── [3.8K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 890] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [ 864] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] jms
│ │ │ │ ├── [4.0K] cf
│ │ │ │ │ ├── [1.7K] JMSConnectionFactoryHandlerForTest.java
│ │ │ │ │ ├── [1.4K] JMSConnectionFactoryProviderForTest.java
│ │ │ │ │ ├── [ 33K] JMSConnectionFactoryProviderTest.java
│ │ │ │ │ └── [5.0K] JndiJmsConnectionFactoryProviderTest.java
│ │ │ │ └── [4.0K] processors
│ │ │ │ ├── [1.6K] CommonTest.java
│ │ │ │ ├── [7.6K] ConnectionFactoryConfigIT.java
│ │ │ │ ├── [5.7K] ConnectionFactoryConfigValidatorTest.java
│ │ │ │ ├── [ 39K] ConsumeJMSIT.java
│ │ │ │ ├── [4.7K] ConsumeJMSManualTest.java
│ │ │ │ ├── [4.0K] helpers
│ │ │ │ │ ├── [2.9K] AssertionUtils.java
│ │ │ │ │ ├── [4.0K] ConnectionFactoryInvocationHandler.java
│ │ │ │ │ ├── [4.0K] ConnectionInvocationHandler.java
│ │ │ │ │ ├── [2.0K] JMSTestUtil.java
│ │ │ │ │ ├── [2.3K] MessageProducerInvocationHandler.java
│ │ │ │ │ └── [3.6K] SessionInvocationHandler.java
│ │ │ │ ├── [ 24K] JMSPublisherConsumerIT.java
│ │ │ │ └── [ 40K] PublishJMSIT.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 0] dummy.conf
│ │ │ ├── [ 0] dummy-lib-2.jar
│ │ │ └── [ 0] dummy-lib.jar
│ │ ├── [4.0K] nifi-jms-processors-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [1.7K] NOTICE
│ │ └── [1.7K] pom.xml
│ ├── [4.0K] nifi-jolt-bundle
│ │ ├── [4.0K] nifi-jolt-nar
│ │ │ ├── [1.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [2.6K] NOTICE
│ │ ├── [4.0K] nifi-jolt-processors
│ │ │ ├── [6.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] jolt
│ │ │ │ │ ├── [ 14K] AbstractJoltTransform.java
│ │ │ │ │ ├── [ 11K] JoltTransformJSON.java
│ │ │ │ │ ├── [ 16K] JoltTransformRecord.java
│ │ │ │ │ └── [1.5K] JsonSourceStrategy.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.jolt.JoltTransformJSON
│ │ │ │ │ └── [1.7K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 883] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ ├── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] jolt
│ │ │ │ │ ├── [ 24K] TestJoltTransformJSON.java
│ │ │ │ │ └── [ 44K] TestJoltTransformRecord.java
│ │ │ │ └── [1.3K] TestCustomJoltTransform.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] specs
│ │ │ │ ├── [ 78] cardrSpec.json
│ │ │ │ ├── [ 492] chainrSpec.json
│ │ │ │ ├── [ 517] chainrSpecWithSingleLineComment.json
│ │ │ │ ├── [ 617] customChainrSpec.json
│ │ │ │ ├── [ 460] defaultrELSpec.json
│ │ │ │ ├── [ 153] defaultrSpec.json
│ │ │ │ ├── [ 63] modifierDefaultSpec.json
│ │ │ │ ├── [ 62] modifierDefineSpec.json
│ │ │ │ ├── [ 94] modifierOverwriteSpec.json
│ │ │ │ ├── [ 39] removrSpec.json
│ │ │ │ └── [ 194] shiftrSpec.json
│ │ │ ├── [4.0K] TestJoltTransformJson
│ │ │ │ ├── [ 142] cardrOutput.json
│ │ │ │ ├── [ 236] chainrOutput.json
│ │ │ │ ├── [ 453] defaultrELOutput.json
│ │ │ │ ├── [ 414] defaultrOutput.json
│ │ │ │ ├── [ 146] input.json
│ │ │ │ ├── [ 146] modifierDefaultOutput.json
│ │ │ │ ├── [ 187] modifierDefineOutput.json
│ │ │ │ ├── [ 182] modifierOverwriteOutput.json
│ │ │ │ ├── [ 103] removrOutput.json
│ │ │ │ ├── [ 105] shiftrOutput.json
│ │ │ │ ├── [ 146] sortrOutput.json
│ │ │ │ └── [1.0K] TestCustomJoltTransform.jar
│ │ │ └── [4.0K] TestJoltTransformRecord
│ │ │ ├── [ 153] cardrOutput.json
│ │ │ ├── [1.6K] cardrOutputSchema.avsc
│ │ │ ├── [ 243] chainrOutput.json
│ │ │ ├── [1.8K] chainrOutputSchema.avsc
│ │ │ ├── [ 479] defaultrELOutput.json
│ │ │ ├── [2.5K] defaultrELOutputSchema.avsc
│ │ │ ├── [ 436] defaultrOutput.json
│ │ │ ├── [2.3K] defaultrOutputSchema.avsc
│ │ │ ├── [ 429] flattenedOutput.json
│ │ │ ├── [ 340] flattenSpec.json
│ │ │ ├── [ 227] input.json
│ │ │ ├── [1.7K] inputSchema.avsc
│ │ │ ├── [ 160] modifierDefaultOutput.json
│ │ │ ├── [ 204] modifierDefineOutput.json
│ │ │ ├── [1.9K] modifierDefineOutputSchema.avsc
│ │ │ ├── [ 186] modifierOverwriteOutput.json
│ │ │ ├── [1.7K] modifierOverwriteOutputSchema.avsc
│ │ │ ├── [ 199] multipleChainrOutput.json
│ │ │ ├── [1.6K] multipleChainrOutputSchema.avsc
│ │ │ ├── [ 518] multipleChainrSpec.json
│ │ │ ├── [ 57] multipleToMultipleChainrOutput.json
│ │ │ ├── [ 934] multipleToMultipleChainrOutputSchema.avsc
│ │ │ ├── [ 184] multipleToMultipleChainrSpec.json
│ │ │ ├── [ 117] removrOutput.json
│ │ │ ├── [1.4K] removrOutputSchema.avsc
│ │ │ ├── [ 103] shiftrOutput.json
│ │ │ ├── [ 233] shiftrOutputMultipleOutputRecords.json
│ │ │ ├── [1.3K] shiftrOutputSchema.avsc
│ │ │ ├── [ 992] shiftrOutputSchemaMultipleOutputRecords.avsc
│ │ │ ├── [ 32] shiftrSpecMultipleOutputRecords.json
│ │ │ ├── [ 160] sortrOutput.json
│ │ │ ├── [1.7K] sortrOutputSchema.avsc
│ │ │ └── [1.0K] TestCustomJoltTransform.jar
│ │ ├── [4.0K] nifi-jolt-transform-json-ui
│ │ │ ├── [6.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] web
│ │ │ │ │ └── [4.0K] standard
│ │ │ │ │ └── [4.0K] api
│ │ │ │ │ ├── [1.3K] AbstractStandardResource.java
│ │ │ │ │ ├── [4.0K] processor
│ │ │ │ │ │ ├── [3.1K] ProcessorResource.java
│ │ │ │ │ │ └── [3.2K] ProcessorWebUtils.java
│ │ │ │ │ └── [4.0K] transformjson
│ │ │ │ │ ├── [4.0K] dto
│ │ │ │ │ │ ├── [2.4K] JoltSpecificationDTO.java
│ │ │ │ │ │ └── [1.4K] ValidationDTO.java
│ │ │ │ │ └── [5.1K] TransformJSONResource.java
│ │ │ │ ├── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ ├── [ 14K] LICENSE
│ │ │ │ │ └── [3.6K] NOTICE
│ │ │ │ └── [4.0K] webapp
│ │ │ │ ├── [4.0K] META-INF
│ │ │ │ │ └── [ 883] nifi-processor-configuration
│ │ │ │ └── [4.0K] WEB-INF
│ │ │ │ └── [2.2K] web.xml
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] web
│ │ │ └── [4.0K] standard
│ │ │ └── [4.0K] api
│ │ │ ├── [4.0K] processor
│ │ │ │ ├── [6.3K] TestProcessorResource.java
│ │ │ │ └── [3.1K] TestProcessorWebUtils.java
│ │ │ └── [4.0K] transformjson
│ │ │ └── [ 13K] TestTransformJSONResource.java
│ │ ├── [4.0K] nifi-jolt-utils
│ │ │ ├── [3.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] jolt
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [2.8K] JoltTransformStrategy.java
│ │ │ │ ├── [4.3K] TransformFactory.java
│ │ │ │ └── [1.6K] TransformUtils.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] jolt
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [6.7K] TestTransformFactory.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] TestTransformFactory
│ │ │ ├── [ 78] cardrSpec.json
│ │ │ ├── [ 492] chainrSpec.json
│ │ │ ├── [ 153] defaultrSpec.json
│ │ │ ├── [ 63] modifierDefaultSpec.json
│ │ │ ├── [ 62] modifierDefineSpec.json
│ │ │ ├── [ 94] modifierOverwriteSpec.json
│ │ │ ├── [ 39] removrSpec.json
│ │ │ ├── [ 194] shiftrSpec.json
│ │ │ └── [1.0K] TestCustomJoltTransform.jar
│ │ └── [2.4K] pom.xml
│ ├── [4.0K] nifi-jslt-bundle
│ │ ├── [4.0K] nifi-jslt-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.3K] NOTICE
│ │ ├── [4.0K] nifi-jslt-processors
│ │ │ ├── [2.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] jslt
│ │ │ │ │ └── [ 19K] JSLTTransformJSON.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 830] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] jslt
│ │ │ │ └── [9.0K] TestJSLTTransformJSON.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 206] arrayOutput.json
│ │ │ ├── [ 165] arrayTransform.json
│ │ │ ├── [ 135] arrayTransformPerObject.json
│ │ │ ├── [ 149] cardinalityOutput.json
│ │ │ ├── [ 165] cardinalityTransform.json
│ │ │ ├── [ 191] dynamicKeyTransform.json
│ │ │ ├── [ 325] dynamicKeyTransformOutput.json
│ │ │ ├── [ 139] expressionLanguageTransform.json
│ │ │ ├── [ 326] inputArray.json
│ │ │ ├── [ 146] input.json
│ │ │ ├── [ 149] inputWithNull.json
│ │ │ ├── [ 99] simpleOutput.json
│ │ │ ├── [ 102] simpleOutputWithNull.json
│ │ │ ├── [ 74] simpleOutputWithoutNull.json
│ │ │ └── [ 139] simpleTransform.json
│ │ └── [1.8K] pom.xml
│ ├── [4.0K] nifi-kafka-bundle
│ │ ├── [4.0K] nifi-kafka-3-integration
│ │ │ ├── [4.8K] pom.xml
│ │ │ ├── [1.1K] README.md
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] kafka
│ │ │ │ └── [4.0K] processors
│ │ │ │ ├── [3.6K] AbstractConsumeKafkaIT.java
│ │ │ │ ├── [6.7K] AbstractKafkaBaseIT.java
│ │ │ │ ├── [ 922] AbstractPublishKafkaIT.java
│ │ │ │ ├── [ 12K] ConsumeKafkaDemarcatorIT.java
│ │ │ │ ├── [8.6K] ConsumeKafkaInjectMetadataRecordIT.java
│ │ │ │ ├── [ 11K] ConsumeKafkaIT.java
│ │ │ │ ├── [4.3K] ConsumeKafkaKeyAttributeIT.java
│ │ │ │ ├── [5.1K] ConsumeKafkaOffsetsIT.java
│ │ │ │ ├── [9.3K] ConsumeKafkaRecordIT.java
│ │ │ │ ├── [1.9K] ConsumeKafkaServiceLifecycleIT.java
│ │ │ │ ├── [4.8K] ConsumeKafkaTombstoneIT.java
│ │ │ │ ├── [8.5K] ConsumeKafkaWrapperRecordIT.java
│ │ │ │ ├── [4.0K] publish
│ │ │ │ │ ├── [4.0K] additional
│ │ │ │ │ │ ├── [5.2K] PublishKafkaContentX1IT.java
│ │ │ │ │ │ ├── [4.6K] PublishKafkaWrapperX1IT.java
│ │ │ │ │ │ ├── [5.0K] PublishKafkaWrapperX2IT.java
│ │ │ │ │ │ ├── [4.7K] PublishKafkaWrapperX3IT.java
│ │ │ │ │ │ ├── [5.0K] PublishKafkaWrapperX4IT.java
│ │ │ │ │ │ ├── [7.3K] PublishKafkaWrapperX5IT.java
│ │ │ │ │ │ └── [1.0K] README.md
│ │ │ │ │ ├── [4.0K] dependency
│ │ │ │ │ │ └── [8.5K] PublishKafkaMultipleFFIT.java
│ │ │ │ │ └── [6.1K] PublishKafkaMultipleFFIT.java
│ │ │ │ ├── [4.0K] PublishKafkaAcksBestEffortIT.java
│ │ │ │ ├── [3.0K] PublishKafkaAcksOneNodeIT.java
│ │ │ │ ├── [7.5K] PublishKafkaAuthSaslPlaintextIT.java
│ │ │ │ ├── [2.9K] PublishKafkaCompressGZIPIT.java
│ │ │ │ ├── [3.6K] PublishKafkaDefaultKeyIT.java
│ │ │ │ ├── [3.7K] PublishKafkaDelimitedIT.java
│ │ │ │ ├── [3.1K] PublishKafkaExpressionKeyIT.java
│ │ │ │ ├── [3.7K] PublishKafkaFailureStrategyIT.java
│ │ │ │ ├── [3.7K] PublishKafkaIT.java
│ │ │ │ ├── [6.2K] PublishKafkaLargePayloadIT.java
│ │ │ │ ├── [3.1K] PublishKafkaOneLargePayloadIT.java
│ │ │ │ ├── [3.0K] PublishKafkaPartitionStrategyIT.java
│ │ │ │ ├── [4.3K] PublishKafkaRecordIT.java
│ │ │ │ ├── [3.4K] PublishKafkaRoundRobinIT.java
│ │ │ │ ├── [4.7K] PublishKafkaSSLIT.java
│ │ │ │ ├── [3.9K] PublishKafkaTombstoneIT.java
│ │ │ │ ├── [3.5K] PublishKafkaTooLargePayloadIT.java
│ │ │ │ ├── [5.3K] PublishKafkaValueRecordIT.java
│ │ │ │ ├── [5.3K] PublishKafkaWrapperRecordIT.java
│ │ │ │ └── [4.9K] PublishKafkaWrapperRecordTombstoneIT.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] kafka
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] publish
│ │ │ │ ├── [4.0K] additional
│ │ │ │ │ ├── [ 89] contentX1.json
│ │ │ │ │ ├── [ 244] wrapperX1.json
│ │ │ │ │ ├── [ 265] wrapperX2.json
│ │ │ │ │ ├── [ 229] wrapperX3.json
│ │ │ │ │ ├── [ 212] wrapperX4.json
│ │ │ │ │ └── [ 245] wrapperX5.json
│ │ │ │ ├── [ 62] ff.json
│ │ │ │ ├── [ 40] ff.not.json
│ │ │ │ ├── [ 357] ffvalue.json
│ │ │ │ ├── [ 822] ffwrapper.json
│ │ │ │ └── [ 282] ffwrapper-tombstone.json
│ │ │ └── [1.1K] simplelogger.properties
│ │ ├── [4.0K] nifi-kafka-3-service
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 835] org.apache.nifi.controller.ControllerService
│ │ ├── [4.0K] nifi-kafka-3-service-nar
│ │ │ └── [1.7K] pom.xml
│ │ ├── [4.0K] nifi-kafka-code-coverage
│ │ │ ├── [3.6K] pom.xml
│ │ │ └── [1.1K] README.md
│ │ ├── [4.0K] nifi-kafka-nar
│ │ │ └── [1.7K] pom.xml
│ │ ├── [4.0K] nifi-kafka-processors
│ │ │ ├── [2.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] kafka
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ └── [5.0K] KafkaUtils.java
│ │ │ │ │ ├── [ 33K] ConsumeKafka.java
│ │ │ │ │ ├── [4.0K] consumer
│ │ │ │ │ │ ├── [4.0K] bundle
│ │ │ │ │ │ │ ├── [2.9K] BundleKey.java
│ │ │ │ │ │ │ ├── [1.7K] BundleValue.java
│ │ │ │ │ │ │ └── [4.8K] ByteRecordBundler.java
│ │ │ │ │ │ ├── [4.0K] convert
│ │ │ │ │ │ │ ├── [ 11K] AbstractRecordStreamKafkaMessageConverter.java
│ │ │ │ │ │ │ ├── [3.5K] FlowFileStreamKafkaMessageConverter.java
│ │ │ │ │ │ │ ├── [1.3K] KafkaMessageConverter.java
│ │ │ │ │ │ │ ├── [3.4K] RecordStreamKafkaMessageConverter.java
│ │ │ │ │ │ │ └── [5.0K] WrapperRecordStreamKafkaMessageConverter.java
│ │ │ │ │ │ ├── [3.0K] OffsetTracker.java
│ │ │ │ │ │ ├── [1.7K] ProcessingStrategy.java
│ │ │ │ │ │ └── [4.0K] wrapper
│ │ │ │ │ │ ├── [5.4K] ConsumeWrapperRecord.java
│ │ │ │ │ │ └── [5.0K] WrapperRecordKeyReader.java
│ │ │ │ │ ├── [4.0K] producer
│ │ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ │ ├── [1.1K] ProducerUtils.java
│ │ │ │ │ │ │ └── [3.5K] PublishKafkaUtil.java
│ │ │ │ │ │ ├── [4.0K] config
│ │ │ │ │ │ │ └── [2.4K] DeliveryGuarantee.java
│ │ │ │ │ │ ├── [4.0K] convert
│ │ │ │ │ │ │ ├── [2.6K] DelimitedStreamKafkaRecordConverter.java
│ │ │ │ │ │ │ ├── [2.8K] FlowFileStreamKafkaRecordConverter.java
│ │ │ │ │ │ │ ├── [1.3K] KafkaRecordConverter.java
│ │ │ │ │ │ │ ├── [5.6K] RecordStreamKafkaRecordConverter.java
│ │ │ │ │ │ │ └── [6.5K] RecordWrapperStreamKafkaRecordConverter.java
│ │ │ │ │ │ ├── [4.0K] header
│ │ │ │ │ │ │ ├── [2.0K] AttributesHeadersFactory.java
│ │ │ │ │ │ │ └── [1.2K] HeadersFactory.java
│ │ │ │ │ │ ├── [4.0K] key
│ │ │ │ │ │ │ ├── [2.1K] AttributeKeyFactory.java
│ │ │ │ │ │ │ ├── [1.1K] KeyFactory.java
│ │ │ │ │ │ │ └── [2.0K] MessageKeyFactory.java
│ │ │ │ │ │ ├── [2.6K] PartitionStrategy.java
│ │ │ │ │ │ ├── [4.0K] value
│ │ │ │ │ │ │ ├── [1.5K] RecordValueFactory.java
│ │ │ │ │ │ │ └── [1.1K] ValueFactory.java
│ │ │ │ │ │ └── [4.0K] wrapper
│ │ │ │ │ │ ├── [7.3K] InjectMetadataRecord.java
│ │ │ │ │ │ ├── [4.3K] RecordFieldConverter.java
│ │ │ │ │ │ ├── [2.2K] RecordMetadataStrategy.java
│ │ │ │ │ │ └── [5.5K] WrapperRecord.java
│ │ │ │ │ └── [ 35K] PublishKafka.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.kafka.processors.ConsumeKafka
│ │ │ │ │ └── [5.7K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 873] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] kafka
│ │ │ └── [4.0K] processors
│ │ │ ├── [5.9K] ConsumeKafkaTest.java
│ │ │ ├── [4.0K] consumer
│ │ │ │ └── [4.0K] convert
│ │ │ │ ├── [5.7K] RecordStreamKafkaMessageConverterTest.java
│ │ │ │ └── [6.2K] WrapperRecordStreamKafkaMessageConverterTest.java
│ │ │ ├── [4.0K] producer
│ │ │ │ ├── [4.0K] convert
│ │ │ │ │ └── [6.4K] KafkaRecordConverterTest.java
│ │ │ │ ├── [4.0K] key
│ │ │ │ │ └── [3.8K] AttributeKeyFactoryTest.java
│ │ │ │ ├── [4.0K] queueIn
│ │ │ │ │ └── [2.6K] PublishKafkaNoFlowFileTest.java
│ │ │ │ └── [4.0K] wrapper
│ │ │ │ └── [5.1K] WrapperRecordTest.java
│ │ │ └── [5.7K] PublishKafkaTest.java
│ │ ├── [4.0K] nifi-kafka-service-api
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] kafka
│ │ │ └── [4.0K] service
│ │ │ └── [4.0K] api
│ │ │ ├── [4.0K] common
│ │ │ │ ├── [1.2K] OffsetSummary.java
│ │ │ │ ├── [1.2K] PartitionState.java
│ │ │ │ ├── [1.1K] ServiceConfiguration.java
│ │ │ │ └── [1.8K] TopicPartitionSummary.java
│ │ │ ├── [4.0K] consumer
│ │ │ │ ├── [1.7K] AutoOffsetReset.java
│ │ │ │ ├── [ 894] ConsumerConfiguration.java
│ │ │ │ ├── [2.0K] KafkaConsumerService.java
│ │ │ │ ├── [2.7K] PollingContext.java
│ │ │ │ └── [2.0K] PollingSummary.java
│ │ │ ├── [4.0K] header
│ │ │ │ └── [1.7K] RecordHeader.java
│ │ │ ├── [1.4K] KafkaConnectionService.java
│ │ │ ├── [4.0K] producer
│ │ │ │ ├── [2.2K] FlowFileResult.java
│ │ │ │ ├── [2.1K] KafkaProducerService.java
│ │ │ │ ├── [1.6K] KafkaRecordPartitioner.java
│ │ │ │ ├── [ 938] PartitionLookup.java
│ │ │ │ ├── [2.3K] ProducerConfiguration.java
│ │ │ │ ├── [1.5K] ProducerRecordMetadata.java
│ │ │ │ ├── [2.0K] PublishContext.java
│ │ │ │ └── [1.3K] RecordSummary.java
│ │ │ └── [4.0K] record
│ │ │ ├── [2.6K] ByteRecord.java
│ │ │ └── [2.2K] KafkaRecord.java
│ │ ├── [4.0K] nifi-kafka-service-api-nar
│ │ │ └── [1.7K] pom.xml
│ │ ├── [4.0K] nifi-kafka-service-aws
│ │ │ ├── [2.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] kafka
│ │ │ │ │ └── [4.0K] service
│ │ │ │ │ └── [4.0K] aws
│ │ │ │ │ └── [2.8K] AmazonMSKConnectionService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 842] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] kafka
│ │ │ └── [4.0K] service
│ │ │ └── [4.0K] aws
│ │ │ └── [1.8K] AmazonMSKConnectionServiceTest.java
│ │ ├── [4.0K] nifi-kafka-service-aws-nar
│ │ │ └── [1.8K] pom.xml
│ │ ├── [4.0K] nifi-kafka-service-shared
│ │ │ ├── [3.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] kafka
│ │ │ │ └── [4.0K] service
│ │ │ │ ├── [4.0K] consumer
│ │ │ │ │ ├── [9.3K] Kafka3ConsumerService.java
│ │ │ │ │ └── [3.7K] Subscription.java
│ │ │ │ ├── [ 23K] Kafka3ConnectionService.java
│ │ │ │ ├── [4.0K] producer
│ │ │ │ │ ├── [6.4K] Kafka3ProducerService.java
│ │ │ │ │ ├── [3.5K] ProducerCallback.java
│ │ │ │ │ └── [4.0K] transaction
│ │ │ │ │ ├── [1.2K] KafkaNonTransactionalProducerWrapper.java
│ │ │ │ │ ├── [5.0K] KafkaProducerWrapper.java
│ │ │ │ │ └── [3.4K] KafkaTransactionalProducerWrapper.java
│ │ │ │ └── [4.0K] security
│ │ │ │ └── [5.9K] OAuthBearerLoginCallbackHandler.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] kafka
│ │ │ │ └── [4.0K] service
│ │ │ │ ├── [ 17K] Kafka3ConnectionServiceBaseIT.java
│ │ │ │ ├── [3.0K] Kafka3ConnectionServiceSaslPlaintextIT.java
│ │ │ │ ├── [4.8K] Kafka3ConnectionServiceSSLIT.java
│ │ │ │ └── [4.7K] KafkaConnectivityIT.java
│ │ │ └── [4.0K] resources
│ │ │ └── [ 983] simplelogger.properties
│ │ ├── [4.0K] nifi-kafka-shared
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] kafka
│ │ │ │ └── [4.0K] shared
│ │ │ │ ├── [4.0K] attribute
│ │ │ │ │ ├── [1.5K] KafkaFlowFileAttribute.java
│ │ │ │ │ └── [1.4K] StandardTransitUriProvider.java
│ │ │ │ ├── [4.0K] component
│ │ │ │ │ └── [7.6K] KafkaClientComponent.java
│ │ │ │ ├── [4.0K] login
│ │ │ │ │ ├── [1.9K] AwsMskIamLoginConfigProvider.java
│ │ │ │ │ ├── [2.3K] DelegatingLoginConfigProvider.java
│ │ │ │ │ ├── [2.3K] KerberosLoginConfigProvider.java
│ │ │ │ │ ├── [2.6K] LoginConfigBuilder.java
│ │ │ │ │ ├── [1.2K] LoginConfigProvider.java
│ │ │ │ │ ├── [2.5K] OAuthBearerLoginConfigProvider.java
│ │ │ │ │ ├── [1.9K] PlainLoginConfigProvider.java
│ │ │ │ │ └── [2.5K] ScramLoginConfigProvider.java
│ │ │ │ ├── [4.0K] property
│ │ │ │ │ ├── [2.0K] FailureStrategy.java
│ │ │ │ │ ├── [1.8K] IsolationLevel.java
│ │ │ │ │ ├── [1.7K] KafkaClientProperty.java
│ │ │ │ │ ├── [1.9K] KeyEncoding.java
│ │ │ │ │ ├── [1.8K] KeyFormat.java
│ │ │ │ │ ├── [2.1K] OutputStrategy.java
│ │ │ │ │ ├── [4.0K] provider
│ │ │ │ │ │ ├── [1.1K] KafkaPropertyNameProvider.java
│ │ │ │ │ │ ├── [1.2K] KafkaPropertyProvider.java
│ │ │ │ │ │ ├── [4.2K] StandardKafkaPropertyNameProvider.java
│ │ │ │ │ │ └── [9.4K] StandardKafkaPropertyProvider.java
│ │ │ │ │ ├── [1.7K] PublishStrategy.java
│ │ │ │ │ ├── [2.8K] SaslMechanism.java
│ │ │ │ │ └── [1001] SecurityProtocol.java
│ │ │ │ ├── [4.0K] transaction
│ │ │ │ │ └── [1.5K] TransactionIdSupplier.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ └── [2.3K] Notifier.java
│ │ │ │ └── [4.0K] validation
│ │ │ │ ├── [2.4K] DynamicPropertyValidator.java
│ │ │ │ └── [9.0K] KafkaClientCustomValidationFunction.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] kafka
│ │ │ └── [4.0K] shared
│ │ │ ├── [4.0K] login
│ │ │ │ ├── [2.6K] DelegatingLoginConfigProviderTest.java
│ │ │ │ └── [1.5K] LoginConfigBuilderTest.java
│ │ │ ├── [4.0K] property
│ │ │ │ └── [4.0K] provider
│ │ │ │ └── [3.4K] StandardKafkaPropertyProviderTest.java
│ │ │ └── [4.0K] validation
│ │ │ └── [6.5K] KafkaClientCustomValidationFunctionTest.java
│ │ └── [2.7K] pom.xml
│ ├── [4.0K] nifi-media-bundle
│ │ ├── [4.0K] nifi-media-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 39K] LICENSE
│ │ │ └── [ 12K] NOTICE
│ │ ├── [4.0K] nifi-media-processors
│ │ │ ├── [2.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ ├── [4.0K] document
│ │ │ │ │ │ └── [3.8K] ExtractDocumentText.java
│ │ │ │ │ ├── [4.0K] image
│ │ │ │ │ │ ├── [6.2K] ExtractImageMetadata.java
│ │ │ │ │ │ └── [ 11K] ResizeImage.java
│ │ │ │ │ └── [4.0K] media
│ │ │ │ │ └── [ 11K] ExtractMediaMetadata.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 990] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ ├── [4.0K] document
│ │ │ │ │ └── [3.5K] ExtractDocumentTextTest.java
│ │ │ │ ├── [4.0K] image
│ │ │ │ │ ├── [7.8K] ExtractImageMetadataTest.java
│ │ │ │ │ └── [8.6K] TestResizeImage.java
│ │ │ │ └── [4.0K] media
│ │ │ │ └── [ 18K] TestExtractMediaMetadata.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 198] 16color-10x10.bmp
│ │ │ ├── [ 124] mspaint-8x10.png
│ │ │ ├── [ 91] notImage.txt
│ │ │ ├── [928K] peppers.jpg
│ │ │ ├── [1.2K] photoshop-8x12-32colors-alpha.gif
│ │ │ ├── [ 24K] simple.doc
│ │ │ ├── [ 15K] simple.docx
│ │ │ ├── [ 25K] simple.jpg
│ │ │ ├── [3.0K] simple.pdf
│ │ │ ├── [ 38K] testMP3id3v1.mp3
│ │ │ ├── [4.1K] testVORBIS-corrupt.ogg
│ │ │ ├── [4.1K] testVORBIS.ogg
│ │ │ ├── [3.8K] testWAV.wav
│ │ │ ├── [217K] textFileBig.txt
│ │ │ └── [ 79] textFile.txt
│ │ └── [2.6K] pom.xml
│ ├── [4.0K] nifi-mongodb-bundle
│ │ ├── [4.0K] nifi-mongodb-client-service-api
│ │ │ ├── [2.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] mongodb
│ │ │ └── [6.3K] MongoDBClientService.java
│ │ ├── [4.0K] nifi-mongodb-client-service-api-nar
│ │ │ └── [1.8K] pom.xml
│ │ ├── [4.0K] nifi-mongodb-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [1.7K] NOTICE
│ │ ├── [4.0K] nifi-mongodb-processors
│ │ │ ├── [5.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] mongodb
│ │ │ │ │ ├── [ 13K] AbstractMongoProcessor.java
│ │ │ │ │ ├── [6.8K] AbstractMongoQueryProcessor.java
│ │ │ │ │ ├── [7.2K] DeleteMongo.java
│ │ │ │ │ ├── [ 11K] GetMongo.java
│ │ │ │ │ ├── [8.2K] GetMongoRecord.java
│ │ │ │ │ ├── [4.0K] gridfs
│ │ │ │ │ │ ├── [6.0K] AbstractGridFSProcessor.java
│ │ │ │ │ │ ├── [6.7K] DeleteGridFS.java
│ │ │ │ │ │ ├── [8.5K] FetchGridFS.java
│ │ │ │ │ │ └── [ 11K] PutGridFS.java
│ │ │ │ │ ├── [1.8K] ObjectIdSerializer.java
│ │ │ │ │ ├── [ 12K] PutMongoBulkOperations.java
│ │ │ │ │ ├── [ 15K] PutMongo.java
│ │ │ │ │ ├── [ 15K] PutMongoRecord.java
│ │ │ │ │ ├── [3.2K] QueryHelper.java
│ │ │ │ │ └── [8.3K] RunMongoAggregation.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.mongodb.DeleteMongo
│ │ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.mongodb.GetMongo
│ │ │ │ │ │ └── [2.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.mongodb.GetMongoRecord
│ │ │ │ │ │ └── [2.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.mongodb.gridfs.DeleteGridFS
│ │ │ │ │ │ └── [1.1K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.mongodb.gridfs.FetchGridFS
│ │ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.mongodb.gridfs.PutGridFS
│ │ │ │ │ │ └── [2.2K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.mongodb.PutMongo
│ │ │ │ │ │ └── [2.9K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.mongodb.PutMongoBulkOperation
│ │ │ │ │ │ └── [1.7K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.mongodb.RunMongoAggregation
│ │ │ │ │ └── [1.1K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [1.3K] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] mongodb
│ │ │ ├── [1.3K] AbstractMongoIT.java
│ │ │ ├── [4.5K] DeleteMongoIT.java
│ │ │ ├── [ 23K] GetMongoIT.java
│ │ │ ├── [4.0K] gridfs
│ │ │ │ ├── [4.0K] DeleteGridFSIT.java
│ │ │ │ ├── [7.3K] FetchGridFSIT.java
│ │ │ │ ├── [4.4K] GridFSITTestBase.java
│ │ │ │ └── [6.4K] PutGridFSIT.java
│ │ │ ├── [3.4K] MongoWriteTestBase.java
│ │ │ ├── [8.1K] PutMongoBulkOperationsIT.java
│ │ │ ├── [ 28K] PutMongoIT.java
│ │ │ ├── [ 21K] PutMongoRecordIT.java
│ │ │ ├── [2.9K] PutMongoTest.java
│ │ │ └── [ 11K] RunMongoAggregationIT.java
│ │ ├── [4.0K] nifi-mongodb-services
│ │ │ ├── [5.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] mongodb
│ │ │ │ │ ├── [9.9K] MongoDBControllerService.java
│ │ │ │ │ └── [ 10K] MongoDBLookupService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 874] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] mongodb
│ │ │ │ ├── [1.3K] AbstractMongoIT.java
│ │ │ │ ├── [3.7K] MongoDBControllerServiceIT.java
│ │ │ │ ├── [ 11K] MongoDBLookupServiceIT.java
│ │ │ │ ├── [1.9K] StubSchemaRegistry.java
│ │ │ │ ├── [1.8K] TestControllerServiceProcessor.java
│ │ │ │ └── [1.8K] TestLookupServiceProcessor.java
│ │ │ └── [4.0K] resources
│ │ │ └── [ 119] simple.avsc
│ │ ├── [4.0K] nifi-mongodb-services-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.6K] NOTICE
│ │ └── [1.8K] pom.xml
│ ├── [4.0K] nifi-mqtt-bundle
│ │ ├── [4.0K] nifi-mqtt-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [ 13K] NOTICE
│ │ ├── [4.0K] nifi-mqtt-processors
│ │ │ ├── [3.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] mqtt
│ │ │ │ │ ├── [4.0K] adapters
│ │ │ │ │ │ ├── [10.0K] HiveMqV5ClientAdapter.java
│ │ │ │ │ │ └── [ 10K] PahoMqttClientAdapter.java
│ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ ├── [ 21K] AbstractMQTTProcessor.java
│ │ │ │ │ │ ├── [2.4K] MqttClientFactory.java
│ │ │ │ │ │ ├── [2.3K] MqttClient.java
│ │ │ │ │ │ ├── [5.4K] MqttClientProperties.java
│ │ │ │ │ │ ├── [4.5K] MqttConstants.java
│ │ │ │ │ │ ├── [1.1K] MqttException.java
│ │ │ │ │ │ ├── [ 920] MqttProtocolScheme.java
│ │ │ │ │ │ ├── [1.8K] MqttVersion.java
│ │ │ │ │ │ ├── [1.0K] ReceivedMqttMessageHandler.java
│ │ │ │ │ │ ├── [1.2K] ReceivedMqttMessage.java
│ │ │ │ │ │ └── [1.3K] StandardMqttMessage.java
│ │ │ │ │ ├── [ 32K] ConsumeMQTT.java
│ │ │ │ │ └── [ 19K] PublishMQTT.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.mqtt.ConsumeMQTT
│ │ │ │ │ └── [1.7K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 869] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] mqtt
│ │ │ ├── [4.0K] common
│ │ │ │ ├── [2.5K] MqttTestClient.java
│ │ │ │ └── [2.0K] MqttTestUtil.java
│ │ │ ├── [ 36K] TestConsumeMQTT.java
│ │ │ └── [ 24K] TestPublishMQTT.java
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-network-bundle
│ │ ├── [4.0K] nifi-network-processors
│ │ │ ├── [2.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] network
│ │ │ │ │ ├── [ 12K] ParseNetflowv5.java
│ │ │ │ │ └── [4.0K] pcap
│ │ │ │ │ ├── [1.7K] ByteBufferReader.java
│ │ │ │ │ ├── [4.3K] Packet.java
│ │ │ │ │ ├── [2.4K] PCAPHeader.java
│ │ │ │ │ ├── [4.7K] PCAP.java
│ │ │ │ │ └── [ 12K] SplitPCAP.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.network.ParseNetflowv5
│ │ │ │ │ └── [1.9K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 880] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] network
│ │ │ ├── [4.0K] pcap
│ │ │ │ ├── [3.9K] TestPCAP.java
│ │ │ │ └── [4.4K] TestSplitPCAP.java
│ │ │ └── [7.2K] TestParseNetflowv5.java
│ │ ├── [4.0K] nifi-network-processors-nar
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.3K] NOTICE
│ │ ├── [4.0K] nifi-network-utils
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] network
│ │ │ │ └── [4.0K] parser
│ │ │ │ ├── [6.5K] Netflowv5Parser.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [2.2K] ConversionUtil.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] network
│ │ │ └── [4.3K] TestNetflowv5Parser.java
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] nifi-opentelemetry-bundle
│ │ ├── [4.0K] nifi-opentelemetry-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 12K] NOTICE
│ │ ├── [4.0K] nifi-opentelemetry-processors
│ │ │ ├── [4.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] opentelemetry
│ │ │ │ │ ├── [4.0K] encoding
│ │ │ │ │ │ ├── [3.8K] ByteStringFieldDeserializer.java
│ │ │ │ │ │ ├── [1.2K] HexadecimalByteStringField.java
│ │ │ │ │ │ ├── [1.5K] HexadecimalMessageType.java
│ │ │ │ │ │ ├── [1.9K] JsonServiceRequestReader.java
│ │ │ │ │ │ ├── [3.1K] ProtobufServiceRequestReader.java
│ │ │ │ │ │ ├── [1.8K] RequestMapper.java
│ │ │ │ │ │ ├── [1.5K] ResponseBodyWriter.java
│ │ │ │ │ │ ├── [1.3K] ServiceRequestReader.java
│ │ │ │ │ │ ├── [2.8K] StandardMessageDeserializerFactory.java
│ │ │ │ │ │ ├── [2.3K] StandardProtobufModule.java
│ │ │ │ │ │ ├── [2.5K] StandardRequestMapper.java
│ │ │ │ │ │ ├── [5.9K] StandardResponseBodyWriter.java
│ │ │ │ │ │ └── [3.0K] TelemetryMessageSerializer.java
│ │ │ │ │ ├── [4.0K] io
│ │ │ │ │ │ ├── [1.3K] RequestCallback.java
│ │ │ │ │ │ ├── [5.3K] RequestCallbackProvider.java
│ │ │ │ │ │ ├── [1.6K] RequestContentListener.java
│ │ │ │ │ │ ├── [5.4K] StandardRequestCallback.java
│ │ │ │ │ │ └── [ 12K] StandardRequestContentListener.java
│ │ │ │ │ ├── [ 11K] ListenOTLP.java
│ │ │ │ │ ├── [4.0K] protocol
│ │ │ │ │ │ ├── [1.3K] GrpcHeader.java
│ │ │ │ │ │ ├── [1.2K] GrpcStatusCode.java
│ │ │ │ │ │ ├── [1.5K] ServiceRequestDescription.java
│ │ │ │ │ │ ├── [1.7K] ServiceResponse.java
│ │ │ │ │ │ ├── [1.2K] ServiceResponseStatus.java
│ │ │ │ │ │ ├── [2.3K] StandardServiceRequestDescription.java
│ │ │ │ │ │ ├── [1.2K] TelemetryAttributeName.java
│ │ │ │ │ │ ├── [1.2K] TelemetryContentEncoding.java
│ │ │ │ │ │ ├── [1.3K] TelemetryContentType.java
│ │ │ │ │ │ └── [1.7K] TelemetryRequestType.java
│ │ │ │ │ └── [4.0K] server
│ │ │ │ │ ├── [6.2K] HttpProtocolNegotiationHandler.java
│ │ │ │ │ ├── [ 13K] HttpRequestHandler.java
│ │ │ │ │ └── [3.4K] HttpServerFactory.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 833] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] opentelemetry
│ │ │ ├── [4.0K] encoding
│ │ │ │ └── [5.5K] StandardRequestMapperTest.java
│ │ │ └── [ 22K] ListenOTLPTest.java
│ │ └── [2.1K] pom.xml
│ ├── [4.0K] nifi-parquet-bundle
│ │ ├── [4.0K] nifi-parquet-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [4.0K] NOTICE
│ │ ├── [4.0K] nifi-parquet-processors
│ │ │ ├── [5.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] parquet
│ │ │ │ │ │ ├── [4.0K] filter
│ │ │ │ │ │ │ └── [1.7K] OffsetRecordFilter.java
│ │ │ │ │ │ ├── [4.0K] hadoop
│ │ │ │ │ │ │ ├── [2.8K] AvroParquetHDFSRecordReader.java
│ │ │ │ │ │ │ └── [1.9K] AvroParquetHDFSRecordWriter.java
│ │ │ │ │ │ ├── [2.8K] ParquetReader.java
│ │ │ │ │ │ ├── [7.1K] ParquetRecordSetWriter.java
│ │ │ │ │ │ ├── [4.0K] record
│ │ │ │ │ │ │ ├── [5.5K] ParquetRecordReader.java
│ │ │ │ │ │ │ └── [3.4K] WriteParquetResult.java
│ │ │ │ │ │ ├── [4.0K] stream
│ │ │ │ │ │ │ ├── [1.8K] NifiOutputStream.java
│ │ │ │ │ │ │ ├── [1.8K] NifiParquetInputFile.java
│ │ │ │ │ │ │ ├── [1.6K] NifiParquetOutputFile.java
│ │ │ │ │ │ │ └── [2.2K] NifiSeekableInputStream.java
│ │ │ │ │ │ └── [4.0K] utils
│ │ │ │ │ │ ├── [1.2K] ParquetAttribute.java
│ │ │ │ │ │ ├── [4.3K] ParquetConfig.java
│ │ │ │ │ │ └── [ 15K] ParquetUtils.java
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] parquet
│ │ │ │ │ ├── [9.0K] CalculateParquetOffsets.java
│ │ │ │ │ ├── [7.0K] CalculateParquetRowGroupOffsets.java
│ │ │ │ │ ├── [8.1K] ConvertAvroToParquet.java
│ │ │ │ │ ├── [5.5K] FetchParquet.java
│ │ │ │ │ └── [7.1K] PutParquet.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 866] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [1.0K] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] parquet
│ │ │ │ │ ├── [3.6K] ParquetTestUtils.java
│ │ │ │ │ ├── [4.1K] TestParquetProcessor.java
│ │ │ │ │ ├── [ 11K] TestParquetReader.java
│ │ │ │ │ └── [7.5K] TestParquetRecordSetWriter.java
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] parquet
│ │ │ │ ├── [ 15K] CalculateParquetOffsetsTest.java
│ │ │ │ ├── [6.5K] CalculateParquetRowGroupOffsetsTest.java
│ │ │ │ ├── [ 29K] FetchParquetTest.java
│ │ │ │ ├── [ 28K] PutParquetTest.java
│ │ │ │ └── [9.6K] TestConvertAvroToParquet.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] avro
│ │ │ │ ├── [ 884] all-minus-enum.avsc
│ │ │ │ ├── [ 244] user.avsc
│ │ │ │ ├── [ 291] user-with-array.avsc
│ │ │ │ ├── [ 262] user-with-fixed-decimal.avsc
│ │ │ │ └── [ 304] user-with-nullable-array.avsc
│ │ │ ├── [1.0K] core-site.xml
│ │ │ ├── [ 995] TestParquetReader.parquet
│ │ │ └── [1.1K] TestParquetReaderWithArray.parquet
│ │ └── [2.0K] pom.xml
│ ├── [4.0K] nifi-pgp-bundle
│ │ ├── [4.0K] nifi-pgp-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 11K] LICENSE
│ │ ├── [4.0K] nifi-pgp-processors
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] pgp
│ │ │ │ │ ├── [4.0K] attributes
│ │ │ │ │ │ ├── [ 926] BlockCipher.java
│ │ │ │ │ │ ├── [1.3K] CompressionAlgorithm.java
│ │ │ │ │ │ ├── [1.3K] DecryptionStrategy.java
│ │ │ │ │ │ ├── [ 951] FileEncoding.java
│ │ │ │ │ │ ├── [1.2K] HashAlgorithm.java
│ │ │ │ │ │ ├── [1.3K] SigningStrategy.java
│ │ │ │ │ │ └── [1.7K] SymmetricKeyAlgorithm.java
│ │ │ │ │ ├── [ 24K] DecryptContentPGP.java
│ │ │ │ │ ├── [ 20K] EncryptContentPGP.java
│ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ ├── [1.2K] PGPDecryptionException.java
│ │ │ │ │ │ ├── [1.2K] PGPEncryptionException.java
│ │ │ │ │ │ └── [1.3K] PGPProcessException.java
│ │ │ │ │ ├── [4.0K] io
│ │ │ │ │ │ └── [5.8K] EncodingStreamCallback.java
│ │ │ │ │ ├── [2.1K] PGPAttributeKey.java
│ │ │ │ │ ├── [ 20K] SignContentPGP.java
│ │ │ │ │ └── [ 16K] VerifyContentPGP.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 973] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] pgp
│ │ │ ├── [ 21K] DecryptContentPGPTest.java
│ │ │ ├── [ 18K] EncryptContentPGPTest.java
│ │ │ ├── [4.0K] io
│ │ │ │ └── [4.9K] EncodingStreamCallbackTest.java
│ │ │ ├── [ 12K] SignContentPGPTest.java
│ │ │ └── [7.8K] VerifyContentPGPTest.java
│ │ ├── [4.0K] nifi-pgp-service
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] pgp
│ │ │ │ │ └── [4.0K] service
│ │ │ │ │ └── [4.0K] standard
│ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ └── [1.1K] PGPConfigurationException.java
│ │ │ │ │ ├── [ 12K] StandardPGPPrivateKeyService.java
│ │ │ │ │ └── [ 10K] StandardPGPPublicKeyService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 911] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apche
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] pgp
│ │ │ └── [4.0K] service
│ │ │ └── [4.0K] standard
│ │ │ ├── [6.8K] StandardPGPPrivateKeyServiceTest.java
│ │ │ └── [5.5K] StandardPGPPublicKeyServiceTest.java
│ │ ├── [4.0K] nifi-pgp-service-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] pgp
│ │ │ │ └── [4.0K] service
│ │ │ │ └── [4.0K] api
│ │ │ │ ├── [1.7K] KeyIdentifierConverter.java
│ │ │ │ ├── [1.3K] PGPPrivateKeyService.java
│ │ │ │ └── [1.4K] PGPPublicKeyService.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] pgp
│ │ │ └── [4.0K] service
│ │ │ └── [4.0K] api
│ │ │ └── [1.7K] KeyIdentifierConverterTest.java
│ │ ├── [4.0K] nifi-pgp-service-api-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 13K] LICENSE
│ │ ├── [4.0K] nifi-pgp-service-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 11K] LICENSE
│ │ ├── [4.0K] nifi-pgp-test-utils
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] pgp
│ │ │ └── [4.0K] util
│ │ │ ├── [2.3K] PGPFileUtils.java
│ │ │ ├── [5.2K] PGPOperationUtils.java
│ │ │ └── [6.4K] PGPSecretKeyGenerator.java
│ │ └── [1.7K] pom.xml
│ ├── [4.0K] nifi-poi-bundle
│ │ ├── [4.0K] nifi-poi-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.5K] NOTICE
│ │ ├── [4.0K] nifi-poi-services
│ │ │ ├── [3.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] excel
│ │ │ │ │ │ ├── [1.7K] CellFieldTypeReader.java
│ │ │ │ │ │ ├── [ 13K] ExcelReader.java
│ │ │ │ │ │ ├── [4.5K] ExcelRecordReaderConfiguration.java
│ │ │ │ │ │ ├── [8.8K] ExcelRecordReader.java
│ │ │ │ │ │ ├── [2.7K] ExcelRecordSource.java
│ │ │ │ │ │ ├── [3.0K] ExcelSchemaInference.java
│ │ │ │ │ │ ├── [7.4K] ExcelStartingRowSchemaInference.java
│ │ │ │ │ │ ├── [1.1K] ExcelUtils.java
│ │ │ │ │ │ ├── [1.4K] InputFileType.java
│ │ │ │ │ │ ├── [1.5K] ProtectionType.java
│ │ │ │ │ │ ├── [1.7K] RowEvaluationStrategy.java
│ │ │ │ │ │ ├── [5.3K] RowIterator.java
│ │ │ │ │ │ └── [6.5K] StandardCellFieldTypeReader.java
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] excel
│ │ │ │ │ └── [ 13K] SplitExcel.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.excel.ExcelReader
│ │ │ │ │ └── [ 13K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 816] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [ 826] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] excel
│ │ │ │ │ ├── [ 20K] TestExcelRecordReader.java
│ │ │ │ │ ├── [ 10K] TestExcelSchemaInference.java
│ │ │ │ │ ├── [ 15K] TestExcelStartingRowSchemaInference.java
│ │ │ │ │ └── [8.7K] TestStandardCellFieldTypeReader.java
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] excel
│ │ │ │ └── [ 14K] TestSplitExcel.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] excel
│ │ │ ├── [ 16K] collegeScorecard.xlsx
│ │ │ ├── [5.8K] dataformatting.xlsx
│ │ │ ├── [ 14K] dataWithSharedFormula.xlsx
│ │ │ ├── [4.5K] dates.xlsx
│ │ │ ├── [ 11K] hyperlinks.xlsx
│ │ │ ├── [ 40] notExcel.txt
│ │ │ ├── [4.5K] numbers.xlsx
│ │ │ ├── [5.5K] olderFormat.xls
│ │ │ ├── [7.3K] sheetsWithEmptySheet.xlsx
│ │ │ ├── [5.2K] simpleDataFormatting.xlsx
│ │ │ └── [8.8K] twoSheets.xlsx
│ │ └── [2.3K] pom.xml
│ ├── [4.0K] nifi-protobuf-bundle
│ │ ├── [4.0K] nifi-protobuf-services
│ │ │ ├── [3.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [4.0K] protobuf
│ │ │ │ │ ├── [4.0K] converter
│ │ │ │ │ │ ├── [ 22K] ProtobufDataConverter.java
│ │ │ │ │ │ ├── [1.7K] ProtoField.java
│ │ │ │ │ │ └── [ 977] ValueReader.java
│ │ │ │ │ ├── [1.7K] FieldType.java
│ │ │ │ │ ├── [8.8K] ProtobufReader.java
│ │ │ │ │ ├── [2.4K] ProtobufRecordReader.java
│ │ │ │ │ ├── [4.0K] schema
│ │ │ │ │ │ ├── [7.1K] ProtoSchemaParser.java
│ │ │ │ │ │ └── [1.8K] ProtoSchemaStrategy.java
│ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ └── [1.3K] ProtoValidationResource.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.services.protobuf.ProtobufReader
│ │ │ │ │ └── [7.2K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 830] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [4.0K] protobuf
│ │ │ │ ├── [4.0K] converter
│ │ │ │ │ └── [8.6K] TestProtobufDataConverter.java
│ │ │ │ ├── [ 13K] ProtoTestUtil.java
│ │ │ │ ├── [4.0K] schema
│ │ │ │ │ └── [9.7K] TestProtoSchemaParser.java
│ │ │ │ └── [7.9K] TestProtobufRecordReader.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] google
│ │ │ │ └── [4.0K] protobuf
│ │ │ │ └── [ 215] any.desc
│ │ │ ├── [ 143] test_circular_reference.desc
│ │ │ ├── [ 923] test_circular_reference.proto
│ │ │ ├── [ 371] test_proto2.desc
│ │ │ ├── [1.2K] test_proto2.proto
│ │ │ ├── [1.0K] test_proto3.desc
│ │ │ ├── [1.6K] test_proto3.proto
│ │ │ ├── [ 755] test_repeated_proto3.desc
│ │ │ └── [1.5K] test_repeated_proto3.proto
│ │ ├── [4.0K] nifi-protobuf-services-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [2.7K] NOTICE
│ │ └── [1.8K] pom.xml
│ ├── [4.0K] nifi-py4j-extension-bundle
│ │ ├── [4.0K] nifi-py4j-bridge
│ │ │ ├── [3.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] py4j
│ │ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ │ ├── [4.5K] CommandBuilder.java
│ │ │ │ │ │ │ ├── [3.9K] JavaObjectBindings.java
│ │ │ │ │ │ │ ├── [ 12K] NiFiPythonGateway.java
│ │ │ │ │ │ │ ├── [5.5K] PythonProxyInvocationHandler.java
│ │ │ │ │ │ │ ├── [1.3K] PythonProxy.java
│ │ │ │ │ │ │ └── [1.6K] StandardPythonClient.java
│ │ │ │ │ │ ├── [4.0K] logback
│ │ │ │ │ │ │ └── [5.0K] LevelChangeListener.java
│ │ │ │ │ │ ├── [4.0K] logging
│ │ │ │ │ │ │ ├── [1.5K] LogLevelChangeHandler.java
│ │ │ │ │ │ │ ├── [1.2K] LogLevelChangeListener.java
│ │ │ │ │ │ │ ├── [1.9K] PythonLogLevel.java
│ │ │ │ │ │ │ └── [3.8K] StandardLogLevelChangeHandler.java
│ │ │ │ │ │ ├── [1.6K] ProcessorCreationWorkflow.java
│ │ │ │ │ │ ├── [ 23K] PythonProcess.java
│ │ │ │ │ │ ├── [7.0K] PythonProcessLogReader.java
│ │ │ │ │ │ ├── [4.0K] server
│ │ │ │ │ │ │ ├── [4.7K] NiFiGatewayConnection.java
│ │ │ │ │ │ │ └── [4.6K] NiFiGatewayServer.java
│ │ │ │ │ │ ├── [1.8K] StandardBoundObjectCounts.java
│ │ │ │ │ │ ├── [ 18K] StandardPythonBridge.java
│ │ │ │ │ │ └── [9.5K] StandardPythonProcessorBridge.java
│ │ │ │ │ └── [4.0K] python
│ │ │ │ │ └── [4.0K] processor
│ │ │ │ │ ├── [ 992] AttributeMap.java
│ │ │ │ │ ├── [1.1K] EmptyAttributeMap.java
│ │ │ │ │ ├── [1.3K] FlowFileAttributeMap.java
│ │ │ │ │ ├── [ 951] FlowFileSource.java
│ │ │ │ │ ├── [4.1K] FlowFileSourceProxy.java
│ │ │ │ │ ├── [1.1K] FlowFileSourceResult.java
│ │ │ │ │ ├── [ 982] FlowFileTransform.java
│ │ │ │ │ ├── [3.8K] FlowFileTransformProxy.java
│ │ │ │ │ ├── [1.1K] FlowFileTransformResult.java
│ │ │ │ │ ├── [2.2K] InputFlowFile.java
│ │ │ │ │ ├── [ 15K] PythonProcessorProxy.java
│ │ │ │ │ ├── [1.1K] RecordTransform.java
│ │ │ │ │ ├── [ 16K] RecordTransformProxy.java
│ │ │ │ │ ├── [1.2K] RecordTransformResult.java
│ │ │ │ │ ├── [2.9K] StandardInputFlowFile.java
│ │ │ │ │ └── [1.4K] StringMapAttributeMap.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 823] org.apache.nifi.python.PythonBridge
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] py4j
│ │ │ ├── [4.0K] client
│ │ │ │ ├── [3.8K] TestCommandBuilder.java
│ │ │ │ └── [6.0K] TestNiFiPythonGateway.java
│ │ │ ├── [4.0K] logback
│ │ │ │ └── [2.4K] LevelChangeListenerTest.java
│ │ │ ├── [7.9K] PythonProcessLogReaderTest.java
│ │ │ └── [5.2K] PythonProcessTest.java
│ │ ├── [4.0K] nifi-py4j-integration-tests
│ │ │ ├── [6.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org.apache.nifi.py4j
│ │ │ │ └── [ 31K] PythonControllerInteractionIT.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] images
│ │ │ │ └── [800K] cup.jpg
│ │ │ ├── [4.0K] json
│ │ │ │ ├── [4.0K] input
│ │ │ │ │ └── [ 46] simple-person.json
│ │ │ │ └── [4.0K] output
│ │ │ │ ├── [ 59] simple-person-pretty-2.json
│ │ │ │ └── [ 71] simple-person-pretty-4.json
│ │ │ └── [1.4K] logback-test.xml
│ │ ├── [4.0K] nifi-py4j-nar
│ │ │ └── [1.8K] pom.xml
│ │ ├── [4.0K] nifi-python-test-extensions
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] extensions
│ │ │ ├── [1.7K] ConvertCsvToExcel.py
│ │ │ ├── [2.3K] CreateFlowFile.py
│ │ │ ├── [1.3K] CreateNothing.py
│ │ │ ├── [6.4K] DetectObjectInImage.py
│ │ │ ├── [1.8K] ExitAfterFourInvocations.py
│ │ │ ├── [1.3K] FailWithAttributes.py
│ │ │ ├── [1.5K] GenerateRecord.py
│ │ │ ├── [1.3K] LogContents.py
│ │ │ ├── [2.2K] LookupAddress.py
│ │ │ ├── [4.0K] multi-module
│ │ │ │ ├── [ 781] __init__.py
│ │ │ │ ├── [ 898] ProcessorUtil.py
│ │ │ │ └── [1.3K] WriteNumber.py
│ │ │ ├── [4.0K] multi-processor
│ │ │ │ ├── [1.4K] CreateHttpRequest.py
│ │ │ │ ├── [ 781] __init__.py
│ │ │ │ ├── [1.5K] ProtobufVersion.py
│ │ │ │ └── [ 808] requirements.txt
│ │ │ ├── [1.6K] PopulateRecord.py
│ │ │ ├── [1.9K] PrettyPrintJson.py
│ │ │ ├── [1.7K] RouteFlowFile.py
│ │ │ ├── [2.3K] SetRecordField.py
│ │ │ ├── [1.8K] TestStateManagerException.py
│ │ │ ├── [2.6K] TestStateManager.py
│ │ │ ├── [1.3K] WriteMessage.py
│ │ │ ├── [1.3K] WriteMessageV2.py
│ │ │ ├── [1.3K] WriteNumpyVersion.py
│ │ │ └── [1.8K] WritePropertyToFlowFile.py
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] nifi-redis-bundle
│ │ ├── [4.0K] nifi-redis-extensions
│ │ │ ├── [4.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] redis
│ │ │ │ │ ├── [4.0K] processor
│ │ │ │ │ │ └── [ 14K] PutRedisHashRecord.java
│ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ ├── [3.8K] RedisConnectionPoolService.java
│ │ │ │ │ │ ├── [5.8K] RedisDistributedMapCacheClientService.java
│ │ │ │ │ │ └── [ 10K] SimpleRedisDistributedMapCacheClientService.java
│ │ │ │ │ └── [4.0K] state
│ │ │ │ │ ├── [3.5K] RedisStateMap.java
│ │ │ │ │ ├── [3.5K] RedisStateMapJsonSerDe.java
│ │ │ │ │ ├── [1.6K] RedisStateMapSerDe.java
│ │ │ │ │ └── [ 15K] RedisStateProvider.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 827] org.apache.nifi.components.state.StateProvider
│ │ │ │ ├── [ 979] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [ 831] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] redis
│ │ │ ├── [4.0K] processor
│ │ │ │ └── [9.2K] TestPutRedisHashRecord.java
│ │ │ ├── [4.0K] service
│ │ │ │ ├── [2.0K] FakeRedisProcessor.java
│ │ │ │ └── [9.1K] TestRedisConnectionPoolService.java
│ │ │ ├── [4.0K] state
│ │ │ │ ├── [ 14K] ITRedisStateProvider.java
│ │ │ │ ├── [3.0K] TestRedisStateMapJsonSerDe.java
│ │ │ │ └── [3.9K] TestRedisStateProvider.java
│ │ │ └── [4.0K] testcontainers
│ │ │ ├── [4.2K] RedisContainer.java
│ │ │ ├── [2.2K] RedisReplicaContainer.java
│ │ │ └── [4.6K] RedisSentinelContainer.java
│ │ ├── [4.0K] nifi-redis-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [ 166] NOTICE
│ │ ├── [4.0K] nifi-redis-service-api
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] redis
│ │ │ ├── [1.7K] RedisConnectionPool.java
│ │ │ └── [1.9K] RedisType.java
│ │ ├── [4.0K] nifi-redis-service-api-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [3.6K] NOTICE
│ │ ├── [4.0K] nifi-redis-utils
│ │ │ ├── [2.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] redis
│ │ │ └── [4.0K] util
│ │ │ ├── [1.1K] RedisAction.java
│ │ │ ├── [5.9K] RedisConfig.java
│ │ │ └── [ 32K] RedisUtils.java
│ │ └── [1.8K] pom.xml
│ ├── [4.0K] nifi-registry-bundle
│ │ ├── [4.0K] nifi-registry-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [2.5K] NOTICE
│ │ ├── [4.0K] nifi-registry-service
│ │ │ ├── [2.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] schemaregistry
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ ├── [7.3K] AvroSchemaRegistry.java
│ │ │ │ │ ├── [2.3K] AvroSchemaValidator.java
│ │ │ │ │ └── [7.9K] StandardJsonSchemaRegistry.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 906] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] schemaregistry
│ │ │ └── [4.0K] services
│ │ │ ├── [5.4K] TestAvroSchemaRegistry.java
│ │ │ └── [5.6K] TestStandardJsonSchemaRegistry.java
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-salesforce-bundle
│ │ ├── [4.0K] nifi-salesforce-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [4.6K] NOTICE
│ │ ├── [4.0K] nifi-salesforce-processors
│ │ │ ├── [3.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] salesforce
│ │ │ │ │ ├── [ 11K] PutSalesforceObject.java
│ │ │ │ │ ├── [ 35K] QuerySalesforceObject.java
│ │ │ │ │ ├── [4.0K] rest
│ │ │ │ │ │ ├── [2.0K] SalesforceConfiguration.java
│ │ │ │ │ │ └── [4.6K] SalesforceRestClient.java
│ │ │ │ │ ├── [4.0K] schema
│ │ │ │ │ │ ├── [1.7K] SalesforceSchemaHolder.java
│ │ │ │ │ │ └── [6.1K] SalesforceToRecordSchemaConverter.java
│ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ ├── [3.3K] CommonSalesforceProperties.java
│ │ │ │ │ │ ├── [2.6K] IncrementalContext.java
│ │ │ │ │ │ ├── [3.6K] RecordExtender.java
│ │ │ │ │ │ └── [2.5K] SalesforceQueryBuilder.java
│ │ │ │ │ └── [4.0K] validator
│ │ │ │ │ └── [1.9K] SalesforceAgeValidator.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.salesforce.PutSalesforceObject
│ │ │ │ │ │ └── [1.9K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.salesforce.QuerySalesforceObject
│ │ │ │ │ └── [4.0K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 899] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] salesforce
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [2.5K] SalesforceConfigAware.java
│ │ │ │ ├── [9.5K] SalesforceToRecordSchemaConverterTest.java
│ │ │ │ └── [4.7K] TestRecordExtender.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] converter
│ │ │ │ ├── [ 297] complex_sf_schema.json
│ │ │ │ ├── [1.6K] simple_sf_schema.json
│ │ │ │ └── [ 208] unknown_type_sf_schema.json
│ │ │ └── [4.0K] json
│ │ │ └── [ 842] put_records.json
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-scripting-bundle
│ │ ├── [4.0K] nifi-scripting-nar
│ │ │ ├── [3.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 41K] LICENSE
│ │ │ └── [6.2K] NOTICE
│ │ ├── [4.0K] nifi-scripting-processors
│ │ │ ├── [6.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] lookup
│ │ │ │ │ │ └── [4.0K] script
│ │ │ │ │ │ ├── [ 22K] BaseScriptedLookupService.java
│ │ │ │ │ │ ├── [3.0K] ScriptedLookupService.java
│ │ │ │ │ │ └── [3.2K] SimpleScriptedLookupService.java
│ │ │ │ │ ├── [4.0K] processors
│ │ │ │ │ │ └── [4.0K] script
│ │ │ │ │ │ ├── [4.0K] engine
│ │ │ │ │ │ │ ├── [3.7K] ClojureScriptEngineFactory.java
│ │ │ │ │ │ │ └── [3.7K] ClojureScriptEngine.java
│ │ │ │ │ │ ├── [ 13K] ExecuteScript.java
│ │ │ │ │ │ ├── [2.0K] InterpretedScriptEvaluator.java
│ │ │ │ │ │ ├── [ 30K] InvokeScriptedProcessor.java
│ │ │ │ │ │ ├── [1.2K] RecordCounts.java
│ │ │ │ │ │ ├── [3.5K] ScriptedFilterRecord.java
│ │ │ │ │ │ ├── [ 12K] ScriptedPartitionRecord.java
│ │ │ │ │ │ ├── [6.8K] ScriptedRecordProcessor.java
│ │ │ │ │ │ ├── [ 11K] ScriptedRouterProcessor.java
│ │ │ │ │ │ ├── [ 15K] ScriptedTransformRecord.java
│ │ │ │ │ │ ├── [4.2K] ScriptedValidateRecord.java
│ │ │ │ │ │ ├── [1.5K] ScriptEvaluator.java
│ │ │ │ │ │ └── [1.4K] ScriptRunner.java
│ │ │ │ │ ├── [4.0K] record
│ │ │ │ │ │ ├── [4.0K] script
│ │ │ │ │ │ │ ├── [2.0K] AbstractScriptedRecordFactory.java
│ │ │ │ │ │ │ ├── [9.3K] ScriptedReader.java
│ │ │ │ │ │ │ └── [9.8K] ScriptedRecordSetWriter.java
│ │ │ │ │ │ └── [4.0K] sink
│ │ │ │ │ │ └── [4.0K] script
│ │ │ │ │ │ └── [ 12K] ScriptedRecordSink.java
│ │ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ │ └── [4.0K] script
│ │ │ │ │ │ └── [9.0K] ScriptedReportingTask.java
│ │ │ │ │ └── [4.0K] script
│ │ │ │ │ ├── [8.9K] AbstractScriptedControllerService.java
│ │ │ │ │ ├── [4.0K] impl
│ │ │ │ │ │ ├── [1.9K] BaseScriptRunner.java
│ │ │ │ │ │ ├── [3.4K] ClojureScriptRunner.java
│ │ │ │ │ │ ├── [2.8K] FilteredPropertiesValidationContextAdapter.java
│ │ │ │ │ │ ├── [1.5K] GenericScriptRunner.java
│ │ │ │ │ │ ├── [2.2K] GroovyScriptRunner.java
│ │ │ │ │ │ └── [4.1K] ValidationContextAdapter.java
│ │ │ │ │ ├── [ 12K] ScriptingComponentHelper.java
│ │ │ │ │ ├── [5.8K] ScriptingComponentUtils.java
│ │ │ │ │ └── [4.8K] ScriptRunnerFactory.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.script.ExecuteScript
│ │ │ │ │ │ └── [ 23K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.script.ScriptedFilterRecord
│ │ │ │ │ │ └── [7.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.script.ScriptedPartitionRecord
│ │ │ │ │ │ └── [5.7K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.script.ScriptedTransformRecord
│ │ │ │ │ │ └── [ 13K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.script.ScriptedValidateRecord
│ │ │ │ │ └── [8.2K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 848] javax.script.ScriptEngineFactory
│ │ │ │ ├── [1.0K] org.apache.nifi.controller.ControllerService
│ │ │ │ ├── [1.1K] org.apache.nifi.processor.Processor
│ │ │ │ ├── [ 877] org.apache.nifi.processors.script.ScriptEngineConfigurator
│ │ │ │ └── [ 836] org.apache.nifi.reporting.ReportingTask
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] lookup
│ │ │ │ │ └── [4.0K] script
│ │ │ │ │ ├── [5.5K] TestScriptedLookupService.java
│ │ │ │ │ └── [3.6K] TestSimpleScriptedLookupService.java
│ │ │ │ ├── [4.0K] processors
│ │ │ │ │ └── [4.0K] script
│ │ │ │ │ ├── [1.2K] AccessibleScriptingComponentHelper.java
│ │ │ │ │ ├── [3.5K] BaseScriptTest.java
│ │ │ │ │ ├── [5.5K] ExecuteScriptGroovyTest.java
│ │ │ │ │ ├── [5.1K] TestExecuteClojure.java
│ │ │ │ │ ├── [ 12K] TestExecuteGroovy.java
│ │ │ │ │ ├── [ 13K] TestInvokeGroovy.java
│ │ │ │ │ ├── [4.3K] TestScriptedFilterRecord.java
│ │ │ │ │ ├── [7.1K] TestScriptedPartitionRecord.java
│ │ │ │ │ ├── [4.8K] TestScriptedRouterProcessor.java
│ │ │ │ │ ├── [ 21K] TestScriptedTransformRecord.java
│ │ │ │ │ ├── [5.1K] TestScriptedValidateRecord.java
│ │ │ │ │ └── [2.2K] TestScriptingComponentHelper.java
│ │ │ │ ├── [4.0K] record
│ │ │ │ │ ├── [4.0K] script
│ │ │ │ │ │ ├── [6.8K] ScriptedReaderTest.java
│ │ │ │ │ │ └── [6.0K] ScriptedRecordSetWriterTest.java
│ │ │ │ │ └── [4.0K] sink
│ │ │ │ │ └── [4.0K] script
│ │ │ │ │ └── [4.9K] ScriptedRecordSinkTest.java
│ │ │ │ └── [4.0K] reporting
│ │ │ │ └── [4.0K] script
│ │ │ │ └── [6.3K] ScriptedReportingTaskTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] clojure
│ │ │ │ ├── [1.0K] test_dynamicProperties.clj
│ │ │ │ ├── [ 954] test_onTrigger.clj
│ │ │ │ └── [2.0K] test_onTrigger_newFlowFile.clj
│ │ │ ├── [4.0K] groovy
│ │ │ │ ├── [ 850] AddNewField.groovy
│ │ │ │ ├── [1.0K] ForkRecordWithValueDecremented.groovy
│ │ │ │ ├── [1.3K] ReplaceFieldValue.groovy
│ │ │ │ ├── [ 954] setAttributeGoodbye_executescript.groovy
│ │ │ │ ├── [ 951] setAttributeHello_executescript.groovy
│ │ │ │ ├── [1.1K] testAddTimeAndThreadAttribute.groovy
│ │ │ │ ├── [1017] testCreateNewFlowFileWithNoInputFile.groovy
│ │ │ │ ├── [1.0K] test_dynamicProperties.groovy
│ │ │ │ ├── [3.9K] test_implementingabstractProcessor.groovy
│ │ │ │ ├── [1.7K] testInvokeScriptCausesException.groovy
│ │ │ │ ├── [ 979] test_log_provenance_events.groovy
│ │ │ │ ├── [1.2K] test_log_vm_stats.groovy
│ │ │ │ ├── [2.3K] test_lookup_inline.groovy
│ │ │ │ ├── [2.0K] test_OnPrimaryStateChange.groovy
│ │ │ │ ├── [1.7K] test_onTrigger_changeContent.groovy
│ │ │ │ ├── [1010] test_onTrigger.groovy
│ │ │ │ ├── [2.0K] test_onTrigger_newFlowFile.groovy
│ │ │ │ ├── [2.9K] test_reader.groovy
│ │ │ │ ├── [ 986] testReadFlowFileContentAndStoreInFlowFileAttributeWithScriptBody.groovy
│ │ │ │ ├── [ 978] testReadFlowFileContentAndStoreInFlowFileAttributeWithScriptBodyNoModules.groovy
│ │ │ │ ├── [ 977] testReadFlowFileContentAndStoreInFlowFileCustomAttribute.groovy
│ │ │ │ ├── [4.8K] test_record_path.groovy
│ │ │ │ ├── [3.0K] test_record_reader_inline.groovy
│ │ │ │ ├── [2.9K] test_record_reader_load_module.groovy
│ │ │ │ ├── [3.9K] test_record_reader_xml.groovy
│ │ │ │ ├── [1.5K] test_record_sink.groovy
│ │ │ │ ├── [3.8K] test_record_writer_inline.groovy
│ │ │ │ ├── [1014] test_scripted_partition_record.groovy
│ │ │ │ ├── [ 953] test_scripted_route_record.groovy
│ │ │ │ ├── [ 857] testScriptException.groovy
│ │ │ │ ├── [ 938] testScriptNoTransfer.groovy
│ │ │ │ ├── [1.9K] testScriptRoutesToFailure.groovy
│ │ │ │ ├── [2.0K] test_simple_lookup_inline.groovy
│ │ │ │ └── [ 934] UpdateThenThrow.groovy
│ │ │ ├── [4.0K] jar
│ │ │ │ └── [1.8K] test.jar
│ │ │ └── [ 318] xmlRecord.xml
│ │ └── [3.8K] pom.xml
│ ├── [4.0K] nifi-shopify-bundle
│ │ ├── [4.0K] nifi-shopify-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.4K] NOTICE
│ │ ├── [4.0K] nifi-shopify-processors
│ │ │ ├── [3.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] shopify
│ │ │ │ │ ├── [ 20K] GetShopify.java
│ │ │ │ │ ├── [4.0K] model
│ │ │ │ │ │ ├── [ 961] IncrementalLoadingParameter.java
│ │ │ │ │ │ ├── [8.3K] ResourceDirectory.java
│ │ │ │ │ │ ├── [1.0K] Resource.java
│ │ │ │ │ │ ├── [4.5K] ResourceType.java
│ │ │ │ │ │ └── [2.4K] ShopifyResource.java
│ │ │ │ │ ├── [4.0K] rest
│ │ │ │ │ │ └── [4.6K] ShopifyRestService.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [2.5K] IncrementalTimers.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.shopify.GetShopify
│ │ │ │ │ └── [1.8K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 827] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] shopify
│ │ │ │ ├── [ 11K] GetShopifyTest.java
│ │ │ │ ├── [4.0K] rest
│ │ │ │ │ └── [5.2K] ShopifyRestServiceTest.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [3.8K] TestIncrementalTimers.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 845] collection_listings.json
│ │ │ └── [7.3K] simple_response.json
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-site-to-site-reporting-bundle
│ │ ├── [4.0K] nifi-site-to-site-reporting-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [2.8K] NOTICE
│ │ ├── [4.0K] nifi-site-to-site-reporting-task
│ │ │ ├── [4.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] reporting
│ │ │ │ │ ├── [ 24K] AbstractSiteToSiteReportingTask.java
│ │ │ │ │ ├── [4.0K] s2s
│ │ │ │ │ │ └── [ 11K] SiteToSiteUtils.java
│ │ │ │ │ ├── [4.0K] sink
│ │ │ │ │ │ └── [6.9K] SiteToSiteReportingRecordSink.java
│ │ │ │ │ ├── [9.5K] SiteToSiteBulletinReportingTask.java
│ │ │ │ │ ├── [ 11K] SiteToSiteMetricsReportingTask.java
│ │ │ │ │ ├── [ 24K] SiteToSiteProvenanceReportingTask.java
│ │ │ │ │ └── [ 27K] SiteToSiteStatusReportingTask.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.reporting.SiteToSiteBulletinReportingTask
│ │ │ │ │ │ └── [3.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.reporting.SiteToSiteMetricsReportingTask
│ │ │ │ │ │ └── [5.7K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.reporting.SiteToSiteProvenanceReportingTask
│ │ │ │ │ │ └── [4.6K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.reporting.SiteToSiteStatusReportingTask
│ │ │ │ │ └── [7.2K] additionalDetails.md
│ │ │ │ ├── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ ├── [ 841] org.apache.nifi.controller.ControllerService
│ │ │ │ │ └── [1012] org.apache.nifi.reporting.ReportingTask
│ │ │ │ ├── [1.1K] schema-bulletins.avsc
│ │ │ │ ├── [1.7K] schema-metrics.avsc
│ │ │ │ ├── [1.8K] schema-provenance.avsc
│ │ │ │ └── [3.9K] schema-status.avsc
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] reporting
│ │ │ ├── [4.0K] sink
│ │ │ │ └── [7.5K] TestSiteToSiteReportingRecordSink.java
│ │ │ ├── [ 10K] TestSiteToSiteBulletinReportingTask.java
│ │ │ ├── [ 15K] TestSiteToSiteMetricsReportingTask.java
│ │ │ ├── [ 31K] TestSiteToSiteProvenanceReportingTask.java
│ │ │ └── [ 27K] TestSiteToSiteStatusReportingTask.java
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-slack-bundle
│ │ ├── [4.0K] nifi-slack-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 14K] LICENSE
│ │ │ └── [2.4K] NOTICE
│ │ ├── [4.0K] nifi-slack-processors
│ │ │ ├── [3.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] processors
│ │ │ │ │ │ └── [4.0K] slack
│ │ │ │ │ │ ├── [4.0K] consume
│ │ │ │ │ │ │ ├── [ 37K] ConsumeChannel.java
│ │ │ │ │ │ │ ├── [2.0K] ConsumeSlackClient.java
│ │ │ │ │ │ │ ├── [1.6K] PartialThreadException.java
│ │ │ │ │ │ │ ├── [2.4K] SlackTimestamp.java
│ │ │ │ │ │ │ ├── [2.6K] UserDetailsLookup.java
│ │ │ │ │ │ │ ├── [1.1K] UserInfoClient.java
│ │ │ │ │ │ │ └── [2.6K] UsernameLookup.java
│ │ │ │ │ │ ├── [ 24K] ConsumeSlack.java
│ │ │ │ │ │ ├── [ 16K] ListenSlack.java
│ │ │ │ │ │ ├── [ 25K] PublishSlack.java
│ │ │ │ │ │ └── [4.0K] util
│ │ │ │ │ │ ├── [3.2K] ChannelMapper.java
│ │ │ │ │ │ ├── [2.0K] RateLimit.java
│ │ │ │ │ │ └── [2.5K] SlackResponseUtil.java
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [4.0K] slack
│ │ │ │ │ ├── [1.7K] PostMessageResponse.java
│ │ │ │ │ ├── [7.4K] SlackRecordSink.java
│ │ │ │ │ ├── [1.1K] SlackRestServiceException.java
│ │ │ │ │ └── [5.4K] SlackRestService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.slack.ConsumeSlack
│ │ │ │ │ │ └── [5.3K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.slack.ListenSlack
│ │ │ │ │ │ └── [5.9K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.slack.PublishSlack
│ │ │ │ │ └── [4.2K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 829] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [ 919] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ ├── [4.0K] processors
│ │ │ │ └── [4.0K] slack
│ │ │ │ └── [ 30K] TestConsumeSlack.java
│ │ │ └── [4.0K] services
│ │ │ └── [4.0K] slack
│ │ │ └── [ 10K] TestSlackRecordSink.java
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-smb-bundle
│ │ ├── [4.0K] nifi-smb-client-api
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] services
│ │ │ └── [4.0K] smb
│ │ │ ├── [1.3K] SmbClientProviderService.java
│ │ │ ├── [1.3K] SmbClientService.java
│ │ │ ├── [1.1K] SmbException.java
│ │ │ └── [8.6K] SmbListableEntity.java
│ │ ├── [4.0K] nifi-smb-client-api-nar
│ │ │ └── [1.7K] pom.xml
│ │ ├── [4.0K] nifi-smb-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 15K] LICENSE
│ │ │ └── [ 540] NOTICE
│ │ ├── [4.0K] nifi-smb-processors
│ │ │ ├── [3.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] smb
│ │ │ │ │ ├── [9.5K] FetchSmb.java
│ │ │ │ │ ├── [ 26K] GetSmbFile.java
│ │ │ │ │ ├── [ 25K] ListSmb.java
│ │ │ │ │ ├── [ 20K] PutSmbFile.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [1.7K] CompletionStrategy.java
│ │ │ │ │ └── [1.6K] InitialListingStrategy.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 944] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] smb
│ │ │ ├── [8.1K] FetchSmbIT.java
│ │ │ ├── [5.8K] FetchSmbTest.java
│ │ │ ├── [ 12K] GetSmbFileTest.java
│ │ │ ├── [ 14K] ListSmbIT.java
│ │ │ ├── [ 17K] ListSmbTest.java
│ │ │ ├── [ 12K] PutSmbFileTest.java
│ │ │ ├── [5.4K] SambaTestContainers.java
│ │ │ └── [9.8K] SmbDfsIT.java
│ │ ├── [4.0K] nifi-smb-smbj-client
│ │ │ ├── [2.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [4.0K] smb
│ │ │ │ │ ├── [7.8K] SmbjClientProviderService.java
│ │ │ │ │ └── [9.3K] SmbjClientService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 836] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] services
│ │ │ └── [4.0K] smb
│ │ │ ├── [9.4K] SmbjClientServiceIT.java
│ │ │ └── [3.1K] SmbjClientServiceTest.java
│ │ ├── [4.0K] nifi-smb-smbj-client-nar
│ │ │ └── [1.7K] pom.xml
│ │ ├── [4.0K] nifi-smb-smbj-common
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] smb
│ │ │ │ └── [4.0K] common
│ │ │ │ ├── [3.2K] SmbClient.java
│ │ │ │ ├── [1.8K] SmbDialect.java
│ │ │ │ ├── [3.1K] SmbProperties.java
│ │ │ │ └── [2.4K] SmbUtils.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] smb
│ │ │ └── [4.0K] common
│ │ │ └── [3.1K] SmbUtilsTest.java
│ │ └── [2.2K] pom.xml
│ ├── [4.0K] nifi-snmp-bundle
│ │ ├── [4.0K] nifi-snmp-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.8K] NOTICE
│ │ ├── [4.0K] nifi-snmp-processors
│ │ │ ├── [3.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] snmp
│ │ │ │ │ ├── [4.0K] configuration
│ │ │ │ │ │ ├── [6.2K] SNMPConfiguration.java
│ │ │ │ │ │ ├── [4.9K] V1TrapConfiguration.java
│ │ │ │ │ │ └── [1.2K] V2TrapConfiguration.java
│ │ │ │ │ ├── [4.0K] dto
│ │ │ │ │ │ ├── [ 907] ErrorStatus.java
│ │ │ │ │ │ ├── [1.3K] SNMPResponseStatus.java
│ │ │ │ │ │ ├── [2.1K] SNMPSingleResponse.java
│ │ │ │ │ │ ├── [2.3K] SNMPTreeResponse.java
│ │ │ │ │ │ └── [1.3K] SNMPValue.java
│ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ ├── [1018] InvalidAuthProtocolException.java
│ │ │ │ │ │ ├── [1008] InvalidFlowFileException.java
│ │ │ │ │ │ ├── [1017] InvalidPrivProtocolException.java
│ │ │ │ │ │ ├── [1015] InvalidSnmpVersionException.java
│ │ │ │ │ │ ├── [1006] RequestTimeoutException.java
│ │ │ │ │ │ ├── [1.0K] SNMPClientInitializationException.java
│ │ │ │ │ │ ├── [1.1K] SNMPException.java
│ │ │ │ │ │ └── [ 994] SNMPWalkException.java
│ │ │ │ │ ├── [4.0K] factory
│ │ │ │ │ │ ├── [4.0K] core
│ │ │ │ │ │ │ ├── [1.7K] SNMPContext.java
│ │ │ │ │ │ │ ├── [1.9K] SNMPFactoryProvider.java
│ │ │ │ │ │ │ ├── [1.9K] SNMPManagerFactory.java
│ │ │ │ │ │ │ ├── [1.5K] V1V2cSNMPFactory.java
│ │ │ │ │ │ │ └── [4.3K] V3SNMPFactory.java
│ │ │ │ │ │ └── [4.0K] trap
│ │ │ │ │ │ ├── [2.2K] V1TrapPDUFactory.java
│ │ │ │ │ │ └── [2.0K] V2TrapPDUFactory.java
│ │ │ │ │ ├── [4.0K] logging
│ │ │ │ │ │ ├── [2.8K] SLF4JLogAdapter.java
│ │ │ │ │ │ └── [1.7K] SLF4JLogFactory.java
│ │ │ │ │ ├── [4.0K] operations
│ │ │ │ │ │ ├── [5.2K] GetSNMPHandler.java
│ │ │ │ │ │ ├── [2.9K] SendTrapSNMPHandler.java
│ │ │ │ │ │ ├── [2.5K] SetSNMPHandler.java
│ │ │ │ │ │ ├── [4.2K] SNMPTrapReceiverHandler.java
│ │ │ │ │ │ └── [4.5K] SNMPTrapReceiver.java
│ │ │ │ │ ├── [4.0K] processors
│ │ │ │ │ │ ├── [ 12K] AbstractSNMPProcessor.java
│ │ │ │ │ │ ├── [ 12K] GetSNMP.java
│ │ │ │ │ │ ├── [ 11K] ListenTrapSNMP.java
│ │ │ │ │ │ ├── [4.0K] properties
│ │ │ │ │ │ │ ├── [2.7K] AuthenticationProtocol.java
│ │ │ │ │ │ │ ├── [3.8K] BasicProperties.java
│ │ │ │ │ │ │ ├── [3.0K] PrivacyProtocol.java
│ │ │ │ │ │ │ ├── [2.1K] UsmUserInputMethod.java
│ │ │ │ │ │ │ ├── [6.3K] V1TrapProperties.java
│ │ │ │ │ │ │ ├── [1.9K] V2TrapProperties.java
│ │ │ │ │ │ │ └── [5.0K] V3SecurityProperties.java
│ │ │ │ │ │ ├── [9.1K] SendTrapSNMP.java
│ │ │ │ │ │ └── [7.3K] SetSNMP.java
│ │ │ │ │ ├── [4.0K] utils
│ │ │ │ │ │ ├── [2.0K] JsonFileUsmReader.java
│ │ │ │ │ │ ├── [1.5K] JsonUsmReader.java
│ │ │ │ │ │ ├── [1.5K] SecurityNamesUsmReader.java
│ │ │ │ │ │ ├── [ 11K] SNMPUtils.java
│ │ │ │ │ │ ├── [1.7K] UsmJsonParser.java
│ │ │ │ │ │ ├── [ 987] UsmReader.java
│ │ │ │ │ │ └── [3.4K] UsmUserDeserializer.java
│ │ │ │ │ └── [4.0K] validators
│ │ │ │ │ └── [2.0K] OIDValidator.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.snmp.processors.GetSNMP
│ │ │ │ │ │ └── [2.9K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.snmp.processors.ListenTrapSNMP
│ │ │ │ │ │ └── [2.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.snmp.processors.SendTrapSNMP
│ │ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.snmp.processors.SetSNMP
│ │ │ │ │ └── [1.6K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 953] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] snmp
│ │ │ │ ├── [4.0K] configuration
│ │ │ │ │ ├── [3.8K] SNMPConfigurationTest.java
│ │ │ │ │ └── [5.9K] V1TrapConfigurationTest.java
│ │ │ │ ├── [4.0K] dto
│ │ │ │ │ └── [5.9K] SNMPTreeResponseTest.java
│ │ │ │ ├── [4.0K] factory
│ │ │ │ │ ├── [4.0K] core
│ │ │ │ │ │ ├── [1.6K] SNMPFactoryProviderTest.java
│ │ │ │ │ │ ├── [3.2K] SNMPSocketSupport.java
│ │ │ │ │ │ ├── [2.7K] V1V2cSNMPFactoryTest.java
│ │ │ │ │ │ └── [2.5K] V3SNMPFactoryTest.java
│ │ │ │ │ └── [4.0K] trap
│ │ │ │ │ ├── [2.4K] V1TrapPDUFactoryTest.java
│ │ │ │ │ └── [2.3K] V2TrapPDUFactoryTest.java
│ │ │ │ ├── [4.0K] helper
│ │ │ │ │ ├── [4.0K] configurations
│ │ │ │ │ │ ├── [1.3K] SNMPConfigurationFactory.java
│ │ │ │ │ │ ├── [2.2K] SNMPV1V2cConfigurationFactory.java
│ │ │ │ │ │ └── [3.1K] SNMPV3ConfigurationFactory.java
│ │ │ │ │ ├── [4.0K] testrunners
│ │ │ │ │ │ ├── [2.3K] SNMPTestRunnerFactory.java
│ │ │ │ │ │ ├── [5.5K] SNMPV1TestRunnerFactory.java
│ │ │ │ │ │ ├── [5.1K] SNMPV2cTestRunnerFactory.java
│ │ │ │ │ │ └── [7.2K] SNMPV3TestRunnerFactory.java
│ │ │ │ │ └── [1.8K] TrapConfigurationFactory.java
│ │ │ │ ├── [4.0K] operations
│ │ │ │ │ ├── [ 12K] GetSNMPHandlerTest.java
│ │ │ │ │ ├── [4.5K] SendTrapSNMPHandlerTest.java
│ │ │ │ │ ├── [4.6K] SetSNMPHandlerTest.java
│ │ │ │ │ ├── [ 23K] SNMPRequestIT.java
│ │ │ │ │ ├── [5.0K] SNMPTrapReceiverHandlerTest.java
│ │ │ │ │ └── [8.0K] SNMPTrapReceiverTest.java
│ │ │ │ ├── [4.0K] processors
│ │ │ │ │ ├── [7.6K] AbstractSNMPProcessorTest.java
│ │ │ │ │ ├── [7.4K] GetSNMPIT.java
│ │ │ │ │ ├── [4.2K] SetSNMPIT.java
│ │ │ │ │ └── [5.4K] TrapSNMPIT.java
│ │ │ │ ├── [4.0K] testagents
│ │ │ │ │ ├── [4.6K] TestAgent.java
│ │ │ │ │ ├── [2.9K] TestSNMPV1Agent.java
│ │ │ │ │ ├── [3.9K] TestSNMPV2cAgent.java
│ │ │ │ │ └── [4.2K] TestSNMPV3Agent.java
│ │ │ │ └── [4.0K] utils
│ │ │ │ ├── [2.1K] JsonFileUsmReaderTest.java
│ │ │ │ ├── [2.1K] JsonUsmReaderTestBase.java
│ │ │ │ ├── [2.3K] JsonUsmReaderTest.java
│ │ │ │ ├── [1.8K] SecurityNamesUsmReaderTest.java
│ │ │ │ └── [1.6K] SNMPUtilsTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 313] invalid_usm_user_legacy_protocol.json
│ │ │ ├── [ 332] invalid_usm_user_protocol.json
│ │ │ └── [ 351] usm_users.json
│ │ └── [1.6K] pom.xml
│ ├── [4.0K] nifi-snowflake-bundle
│ │ ├── [4.0K] nifi-snowflake-processors
│ │ │ ├── [3.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] snowflake
│ │ │ │ │ ├── [6.6K] GetSnowflakeIngestStatus.java
│ │ │ │ │ ├── [8.6K] PutSnowflakeInternalStage.java
│ │ │ │ │ ├── [5.4K] StartSnowflakeIngest.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [1.0K] SnowflakeAttributes.java
│ │ │ │ │ ├── [3.2K] SnowflakeInternalStageType.java
│ │ │ │ │ └── [ 973] SnowflakeInternalStageTypeParameters.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.snowflake.GetSnowflakeIngestStatus
│ │ │ │ │ │ └── [1.7K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.snowflake.PutSnowflakeInternalStage
│ │ │ │ │ │ └── [1.5K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.snowflake.StartSnowflakeIngest
│ │ │ │ │ └── [2.0K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 969] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] snowflake
│ │ │ └── [5.6K] SnowflakeConfigAware.java
│ │ ├── [4.0K] nifi-snowflake-processors-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 182] NOTICE
│ │ ├── [4.0K] nifi-snowflake-services
│ │ │ ├── [3.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] snowflake
│ │ │ │ └── [4.0K] service
│ │ │ │ ├── [ 18K] SnowflakeComputingConnectionPool.java
│ │ │ │ ├── [9.6K] StandardSnowflakeIngestManagerProviderService.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [4.1K] AccountIdentifierFormat.java
│ │ │ │ ├── [1.4K] AccountIdentifierFormatParameters.java
│ │ │ │ ├── [3.7K] ConnectionUrlFormat.java
│ │ │ │ ├── [1.4K] ConnectionUrlFormatParameters.java
│ │ │ │ └── [1.9K] SnowflakeCommonParameters.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 928] org.apache.nifi.controller.ControllerService
│ │ ├── [4.0K] nifi-snowflake-services-api
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] snowflake
│ │ │ ├── [1.0K] SnowflakeConnectionProviderService.java
│ │ │ ├── [1.4K] SnowflakeConnectionWrapper.java
│ │ │ ├── [1.1K] SnowflakeIngestManagerProviderService.java
│ │ │ └── [4.0K] util
│ │ │ └── [4.1K] SnowflakeProperties.java
│ │ ├── [4.0K] nifi-snowflake-services-api-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 428] NOTICE
│ │ ├── [4.0K] nifi-snowflake-services-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [1.2K] NOTICE
│ │ └── [2.3K] pom.xml
│ ├── [4.0K] nifi-social-media-bundle
│ │ ├── [4.0K] nifi-social-media-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [1.8K] NOTICE
│ │ ├── [4.0K] nifi-twitter-processors
│ │ │ ├── [2.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] twitter
│ │ │ │ │ ├── [ 18K] ConsumeTwitter.java
│ │ │ │ │ ├── [1.3K] StreamEndpoint.java
│ │ │ │ │ └── [ 11K] TweetStreamService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 831] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] twitter
│ │ │ └── [3.6K] TestConsumeTwitter.java
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-splunk-bundle
│ │ ├── [4.0K] nifi-splunk-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [2.9K] NOTICE
│ │ ├── [4.0K] nifi-splunk-processors
│ │ │ ├── [2.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] dto
│ │ │ │ │ │ └── [4.0K] splunk
│ │ │ │ │ │ ├── [1.1K] EventIndexStatusRequest.java
│ │ │ │ │ │ ├── [1.1K] EventIndexStatusResponse.java
│ │ │ │ │ │ └── [1.5K] SendRawDataResponse.java
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] splunk
│ │ │ │ │ ├── [ 31K] GetSplunk.java
│ │ │ │ │ ├── [ 13K] PutSplunkHTTP.java
│ │ │ │ │ ├── [ 12K] PutSplunk.java
│ │ │ │ │ ├── [ 11K] QuerySplunkIndexingStatus.java
│ │ │ │ │ └── [ 10K] SplunkAPICall.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.splunk.PutSplunkHTTP
│ │ │ │ │ │ └── [3.3K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.splunk.QuerySplunkIndexingStatus
│ │ │ │ │ └── [3.7K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 976] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] splunk
│ │ │ ├── [ 17K] TestGetSplunk.java
│ │ │ ├── [ 11K] TestPutSplunkHTTP.java
│ │ │ ├── [ 12K] TestPutSplunk.java
│ │ │ ├── [7.0K] TestQuerySplunkIndexingStatus.java
│ │ │ └── [4.0K] util
│ │ │ └── [2.5K] LogGenerator.java
│ │ └── [2.2K] pom.xml
│ ├── [4.0K] nifi-sql-reporting-bundle
│ │ ├── [4.0K] nifi-sql-reporting-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [2.0K] NOTICE
│ │ ├── [4.0K] nifi-sql-reporting-tasks
│ │ │ ├── [4.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] reporting
│ │ │ │ │ └── [4.0K] sql
│ │ │ │ │ ├── [1.4K] CachedStatement.java
│ │ │ │ │ ├── [4.0K] datasources
│ │ │ │ │ │ ├── [4.0K] BulletinDataSource.java
│ │ │ │ │ │ ├── [5.4K] ConnectionStatusDataSource.java
│ │ │ │ │ │ ├── [4.5K] ConnectionStatusPredictionDataSource.java
│ │ │ │ │ │ ├── [5.4K] FlowConfigHistoryDataSource.java
│ │ │ │ │ │ ├── [1.7K] GroupStatusCache.java
│ │ │ │ │ │ ├── [5.1K] JvmMetricsDataSource.java
│ │ │ │ │ │ ├── [6.6K] ProcessGroupStatusDataSource.java
│ │ │ │ │ │ ├── [6.4K] ProcessorStatusDataSource.java
│ │ │ │ │ │ └── [7.0K] ProvenanceDataSource.java
│ │ │ │ │ ├── [1.2K] MetricsQueryService.java
│ │ │ │ │ ├── [9.5K] MetricsSqlQueryService.java
│ │ │ │ │ ├── [7.2K] QueryNiFiReportingTask.java
│ │ │ │ │ ├── [1003] QueryResult.java
│ │ │ │ │ ├── [2.3K] QueryTimeAware.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [4.5K] QueryMetricsUtil.java
│ │ │ │ │ └── [1.4K] TrackedQueryTime.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.reporting.sql.QueryNiFiReportingTask
│ │ │ │ │ └── [ 11K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 835] org.apache.nifi.reporting.ReportingTask
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ ├── [4.0K] record
│ │ │ │ └── [4.0K] sink
│ │ │ │ └── [2.5K] MockRecordSinkService.java
│ │ │ └── [4.0K] reporting
│ │ │ └── [4.0K] sql
│ │ │ └── [ 39K] TestQueryNiFiReportingTask.java
│ │ └── [2.6K] pom.xml
│ ├── [4.0K] nifi-standard-bundle
│ │ ├── [4.0K] nifi-standard-content-viewer
│ │ │ ├── [5.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] web
│ │ │ │ ├── [4.0K] content
│ │ │ │ │ └── [4.0K] viewer
│ │ │ │ │ └── [3.3K] StandardServletContextListener.java
│ │ │ │ └── [4.0K] controller
│ │ │ │ └── [9.6K] StandardContentViewerController.java
│ │ │ ├── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ └── [1.0K] NOTICE
│ │ │ └── [4.0K] webapp
│ │ │ └── [4.0K] META-INF
│ │ │ └── [1.0K] nifi-content-viewer
│ │ ├── [4.0K] nifi-standard-content-viewer-nar
│ │ │ ├── [1.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 34K] LICENSE
│ │ │ └── [ 11K] NOTICE
│ │ ├── [4.0K] nifi-standard-nar
│ │ │ ├── [2.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 34K] LICENSE
│ │ │ └── [ 11K] NOTICE
│ │ ├── [4.0K] nifi-standard-parameter-providers
│ │ │ ├── [2.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] parameter
│ │ │ │ │ ├── [ 14K] DatabaseParameterProvider.java
│ │ │ │ │ ├── [ 12K] EnvironmentVariableParameterProvider.java
│ │ │ │ │ ├── [ 12K] KubernetesSecretParameterProvider.java
│ │ │ │ │ └── [ 11K] OnePasswordParameterProvider.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.parameter.DatabaseParameterProvider
│ │ │ │ │ │ └── [4.9K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.parameter.KubernetesSecretParameterProvider
│ │ │ │ │ └── [2.8K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [1011] org.apache.nifi.parameter.ParameterProvider
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] parameter
│ │ │ ├── [ 13K] TestDatabaseParameterProvider.java
│ │ │ ├── [4.9K] TestEnvironmentVariableParameterProvider.java
│ │ │ └── [7.5K] TestOnePasswordParameterProvider.java
│ │ ├── [4.0K] nifi-standard-processors
│ │ │ ├── [ 49K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] processors
│ │ │ │ │ │ └── [4.0K] standard
│ │ │ │ │ │ ├── [ 28K] AbstractDatabaseFetchProcessor.java
│ │ │ │ │ │ ├── [ 32K] AbstractExecuteSQL.java
│ │ │ │ │ │ ├── [7.5K] AbstractJsonPathProcessor.java
│ │ │ │ │ │ ├── [ 35K] AbstractQueryDatabaseTable.java
│ │ │ │ │ │ ├── [9.9K] AbstractRecordProcessor.java
│ │ │ │ │ │ ├── [3.1K] AbstractSyslogProcessor.java
│ │ │ │ │ │ ├── [ 16K] AttributesToCSV.java
│ │ │ │ │ │ ├── [ 15K] AttributesToJSON.java
│ │ │ │ │ │ ├── [4.0K] calcite
│ │ │ │ │ │ │ ├── [6.4K] RecordPathFunction.java
│ │ │ │ │ │ │ ├── [ 10K] RecordPathFunctions.java
│ │ │ │ │ │ │ └── [3.8K] RecordResultSetOutputStreamCallback.java
│ │ │ │ │ │ ├── [ 11K] CalculateRecordStats.java
│ │ │ │ │ │ ├── [ 24K] CompressContent.java
│ │ │ │ │ │ ├── [ 35K] ControlRate.java
│ │ │ │ │ │ ├── [7.3K] ConvertCharacterSet.java
│ │ │ │ │ │ ├── [4.0K] ConvertRecord.java
│ │ │ │ │ │ ├── [ 16K] CountText.java
│ │ │ │ │ │ ├── [7.1K] CryptographicHashContent.java
│ │ │ │ │ │ ├── [4.0K] db
│ │ │ │ │ │ │ ├── [3.5K] ColumnDescription.java
│ │ │ │ │ │ │ ├── [9.2K] DatabaseAdapterDatabaseDialectService.java
│ │ │ │ │ │ │ ├── [4.1K] DatabaseAdapterDescriptor.java
│ │ │ │ │ │ │ ├── [9.4K] DatabaseAdapter.java
│ │ │ │ │ │ │ ├── [4.0K] impl
│ │ │ │ │ │ │ │ ├── [1.3K] DatabaseDialectServiceDatabaseAdapter.java
│ │ │ │ │ │ │ │ ├── [3.3K] GenericDatabaseAdapter.java
│ │ │ │ │ │ │ │ ├── [4.0K] MSSQL2008DatabaseAdapter.java
│ │ │ │ │ │ │ │ ├── [4.9K] MSSQLDatabaseAdapter.java
│ │ │ │ │ │ │ │ ├── [6.0K] MySQLDatabaseAdapter.java
│ │ │ │ │ │ │ │ ├── [ 11K] Oracle12DatabaseAdapter.java
│ │ │ │ │ │ │ │ ├── [8.0K] OracleDatabaseAdapter.java
│ │ │ │ │ │ │ │ ├── [1.3K] PatternNormalizer.java
│ │ │ │ │ │ │ │ ├── [6.7K] PhoenixDatabaseAdapter.java
│ │ │ │ │ │ │ │ ├── [7.4K] PostgreSQLDatabaseAdapter.java
│ │ │ │ │ │ │ │ ├── [1.2K] RemoveAllSpecialCharNormalizer.java
│ │ │ │ │ │ │ │ ├── [1.1K] RemoveSpaceNormalizer.java
│ │ │ │ │ │ │ │ ├── [1.1K] RemoveUnderscoreAndSpaceNormalizer.java
│ │ │ │ │ │ │ │ └── [1.1K] RemoveUnderscoreNormalizer.java
│ │ │ │ │ │ │ ├── [1.8K] NameNormalizerFactory.java
│ │ │ │ │ │ │ ├── [ 935] NameNormalizer.java
│ │ │ │ │ │ │ ├── [1.1K] TableNotFoundException.java
│ │ │ │ │ │ │ ├── [6.5K] TableSchema.java
│ │ │ │ │ │ │ └── [2.4K] TranslationStrategy.java
│ │ │ │ │ │ ├── [ 31K] DebugFlow.java
│ │ │ │ │ │ ├── [ 31K] DeduplicateRecord.java
│ │ │ │ │ │ ├── [7.8K] DeleteFile.java
│ │ │ │ │ │ ├── [ 11K] DeleteSFTP.java
│ │ │ │ │ │ ├── [ 14K] DetectDuplicate.java
│ │ │ │ │ │ ├── [ 16K] DistributeLoad.java
│ │ │ │ │ │ ├── [4.3K] DuplicateFlowFile.java
│ │ │ │ │ │ ├── [ 12K] EncodeContent.java
│ │ │ │ │ │ ├── [4.0K] encoding
│ │ │ │ │ │ │ ├── [1.5K] EncodingMode.java
│ │ │ │ │ │ │ ├── [1.7K] EncodingType.java
│ │ │ │ │ │ │ └── [1.6K] LineOutputMode.java
│ │ │ │ │ │ ├── [ 26K] EnforceOrder.java
│ │ │ │ │ │ ├── [4.0K] enrichment
│ │ │ │ │ │ │ ├── [ 933] EnrichmentRole.java
│ │ │ │ │ │ │ ├── [5.7K] IndexCorrelatedJoinStrategy.java
│ │ │ │ │ │ │ ├── [4.1K] InsertRecordFieldsJoinStrategy.java
│ │ │ │ │ │ │ ├── [1.7K] RecordJoinInput.java
│ │ │ │ │ │ │ ├── [1008] RecordJoinResult.java
│ │ │ │ │ │ │ ├── [1.2K] RecordJoinStrategy.java
│ │ │ │ │ │ │ ├── [4.5K] SqlJoinCache.java
│ │ │ │ │ │ │ ├── [2.2K] SqlJoinCalciteParameters.java
│ │ │ │ │ │ │ ├── [4.6K] SqlJoinStrategy.java
│ │ │ │ │ │ │ └── [2.8K] WrapperJoinStrategy.java
│ │ │ │ │ │ ├── [ 17K] EvaluateJsonPath.java
│ │ │ │ │ │ ├── [ 19K] EvaluateXPath.java
│ │ │ │ │ │ ├── [ 20K] EvaluateXQuery.java
│ │ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ │ └── [1.2K] ListenHttpException.java
│ │ │ │ │ │ ├── [ 23K] ExecuteProcess.java
│ │ │ │ │ │ ├── [ 15K] ExecuteSQL.java
│ │ │ │ │ │ ├── [ 15K] ExecuteSQLRecord.java
│ │ │ │ │ │ ├── [ 31K] ExecuteStreamCommand.java
│ │ │ │ │ │ ├── [ 15K] ExtractGrok.java
│ │ │ │ │ │ ├── [7.0K] ExtractRecordSchema.java
│ │ │ │ │ │ ├── [ 25K] ExtractText.java
│ │ │ │ │ │ ├── [4.0K] faker
│ │ │ │ │ │ │ ├── [1.6K] FakerMethodHolder.java
│ │ │ │ │ │ │ └── [ 10K] FakerUtils.java
│ │ │ │ │ │ ├── [ 17K] FetchDistributedMapCache.java
│ │ │ │ │ │ ├── [ 23K] FetchFile.java
│ │ │ │ │ │ ├── [6.7K] FetchFTP.java
│ │ │ │ │ │ ├── [7.8K] FetchSFTP.java
│ │ │ │ │ │ ├── [ 12K] FilterAttribute.java
│ │ │ │ │ │ ├── [4.0K] filters
│ │ │ │ │ │ │ └── [1.8K] HttpMethodFilter.java
│ │ │ │ │ │ ├── [ 12K] FlattenJson.java
│ │ │ │ │ │ ├── [4.8K] ForkEnrichment.java
│ │ │ │ │ │ ├── [ 20K] ForkRecord.java
│ │ │ │ │ │ ├── [4.0K] ftp
│ │ │ │ │ │ │ ├── [4.0K] commands
│ │ │ │ │ │ │ │ ├── [6.5K] CommandMapFactory.java
│ │ │ │ │ │ │ │ ├── [1.4K] DetailedFtpCommandException.java
│ │ │ │ │ │ │ │ ├── [1.2K] FtpCommandException.java
│ │ │ │ │ │ │ │ ├── [6.1K] FtpCommandHELP.java
│ │ │ │ │ │ │ │ ├── [ 11K] FtpCommandSTOR.java
│ │ │ │ │ │ │ │ └── [1.6K] NotSupportedCommand.java
│ │ │ │ │ │ │ ├── [4.0K] filesystem
│ │ │ │ │ │ │ │ ├── [4.0K] DefaultVirtualFileSystem.java
│ │ │ │ │ │ │ │ ├── [1.4K] VirtualFileSystemFactory.java
│ │ │ │ │ │ │ │ ├── [2.9K] VirtualFileSystem.java
│ │ │ │ │ │ │ │ ├── [2.9K] VirtualFileSystemView.java
│ │ │ │ │ │ │ │ ├── [4.6K] VirtualFtpFile.java
│ │ │ │ │ │ │ │ └── [2.9K] VirtualPath.java
│ │ │ │ │ │ │ ├── [1.4K] FTPClientProvider.java
│ │ │ │ │ │ │ ├── [1.3K] FtpServer.java
│ │ │ │ │ │ │ ├── [ 11K] NifiFtpServer.java
│ │ │ │ │ │ │ └── [8.8K] StandardFTPClientProvider.java
│ │ │ │ │ │ ├── [ 12K] GenerateFlowFile.java
│ │ │ │ │ │ ├── [ 21K] GenerateRecord.java
│ │ │ │ │ │ ├── [ 39K] GenerateTableFetch.java
│ │ │ │ │ │ ├── [ 23K] GetFile.java
│ │ │ │ │ │ ├── [7.3K] GetFileResource.java
│ │ │ │ │ │ ├── [5.2K] GetFTP.java
│ │ │ │ │ │ ├── [6.1K] GetSFTP.java
│ │ │ │ │ │ ├── [ 47K] HandleHttpRequest.java
│ │ │ │ │ │ ├── [ 11K] HandleHttpResponse.java
│ │ │ │ │ │ ├── [4.0K] hash
│ │ │ │ │ │ │ ├── [5.1K] HashAlgorithm.java
│ │ │ │ │ │ │ └── [10.0K] HashService.java
│ │ │ │ │ │ ├── [4.0K] http
│ │ │ │ │ │ │ ├── [1.4K] CertificateAttribute.java
│ │ │ │ │ │ │ ├── [1.4K] CertificateAttributesProvider.java
│ │ │ │ │ │ │ ├── [1.5K] ContentEncodingStrategy.java
│ │ │ │ │ │ │ ├── [1.2K] CookieStrategy.java
│ │ │ │ │ │ │ ├── [1.4K] FlowFileNamingStrategy.java
│ │ │ │ │ │ │ ├── [4.8K] HandleHttpRequestCertificateAttributesProvider.java
│ │ │ │ │ │ │ ├── [1.4K] HttpHeader.java
│ │ │ │ │ │ │ ├── [1.3K] HttpMethod.java
│ │ │ │ │ │ │ └── [2.2K] HttpProtocolStrategy.java
│ │ │ │ │ │ ├── [ 14K] IdentifyMimeType.java
│ │ │ │ │ │ ├── [ 70K] InvokeHTTP.java
│ │ │ │ │ │ ├── [ 28K] JoinEnrichment.java
│ │ │ │ │ │ ├── [ 26K] ListDatabaseTables.java
│ │ │ │ │ │ ├── [ 12K] ListenFTP.java
│ │ │ │ │ │ ├── [ 35K] ListenHTTP.java
│ │ │ │ │ │ ├── [ 25K] ListenSyslog.java
│ │ │ │ │ │ ├── [ 16K] ListenTCP.java
│ │ │ │ │ │ ├── [8.3K] ListenUDP.java
│ │ │ │ │ │ ├── [ 21K] ListenUDPRecord.java
│ │ │ │ │ │ ├── [ 60K] ListFile.java
│ │ │ │ │ │ ├── [6.8K] ListFTP.java
│ │ │ │ │ │ ├── [9.8K] ListSFTP.java
│ │ │ │ │ │ ├── [ 17K] LogAttribute.java
│ │ │ │ │ │ ├── [6.6K] LogMessage.java
│ │ │ │ │ │ ├── [ 11K] LookupAttribute.java
│ │ │ │ │ │ ├── [ 47K] LookupRecord.java
│ │ │ │ │ │ ├── [4.0K] merge
│ │ │ │ │ │ │ ├── [1.0K] AttributeStrategy.java
│ │ │ │ │ │ │ ├── [3.1K] AttributeStrategyUtil.java
│ │ │ │ │ │ │ ├── [2.4K] KeepCommonAttributeStrategy.java
│ │ │ │ │ │ │ ├── [2.3K] KeepUniqueAttributeStrategy.java
│ │ │ │ │ │ │ ├── [ 17K] RecordBin.java
│ │ │ │ │ │ │ ├── [ 13K] RecordBinManager.java
│ │ │ │ │ │ │ └── [2.4K] RecordBinThresholds.java
│ │ │ │ │ │ ├── [ 65K] MergeContent.java
│ │ │ │ │ │ ├── [ 28K] MergeRecord.java
│ │ │ │ │ │ ├── [5.4K] ModifyBytes.java
│ │ │ │ │ │ ├── [ 31K] MonitorActivity.java
│ │ │ │ │ │ ├── [ 14K] Notify.java
│ │ │ │ │ │ ├── [ 10K] PackageFlowFile.java
│ │ │ │ │ │ ├── [ 10K] ParseSyslog5424.java
│ │ │ │ │ │ ├── [7.2K] ParseSyslog.java
│ │ │ │ │ │ ├── [ 21K] PartitionRecord.java
│ │ │ │ │ │ ├── [4.0K] property
│ │ │ │ │ │ │ └── [1.7K] TransmissionStrategy.java
│ │ │ │ │ │ ├── [ 95K] PutDatabaseRecord.java
│ │ │ │ │ │ ├── [ 11K] PutDistributedMapCache.java
│ │ │ │ │ │ ├── [ 34K] PutEmail.java
│ │ │ │ │ │ ├── [ 24K] PutFile.java
│ │ │ │ │ │ ├── [8.5K] PutFTP.java
│ │ │ │ │ │ ├── [8.6K] PutRecord.java
│ │ │ │ │ │ ├── [4.2K] PutSFTP.java
│ │ │ │ │ │ ├── [ 55K] PutSQL.java
│ │ │ │ │ │ ├── [ 16K] PutSyslog.java
│ │ │ │ │ │ ├── [ 10K] PutTCP.java
│ │ │ │ │ │ ├── [4.2K] PutUDP.java
│ │ │ │ │ │ ├── [9.1K] QueryDatabaseTable.java
│ │ │ │ │ │ ├── [ 17K] QueryDatabaseTableRecord.java
│ │ │ │ │ │ ├── [ 29K] QueryRecord.java
│ │ │ │ │ │ ├── [7.9K] RemoveRecordField.java
│ │ │ │ │ │ ├── [ 10K] RenameRecordField.java
│ │ │ │ │ │ ├── [ 44K] ReplaceText.java
│ │ │ │ │ │ ├── [ 17K] ReplaceTextWithMapping.java
│ │ │ │ │ │ ├── [ 15K] RetryFlowFile.java
│ │ │ │ │ │ ├── [ 19K] RouteOnAttribute.java
│ │ │ │ │ │ ├── [ 11K] RouteOnContent.java
│ │ │ │ │ │ ├── [ 34K] RouteText.java
│ │ │ │ │ │ ├── [ 24K] SampleRecord.java
│ │ │ │ │ │ ├── [ 11K] ScanAttribute.java
│ │ │ │ │ │ ├── [ 11K] ScanContent.java
│ │ │ │ │ │ ├── [7.7K] SegmentContent.java
│ │ │ │ │ │ ├── [4.0K] servlets
│ │ │ │ │ │ │ ├── [6.7K] ContentAcknowledgmentServlet.java
│ │ │ │ │ │ │ ├── [1.4K] HealthCheckServlet.java
│ │ │ │ │ │ │ └── [ 25K] ListenHTTPServlet.java
│ │ │ │ │ │ ├── [4.0K] socket
│ │ │ │ │ │ │ ├── [1.2K] ClientAuthenticationException.java
│ │ │ │ │ │ │ ├── [1.3K] ClientConfigurationException.java
│ │ │ │ │ │ │ ├── [1.1K] ClientConnectException.java
│ │ │ │ │ │ │ ├── [3.2K] ProxySocketFactory.java
│ │ │ │ │ │ │ ├── [1.3K] SocketFactoryProvider.java
│ │ │ │ │ │ │ └── [3.3K] StandardSocketFactoryProvider.java
│ │ │ │ │ │ ├── [ 15K] SplitContent.java
│ │ │ │ │ │ ├── [ 11K] SplitJson.java
│ │ │ │ │ │ ├── [ 11K] SplitRecord.java
│ │ │ │ │ │ ├── [ 27K] SplitText.java
│ │ │ │ │ │ ├── [ 14K] SplitXml.java
│ │ │ │ │ │ ├── [4.0K] sql
│ │ │ │ │ │ │ ├── [2.4K] DefaultAvroSqlWriter.java
│ │ │ │ │ │ │ ├── [6.9K] RecordSqlWriter.java
│ │ │ │ │ │ │ └── [3.8K] SqlWriter.java
│ │ │ │ │ │ ├── [4.0K] ssh
│ │ │ │ │ │ │ ├── [4.0K] netty
│ │ │ │ │ │ │ │ ├── [7.1K] StandardNettyIoConnector.java
│ │ │ │ │ │ │ │ ├── [3.1K] StandardNettyIoServiceFactoryFactory.java
│ │ │ │ │ │ │ │ ├── [2.5K] StandardNettyIoServiceFactory.java
│ │ │ │ │ │ │ │ └── [1.5K] StandardNettyIoSession.java
│ │ │ │ │ │ │ ├── [1.4K] SshClientProvider.java
│ │ │ │ │ │ │ └── [ 14K] StandardSshClientProvider.java
│ │ │ │ │ │ ├── [ 84K] TailFile.java
│ │ │ │ │ │ ├── [ 19K] TransformXml.java
│ │ │ │ │ │ ├── [ 39K] UnpackContent.java
│ │ │ │ │ │ ├── [4.6K] UpdateCounter.java
│ │ │ │ │ │ ├── [ 42K] UpdateDatabaseTable.java
│ │ │ │ │ │ ├── [ 19K] UpdateRecord.java
│ │ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ │ ├── [2.2K] ArgumentUtils.java
│ │ │ │ │ │ │ ├── [2.8K] FlowFileAttributesSerializer.java
│ │ │ │ │ │ │ ├── [ 26K] FTPTransfer.java
│ │ │ │ │ │ │ ├── [3.1K] HTTPUtils.java
│ │ │ │ │ │ │ ├── [1.9K] ProxyAuthenticator.java
│ │ │ │ │ │ │ ├── [ 40K] SFTPTransfer.java
│ │ │ │ │ │ │ ├── [3.0K] SoftLimitBoundedByteArrayOutputStream.java
│ │ │ │ │ │ │ ├── [2.6K] ValidatingBase32InputStream.java
│ │ │ │ │ │ │ ├── [2.6K] ValidatingBase64InputStream.java
│ │ │ │ │ │ │ ├── [ 938] XmlElementNotifier.java
│ │ │ │ │ │ │ └── [4.1K] XmlSplitterSaxParser.java
│ │ │ │ │ │ ├── [ 34K] ValidateCsv.java
│ │ │ │ │ │ ├── [ 16K] ValidateJson.java
│ │ │ │ │ │ ├── [ 28K] ValidateRecord.java
│ │ │ │ │ │ ├── [ 12K] ValidateXml.java
│ │ │ │ │ │ ├── [ 30K] Wait.java
│ │ │ │ │ │ ├── [ 14K] WaitNotifyProtocol.java
│ │ │ │ │ │ └── [4.0K] xml
│ │ │ │ │ │ └── [1.3K] DocumentTypeAllowedDocumentProvider.java
│ │ │ │ │ └── [4.0K] queryrecord
│ │ │ │ │ └── [7.4K] RecordDataSource.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] custom-mimetypes.xml
│ │ │ │ ├── [6.1K] default-grok-patterns.txt
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.CalculateRecordStats
│ │ │ │ │ │ └── [1.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ControlRate
│ │ │ │ │ │ └── [3.6K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.DebugFlow
│ │ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.DeduplicateRecords
│ │ │ │ │ │ └── [2.9K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.EvaluateJsonPath
│ │ │ │ │ │ └── [1.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.EvaluateXQuery
│ │ │ │ │ │ └── [3.3K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ExecuteStreamCommand
│ │ │ │ │ │ └── [6.2K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ExtractText
│ │ │ │ │ │ └── [4.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ForkEnrichment
│ │ │ │ │ │ └── [3.7K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ForkRecord
│ │ │ │ │ │ └── [10.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.GenerateFlowFile
│ │ │ │ │ │ └── [2.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.GenerateTableFetch
│ │ │ │ │ │ └── [3.9K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.HandleHttpRequest
│ │ │ │ │ │ └── [2.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.HandleHttpResponse
│ │ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.IdentifyMimeType
│ │ │ │ │ │ └── [2.1K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.JoinEnrichment
│ │ │ │ │ │ └── [ 18K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ListenFTP
│ │ │ │ │ │ └── [4.7K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ListFile
│ │ │ │ │ │ └── [6.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ListFTP
│ │ │ │ │ │ └── [6.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ListSFTP
│ │ │ │ │ │ └── [6.0K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.LookupRecord
│ │ │ │ │ │ └── [4.8K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.MergeContent
│ │ │ │ │ │ └── [ 17K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.MergeRecord
│ │ │ │ │ │ └── [ 12K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.PartitionRecord
│ │ │ │ │ │ └── [7.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.PutEmail
│ │ │ │ │ │ └── [3.7K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.QueryRecord
│ │ │ │ │ │ └── [ 26K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.RemoveRecordField
│ │ │ │ │ │ └── [ 15K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.RouteOnAttribute
│ │ │ │ │ │ └── [1.4K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.SampleRecord
│ │ │ │ │ │ └── [3.7K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.TailFile
│ │ │ │ │ │ └── [8.6K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.UpdateRecord
│ │ │ │ │ │ └── [8.9K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ValidateCsv
│ │ │ │ │ │ └── [3.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ValidateRecord
│ │ │ │ │ │ └── [5.5K] additionalDetails.md
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.standard.ValidateXml
│ │ │ │ │ │ └── [3.0K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.standard.Wait
│ │ │ │ │ └── [ 12K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [6.2K] org.apache.nifi.processor.Processor
│ │ │ │ └── [1.4K] org.apache.nifi.processors.standard.db.DatabaseAdapter
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ ├── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] standard
│ │ │ │ │ ├── [8.4K] AbstractTestTailFileScenario.java
│ │ │ │ │ ├── [4.0K] calcite
│ │ │ │ │ │ └── [4.4K] TestRecordResultSetOutputStreamCallback.java
│ │ │ │ │ ├── [ 13K] CountTextTest.java
│ │ │ │ │ ├── [9.5K] CryptographicHashContentTest.java
│ │ │ │ │ ├── [4.0K] db
│ │ │ │ │ │ └── [4.0K] impl
│ │ │ │ │ │ ├── [7.5K] DerbyDatabaseAdapter.java
│ │ │ │ │ │ ├── [6.7K] TestMSSQL2008DatabaseAdapter.java
│ │ │ │ │ │ ├── [6.7K] TestMSSQLDatabaseAdapter.java
│ │ │ │ │ │ ├── [5.3K] TestMySQLDatabaseAdapter.java
│ │ │ │ │ │ ├── [ 11K] TestOracle12DatabaseAdapter.java
│ │ │ │ │ │ ├── [8.1K] TestOracleDatabaseAdapter.java
│ │ │ │ │ │ ├── [4.7K] TestPhoenixDatabaseAdapter.java
│ │ │ │ │ │ └── [6.7K] TestPostgreSQLDatabaseAdapter.java
│ │ │ │ │ ├── [2.5K] DBCPServiceSimpleImpl.java
│ │ │ │ │ ├── [4.0K] enrichment
│ │ │ │ │ │ ├── [2.7K] TestIndexCorrelatedJoinStrategy.java
│ │ │ │ │ │ ├── [8.9K] TestInsertRecordFieldsJoinStrategy.java
│ │ │ │ │ │ └── [5.2K] TestWrapperJoinStrategy.java
│ │ │ │ │ ├── [4.0K] ftp
│ │ │ │ │ │ ├── [5.6K] TestVirtualFileSystem.java
│ │ │ │ │ │ ├── [8.4K] TestVirtualFileSystemView.java
│ │ │ │ │ │ └── [8.8K] TestVirtualPath.java
│ │ │ │ │ ├── [ 15K] FTPCharsetIT.java
│ │ │ │ │ ├── [4.7K] HandleHttpRequestTest.java
│ │ │ │ │ ├── [4.0K] hash
│ │ │ │ │ │ ├── [3.5K] HashAlgorithmTest.java
│ │ │ │ │ │ └── [ 21K] HashServiceTest.java
│ │ │ │ │ ├── [4.0K] http
│ │ │ │ │ │ └── [6.4K] HandleHttpRequestCertificateAttributesProviderTest.java
│ │ │ │ │ ├── [ 50K] InvokeHTTPTest.java
│ │ │ │ │ ├── [3.1K] MockCacheService.java
│ │ │ │ │ ├── [3.3K] MockRecordSinkService.java
│ │ │ │ │ ├── [ 12K] PutDatabaseRecordIT.java
│ │ │ │ │ ├── [105K] PutDatabaseRecordTest.java
│ │ │ │ │ ├── [2.4K] QueryDatabaseTableIT.java
│ │ │ │ │ ├── [2.4K] QueryDatabaseTableRecordIT.java
│ │ │ │ │ ├── [ 71K] QueryDatabaseTableRecordTest.java
│ │ │ │ │ ├── [ 74K] QueryDatabaseTableTest.java
│ │ │ │ │ ├── [4.0K] socket
│ │ │ │ │ │ ├── [1.6K] ProxySocketFactoryTest.java
│ │ │ │ │ │ └── [3.1K] StandardSocketFactoryProviderTest.java
│ │ │ │ │ ├── [1.9K] SplitXmlTest.java
│ │ │ │ │ ├── [2.7K] TestAbstractExecuteSQL.java
│ │ │ │ │ ├── [ 39K] TestAttributesToCSV.java
│ │ │ │ │ ├── [ 26K] TestAttributesToJSON.java
│ │ │ │ │ ├── [ 10K] TestCalculateRecordStats.java
│ │ │ │ │ ├── [ 21K] TestCompressContent.java
│ │ │ │ │ ├── [ 23K] TestControlRate.java
│ │ │ │ │ ├── [4.5K] TestConvertCharacterSet.java
│ │ │ │ │ ├── [ 23K] TestConvertRecord.java
│ │ │ │ │ ├── [ 14K] TestDebugFlow.java
│ │ │ │ │ ├── [ 15K] TestDeduplicateRecord.java
│ │ │ │ │ ├── [5.6K] TestDeleteFile.java
│ │ │ │ │ ├── [6.9K] TestDeleteSFTP.java
│ │ │ │ │ ├── [ 10K] TestDetectDuplicate.java
│ │ │ │ │ ├── [6.5K] TestDistributeLoad.java
│ │ │ │ │ ├── [2.4K] TestDuplicateFlowFile.java
│ │ │ │ │ ├── [ 15K] TestEncodeContent.java
│ │ │ │ │ ├── [ 21K] TestEnforceOrder.java
│ │ │ │ │ ├── [ 17K] TestEvaluateJsonPath.java
│ │ │ │ │ ├── [ 10K] TestEvaluateXPath.java
│ │ │ │ │ ├── [ 34K] TestEvaluateXQuery.java
│ │ │ │ │ ├── [ 15K] TestExecuteProcess.java
│ │ │ │ │ ├── [ 37K] TestExecuteSQL.java
│ │ │ │ │ ├── [ 39K] TestExecuteSQLRecord.java
│ │ │ │ │ ├── [ 71K] TestExecuteStreamCommand.java
│ │ │ │ │ ├── [7.1K] TestExtractGrok.java
│ │ │ │ │ ├── [3.8K] TestExtractRecordSchema.java
│ │ │ │ │ ├── [ 21K] TestExtractText.java
│ │ │ │ │ ├── [ 19K] TestExtractTextNamedGroups.java
│ │ │ │ │ ├── [ 11K] TestFetchDistributedMapCache.java
│ │ │ │ │ ├── [ 15K] TestFetchFile.java
│ │ │ │ │ ├── [ 14K] TestFetchFTP.java
│ │ │ │ │ ├── [ 15K] TestFilterAttribute.java
│ │ │ │ │ ├── [ 21K] TestFlattenJson.java
│ │ │ │ │ ├── [ 26K] TestForkRecord.java
│ │ │ │ │ ├── [ 17K] TestFTP.java
│ │ │ │ │ ├── [4.8K] TestGenerateFlowFile.java
│ │ │ │ │ ├── [ 15K] TestGenerateRecord.java
│ │ │ │ │ ├── [ 88K] TestGenerateTableFetch.java
│ │ │ │ │ ├── [6.9K] TestGetFile.java
│ │ │ │ │ ├── [2.2K] TestGetFileResource.java
│ │ │ │ │ ├── [5.6K] TestGetSFTP.java
│ │ │ │ │ ├── [ 15K] TestHandleHttpResponse.java
│ │ │ │ │ ├── [ 23K] TestIdentifyMimeType.java
│ │ │ │ │ ├── [ 20K] TestJoinEnrichment.java
│ │ │ │ │ ├── [ 12K] TestListDatabaseTables.java
│ │ │ │ │ ├── [ 35K] TestListenHTTP.java
│ │ │ │ │ ├── [ 11K] TestListenSyslog.java
│ │ │ │ │ ├── [9.9K] TestListenTCP.java
│ │ │ │ │ ├── [ 10K] TestListenUDP.java
│ │ │ │ │ ├── [ 11K] TestListenUDPRecord.java
│ │ │ │ │ ├── [ 43K] TestListFile.java
│ │ │ │ │ ├── [9.2K] TestListSFTP.java
│ │ │ │ │ ├── [ 11K] TestLogAttribute.java
│ │ │ │ │ ├── [4.2K] TestLogMessage.java
│ │ │ │ │ ├── [8.3K] TestLookupAttribute.java
│ │ │ │ │ ├── [ 43K] TestLookupRecord.java
│ │ │ │ │ ├── [ 70K] TestMergeContent.java
│ │ │ │ │ ├── [ 27K] TestMergeRecord.java
│ │ │ │ │ ├── [ 11K] TestModifyBytes.java
│ │ │ │ │ ├── [ 69K] TestMonitorActivity.java
│ │ │ │ │ ├── [ 17K] TestNotify.java
│ │ │ │ │ ├── [7.5K] TestPackageFlowFile.java
│ │ │ │ │ ├── [4.9K] TestParseSyslog5424.java
│ │ │ │ │ ├── [4.6K] TestParseSyslog.java
│ │ │ │ │ ├── [ 11K] TestPartitionRecord.java
│ │ │ │ │ ├── [ 11K] TestPutDistributedMapCache.java
│ │ │ │ │ ├── [ 20K] TestPutEmail.java
│ │ │ │ │ ├── [ 15K] TestPutFile.java
│ │ │ │ │ ├── [6.0K] TestPutRecord.java
│ │ │ │ │ ├── [8.2K] TestPutSFTP.java
│ │ │ │ │ ├── [ 78K] TestPutSQL.java
│ │ │ │ │ ├── [7.6K] TestPutSyslog.java
│ │ │ │ │ ├── [ 18K] TestPutTCP.java
│ │ │ │ │ ├── [7.3K] TestPutUDP.java
│ │ │ │ │ ├── [ 54K] TestQueryRecord.java
│ │ │ │ │ ├── [ 19K] TestRemoveRecordField.java
│ │ │ │ │ ├── [8.5K] TestRenameRecordField.java
│ │ │ │ │ ├── [ 82K] TestReplaceText.java
│ │ │ │ │ ├── [ 17K] TestReplaceTextWithMapping.java
│ │ │ │ │ ├── [9.9K] TestRetryFlowFile.java
│ │ │ │ │ ├── [6.2K] TestRouteOnAttribute.java
│ │ │ │ │ ├── [2.7K] TestRouteOnContent.java
│ │ │ │ │ ├── [ 38K] TestRouteText.java
│ │ │ │ │ ├── [ 18K] TestSampleRecord.java
│ │ │ │ │ ├── [5.6K] TestScanAttribute.java
│ │ │ │ │ ├── [4.5K] TestScanContent.java
│ │ │ │ │ ├── [4.5K] TestSegmentContent.java
│ │ │ │ │ ├── [ 19K] TestSplitContent.java
│ │ │ │ │ ├── [ 12K] TestSplitJson.java
│ │ │ │ │ ├── [9.4K] TestSplitRecord.java
│ │ │ │ │ ├── [ 43K] TestSplitText.java
│ │ │ │ │ ├── [6.7K] TestSplitXml.java
│ │ │ │ │ ├── [4.4K] TestTailFileGeneratedScenarios.java
│ │ │ │ │ ├── [ 56K] TestTailFile.java
│ │ │ │ │ ├── [3.9K] TestTailFileSimpleScenarios.java
│ │ │ │ │ ├── [ 17K] TestTransformXml.java
│ │ │ │ │ ├── [ 34K] TestUnpackContent.java
│ │ │ │ │ ├── [2.3K] TestUpdateCounter.java
│ │ │ │ │ ├── [ 25K] TestUpdateDatabaseTable.java
│ │ │ │ │ ├── [ 51K] TestUpdateRecord.java
│ │ │ │ │ ├── [ 21K] TestValidateCsv.java
│ │ │ │ │ ├── [ 13K] TestValidateJson.java
│ │ │ │ │ ├── [ 51K] TestValidateRecord.java
│ │ │ │ │ ├── [8.4K] TestValidateXml.java
│ │ │ │ │ ├── [ 33K] TestWait.java
│ │ │ │ │ ├── [ 19K] TestWaitNotifyProtocol.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [3.4K] SSHTestServer.java
│ │ │ │ │ ├── [2.6K] TestFlowFileAttributesSerializer.java
│ │ │ │ │ └── [ 30K] TestServerSFTPTransfer.java
│ │ │ │ ├── [1.2K] TestDynamicEnvironment.java
│ │ │ │ ├── [1.3K] TestIngestAndUpdate.java
│ │ │ │ ├── [1.2K] TestLogStdErr.java
│ │ │ │ └── [ 935] TestSuccess.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] CharacterSetConversionSamples
│ │ │ │ ├── [131K] Converted2.txt
│ │ │ │ ├── [ 33K] Converted.txt
│ │ │ │ └── [ 33K] Original.txt
│ │ │ ├── [4.0K] CompressedData
│ │ │ │ ├── [ 154] SampleFile1.txt.bz2
│ │ │ │ ├── [ 321] SampleFile1.txt.gz
│ │ │ │ ├── [ 67K] SampleFileConcat.txt
│ │ │ │ ├── [ 542] SampleFileConcat.txt.bz2
│ │ │ │ ├── [ 33K] SampleFile.txt
│ │ │ │ ├── [ 71] SampleFile.txt.br
│ │ │ │ ├── [ 388] SampleFile.txt.bz2
│ │ │ │ ├── [ 321] SampleFile.txt.gz
│ │ │ │ ├── [ 217] SampleFile.txt.lz4
│ │ │ │ ├── [1.7K] SampleFile.txt.snappy
│ │ │ │ ├── [1.6K] SampleFile.txt.sz
│ │ │ │ ├── [ 309] SampleFile.txt.zlib
│ │ │ │ └── [ 80] SampleFile.txt.zst
│ │ │ ├── [4.0K] ExecuteCommand
│ │ │ │ ├── [1000] 1000bytes.txt
│ │ │ │ ├── [1.0M] 1mb.txt
│ │ │ │ ├── [1.2K] TestDynamicEnvironment.jar
│ │ │ │ ├── [1.1K] TestIngestAndUpdate.jar
│ │ │ │ ├── [ 995] TestLogStdErr.jar
│ │ │ │ ├── [ 827] TestSuccess.jar
│ │ │ │ └── [ 20] test.txt
│ │ │ ├── [ 13] hello.txt
│ │ │ ├── [ 829] localhost.cer
│ │ │ ├── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 846] org.apache.nifi.processors.standard.db.DatabaseAdapter
│ │ │ ├── [4.0K] PutDatabaseRecordIT
│ │ │ │ └── [ 178] create-person-table.sql
│ │ │ ├── [ 25] randombytes-1
│ │ │ ├── [4.0K] ScanAttribute
│ │ │ │ ├── [ 27] dictionary1
│ │ │ │ ├── [ 20] dictionary-with-empty-new-lines
│ │ │ │ └── [ 130] dictionary-with-extra-info
│ │ │ ├── [ 25K] simple.jpg
│ │ │ ├── [4.0K] TestAttributesToJSON
│ │ │ │ └── [ 146] input.json
│ │ │ ├── [4.0K] TestConvertRecord
│ │ │ │ ├── [4.0K] input
│ │ │ │ │ ├── [ 101] person_bad_enum.json
│ │ │ │ │ ├── [ 567] personJob_dropfield.json
│ │ │ │ │ ├── [ 102] person.json
│ │ │ │ │ └── [ 109] person_long_id.json
│ │ │ │ └── [4.0K] schema
│ │ │ │ ├── [ 646] person.avsc
│ │ │ │ ├── [ 997] personJob.avsc
│ │ │ │ └── [ 739] person_with_union_enum_string.avsc
│ │ │ ├── [4.0K] TestCountText
│ │ │ │ └── [ 939] jabberwocky.txt
│ │ │ ├── [4.0K] TestExtractGrok
│ │ │ │ ├── [ 152] apache.log
│ │ │ │ ├── [6.0K] patterns
│ │ │ │ └── [ 29] simple_text.log
│ │ │ ├── [4.0K] TestExtractRecordSchema
│ │ │ │ └── [ 156] name_age_schema.avsc
│ │ │ ├── [4.0K] TestForkRecord
│ │ │ │ ├── [4.0K] input
│ │ │ │ │ └── [1.5K] complex-input-json.json
│ │ │ │ ├── [4.0K] output
│ │ │ │ │ ├── [ 727] extract-transactions.json
│ │ │ │ │ ├── [2.3K] split-address.json
│ │ │ │ │ └── [3.4K] split-transactions.json
│ │ │ │ ├── [4.0K] schema
│ │ │ │ │ ├── [ 420] extract-schema.avsc
│ │ │ │ │ └── [2.4K] schema.avsc
│ │ │ │ ├── [ 233] single-element-nested-array.json
│ │ │ │ ├── [ 180] single-element-nested-array-strings.json
│ │ │ │ ├── [ 432] single-element-nested-nested-array.json
│ │ │ │ └── [ 743] two-elements-nested-nested-array-null.json
│ │ │ ├── [4.0K] TestGenerateRecord
│ │ │ │ ├── [1.0K] nested_no_nullable.avsc
│ │ │ │ └── [1.3K] nested_nullable.avsc
│ │ │ ├── [4.0K] TestIdentifyMimeType
│ │ │ │ ├── [ 133] 1.7z
│ │ │ │ ├── [232K] 1.accdb
│ │ │ │ ├── [ 23] 1.csv
│ │ │ │ ├── [ 466] 1.jar
│ │ │ │ ├── [271K] 1.pdf
│ │ │ │ ├── [ 10K] 1.tar
│ │ │ │ ├── [ 154] 1.tar.gz
│ │ │ │ ├── [ 21] 1.txt
│ │ │ │ ├── [ 59] 1.txt.bz2
│ │ │ │ ├── [ 50] 1.txt.gz
│ │ │ │ ├── [1.0K] 1.xhtml
│ │ │ │ ├── [ 923] 1.xml
│ │ │ │ ├── [ 165] 1.zip
│ │ │ │ ├── [ 5] 2.custom
│ │ │ │ ├── [ 189] bgBannerFoot.png
│ │ │ │ ├── [ 356] blueBtnBg.jpg
│ │ │ │ ├── [120K] charset-utf-8.txt
│ │ │ │ ├── [ 894] fake.csv
│ │ │ │ ├── [ 10K] flowfilev1.tar
│ │ │ │ ├── [ 40] flowfilev3
│ │ │ │ ├── [1.2K] flowfilev3WithXhtml
│ │ │ │ └── [ 135] grid.gif
│ │ │ ├── [4.0K] TestInvokeHttp
│ │ │ │ └── [ 889] realm.properties
│ │ │ ├── [4.0K] TestJoinEnrichment
│ │ │ │ ├── [ 155] insert-enrichment-first-value-null.json
│ │ │ │ ├── [ 260] insert-enrichment.json
│ │ │ │ ├── [ 623] insert-original.json
│ │ │ │ ├── [ 214] left-outer-join-enrichment.csv
│ │ │ │ ├── [ 313] left-outer-join-expected.csv
│ │ │ │ ├── [ 90] left-outer-join-original.csv
│ │ │ │ └── [ 224] left-outer-join-rename-expected.csv
│ │ │ ├── [4.0K] TestJson
│ │ │ │ ├── [ 212] control-characters.json
│ │ │ │ └── [ 12K] json-sample.json
│ │ │ ├── [4.0K] TestLookupRecord
│ │ │ │ ├── [ 590] lookup-array-input-empty-array.json
│ │ │ │ ├── [ 405] lookup-array-input.json
│ │ │ │ ├── [ 171] lookup-array-input-missing.json
│ │ │ │ ├── [ 405] lookup-array-input-unmatched.json
│ │ │ │ ├── [ 371] lookup-array-output-empty-array.json
│ │ │ │ ├── [ 233] lookup-array-output.json
│ │ │ │ ├── [ 60] lookup-array-output-missing-matched.json
│ │ │ │ ├── [ 36] lookup-array-output-missing-unmatched.json
│ │ │ │ └── [ 217] lookup-array-output-unmatched.json
│ │ │ ├── [4.0K] TestMergeContent
│ │ │ │ ├── [ 3] demarcate
│ │ │ │ ├── [ 3] foot
│ │ │ │ ├── [ 3] head
│ │ │ │ ├── [ 124] place.avsc
│ │ │ │ └── [ 245] user.avsc
│ │ │ ├── [4.0K] TestModifyBytes
│ │ │ │ ├── [ 169] noFooter_noHeader.txt
│ │ │ │ ├── [ 181] noFooter.txt
│ │ │ │ ├── [ 181] noHeader.txt
│ │ │ │ └── [ 193] testFile.txt
│ │ │ ├── [4.0K] TestRemoveRecordField
│ │ │ │ ├── [4.0K] input
│ │ │ │ │ ├── [ 459] address-array.json
│ │ │ │ │ ├── [ 354] address-choice.json
│ │ │ │ │ ├── [ 297] bookshelf-map.json
│ │ │ │ │ ├── [ 439] complex-person.json
│ │ │ │ │ └── [ 130] name-choice.json
│ │ │ │ ├── [4.0K] input_schema
│ │ │ │ │ ├── [1.5K] address-array.avsc
│ │ │ │ │ ├── [1.6K] address-choice.avsc
│ │ │ │ │ ├── [ 688] bookshelf-map.avsc
│ │ │ │ │ ├── [ 778] complex-person.avsc
│ │ │ │ │ └── [ 752] name-choice.avsc
│ │ │ │ ├── [4.0K] output
│ │ │ │ │ ├── [ 59] address-array-empty.json
│ │ │ │ │ ├── [ 288] address-array-one-element-removed.json
│ │ │ │ │ ├── [ 38] address-array-removed.json
│ │ │ │ │ ├── [ 349] address-array-zip-removed-from-all-elements.json
│ │ │ │ │ ├── [ 403] address-array-zip-removed-from-one-element.json
│ │ │ │ │ ├── [ 300] address-choice-letter-removed-from-building.json
│ │ │ │ │ ├── [ 23] bookshelf-map-all-items-removed.json
│ │ │ │ │ ├── [ 210] bookshelf-map-field-removed-from-all-elements.json
│ │ │ │ │ ├── [ 291] bookshelf-map-field-removed-from-one-element.json
│ │ │ │ │ ├── [ 206] bookshelf-map-one-item-removed.json
│ │ │ │ │ ├── [ 514] complex-person.json
│ │ │ │ │ ├── [ 353] complex-person-multiple-fields-removed.json
│ │ │ │ │ ├── [ 458] complex-person-no-dateOfBirth.json
│ │ │ │ │ ├── [ 492] complex-person-no-workAddress-building-letter.json
│ │ │ │ │ ├── [ 354] complex-person-no-workAddress.json
│ │ │ │ │ └── [ 104] name-choice-firstName-removed.json
│ │ │ │ └── [4.0K] output_schema
│ │ │ │ ├── [ 457] address-array.avsc
│ │ │ │ ├── [ 137] address-array-field-removed.avsc
│ │ │ │ ├── [ 429] address-array-zip-removed.avsc
│ │ │ │ ├── [ 379] address-choice-letter-removed-from-building.avsc
│ │ │ │ ├── [ 207] bookshelf-map-author-field-removed.avsc
│ │ │ │ ├── [ 241] bookshelf-map.avsc
│ │ │ │ ├── [ 778] complex-person.avsc
│ │ │ │ ├── [ 552] complex-person-multiple-fields-removed.avsc
│ │ │ │ ├── [ 739] complex-person-no-dateOfBirth.avsc
│ │ │ │ ├── [ 477] complex-person-no-workAddress.avsc
│ │ │ │ ├── [ 744] complex-person-no-workAddress-building-letter.avsc
│ │ │ │ └── [ 222] name-choice-firstName-removed.avsc
│ │ │ ├── [4.0K] TestRenameRecordField
│ │ │ │ ├── [4.0K] input
│ │ │ │ │ ├── [ 223] complex-person.json
│ │ │ │ │ └── [ 76] simple-person.json
│ │ │ │ └── [4.0K] output
│ │ │ │ ├── [ 230] testNestedPath.json
│ │ │ │ ├── [ 223] testRecursivelyReferencingAllFields.json
│ │ │ │ ├── [ 223] testRecursivelyReferencingFieldName.json
│ │ │ │ ├── [ 100] testReferencingFieldName.json
│ │ │ │ ├── [ 219] testRenameArray.json
│ │ │ │ ├── [ 84] testRenameFieldStaticValue.json
│ │ │ │ ├── [ 73] testRenameFieldUsingAttribute.json
│ │ │ │ └── [ 73] testRenameMultipleFields.json
│ │ │ ├── [4.0K] TestReplaceTextLineByLine
│ │ │ │ ├── [ 193] $1$1.txt
│ │ │ │ ├── [ 11K] apacheLicenseOnOneLine.txt
│ │ │ │ ├── [ 248] AppendLineByLineTest.txt
│ │ │ │ ├── [ 205] Blu$2e_clu$2e.txt
│ │ │ │ ├── [ 193] BRue_cRue_RiRey.txt
│ │ │ │ ├── [ 205] cu[$1]_Po[$1].txt
│ │ │ │ ├── [ 181] cu_Po.txt
│ │ │ │ ├── [ 193] D$d_h$d.txt
│ │ │ │ ├── [ 199] [DODO].txt
│ │ │ │ ├── [ 193] food.txt
│ │ │ │ ├── [ 202] LiteralReplaceExceptFirstLine.txt
│ │ │ │ ├── [ 211] LiteralReplaceExceptLastLine.txt
│ │ │ │ ├── [ 196] LiteralReplaceFirstLine.txt
│ │ │ │ ├── [ 199] LiteralReplaceLastLine.txt
│ │ │ │ ├── [ 248] PrependLineByLineTest.txt
│ │ │ │ ├── [ 199] ReplaceExceptFirstLine.txt
│ │ │ │ ├── [ 205] ReplaceExceptLastLine.txt
│ │ │ │ ├── [ 195] ReplaceFirstLine.txt
│ │ │ │ ├── [ 197] ReplaceLastLine.txt
│ │ │ │ ├── [ 196] Spider.txt
│ │ │ │ └── [ 193] testFile.txt
│ │ │ ├── [4.0K] TestReplaceTextWithMapping
│ │ │ │ ├── [ 105] color-fruit-backreference-mapping.txt
│ │ │ │ ├── [ 52] color-fruit-blank-mapping.txt
│ │ │ │ ├── [ 111] color-fruit-escaped-dollar-mapping.txt
│ │ │ │ ├── [ 116] color-fruit-excessive-backreference-mapping-simple.txt
│ │ │ │ ├── [ 116] color-fruit-excessive-backreference-mapping.txt
│ │ │ │ ├── [ 117] color-fruit-invalid-backreference-mapping.txt
│ │ │ │ ├── [ 87] color-fruit-mapping.txt
│ │ │ │ ├── [ 60] color-fruit-no-match-mapping.txt
│ │ │ │ ├── [ 102] color-fruit-space-mapping.txt
│ │ │ │ ├── [ 92] colors.txt
│ │ │ │ └── [ 84] colors-without-dashes.txt
│ │ │ ├── [4.0K] TestScanContent
│ │ │ │ ├── [ 11] helloWorld
│ │ │ │ └── [ 16] wellthengood-bye
│ │ │ ├── [4.0K] TestSplitText
│ │ │ │ ├── [ 53] 1.txt
│ │ │ │ ├── [ 53] 2.txt
│ │ │ │ ├── [ 53] 3.txt
│ │ │ │ ├── [ 38] 4.txt
│ │ │ │ ├── [ 69] 5.txt
│ │ │ │ ├── [ 70] 6.txt
│ │ │ │ └── [ 110] original.txt
│ │ │ ├── [4.0K] TestTransformXml
│ │ │ │ ├── [1.1K] doc-node.xsl
│ │ │ │ ├── [1.0K] doctype-entity-file-uri.xsl
│ │ │ │ ├── [ 781] employee.html
│ │ │ │ ├── [2.1K] employeeMessageNonTerminate.xsl
│ │ │ │ ├── [2.1K] employeeMessageTerminate.xsl
│ │ │ │ ├── [1.3K] employee.xml
│ │ │ │ ├── [ 209] math.html
│ │ │ │ ├── [ 885] math.xml
│ │ │ │ ├── [1.5K] math.xsl
│ │ │ │ ├── [1.5K] nonMatchingEndTag.xsl
│ │ │ │ ├── [ 152] tokens.csv
│ │ │ │ ├── [ 434] tokens.xml
│ │ │ │ └── [4.1K] tokens.xsl
│ │ │ ├── [4.0K] TestUnpackContent
│ │ │ │ ├── [ 255] data.flowfilev2
│ │ │ │ ├── [ 357] data.flowfilev3
│ │ │ │ ├── [3.5K] data.tar
│ │ │ │ ├── [ 359] data.zip
│ │ │ │ ├── [4.0K] folder
│ │ │ │ │ ├── [ 139] cal.txt
│ │ │ │ │ └── [ 29] date.txt
│ │ │ │ ├── [1019] invalid_data.zip
│ │ │ │ └── [ 644] windows-with-cp437.zip
│ │ │ ├── [4.0K] TestUpdateRecord
│ │ │ │ ├── [4.0K] input
│ │ │ │ │ ├── [ 196] addresses.json
│ │ │ │ │ ├── [ 95] embedded-string.json
│ │ │ │ │ ├── [1.3K] multi-arrays.json
│ │ │ │ │ ├── [ 282] organisation.json
│ │ │ │ │ ├── [ 137] person-address.json
│ │ │ │ │ ├── [ 122] person.json
│ │ │ │ │ ├── [ 79] person-stringified-name.json
│ │ │ │ │ └── [ 103] person-with-null-array.json
│ │ │ │ ├── [4.0K] output
│ │ │ │ │ ├── [ 178] embedded-record.json
│ │ │ │ │ ├── [ 284] full-addresses.json
│ │ │ │ │ ├── [ 140] name-and-mother-same.json
│ │ │ │ │ ├── [ 44] name-fields-only.json
│ │ │ │ │ ├── [ 304] organisation.json
│ │ │ │ │ ├── [ 79] person-with-capital-lastname.json
│ │ │ │ │ ├── [ 39] person-with-firstname.json
│ │ │ │ │ ├── [ 66] person-with-firstname-lastname.json
│ │ │ │ │ ├── [ 79] person-with-name.json
│ │ │ │ │ ├── [ 158] person-with-new-city.json
│ │ │ │ │ ├── [ 103] person-with-null-array.json
│ │ │ │ │ └── [4.0K] updateArrays
│ │ │ │ │ ├── [1.3K] multi-arrays-0and1.json
│ │ │ │ │ ├── [1.3K] multi-arrays-0and2.json
│ │ │ │ │ └── [1.3K] multi-arrays-streets.json
│ │ │ │ └── [4.0K] schema
│ │ │ │ ├── [ 736] embedded-record.avsc
│ │ │ │ ├── [1.2K] multi-arrays.avsc
│ │ │ │ ├── [ 167] name-fields-only.avsc
│ │ │ │ ├── [1.5K] organisation-with-departments.avsc
│ │ │ │ ├── [ 130] organisation-with-departments-string.avsc
│ │ │ │ ├── [ 893] person-with-address.avsc
│ │ │ │ ├── [ 364] person-with-name-and-mother.avsc
│ │ │ │ ├── [ 313] person-with-name-record.avsc
│ │ │ │ ├── [ 167] person-with-name-string.avsc
│ │ │ │ ├── [ 216] person-with-name-string-fields.avsc
│ │ │ │ └── [ 179] person-with-stringified-name.avsc
│ │ │ ├── [4.0K] TestValidateJson
│ │ │ │ ├── [ 891] schema-simple-example.json
│ │ │ │ ├── [ 912] schema-simple-example-missing-required.json
│ │ │ │ ├── [ 892] schema-simple-example-unmatched-pattern.json
│ │ │ │ ├── [ 142] simple-example.json
│ │ │ │ └── [ 205] simple-example-with-comments.json
│ │ │ ├── [4.0K] TestValidateRecord
│ │ │ │ ├── [ 281] array-and-map-with-null-element.avro
│ │ │ │ ├── [ 286] int-maps-data.json
│ │ │ │ ├── [ 773] int-maps-schema.avsc
│ │ │ │ ├── [ 359] missing-array.avsc
│ │ │ │ ├── [ 42] missing-array.json
│ │ │ │ ├── [ 374] missing-array-with-default.avsc
│ │ │ │ ├── [ 312] nested-map-input.json
│ │ │ │ ├── [ 579] nested-map-schema.avsc
│ │ │ │ ├── [ 195] timestamp.avsc
│ │ │ │ └── [ 37] timestamp.json
│ │ │ ├── [4.0K] TestXml
│ │ │ │ ├── [1.6K] fruit.xml
│ │ │ │ ├── [ 103] namespaceSplit1.xml
│ │ │ │ ├── [ 128] namespaceSplit2.xml
│ │ │ │ ├── [1.1K] namespace.xml
│ │ │ │ ├── [1015] subNode.xml
│ │ │ │ ├── [1.3K] xml-bundle-1
│ │ │ │ ├── [1.6K] XmlBundle.xsd
│ │ │ │ ├── [1.1K] xml-snippet-embedded-doctype.xml
│ │ │ │ ├── [1.0K] xml-snippet-external-doctype.xml
│ │ │ │ └── [1.0K] xml-snippet.xml
│ │ │ ├── [ 78] xxe_from_report.xml
│ │ │ └── [7.1K] xxe_template.xml
│ │ ├── [4.0K] nifi-standard-reporting-tasks
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] controller
│ │ │ │ │ ├── [ 22K] ControllerStatusReportingTask.java
│ │ │ │ │ ├── [5.1K] MonitorDiskUsage.java
│ │ │ │ │ └── [ 13K] MonitorMemory.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.controller.ControllerStatusReportingTask
│ │ │ │ │ └── [2.2K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 923] org.apache.nifi.reporting.ReportingTask
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] controller
│ │ │ │ └── [1.6K] TestMonitorDiskUsage.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [1.3K] nifi.properties
│ │ │ └── [1.9K] state-management.xml
│ │ ├── [4.0K] nifi-standard-rules
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] flowanalysis
│ │ │ │ │ └── [4.0K] rules
│ │ │ │ │ ├── [3.4K] DisallowComponentType.java
│ │ │ │ │ ├── [4.1K] RequireServerSSLContextService.java
│ │ │ │ │ ├── [10.0K] RestrictBackpressureSettings.java
│ │ │ │ │ ├── [8.0K] RestrictFlowFileExpiration.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [5.9K] ConnectionViolation.java
│ │ │ │ │ ├── [2.7K] FlowAnalysisRuleUtils.java
│ │ │ │ │ └── [1.2K] ViolationType.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.flowanalysis.rules.RequireCustomSSLContext
│ │ │ │ │ └── [1.1K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [1.0K] org.apache.nifi.flowanalysis.FlowAnalysisRule
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] flowanalysis
│ │ │ │ └── [4.0K] rules
│ │ │ │ ├── [5.1K] AbstractFlowAnalaysisRuleTest.java
│ │ │ │ ├── [2.5K] RequireServerSSLContextServiceTest.java
│ │ │ │ ├── [4.3K] RestrictBackpressureSettingsTest.java
│ │ │ │ └── [4.1K] RestrictFlowFileExpirationTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] RequireServerSSLContextService
│ │ │ │ ├── [5.1K] RequireServerSSLContextService.json
│ │ │ │ └── [7.4K] RequireServerSSLContextService_noViolation.json
│ │ │ ├── [4.0K] RestrictBackpressureSettings
│ │ │ │ ├── [ 18K] RestrictBackpressureSettings.json
│ │ │ │ └── [ 18K] RestrictBackpressureSettings_noViolation.json
│ │ │ └── [4.0K] RestrictFlowFileExpiration
│ │ │ ├── [ 18K] RestrictFlowFileExpiration.json
│ │ │ └── [ 18K] RestrictFlowFileExpiration_noViolation.json
│ │ └── [ 10K] pom.xml
│ ├── [4.0K] nifi-standard-services
│ │ ├── [4.0K] nifi-database-dialect-service-api
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] database
│ │ │ └── [4.0K] dialect
│ │ │ └── [4.0K] service
│ │ │ └── [4.0K] api
│ │ │ ├── [1.1K] ColumnDefinition.java
│ │ │ ├── [1.5K] DatabaseDialectService.java
│ │ │ ├── [1.1K] PageRequest.java
│ │ │ ├── [1.2K] QueryStatementRequest.java
│ │ │ ├── [1.6K] StandardColumnDefinition.java
│ │ │ ├── [1.3K] StandardPageRequest.java
│ │ │ ├── [2.0K] StandardQueryStatementRequest.java
│ │ │ ├── [1.2K] StandardStatementRequest.java
│ │ │ ├── [1.0K] StandardStatementResponse.java
│ │ │ ├── [1.2K] StatementRequest.java
│ │ │ ├── [1.0K] StatementResponse.java
│ │ │ ├── [1.3K] StatementType.java
│ │ │ └── [1.3K] TableDefinition.java
│ │ ├── [4.0K] nifi-database-dialect-service-bundle
│ │ │ ├── [4.0K] nifi-database-dialect-service
│ │ │ │ ├── [1.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] database
│ │ │ │ │ │ └── [4.0K] dialect
│ │ │ │ │ │ └── [4.0K] service
│ │ │ │ │ │ └── [ 13K] StandardDatabaseDialectService.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 853] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] database
│ │ │ │ └── [4.0K] dialect
│ │ │ │ └── [4.0K] service
│ │ │ │ └── [ 15K] StandardDatabaseDialectServiceTest.java
│ │ │ ├── [4.0K] nifi-database-dialect-service-nar
│ │ │ │ └── [1.8K] pom.xml
│ │ │ └── [1.4K] pom.xml
│ │ ├── [4.0K] nifi-dbcp-service-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] dbcp
│ │ │ │ ├── [2.5K] ConnectionUrlValidator.java
│ │ │ │ ├── [4.8K] DBCPService.java
│ │ │ │ ├── [2.6K] DBCPValidator.java
│ │ │ │ └── [2.3K] DriverClassValidator.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] dbcp
│ │ │ ├── [3.4K] ConnectionUrlValidatorTest.java
│ │ │ └── [3.4K] DriverClassValidatorTest.java
│ │ ├── [4.0K] nifi-dbcp-service-bundle
│ │ │ ├── [4.0K] nifi-dbcp-service
│ │ │ │ ├── [5.3K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ ├── [4.0K] dbcp
│ │ │ │ │ │ │ ├── [ 11K] DBCPConnectionPool.java
│ │ │ │ │ │ │ └── [4.0K] DBCPConnectionPoolLookup.java
│ │ │ │ │ │ └── [4.0K] record
│ │ │ │ │ │ └── [4.0K] sink
│ │ │ │ │ │ └── [4.0K] db
│ │ │ │ │ │ └── [ 26K] DatabaseRecordSink.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 917] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] dbcp
│ │ │ │ │ │ ├── [9.2K] DBCPServiceTest.java
│ │ │ │ │ │ └── [9.8K] TestDBCPConnectionPoolLookup.java
│ │ │ │ │ └── [4.0K] record
│ │ │ │ │ └── [4.0K] sink
│ │ │ │ │ └── [4.0K] db
│ │ │ │ │ └── [ 17K] DatabaseRecordSinkTest.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [ 0] fake.keytab
│ │ │ ├── [4.0K] nifi-dbcp-service-nar
│ │ │ │ ├── [2.0K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 13K] LICENSE
│ │ │ │ └── [1.5K] NOTICE
│ │ │ ├── [4.0K] nifi-hikari-dbcp-service
│ │ │ │ ├── [2.3K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] dbcp
│ │ │ │ │ │ └── [ 23K] HikariCPConnectionPool.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 825] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] dbcp
│ │ │ │ ├── [8.0K] HikariCPConnectionPoolTest.java
│ │ │ │ └── [1.8K] MockDriver.java
│ │ │ └── [1.5K] pom.xml
│ │ ├── [4.0K] nifi-db-schema-registry-bundle
│ │ │ ├── [4.0K] nifi-db-schema-registry-service
│ │ │ │ ├── [2.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] db
│ │ │ │ │ │ └── [4.0K] schemaregistry
│ │ │ │ │ │ └── [9.4K] DatabaseTableSchemaRegistry.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 844] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] db
│ │ │ │ └── [4.0K] schemaregistry
│ │ │ │ └── [ 10K] DatabaseTableSchemaRegistryTest.java
│ │ │ ├── [4.0K] nifi-db-schema-registry-service-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ └── [ 723] NOTICE
│ │ │ └── [1.5K] pom.xml
│ │ ├── [4.0K] nifi-distributed-cache-client-service-api
│ │ │ ├── [1.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] distributed
│ │ │ └── [4.0K] cache
│ │ │ └── [4.0K] client
│ │ │ ├── [1.7K] AtomicCacheEntry.java
│ │ │ ├── [3.4K] AtomicDistributedMapCacheClient.java
│ │ │ ├── [1.5K] Deserializer.java
│ │ │ ├── [8.9K] DistributedMapCacheClient.java
│ │ │ ├── [3.0K] DistributedSetCacheClient.java
│ │ │ ├── [4.0K] exception
│ │ │ │ ├── [1.2K] DeserializationException.java
│ │ │ │ └── [1.2K] SerializationException.java
│ │ │ └── [1.5K] Serializer.java
│ │ ├── [4.0K] nifi-distributed-cache-services-bundle
│ │ │ ├── [4.0K] nifi-distributed-cache-client-service
│ │ │ │ ├── [2.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] distributed
│ │ │ │ │ └── [4.0K] cache
│ │ │ │ │ └── [4.0K] client
│ │ │ │ │ ├── [4.0K] adapter
│ │ │ │ │ │ ├── [3.5K] AtomicCacheEntryInboundAdapter.java
│ │ │ │ │ │ ├── [2.1K] BooleanInboundAdapter.java
│ │ │ │ │ │ ├── [1.7K] InboundAdapter.java
│ │ │ │ │ │ ├── [3.0K] InboundToken.java
│ │ │ │ │ │ ├── [2.0K] LongInboundAdapter.java
│ │ │ │ │ │ ├── [4.2K] MapInboundAdapter.java
│ │ │ │ │ │ ├── [3.5K] MapValuesInboundAdapter.java
│ │ │ │ │ │ ├── [1.6K] NullInboundAdapter.java
│ │ │ │ │ │ ├── [4.8K] OutboundAdapter.java
│ │ │ │ │ │ ├── [3.2K] SetInboundAdapter.java
│ │ │ │ │ │ ├── [2.4K] ValueInboundAdapter.java
│ │ │ │ │ │ └── [1.3K] VoidInboundAdapter.java
│ │ │ │ │ ├── [3.7K] CacheClientChannelInitializer.java
│ │ │ │ │ ├── [4.3K] CacheClientChannelPoolFactory.java
│ │ │ │ │ ├── [8.0K] CacheClientHandshakeHandler.java
│ │ │ │ │ ├── [4.2K] CacheClient.java
│ │ │ │ │ ├── [5.3K] CacheClientRequestHandler.java
│ │ │ │ │ ├── [2.5K] CacheClientSerde.java
│ │ │ │ │ ├── [ 10K] MapCacheClientService.java
│ │ │ │ │ ├── [ 13K] NettyMapCacheClient.java
│ │ │ │ │ ├── [4.8K] NettySetCacheClient.java
│ │ │ │ │ └── [6.3K] SetCacheClientService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 906] org.apache.nifi.controller.ControllerService
│ │ │ ├── [4.0K] nifi-distributed-cache-protocol
│ │ │ │ ├── [1.6K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] distributed
│ │ │ │ └── [4.0K] cache
│ │ │ │ ├── [4.0K] operations
│ │ │ │ │ ├── [1.1K] CacheOperation.java
│ │ │ │ │ ├── [1.5K] MapOperation.java
│ │ │ │ │ ├── [1.3K] SetOperation.java
│ │ │ │ │ └── [1.2K] StandardCacheOperation.java
│ │ │ │ └── [4.0K] protocol
│ │ │ │ ├── [4.0K] exception
│ │ │ │ │ └── [1.1K] HandshakeException.java
│ │ │ │ ├── [5.6K] ProtocolHandshake.java
│ │ │ │ └── [1.1K] ProtocolVersion.java
│ │ │ ├── [4.0K] nifi-distributed-cache-server
│ │ │ │ ├── [4.1K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] distributed
│ │ │ │ │ │ └── [4.0K] cache
│ │ │ │ │ │ └── [4.0K] server
│ │ │ │ │ │ ├── [5.1K] AbstractCacheServer.java
│ │ │ │ │ │ ├── [1.7K] CacheRecord.java
│ │ │ │ │ │ ├── [1011] CacheServer.java
│ │ │ │ │ │ ├── [4.0K] codec
│ │ │ │ │ │ │ ├── [1.5K] CacheOperationResultEncoder.java
│ │ │ │ │ │ │ ├── [9.3K] CacheRequestDecoder.java
│ │ │ │ │ │ │ ├── [3.9K] CacheVersionRequestHandler.java
│ │ │ │ │ │ │ ├── [1.8K] CacheVersionResponseEncoder.java
│ │ │ │ │ │ │ ├── [5.7K] MapCacheRequestDecoder.java
│ │ │ │ │ │ │ ├── [8.6K] MapCacheRequestHandler.java
│ │ │ │ │ │ │ ├── [1.5K] MapRemoveResponseEncoder.java
│ │ │ │ │ │ │ ├── [1.4K] MapSizeResponseEncoder.java
│ │ │ │ │ │ │ ├── [1.7K] MapValueResponseEncoder.java
│ │ │ │ │ │ │ └── [3.4K] SetCacheRequestHandler.java
│ │ │ │ │ │ ├── [3.6K] EventCacheServer.java
│ │ │ │ │ │ ├── [2.7K] EvictionPolicy.java
│ │ │ │ │ │ ├── [4.0K] map
│ │ │ │ │ │ │ ├── [1.6K] MapCache.java
│ │ │ │ │ │ │ ├── [2.1K] MapCacheRecord.java
│ │ │ │ │ │ │ ├── [4.1K] MapCacheServer.java
│ │ │ │ │ │ │ ├── [1.6K] MapPutResult.java
│ │ │ │ │ │ │ ├── [9.6K] PersistentMapCache.java
│ │ │ │ │ │ │ ├── [8.1K] SimpleMapCache.java
│ │ │ │ │ │ │ └── [5.3K] StandardMapCacheServer.java
│ │ │ │ │ │ ├── [4.0K] protocol
│ │ │ │ │ │ │ ├── [1.1K] CacheOperationResult.java
│ │ │ │ │ │ │ ├── [1.5K] CacheRequest.java
│ │ │ │ │ │ │ ├── [1.2K] CacheVersionRequest.java
│ │ │ │ │ │ │ ├── [1.3K] CacheVersionResponse.java
│ │ │ │ │ │ │ ├── [3.0K] MapCacheRequest.java
│ │ │ │ │ │ │ ├── [1.1K] MapRemoveResponse.java
│ │ │ │ │ │ │ ├── [1.1K] MapSizeResponse.java
│ │ │ │ │ │ │ └── [1.5K] MapValueResponse.java
│ │ │ │ │ │ ├── [4.0K] set
│ │ │ │ │ │ │ ├── [7.1K] PersistentSetCache.java
│ │ │ │ │ │ │ ├── [1.2K] SetCache.java
│ │ │ │ │ │ │ ├── [1.7K] SetCacheRecord.java
│ │ │ │ │ │ │ ├── [1.4K] SetCacheResult.java
│ │ │ │ │ │ │ ├── [4.1K] SimpleSetCache.java
│ │ │ │ │ │ │ └── [4.4K] StandardSetCacheServer.java
│ │ │ │ │ │ └── [3.2K] SetCacheServer.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 896] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] distributed
│ │ │ │ │ └── [4.0K] cache
│ │ │ │ │ └── [4.0K] server
│ │ │ │ │ ├── [4.0K] map
│ │ │ │ │ │ ├── [6.4K] MapCacheServiceTlsTest.java
│ │ │ │ │ │ ├── [7.8K] MapCacheTest.java
│ │ │ │ │ │ ├── [6.2K] StandardMapCacheServerTest.java
│ │ │ │ │ │ ├── [ 17K] TestDistributedMapServerAndClient.java
│ │ │ │ │ │ ├── [5.0K] TestMapCacheClientService.java
│ │ │ │ │ │ └── [5.8K] TestSimpleMapCache.java
│ │ │ │ │ └── [4.0K] set
│ │ │ │ │ ├── [3.5K] SetCacheServiceTest.java
│ │ │ │ │ └── [ 11K] TestDistributedSetServerAndClient.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [3.0K] keystore.jks
│ │ │ │ └── [ 911] truststore.jks
│ │ │ ├── [4.0K] nifi-distributed-cache-services-nar
│ │ │ │ ├── [2.2K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [1.6K] NOTICE
│ │ │ └── [1.6K] pom.xml
│ │ ├── [4.0K] nifi-file-resource-service-api
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] fileresource
│ │ │ └── [4.0K] service
│ │ │ └── [4.0K] api
│ │ │ ├── [1.6K] FileResource.java
│ │ │ └── [1.3K] FileResourceService.java
│ │ ├── [4.0K] nifi-file-resource-service-bundle
│ │ │ ├── [4.0K] nifi-file-resource-service
│ │ │ │ ├── [1.6K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] fileresource
│ │ │ │ │ │ └── [4.0K] service
│ │ │ │ │ │ └── [4.6K] StandardFileResourceService.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 846] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] fileresource
│ │ │ │ └── [4.0K] service
│ │ │ │ └── [5.9K] StandardFileResourceServiceTest.java
│ │ │ ├── [4.0K] nifi-file-resource-service-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 13K] LICENSE
│ │ │ │ └── [ 432] NOTICE
│ │ │ └── [1.4K] pom.xml
│ │ ├── [4.0K] nifi-hadoop-dbcp-service-bundle
│ │ │ ├── [4.0K] nifi-hadoop-dbcp-service
│ │ │ │ ├── [4.6K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] dbcp
│ │ │ │ │ ├── [ 16K] HadoopDBCPConnectionPool.java
│ │ │ │ │ └── [1.3K] ValidationResources.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 826] org.apache.nifi.controller.ControllerService
│ │ │ ├── [4.0K] nifi-hadoop-dbcp-service-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ └── [1.6K] NOTICE
│ │ │ └── [1.5K] pom.xml
│ │ ├── [4.0K] nifi-http-context-map-api
│ │ │ ├── [1.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] http
│ │ │ └── [3.2K] HttpContextMap.java
│ │ ├── [4.0K] nifi-http-context-map-bundle
│ │ │ ├── [4.0K] nifi-http-context-map
│ │ │ │ ├── [1.7K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] http
│ │ │ │ │ └── [8.4K] StandardHttpContextMap.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 825] org.apache.nifi.controller.ControllerService
│ │ │ ├── [4.0K] nifi-http-context-map-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [ 678] NOTICE
│ │ │ └── [1.4K] pom.xml
│ │ ├── [4.0K] nifi-kerberos-user-service-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] kerberos
│ │ │ ├── [1.7K] KerberosUserService.java
│ │ │ └── [1.5K] SelfContainedKerberosUserService.java
│ │ ├── [4.0K] nifi-kerberos-user-service-bundle
│ │ │ ├── [4.0K] nifi-kerberos-user-service
│ │ │ │ ├── [1.9K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] kerberos
│ │ │ │ │ ├── [4.6K] AbstractKerberosUserService.java
│ │ │ │ │ ├── [3.4K] KerberosKeytabUserService.java
│ │ │ │ │ ├── [2.5K] KerberosPasswordUserService.java
│ │ │ │ │ └── [3.5K] KerberosTicketCacheUserService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 941] org.apache.nifi.controller.ControllerService
│ │ │ ├── [4.0K] nifi-kerberos-user-service-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ └── [ 634] NOTICE
│ │ │ └── [1.5K] pom.xml
│ │ ├── [4.0K] nifi-key-service-api
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] key
│ │ │ └── [4.0K] service
│ │ │ └── [4.0K] api
│ │ │ └── [1.1K] PrivateKeyService.java
│ │ ├── [4.0K] nifi-key-service-bundle
│ │ │ ├── [4.0K] nifi-key-service
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] key
│ │ │ │ │ │ └── [4.0K] service
│ │ │ │ │ │ ├── [4.0K] reader
│ │ │ │ │ │ │ ├── [5.4K] BouncyCastlePrivateKeyReader.java
│ │ │ │ │ │ │ ├── [1.1K] PrivateKeyException.java
│ │ │ │ │ │ │ └── [1.2K] PrivateKeyReader.java
│ │ │ │ │ │ └── [8.7K] StandardPrivateKeyService.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 835] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] key
│ │ │ │ └── [4.0K] service
│ │ │ │ └── [6.5K] StandardPrivateKeyServiceTest.java
│ │ │ ├── [4.0K] nifi-key-service-nar
│ │ │ │ └── [1.8K] pom.xml
│ │ │ └── [1.5K] pom.xml
│ │ ├── [4.0K] nifi-lookup-service-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] lookup
│ │ │ ├── [1.2K] LookupFailureException.java
│ │ │ ├── [2.8K] LookupService.java
│ │ │ ├── [1.0K] RecordLookupService.java
│ │ │ └── [ 996] StringLookupService.java
│ │ ├── [4.0K] nifi-lookup-services-bundle
│ │ │ ├── [4.0K] nifi-lookup-services
│ │ │ │ ├── [6.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] lookup
│ │ │ │ │ │ ├── [6.9K] AbstractCSVLookupService.java
│ │ │ │ │ │ ├── [1.5K] AuthenticationStrategy.java
│ │ │ │ │ │ ├── [4.0K] configuration2
│ │ │ │ │ │ │ ├── [5.8K] CommonsConfigurationLookupService.java
│ │ │ │ │ │ │ ├── [6.5K] SafeXMLConfiguration.java
│ │ │ │ │ │ │ └── [4.8K] XXEValidator.java
│ │ │ │ │ │ ├── [7.4K] CSVRecordLookupService.java
│ │ │ │ │ │ ├── [4.0K] db
│ │ │ │ │ │ │ ├── [5.0K] AbstractDatabaseLookupService.java
│ │ │ │ │ │ │ ├── [9.3K] DatabaseRecordLookupService.java
│ │ │ │ │ │ │ └── [7.7K] SimpleDatabaseLookupService.java
│ │ │ │ │ │ ├── [5.8K] DistributedMapCacheLookupService.java
│ │ │ │ │ │ ├── [4.0K] maxmind
│ │ │ │ │ │ │ ├── [1.8K] AnonymousIpSchema.java
│ │ │ │ │ │ │ ├── [3.4K] CitySchema.java
│ │ │ │ │ │ │ ├── [1.9K] ContainerSchema.java
│ │ │ │ │ │ │ ├── [ 22K] IPLookupService.java
│ │ │ │ │ │ │ └── [1.6K] IspSchema.java
│ │ │ │ │ │ ├── [1.8K] PropertiesFileLookupService.java
│ │ │ │ │ │ ├── [1.6K] ResponseHandlingStrategy.java
│ │ │ │ │ │ ├── [ 24K] RestLookupService.java
│ │ │ │ │ │ ├── [6.6K] SimpleCsvFileLookupService.java
│ │ │ │ │ │ ├── [3.7K] SimpleKeyValueLookupService.java
│ │ │ │ │ │ └── [2.1K] XMLFileLookupService.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ ├── [4.0K] docs
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.lookup.maxmind.IPLookupService
│ │ │ │ │ │ │ └── [6.8K] additionalDetails.md
│ │ │ │ │ │ └── [4.0K] org.apache.nifi.lookup.RestLookupService
│ │ │ │ │ │ └── [3.1K] additionalDetails.md
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [1.2K] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] lookup
│ │ │ │ │ ├── [4.0K] configuration2
│ │ │ │ │ │ └── [5.0K] XXEValidatorTest.java
│ │ │ │ │ ├── [4.0K] db
│ │ │ │ │ │ ├── [6.1K] TestDatabaseRecordLookupService.java
│ │ │ │ │ │ └── [5.5K] TestSimpleDatabaseLookupService.java
│ │ │ │ │ ├── [4.0K] maxmind
│ │ │ │ │ │ └── [7.6K] TestIPLookupService.java
│ │ │ │ │ ├── [6.3K] TestCSVRecordLookupService.java
│ │ │ │ │ ├── [4.7K] TestDistributedMapCacheLookupService.java
│ │ │ │ │ ├── [1.8K] TestProcessor.java
│ │ │ │ │ ├── [3.9K] TestPropertiesFileLookupService.java
│ │ │ │ │ ├── [ 10K] TestRestLookupService.java
│ │ │ │ │ ├── [6.2K] TestSimpleCsvFileLookupService.java
│ │ │ │ │ ├── [2.2K] TestSimpleKeyValueLookupService.java
│ │ │ │ │ └── [3.6K] TestXMLFileLookupService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [1.1K] local_xxe_file.xml
│ │ │ │ ├── [1.1K] multiline_xxe_file.xml
│ │ │ │ ├── [ 987] no_xxe.xml
│ │ │ │ ├── [1.1K] remote_xxe_file.xml
│ │ │ │ ├── [ 121] test.csv
│ │ │ │ ├── [ 60] test.properties
│ │ │ │ ├── [ 116] test_sep_escape_comment.csv
│ │ │ │ ├── [ 75] test_Windows-31J.csv
│ │ │ │ ├── [ 201] test.xml
│ │ │ │ ├── [1.1K] test-xxe.xml
│ │ │ │ └── [1.1K] whitespace_xxe_file.xml
│ │ │ ├── [4.0K] nifi-lookup-services-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.6K] NOTICE
│ │ │ └── [1.5K] pom.xml
│ │ ├── [4.0K] nifi-oauth2-provider-api
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] oauth2
│ │ │ │ ├── [1.1K] AccessTokenAcquisitionException.java
│ │ │ │ ├── [2.9K] AccessToken.java
│ │ │ │ ├── [1.4K] OAuth2AccessTokenProvider.java
│ │ │ │ └── [1.6K] TokenRefreshStrategy.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] oauth2
│ │ │ └── [2.0K] AccessTokenTest.java
│ │ ├── [4.0K] nifi-oauth2-provider-bundle
│ │ │ ├── [4.0K] nifi-oauth2-provider-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ └── [1.3K] NOTICE
│ │ │ ├── [4.0K] nifi-oauth2-provider-service
│ │ │ │ ├── [3.1K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] oauth2
│ │ │ │ │ │ ├── [1.5K] ClientAuthenticationStrategy.java
│ │ │ │ │ │ ├── [2.0K] HttpProtocolStrategy.java
│ │ │ │ │ │ ├── [ 30K] JWTBearerOAuth2AccessTokenProvider.java
│ │ │ │ │ │ ├── [4.0K] key
│ │ │ │ │ │ │ └── [2.7K] Ed25519Signer.java
│ │ │ │ │ │ └── [ 22K] StandardOauth2AccessTokenProvider.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ ├── [4.0K] docs
│ │ │ │ │ │ └── [4.0K] org.apache.nifi.oauth2.JWTBearerOAuth2AccessTokenProvider
│ │ │ │ │ │ └── [6.6K] additionalDetails.md
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 897] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] oauth2
│ │ │ │ ├── [ 16K] JWTBearerOAuth2AccessTokenProviderTest.java
│ │ │ │ └── [ 30K] StandardOauth2AccessTokenProviderTest.java
│ │ │ └── [1.5K] pom.xml
│ │ ├── [4.0K] nifi-proxy-configuration-api
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] proxy
│ │ │ │ ├── [7.6K] ProxyConfiguration.java
│ │ │ │ ├── [1.8K] ProxyConfigurationService.java
│ │ │ │ ├── [1.4K] ProxySpec.java
│ │ │ │ └── [ 886] SocksVersion.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] proxy
│ │ │ └── [6.4K] TestProxyConfiguration.java
│ │ ├── [4.0K] nifi-proxy-configuration-bundle
│ │ │ ├── [4.0K] nifi-proxy-configuration
│ │ │ │ ├── [1.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] proxy
│ │ │ │ │ └── [6.6K] StandardProxyConfigurationService.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 837] org.apache.nifi.controller.ControllerService
│ │ │ ├── [4.0K] nifi-proxy-configuration-nar
│ │ │ │ └── [1.8K] pom.xml
│ │ │ └── [1.4K] pom.xml
│ │ ├── [4.0K] nifi-record-serialization-service-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] serialization
│ │ │ ├── [4.3K] RecordReaderFactory.java
│ │ │ ├── [2.3K] RecordSchemaCacheService.java
│ │ │ └── [5.0K] RecordSetWriterFactory.java
│ │ ├── [4.0K] nifi-record-serialization-services-bundle
│ │ │ ├── [4.0K] nifi-record-serialization-services
│ │ │ │ ├── [ 17K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ ├── [4.0K] avro
│ │ │ │ │ │ │ ├── [5.9K] AvroReader.java
│ │ │ │ │ │ │ ├── [2.0K] AvroReaderWithEmbeddedSchema.java
│ │ │ │ │ │ │ ├── [4.4K] AvroReaderWithExplicitSchema.java
│ │ │ │ │ │ │ ├── [2.0K] AvroRecordReader.java
│ │ │ │ │ │ │ ├── [9.9K] AvroRecordSetWriter.java
│ │ │ │ │ │ │ ├── [2.1K] EmbeddedAvroSchemaAccessStrategy.java
│ │ │ │ │ │ │ ├── [2.7K] NonCachingDatumReader.java
│ │ │ │ │ │ │ ├── [4.4K] WriteAvroResultWithExternalSchema.java
│ │ │ │ │ │ │ └── [2.4K] WriteAvroResultWithSchema.java
│ │ │ │ │ │ ├── [4.0K] cef
│ │ │ │ │ │ │ ├── [1.6K] CEFCustomExtensionTypeResolver.java
│ │ │ │ │ │ │ ├── [ 13K] CEFReader.java
│ │ │ │ │ │ │ ├── [8.2K] CEFRecordReader.java
│ │ │ │ │ │ │ ├── [2.4K] CEFRecordSource.java
│ │ │ │ │ │ │ ├── [2.0K] CEFSchemaInferenceBuilder.java
│ │ │ │ │ │ │ ├── [5.3K] CEFSchemaInference.java
│ │ │ │ │ │ │ ├── [6.7K] CEFSchemaUtil.java
│ │ │ │ │ │ │ └── [2.0K] ValidateLocale.java
│ │ │ │ │ │ ├── [4.0K] csv
│ │ │ │ │ │ │ ├── [5.6K] AbstractCSVRecordReader.java
│ │ │ │ │ │ │ ├── [3.4K] CSVHeaderSchemaStrategy.java
│ │ │ │ │ │ │ ├── [ 12K] CSVReader.java
│ │ │ │ │ │ │ ├── [1.3K] CSVRecordAndFieldNames.java
│ │ │ │ │ │ │ ├── [6.8K] CSVRecordReader.java
│ │ │ │ │ │ │ ├── [6.6K] CSVRecordSetWriter.java
│ │ │ │ │ │ │ ├── [2.8K] CSVRecordSource.java
│ │ │ │ │ │ │ ├── [4.0K] CSVSchemaInference.java
│ │ │ │ │ │ │ ├── [7.4K] FastCSVRecordReader.java
│ │ │ │ │ │ │ ├── [9.4K] JacksonCSVRecordReader.java
│ │ │ │ │ │ │ ├── [7.8K] WriteCSVResult.java
│ │ │ │ │ │ │ └── [7.5K] WriteFastCSVResult.java
│ │ │ │ │ │ ├── [4.0K] grok
│ │ │ │ │ │ │ ├── [2.4K] GrokExpressionValidator.java
│ │ │ │ │ │ │ ├── [ 16K] GrokReader.java
│ │ │ │ │ │ │ ├── [ 12K] GrokRecordReader.java
│ │ │ │ │ │ │ └── [ 896] NoMatchStrategy.java
│ │ │ │ │ │ ├── [4.0K] json
│ │ │ │ │ │ │ ├── [9.1K] JsonPathReader.java
│ │ │ │ │ │ │ ├── [1.7K] JsonPathValidator.java
│ │ │ │ │ │ │ ├── [ 13K] JsonRecordSetWriter.java
│ │ │ │ │ │ │ └── [ 11K] JsonTreeReader.java
│ │ │ │ │ │ ├── [4.0K] lookup
│ │ │ │ │ │ │ ├── [7.6K] ReaderLookup.java
│ │ │ │ │ │ │ └── [8.0K] RecordSetWriterLookup.java
│ │ │ │ │ │ ├── [4.0K] schema
│ │ │ │ │ │ │ └── [4.0K] inference
│ │ │ │ │ │ │ └── [6.5K] VolatileSchemaCache.java
│ │ │ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ │ │ └── [2.3K] DateTimeTextRecordSetWriter.java
│ │ │ │ │ │ ├── [4.0K] syslog
│ │ │ │ │ │ │ ├── [8.1K] Syslog5424Reader.java
│ │ │ │ │ │ │ ├── [4.6K] Syslog5424RecordReader.java
│ │ │ │ │ │ │ ├── [7.4K] SyslogReader.java
│ │ │ │ │ │ │ └── [4.1K] SyslogRecordReader.java
│ │ │ │ │ │ ├── [4.0K] text
│ │ │ │ │ │ │ ├── [4.2K] FreeFormTextRecordSetWriter.java
│ │ │ │ │ │ │ └── [3.5K] FreeFormTextWriter.java
│ │ │ │ │ │ ├── [4.0K] windowsevent
│ │ │ │ │ │ │ ├── [2.7K] WindowsEventLogReader.java
│ │ │ │ │ │ │ └── [ 27K] WindowsEventLogRecordReader.java
│ │ │ │ │ │ ├── [4.0K] xml
│ │ │ │ │ │ │ ├── [ 963] ArrayWrapping.java
│ │ │ │ │ │ │ ├── [4.0K] inference
│ │ │ │ │ │ │ │ ├── [1.6K] XmlArrayNode.java
│ │ │ │ │ │ │ │ ├── [1.7K] XmlContainerNode.java
│ │ │ │ │ │ │ │ ├── [ 927] XmlNode.java
│ │ │ │ │ │ │ │ ├── [ 906] XmlNodeType.java
│ │ │ │ │ │ │ │ ├── [6.2K] XmlRecordSource.java
│ │ │ │ │ │ │ │ ├── [3.2K] XmlSchemaInference.java
│ │ │ │ │ │ │ │ └── [1.3K] XmlTextNode.java
│ │ │ │ │ │ │ ├── [ 25K] WriteXMLResult.java
│ │ │ │ │ │ │ ├── [ 12K] XMLReader.java
│ │ │ │ │ │ │ ├── [ 25K] XMLRecordReader.java
│ │ │ │ │ │ │ └── [ 12K] XMLRecordSetWriter.java
│ │ │ │ │ │ └── [4.0K] yaml
│ │ │ │ │ │ └── [3.3K] YamlTreeReader.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ ├── [6.1K] default-grok-patterns.txt
│ │ │ │ │ ├── [4.0K] docs
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.cef.CEFReader
│ │ │ │ │ │ │ └── [ 11K] additionalDetails.md
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.csv.CSVReader
│ │ │ │ │ │ │ └── [ 15K] additionalDetails.md
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.grok.GrokReader
│ │ │ │ │ │ │ └── [ 41K] additionalDetails.md
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.json.JsonPathReader
│ │ │ │ │ │ │ └── [ 13K] additionalDetails.md
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.json.JsonTreeReader
│ │ │ │ │ │ │ └── [ 14K] additionalDetails.md
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.syslog.Syslog5424Reader
│ │ │ │ │ │ │ └── [2.6K] additionalDetails.md
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.syslog.SyslogReader
│ │ │ │ │ │ │ └── [2.0K] additionalDetails.md
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.windowsevent.WindowsEventLogReader
│ │ │ │ │ │ │ └── [2.8K] additionalDetails.md
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.xml.XMLReader
│ │ │ │ │ │ │ └── [ 26K] additionalDetails.md
│ │ │ │ │ │ ├── [4.0K] org.apache.nifi.xml.XMLRecordSetWriter
│ │ │ │ │ │ │ └── [4.4K] additionalDetails.md
│ │ │ │ │ │ └── [4.0K] org.apache.nifi.yaml.YamlTreeReader
│ │ │ │ │ │ └── [ 14K] additionalDetails.md
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [1.5K] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] avro
│ │ │ │ │ │ ├── [ 17K] TestAvroReaderWithEmbeddedSchema.java
│ │ │ │ │ │ ├── [8.8K] TestAvroReaderWithExplicitSchema.java
│ │ │ │ │ │ ├── [ 18K] TestWriteAvroResult.java
│ │ │ │ │ │ ├── [5.6K] TestWriteAvroResultWithoutSchema.java
│ │ │ │ │ │ └── [2.6K] TestWriteAvroResultWithSchema.java
│ │ │ │ │ ├── [4.0K] cef
│ │ │ │ │ │ ├── [ 12K] TestCEFReader.java
│ │ │ │ │ │ ├── [ 18K] TestCEFRecordReader.java
│ │ │ │ │ │ ├── [10.0K] TestCEFSchemaInference.java
│ │ │ │ │ │ └── [7.2K] TestCEFUtil.java
│ │ │ │ │ ├── [4.0K] csv
│ │ │ │ │ │ ├── [4.7K] ITApacheCSVRecordReader.java
│ │ │ │ │ │ ├── [3.2K] ITJacksonCSVRecordReader.java
│ │ │ │ │ │ ├── [5.6K] TestCSVHeaderSchemaStrategy.java
│ │ │ │ │ │ ├── [ 49K] TestCSVRecordReader.java
│ │ │ │ │ │ ├── [8.1K] TestCSVSchemaInference.java
│ │ │ │ │ │ ├── [7.8K] TestCSVValidators.java
│ │ │ │ │ │ ├── [ 25K] TestFastCSVRecordReader.java
│ │ │ │ │ │ ├── [ 37K] TestJacksonCSVRecordReader.java
│ │ │ │ │ │ ├── [ 18K] TestWriteCSVResult.java
│ │ │ │ │ │ └── [ 17K] TestWriteFastCSVResult.java
│ │ │ │ │ ├── [4.0K] grok
│ │ │ │ │ │ ├── [ 10K] TestGrokReader.java
│ │ │ │ │ │ └── [ 24K] TestGrokRecordReader.java
│ │ │ │ │ ├── [4.0K] json
│ │ │ │ │ │ ├── [ 13K] TestInferJsonSchemaAccessStrategy.java
│ │ │ │ │ │ ├── [ 22K] TestJsonPathRowRecordReader.java
│ │ │ │ │ │ ├── [ 12K] TestJsonSchemaInference.java
│ │ │ │ │ │ ├── [ 70K] TestJsonTreeRowRecordReader.java
│ │ │ │ │ │ └── [ 29K] TestWriteJsonResult.java
│ │ │ │ │ ├── [4.0K] lookup
│ │ │ │ │ │ ├── [6.6K] TestReaderLookup.java
│ │ │ │ │ │ └── [8.4K] TestRecordSetWriterLookup.java
│ │ │ │ │ ├── [4.0K] schema
│ │ │ │ │ │ └── [4.0K] inference
│ │ │ │ │ │ └── [4.8K] TestVolatileSchemaCache.java
│ │ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ │ ├── [1.9K] TestRecordReaderProcessor.java
│ │ │ │ │ │ └── [1.9K] TestRecordSetWriterProcessor.java
│ │ │ │ │ ├── [4.0K] syslog
│ │ │ │ │ │ ├── [ 12K] TestSyslog5424RecordReader.java
│ │ │ │ │ │ └── [9.9K] TestSyslogRecordReader.java
│ │ │ │ │ ├── [4.0K] text
│ │ │ │ │ │ ├── [4.1K] TestFreeFormTextRecordSetWriter.java
│ │ │ │ │ │ └── [5.2K] TestFreeFormTextRecordSetWriterProcessor.java
│ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ └── [4.4K] TestSchemaInferenceUtil.java
│ │ │ │ │ ├── [4.0K] windowsevent
│ │ │ │ │ │ └── [9.0K] TestWindowsEventLogRecordReader.java
│ │ │ │ │ ├── [4.0K] xml
│ │ │ │ │ │ ├── [7.3K] TestInferXmlSchema.java
│ │ │ │ │ │ ├── [ 69K] TestWriteXMLResult.java
│ │ │ │ │ │ ├── [ 21K] TestWriteXMLResultUtils.java
│ │ │ │ │ │ ├── [ 16K] TestXMLReader.java
│ │ │ │ │ │ ├── [3.8K] TestXMLReaderProcessor.java
│ │ │ │ │ │ ├── [ 87K] TestXMLRecordReader.java
│ │ │ │ │ │ ├── [ 12K] TestXMLRecordSetWriter.java
│ │ │ │ │ │ └── [4.5K] TestXMLRecordSetWriterProcessor.java
│ │ │ │ │ └── [4.0K] yaml
│ │ │ │ │ └── [ 58K] TestYamlTreeRowRecordReader.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] avro
│ │ │ │ │ ├── [ 216] avro_embed_schema.avro
│ │ │ │ │ ├── [ 18] avro_schemaless.avro
│ │ │ │ │ ├── [ 956] avro_schemaless.avsc
│ │ │ │ │ ├── [ 47] avro_schemaless_decimal.avro
│ │ │ │ │ ├── [ 447] avro_schemaless_decimal.avsc
│ │ │ │ │ ├── [ 938] datatypes.avsc
│ │ │ │ │ ├── [ 773] decimals.avsc
│ │ │ │ │ ├── [ 768] logical-types.avsc
│ │ │ │ │ ├── [1.1K] logical-types-nullable.avsc
│ │ │ │ │ ├── [ 238] multiple-types.avsc
│ │ │ │ │ ├── [ 19] recursive.avro
│ │ │ │ │ ├── [ 228] recursive.avsc
│ │ │ │ │ ├── [ 9] schemaless_simple_record.avro
│ │ │ │ │ ├── [ 378] schemaless_simple_record.avsc
│ │ │ │ │ ├── [ 335] schemaless_simple_record_extra_field.avsc
│ │ │ │ │ └── [ 123] simple.avsc
│ │ │ │ ├── [4.0K] cef
│ │ │ │ │ ├── [ 0] empty-row.txt
│ │ │ │ │ ├── [ 229] misformatted-row.txt
│ │ │ │ │ ├── [ 473] multiple-rows-decreasing-number-of-extensions.txt
│ │ │ │ │ ├── [ 473] multiple-rows-increasing-number-of-extensions.txt
│ │ │ │ │ ├── [ 263] multiple-rows-starting-with-empty-row.txt
│ │ │ │ │ ├── [ 257] multiple-rows.txt
│ │ │ │ │ ├── [ 577] multiple-rows-with-different-custom-types.txt
│ │ │ │ │ ├── [ 258] multiple-rows-with-empty-rows.txt
│ │ │ │ │ ├── [ 85] single-row-header-fields-only.txt
│ │ │ │ │ ├── [ 289] single-row-with-custom-extensions.txt
│ │ │ │ │ ├── [ 286] single-row-with-empty-custom-extensions.txt
│ │ │ │ │ ├── [ 259] single-row-with-empty-extension.txt
│ │ │ │ │ ├── [ 270] single-row-with-extensions.txt
│ │ │ │ │ ├── [ 285] single-row-with-incorrect-custom-extensions.txt
│ │ │ │ │ └── [ 91] single-row-with-incorrect-header-field.txt
│ │ │ │ ├── [4.0K] csv
│ │ │ │ │ ├── [ 204] extra-white-space.csv
│ │ │ │ │ ├── [ 187] multi-bank-account.csv
│ │ │ │ │ ├── [ 188] multi-bank-account_escapechar.csv
│ │ │ │ │ ├── [ 167] multi-bank-account_escapechar_RFC4180.csv
│ │ │ │ │ ├── [ 164] multi-bank-account_RFC4180.csv
│ │ │ │ │ ├── [ 166] multi-bank-account_spec_delimiter.csv
│ │ │ │ │ ├── [1.5K] prov-events.csv
│ │ │ │ │ ├── [ 122] single-bank-account.csv
│ │ │ │ │ └── [ 104] single-bank-account_RFC4180.csv
│ │ │ │ ├── [4.0K] grok
│ │ │ │ │ ├── [3.5K] error-with-stack-trace.log
│ │ │ │ │ ├── [ 233] grok_patterns.txt
│ │ │ │ │ ├── [1.1K] nifi-log-sample.log
│ │ │ │ │ ├── [4.4K] nifi-log-sample-multiline-with-stacktrace.log
│ │ │ │ │ └── [ 183] single-line-log-messages.txt
│ │ │ │ ├── [4.0K] json
│ │ │ │ │ ├── [ 526] bank-account-array-different-schemas.json
│ │ │ │ │ ├── [ 349] bank-account-array.json
│ │ │ │ │ ├── [ 500] bank-account-array-optional-balance.json
│ │ │ │ │ ├── [ 516] bank-account-comments.jsonc
│ │ │ │ │ ├── [ 664] bank-account-mixed.json
│ │ │ │ │ ├── [ 687] bank-account-multiarray.json
│ │ │ │ │ ├── [ 345] bank-account-multiline.json
│ │ │ │ │ ├── [ 307] bank-account-oneline.json
│ │ │ │ │ ├── [ 293] capture-fields.json
│ │ │ │ │ ├── [1.3K] choice-of-array-empty-or-array-record.json
│ │ │ │ │ ├── [ 536] choice-of-different-arrays-with-extra-fields.json
│ │ │ │ │ ├── [ 506] choice-of-embedded-arrays-and-single-records.json
│ │ │ │ │ ├── [ 207] choice-of-embedded-similar-records.json
│ │ │ │ │ ├── [ 650] choice-of-string-or-array-record.avsc
│ │ │ │ │ ├── [ 83] choice-of-string-or-array-record.json
│ │ │ │ │ ├── [3.6K] data-types.json
│ │ │ │ │ ├── [ 138] docs-example.json
│ │ │ │ │ ├── [ 117] elements-for-record-choice.json
│ │ │ │ │ ├── [ 138] empty-arrays.json
│ │ │ │ │ ├── [ 185] json-with-unicode.json
│ │ │ │ │ ├── [ 306] multiple-nested-field.json
│ │ │ │ │ ├── [ 240] nested-array-then-start-object.json
│ │ │ │ │ ├── [ 120] nested-choice-of-empty-array-or-string.json
│ │ │ │ │ ├── [ 143] nested-choice-of-record-array-or-string.json
│ │ │ │ │ ├── [4.0K] output
│ │ │ │ │ │ └── [ 452] dataTypes.json
│ │ │ │ │ ├── [ 201] primitive-type-array.json
│ │ │ │ │ ├── [3.1K] prov-events.json
│ │ │ │ │ ├── [ 385] record-choice.avsc
│ │ │ │ │ ├── [ 228] similar-records.json
│ │ │ │ │ ├── [ 160] single-bank-account.json
│ │ │ │ │ ├── [ 187] single-bank-account-wrong-field-type.json
│ │ │ │ │ ├── [ 289] single-element-deep-nested.json
│ │ │ │ │ ├── [ 233] single-element-nested-array.json
│ │ │ │ │ ├── [ 232] single-element-nested-array-middle.json
│ │ │ │ │ ├── [ 190] single-element-nested.json
│ │ │ │ │ └── [ 75] timestamp.json
│ │ │ │ ├── [4.0K] syslog
│ │ │ │ │ └── [4.0K] syslog5424
│ │ │ │ │ ├── [ 253] log_all.txt
│ │ │ │ │ ├── [ 633] log_mix_in_error.txt
│ │ │ │ │ ├── [ 608] log_mix.txt
│ │ │ │ │ └── [ 248] log.txt
│ │ │ │ ├── [4.0K] text
│ │ │ │ │ └── [ 258] testschema
│ │ │ │ ├── [4.0K] windowseventlog
│ │ │ │ │ ├── [4.4K] multiple_events.xml
│ │ │ │ │ ├── [1.7K] single_event_no_parent.xml
│ │ │ │ │ └── [1.8K] single_event.xml
│ │ │ │ ├── [4.0K] xml
│ │ │ │ │ ├── [ 133] dataWithArrayOfDifferentTypes.xml
│ │ │ │ │ ├── [ 127] field_with_sub-element.xml
│ │ │ │ │ ├── [ 287] people2.xml
│ │ │ │ │ ├── [ 302] people3.xml
│ │ │ │ │ ├── [ 735] people_array_simple.xml
│ │ │ │ │ ├── [ 952] people_array.xml
│ │ │ │ │ ├── [ 648] people_cdata.xml
│ │ │ │ │ ├── [ 934] people_complex1.xml
│ │ │ │ │ ├── [2.4K] people_complex2.xml
│ │ │ │ │ ├── [ 209] people_empty.xml
│ │ │ │ │ ├── [ 527] people_invalid.xml
│ │ │ │ │ ├── [ 822] people_map2.xml
│ │ │ │ │ ├── [ 388] people_map.xml
│ │ │ │ │ ├── [ 591] people_namespace.xml
│ │ │ │ │ ├── [1.2K] people_nested.xml
│ │ │ │ │ ├── [ 504] people_no_attributes.xml
│ │ │ │ │ ├── [ 753] people_tag_in_characters.xml
│ │ │ │ │ ├── [ 697] people_with_header_and_comments.xml
│ │ │ │ │ ├── [ 549] people.xml
│ │ │ │ │ ├── [ 116] person_record.xml
│ │ │ │ │ ├── [ 199] person.xml
│ │ │ │ │ ├── [ 258] testschema
│ │ │ │ │ ├── [ 455] testschema2
│ │ │ │ │ ├── [ 272] testschema3
│ │ │ │ │ └── [ 974] TextNodeWithAttribute.xml
│ │ │ │ └── [4.0K] yaml
│ │ │ │ ├── [ 405] bank-account-array-different-schemas.yaml
│ │ │ │ ├── [ 380] bank-account-array-optional-balance.yaml
│ │ │ │ ├── [ 266] bank-account-array.yaml
│ │ │ │ ├── [ 363] bank-account-comments.yaml
│ │ │ │ ├── [ 217] capture-fields.yaml
│ │ │ │ ├── [ 385] choice-of-different-arrays-with-extra-fields.yaml
│ │ │ │ ├── [ 310] choice-of-embedded-arrays-and-single-records.yaml
│ │ │ │ ├── [ 121] choice-of-embedded-similar-records.yaml
│ │ │ │ ├── [ 56] choice-of-string-or-array-record.yaml
│ │ │ │ ├── [ 75] elements-for-record-choice.yaml
│ │ │ │ ├── [ 223] multiple-nested-field.yaml
│ │ │ │ ├── [ 136] nested-array-then-start-object.yaml
│ │ │ │ ├── [ 158] similar-records.yaml
│ │ │ │ ├── [ 132] single-bank-account-wrong-field-type.yaml
│ │ │ │ ├── [ 115] single-bank-account.yaml
│ │ │ │ ├── [ 218] single-element-deep-nested.yaml
│ │ │ │ ├── [ 173] single-element-nested-array.yaml
│ │ │ │ ├── [ 135] single-element-nested.yaml
│ │ │ │ ├── [ 63] timestamp.yaml
│ │ │ │ └── [ 138] yaml-with-unicode.yaml
│ │ │ ├── [4.0K] nifi-record-serialization-services-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 15K] LICENSE
│ │ │ │ └── [2.6K] NOTICE
│ │ │ ├── [4.0K] nifi-record-serialization-services-shared
│ │ │ │ ├── [2.3K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] schema
│ │ │ │ │ │ └── [4.0K] inference
│ │ │ │ │ │ ├── [3.0K] CachedSchemaAccessStrategy.java
│ │ │ │ │ │ ├── [2.7K] InferSchemaAccessStrategy.java
│ │ │ │ │ │ └── [3.2K] SchemaInferenceUtil.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [3.4K] SchemaInferenceUtil.java
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] schema
│ │ │ │ └── [4.0K] inference
│ │ │ │ └── [8.6K] TestFieldTypeInference.java
│ │ │ └── [1.6K] pom.xml
│ │ ├── [4.0K] nifi-record-sink-api
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] record
│ │ │ └── [4.0K] sink
│ │ │ ├── [3.2K] RecordSinkService.java
│ │ │ └── [1.4K] RetryableIOException.java
│ │ ├── [4.0K] nifi-record-sink-service-bundle
│ │ │ ├── [4.0K] nifi-record-sink-service
│ │ │ │ ├── [4.2K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] record
│ │ │ │ │ │ └── [4.0K] sink
│ │ │ │ │ │ ├── [ 17K] EmailRecordSink.java
│ │ │ │ │ │ ├── [4.0K] event
│ │ │ │ │ │ │ └── [7.7K] UDPEventRecordSink.java
│ │ │ │ │ │ ├── [ 14K] HttpRecordSink.java
│ │ │ │ │ │ ├── [4.1K] LoggingRecordSink.java
│ │ │ │ │ │ └── [4.0K] lookup
│ │ │ │ │ │ └── [4.2K] RecordSinkServiceLookup.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [1.0K] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] record
│ │ │ │ └── [4.0K] sink
│ │ │ │ ├── [4.0K] event
│ │ │ │ │ └── [7.0K] TestUDPEventRecordSink.java
│ │ │ │ ├── [4.0K] lookup
│ │ │ │ │ ├── [3.6K] MockRecordSinkService.java
│ │ │ │ │ └── [8.1K] TestRecordSinkServiceLookup.java
│ │ │ │ ├── [6.0K] TestEmailRecordSink.java
│ │ │ │ ├── [ 12K] TestHttpRecordSink.java
│ │ │ │ ├── [3.6K] TestLoggingRecordSink.java
│ │ │ │ └── [1.7K] TestProcessor.java
│ │ │ ├── [4.0K] nifi-record-sink-service-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [ 11K] LICENSE
│ │ │ └── [1.6K] pom.xml
│ │ ├── [4.0K] nifi-schema-registry-service-api
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] schemaregistry
│ │ │ └── [4.0K] services
│ │ │ ├── [1.6K] JsonSchemaRegistry.java
│ │ │ ├── [2.2K] SchemaReferenceReader.java
│ │ │ ├── [2.7K] SchemaReferenceWriter.java
│ │ │ └── [2.2K] SchemaRegistry.java
│ │ ├── [4.0K] nifi-ssl-context-bundle
│ │ │ ├── [4.0K] nifi-ssl-context-service
│ │ │ │ ├── [2.1K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] ssl
│ │ │ │ │ │ ├── [ 18K] PEMEncodedSSLContextProvider.java
│ │ │ │ │ │ ├── [4.3K] StandardRestrictedSSLContextService.java
│ │ │ │ │ │ ├── [ 29K] StandardSSLContextService.java
│ │ │ │ │ │ └── [ 14K] StandardTlsConfiguration.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 933] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] ssl
│ │ │ │ ├── [ 16K] PEMEncodedSSLContextProviderTest.java
│ │ │ │ ├── [5.5K] StandardRestrictedSSLContextServiceTest.java
│ │ │ │ └── [ 18K] StandardSSLContextServiceTest.java
│ │ │ ├── [4.0K] nifi-ssl-context-service-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [ 681] NOTICE
│ │ │ └── [1.4K] pom.xml
│ │ ├── [4.0K] nifi-ssl-context-service-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] ssl
│ │ │ ├── [1.0K] RestrictedSSLContextService.java
│ │ │ ├── [1.9K] SSLContextProvider.java
│ │ │ └── [1.8K] SSLContextService.java
│ │ ├── [4.0K] nifi-standard-services-api-nar
│ │ │ └── [5.8K] pom.xml
│ │ ├── [4.0K] nifi-web-client-provider-bundle
│ │ │ ├── [4.0K] nifi-web-client-provider-api
│ │ │ │ ├── [1.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] web
│ │ │ │ └── [4.0K] client
│ │ │ │ └── [4.0K] provider
│ │ │ │ └── [4.0K] api
│ │ │ │ └── [1.5K] WebClientServiceProvider.java
│ │ │ ├── [4.0K] nifi-web-client-provider-service
│ │ │ │ ├── [3.2K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ └── [4.0K] client
│ │ │ │ │ │ └── [4.0K] provider
│ │ │ │ │ │ └── [4.0K] service
│ │ │ │ │ │ └── [9.5K] StandardWebClientServiceProvider.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 858] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] web
│ │ │ │ └── [4.0K] client
│ │ │ │ └── [4.0K] provider
│ │ │ │ └── [4.0K] service
│ │ │ │ └── [ 10K] StandardWebClientServiceProviderTest.java
│ │ │ ├── [4.0K] nifi-web-client-provider-service-nar
│ │ │ │ └── [1.8K] pom.xml
│ │ │ └── [1.6K] pom.xml
│ │ └── [3.1K] pom.xml
│ ├── [4.0K] nifi-standard-services-api-bom
│ │ └── [7.8K] pom.xml
│ ├── [4.0K] nifi-standard-shared-bundle
│ │ ├── [4.0K] nifi-standard-shared-bom
│ │ │ └── [ 17K] pom.xml
│ │ ├── [4.0K] nifi-standard-shared-nar
│ │ │ ├── [7.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [ 15K] NOTICE
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-stateful-analysis-bundle
│ │ ├── [4.0K] nifi-stateful-analysis-nar
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [1.8K] NOTICE
│ │ ├── [4.0K] nifi-stateful-analysis-processors
│ │ │ ├── [2.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] stateful
│ │ │ │ │ └── [4.0K] analysis
│ │ │ │ │ └── [ 17K] AttributeRollingWindow.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 849] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] stateful
│ │ │ └── [4.0K] analysis
│ │ │ └── [ 15K] AttributeRollingWindowIT.java
│ │ └── [1.8K] pom.xml
│ ├── [4.0K] nifi-update-attribute-bundle
│ │ ├── [4.0K] nifi-update-attribute-model
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] update
│ │ │ └── [4.0K] attributes
│ │ │ ├── [1.4K] Action.java
│ │ │ ├── [1.4K] Condition.java
│ │ │ ├── [4.4K] Criteria.java
│ │ │ ├── [1.2K] FlowFilePolicy.java
│ │ │ ├── [1.8K] Rule.java
│ │ │ └── [4.0K] serde
│ │ │ └── [5.4K] CriteriaSerDe.java
│ │ ├── [4.0K] nifi-update-attribute-nar
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [1.8K] NOTICE
│ │ ├── [4.0K] nifi-update-attribute-processor
│ │ │ ├── [1.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] attributes
│ │ │ │ │ └── [ 40K] UpdateAttribute.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.attributes.UpdateAttribute
│ │ │ │ │ └── [ 16K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 834] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] update
│ │ │ └── [4.0K] attributes
│ │ │ └── [ 37K] TestUpdateAttribute.java
│ │ ├── [4.0K] nifi-update-attribute-ui
│ │ │ ├── [6.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] update
│ │ │ │ └── [4.0K] attributes
│ │ │ │ ├── [4.0K] api
│ │ │ │ │ └── [ 28K] RuleResource.java
│ │ │ │ ├── [4.0K] dto
│ │ │ │ │ ├── [2.1K] ActionDTO.java
│ │ │ │ │ ├── [1.9K] ConditionDTO.java
│ │ │ │ │ ├── [2.4K] DtoFactory.java
│ │ │ │ │ └── [1.8K] RuleDTO.java
│ │ │ │ ├── [4.0K] entity
│ │ │ │ │ ├── [1.7K] ActionEntity.java
│ │ │ │ │ ├── [1.8K] ConditionEntity.java
│ │ │ │ │ ├── [2.3K] EvaluationContextEntity.java
│ │ │ │ │ ├── [2.0K] RuleEntity.java
│ │ │ │ │ └── [1.8K] RulesEntity.java
│ │ │ │ └── [5.1K] UpdateAttributeModelFactory.java
│ │ │ ├── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 13K] LICENSE
│ │ │ │ └── [3.3K] NOTICE
│ │ │ └── [4.0K] webapp
│ │ │ ├── [4.0K] META-INF
│ │ │ │ └── [ 899] nifi-processor-configuration
│ │ │ └── [4.0K] WEB-INF
│ │ │ └── [2.2K] web.xml
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-websocket-bundle
│ │ ├── [4.0K] nifi-websocket-processors
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] websocket
│ │ │ │ │ ├── [ 12K] AbstractWebSocketGatewayProcessor.java
│ │ │ │ │ ├── [5.7K] ConnectWebSocket.java
│ │ │ │ │ ├── [5.8K] ListenWebSocket.java
│ │ │ │ │ ├── [ 12K] PutWebSocket.java
│ │ │ │ │ └── [1.5K] WebSocketProcessorAttributes.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.websocket.ConnectWebSocket
│ │ │ │ │ └── [1.9K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 937] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] websocket
│ │ │ ├── [ 12K] TestConnectWebSocket.java
│ │ │ ├── [ 10K] TestListenWebSocket.java
│ │ │ └── [ 13K] TestPutWebSocket.java
│ │ ├── [4.0K] nifi-websocket-processors-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [1.7K] NOTICE
│ │ ├── [4.0K] nifi-websocket-services-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] websocket
│ │ │ │ ├── [2.0K] AbstractWebSocketService.java
│ │ │ │ ├── [1.1K] AbstractWebSocketSession.java
│ │ │ │ ├── [ 997] BinaryMessageConsumer.java
│ │ │ │ ├── [1.0K] ConnectedListener.java
│ │ │ │ ├── [1.1K] MessageSender.java
│ │ │ │ ├── [ 962] SendMessage.java
│ │ │ │ ├── [ 959] TextMessageConsumer.java
│ │ │ │ ├── [1.6K] WebSocketClientService.java
│ │ │ │ ├── [ 997] WebSocketConfigurationException.java
│ │ │ │ ├── [1019] WebSocketConnectedMessage.java
│ │ │ │ ├── [1.0K] WebSocketDisconnectedMessage.java
│ │ │ │ ├── [2.1K] WebSocketMessage.java
│ │ │ │ ├── [5.4K] WebSocketMessageRouter.java
│ │ │ │ ├── [3.0K] WebSocketMessageRouters.java
│ │ │ │ ├── [1.5K] WebSocketServerService.java
│ │ │ │ ├── [2.1K] WebSocketService.java
│ │ │ │ ├── [1.2K] WebSocketSessionInfo.java
│ │ │ │ └── [1.1K] WebSocketSession.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] websocket
│ │ │ ├── [3.4K] TestWebSocketMessageRouter.java
│ │ │ └── [2.2K] TestWebSocketMessageRouters.java
│ │ ├── [4.0K] nifi-websocket-services-api-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [1.7K] NOTICE
│ │ ├── [4.0K] nifi-websocket-services-jetty
│ │ │ ├── [3.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] websocket
│ │ │ │ │ └── [4.0K] jetty
│ │ │ │ │ ├── [3.0K] AbstractJettyWebSocketService.java
│ │ │ │ │ ├── [4.0K] dto
│ │ │ │ │ │ └── [1.4K] SessionInfo.java
│ │ │ │ │ ├── [ 23K] JettyWebSocketClient.java
│ │ │ │ │ ├── [ 18K] JettyWebSocketServer.java
│ │ │ │ │ ├── [2.2K] JettyWebSocketSession.java
│ │ │ │ │ ├── [2.6K] RoutingWebSocketListener.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [2.0K] HeaderMapExtractor.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 886] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] websocket
│ │ │ │ ├── [4.0K] jetty
│ │ │ │ │ ├── [3.5K] ControllerServiceTestContext.java
│ │ │ │ │ ├── [6.2K] TestJettyWebSocketClient.java
│ │ │ │ │ └── [4.9K] TestJettyWebSocketServer.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [2.8K] HeaderMapExtractorTest.java
│ │ │ └── [4.0K] resources
│ │ │ └── [ 873] users.properties
│ │ ├── [4.0K] nifi-websocket-services-jetty-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [1.9K] NOTICE
│ │ └── [1.7K] pom.xml
│ ├── [4.0K] nifi-windows-event-log-bundle
│ │ ├── [4.0K] nifi-windows-event-log-nar
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 11K] LICENSE
│ │ │ └── [ 771] NOTICE
│ │ ├── [4.0K] nifi-windows-event-log-processors
│ │ │ ├── [3.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] windows
│ │ │ │ │ └── [4.0K] event
│ │ │ │ │ └── [4.0K] log
│ │ │ │ │ ├── [1006] AlreadySubscribedException.java
│ │ │ │ │ ├── [ 17K] ConsumeWindowsEventLog.java
│ │ │ │ │ └── [4.0K] jna
│ │ │ │ │ ├── [1.9K] ErrorLookup.java
│ │ │ │ │ ├── [5.5K] EventSubscribeXmlRenderingCallback.java
│ │ │ │ │ └── [2.8K] WEvtApi.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.windows.event.log.ConsumeWindowsEventLog
│ │ │ │ │ └── [3.1K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 848] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] windows
│ │ │ │ └── [4.0K] event
│ │ │ │ └── [4.0K] log
│ │ │ │ ├── [ 12K] ConsumeWindowsEventLogTest.java
│ │ │ │ ├── [4.0K] jna
│ │ │ │ │ ├── [2.1K] ErrorLookupTest.java
│ │ │ │ │ └── [5.3K] EventSubscribeXmlRenderingCallbackTest.java
│ │ │ │ └── [5.7K] JNALauncherInterceptor.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 848] org.junit.platform.launcher.LauncherInterceptor
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-workday-bundle
│ │ ├── [4.0K] nifi-workday-processors
│ │ │ ├── [3.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] workday
│ │ │ │ │ └── [ 22K] GetWorkdayReport.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.workday.GetWorkdayReport
│ │ │ │ │ └── [2.1K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 833] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] workday
│ │ │ └── [ 20K] GetWorkdayReportTest.java
│ │ ├── [4.0K] nifi-workday-processors-nar
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [ 16K] LICENSE
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-zendesk-bundle
│ │ ├── [4.0K] nifi-zendesk-common
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] common
│ │ │ │ └── [4.0K] zendesk
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ ├── [5.1K] ZendeskRecordPathUtils.java
│ │ │ │ │ └── [4.5K] ZendeskUtils.java
│ │ │ │ ├── [4.0K] validation
│ │ │ │ │ └── [2.0K] JsonPointerPropertyNameValidator.java
│ │ │ │ ├── [1.7K] ZendeskAuthenticationContext.java
│ │ │ │ ├── [2.1K] ZendeskAuthenticationType.java
│ │ │ │ ├── [4.0K] ZendeskClient.java
│ │ │ │ └── [5.4K] ZendeskProperties.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] common
│ │ │ └── [4.0K] zendesk
│ │ │ └── [4.8K] ZendeskRecordPathUtilsTest.java
│ │ ├── [4.0K] nifi-zendesk-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [ 169] NOTICE
│ │ ├── [4.0K] nifi-zendesk-processors
│ │ │ ├── [2.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ └── [4.0K] zendesk
│ │ │ │ │ ├── [3.3K] AbstractZendesk.java
│ │ │ │ │ ├── [ 12K] GetZendesk.java
│ │ │ │ │ ├── [ 13K] PutZendeskTicket.java
│ │ │ │ │ ├── [3.3K] ZendeskExportMethod.java
│ │ │ │ │ └── [4.8K] ZendeskResource.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ ├── [4.0K] org.apache.nifi.processors.zendesk.GetZendesk
│ │ │ │ │ │ └── [2.8K] additionalDetails.md
│ │ │ │ │ └── [4.0K] org.apache.nifi.processors.zendesk.PutZendeskTicket
│ │ │ │ │ └── [4.2K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 878] org.apache.nifi.processor.Processor
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] processors
│ │ │ └── [4.0K] zendesk
│ │ │ ├── [ 13K] GetZendeskTest.java
│ │ │ ├── [ 16K] PutZendeskTicketTest.java
│ │ │ └── [1.8K] ZendeskAuthenticationTypeTest.java
│ │ ├── [4.0K] nifi-zendesk-services
│ │ │ ├── [3.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [4.0K] zendesk
│ │ │ │ │ └── [ 11K] ZendeskRecordSink.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [4.0K] docs
│ │ │ │ │ └── [4.0K] org.apache.nifi.services.zendesk.ZendeskRecordSink
│ │ │ │ │ └── [4.3K] additionalDetails.md
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 832] org.apache.nifi.controller.ControllerService
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] services
│ │ │ └── [4.0K] zendesk
│ │ │ └── [ 17K] ZendeskRecordSinkTest.java
│ │ ├── [4.0K] nifi-zendesk-services-nar
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 13K] LICENSE
│ │ │ └── [ 178] NOTICE
│ │ └── [1.6K] pom.xml
│ └── [4.6K] pom.xml
├── [4.0K] nifi-framework-api
│ ├── [2.1K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ ├── [4.0K] action
│ │ │ ├── [4.0K] component
│ │ │ │ └── [4.0K] details
│ │ │ │ ├── [ 998] ExtensionDetails.java
│ │ │ │ └── [1016] RemoteProcessGroupDetails.java
│ │ │ ├── [4.0K] details
│ │ │ │ ├── [1.0K] ConfigureDetails.java
│ │ │ │ ├── [1.2K] ConnectDetails.java
│ │ │ │ ├── [1.0K] MoveDetails.java
│ │ │ │ └── [ 998] PurgeDetails.java
│ │ │ ├── [2.1K] FlowActionAttribute.java
│ │ │ ├── [1.2K] FlowAction.java
│ │ │ ├── [1.4K] FlowActionReporterConfigurationContext.java
│ │ │ ├── [1.2K] FlowActionReporterCreationException.java
│ │ │ ├── [1.9K] FlowActionReporter.java
│ │ │ ├── [1.1K] RequestAction.java
│ │ │ └── [1.3K] RequestDetails.java
│ │ ├── [4.0K] asset
│ │ │ ├── [1.3K] AssetManagerInitializationContext.java
│ │ │ ├── [3.0K] AssetManager.java
│ │ │ └── [1.0K] AssetReferenceLookup.java
│ │ ├── [4.0K] authentication
│ │ │ ├── [4.0K] annotation
│ │ │ │ └── [1.2K] LoginIdentityProviderContext.java
│ │ │ ├── [2.0K] AuthenticationResponse.java
│ │ │ ├── [4.0K] exception
│ │ │ │ ├── [1.2K] AuthenticationNotSupportedException.java
│ │ │ │ ├── [1.2K] IdentityAccessException.java
│ │ │ │ ├── [1.2K] InvalidLoginCredentialsException.java
│ │ │ │ ├── [1.3K] ProviderCreationException.java
│ │ │ │ └── [1.3K] ProviderDestructionException.java
│ │ │ ├── [1.2K] LoginCredentials.java
│ │ │ ├── [1.8K] LoginIdentityProviderConfigurationContext.java
│ │ │ ├── [1010] LoginIdentityProviderInitializationContext.java
│ │ │ ├── [2.7K] LoginIdentityProvider.java
│ │ │ └── [ 975] LoginIdentityProviderLookup.java
│ │ ├── [4.0K] authorization
│ │ │ ├── [ 37K] AbstractPolicyBasedAuthorizer.java
│ │ │ ├── [1.3K] AccessDeniedException.java
│ │ │ ├── [ 11K] AccessPolicy.java
│ │ │ ├── [1.2K] AccessPolicyProviderInitializationContext.java
│ │ │ ├── [3.7K] AccessPolicyProvider.java
│ │ │ ├── [1.2K] AccessPolicyProviderLookup.java
│ │ │ ├── [4.0K] annotation
│ │ │ │ └── [1.2K] AuthorizerContext.java
│ │ │ ├── [1.3K] AuthorizationAuditor.java
│ │ │ ├── [8.0K] AuthorizationRequest.java
│ │ │ ├── [3.5K] AuthorizationResult.java
│ │ │ ├── [1.6K] AuthorizerConfigurationContext.java
│ │ │ ├── [1.1K] AuthorizerInitializationContext.java
│ │ │ ├── [2.7K] Authorizer.java
│ │ │ ├── [1.1K] AuthorizerLookup.java
│ │ │ ├── [5.3K] ConfigurableAccessPolicyProvider.java
│ │ │ ├── [6.9K] ConfigurableUserGroupProvider.java
│ │ │ ├── [4.0K] exception
│ │ │ │ ├── [1.2K] AuthorizationAccessException.java
│ │ │ │ ├── [1.3K] AuthorizerCreationException.java
│ │ │ │ ├── [1.3K] AuthorizerDestructionException.java
│ │ │ │ └── [1.1K] UninheritableAuthorizationsException.java
│ │ │ ├── [7.8K] Group.java
│ │ │ ├── [3.4K] ManagedAuthorizer.java
│ │ │ ├── [1.5K] RequestAction.java
│ │ │ ├── [4.0K] resource
│ │ │ │ ├── [ 12K] Authorizable.java
│ │ │ │ ├── [1.4K] ComponentAuthorizable.java
│ │ │ │ └── [1.2K] VersionedComponentAuthorizable.java
│ │ │ ├── [1.3K] Resource.java
│ │ │ ├── [4.0K] user
│ │ │ │ └── [2.1K] NiFiUser.java
│ │ │ ├── [1.6K] UserAndGroups.java
│ │ │ ├── [ 991] UserContextKeys.java
│ │ │ ├── [1.3K] UserGroupProviderInitializationContext.java
│ │ │ ├── [5.1K] UserGroupProvider.java
│ │ │ ├── [1.2K] UserGroupProviderLookup.java
│ │ │ ├── [5.7K] User.java
│ │ │ └── [1.9K] UsersAndAccessPolicies.java
│ │ ├── [4.0K] bootstrap
│ │ │ ├── [1.6K] BootstrapCommunicator.java
│ │ │ └── [ 894] CommandResult.java
│ │ ├── [4.0K] bundle
│ │ │ ├── [2.6K] BundleCoordinate.java
│ │ │ ├── [5.5K] BundleDetails.java
│ │ │ └── [2.2K] Bundle.java
│ │ ├── [4.0K] cluster
│ │ │ ├── [1006] ClusterDetailsFactory.java
│ │ │ └── [1.6K] ConnectionState.java
│ │ ├── [4.0K] components
│ │ │ ├── [1.3K] AsyncLoadedProcessor.java
│ │ │ └── [4.0K] state
│ │ │ ├── [4.0K] annotation
│ │ │ │ └── [1.2K] StateProviderContext.java
│ │ │ ├── [1.8K] StateProviderInitializationContext.java
│ │ │ └── [6.3K] StateProvider.java
│ │ ├── [4.0K] configuration
│ │ │ └── [2.0K] NonComponentConfigurationContext.java
│ │ ├── [4.0K] controller
│ │ │ ├── [4.6K] ControllerServiceProxyWrapper.java
│ │ │ ├── [ 931] DecommissionTask.java
│ │ │ ├── [4.0K] exception
│ │ │ │ └── [1.2K] ProcessorInstantiationException.java
│ │ │ ├── [4.0K] leader
│ │ │ │ └── [4.0K] election
│ │ │ │ ├── [6.2K] LeaderElectionManager.java
│ │ │ │ └── [1.3K] LeaderElectionStateChangeListener.java
│ │ │ ├── [4.0K] queue
│ │ │ │ ├── [1.9K] DropFlowFileState.java
│ │ │ │ ├── [2.8K] DropFlowFileStatus.java
│ │ │ │ ├── [ 13K] FlowFileQueue.java
│ │ │ │ ├── [2.1K] FlowFileSummary.java
│ │ │ │ ├── [1004] IllegalClusterStateException.java
│ │ │ │ ├── [1.9K] ListFlowFileState.java
│ │ │ │ ├── [2.2K] ListFlowFileStatus.java
│ │ │ │ ├── [1.2K] LoadBalanceCompression.java
│ │ │ │ ├── [3.6K] LoadBalancedFlowFileQueue.java
│ │ │ │ ├── [1.7K] LoadBalanceStrategy.java
│ │ │ │ ├── [1.1K] LocalQueuePartitionDiagnostics.java
│ │ │ │ ├── [ 983] PollStrategy.java
│ │ │ │ ├── [1.0K] QueueDiagnostics.java
│ │ │ │ ├── [1.1K] RemoteQueuePartitionDiagnostics.java
│ │ │ │ ├── [2.5K] SortColumn.java
│ │ │ │ └── [1.4K] SortDirection.java
│ │ │ ├── [4.0K] repository
│ │ │ │ ├── [4.0K] claim
│ │ │ │ │ ├── [1.5K] ContentClaim.java
│ │ │ │ │ ├── [3.0K] ResourceClaim.java
│ │ │ │ │ └── [6.6K] ResourceClaimManager.java
│ │ │ │ ├── [1.6K] ContentRepositoryContext.java
│ │ │ │ ├── [ 12K] ContentRepository.java
│ │ │ │ ├── [1.9K] FlowFileRecord.java
│ │ │ │ ├── [7.9K] FlowFileRepository.java
│ │ │ │ ├── [6.3K] FlowFileSwapManager.java
│ │ │ │ ├── [1.6K] IncompleteSwapFileException.java
│ │ │ │ ├── [1.2K] QueueProvider.java
│ │ │ │ ├── [3.0K] RepositoryRecord.java
│ │ │ │ ├── [ 988] RepositoryRecordType.java
│ │ │ │ ├── [1018] ResourceClaimReference.java
│ │ │ │ ├── [1.4K] SwapContents.java
│ │ │ │ ├── [1.5K] SwapManagerInitializationContext.java
│ │ │ │ └── [2.1K] SwapSummary.java
│ │ │ ├── [2.1K] Snippet.java
│ │ │ ├── [4.0K] status
│ │ │ │ └── [4.0K] history
│ │ │ │ ├── [1.1K] GarbageCollectionHistory.java
│ │ │ │ ├── [1.4K] GarbageCollectionStatus.java
│ │ │ │ ├── [2.4K] MetricDescriptor.java
│ │ │ │ ├── [1.1K] StatusHistoryDumpFactory.java
│ │ │ │ ├── [1.3K] StatusHistoryDump.java
│ │ │ │ ├── [1.5K] StatusHistory.java
│ │ │ │ ├── [7.6K] StatusHistoryRepository.java
│ │ │ │ ├── [1.7K] StatusSnapshot.java
│ │ │ │ ├── [ 921] ValueMapper.java
│ │ │ │ └── [ 950] ValueReducer.java
│ │ │ └── [4.7K] Triggerable.java
│ │ ├── [4.0K] diagnostics
│ │ │ ├── [1.1K] DiagnosticLevel.java
│ │ │ ├── [ 962] DiagnosticsDumpElement.java
│ │ │ ├── [ 990] DiagnosticsDump.java
│ │ │ ├── [ 925] DiagnosticsFactory.java
│ │ │ ├── [ 933] DiagnosticTask.java
│ │ │ ├── [1.7K] GarbageCollection.java
│ │ │ ├── [1.3K] StandardDiagnosticsDumpElement.java
│ │ │ ├── [2.4K] StandardDiagnosticsDump.java
│ │ │ ├── [9.3K] SystemDiagnostics.java
│ │ │ └── [5.1K] ThreadDumpTask.java
│ │ ├── [4.0K] events
│ │ │ └── [1.2K] EventReporter.java
│ │ ├── [4.0K] flowfile
│ │ │ └── [1.2K] FlowFilePrioritizer.java
│ │ ├── [4.0K] nar
│ │ │ ├── [1.5K] NarManifestEntry.java
│ │ │ ├── [8.8K] NarManifest.java
│ │ │ ├── [2.8K] NarPersistenceContext.java
│ │ │ ├── [2.1K] NarPersistenceInfo.java
│ │ │ ├── [1.1K] NarPersistenceProviderInitializationContext.java
│ │ │ ├── [4.1K] NarPersistenceProvider.java
│ │ │ ├── [7.7K] NarProperties.java
│ │ │ ├── [1.4K] NarProperty.java
│ │ │ └── [1.1K] NarSource.java
│ │ ├── [4.0K] provenance
│ │ │ ├── [2.6K] IdentifierLookup.java
│ │ │ ├── [4.0K] lineage
│ │ │ │ ├── [1.8K] ComputeLineageResult.java
│ │ │ │ ├── [2.6K] ComputeLineageSubmission.java
│ │ │ │ ├── [ 961] LineageComputationType.java
│ │ │ │ ├── [ 968] LineageEdge.java
│ │ │ │ ├── [1.2K] Lineage.java
│ │ │ │ ├── [1.6K] LineageNode.java
│ │ │ │ ├── [ 926] LineageNodeType.java
│ │ │ │ └── [1.1K] ProvenanceEventLineageNode.java
│ │ │ ├── [2.4K] ProvenanceAuthorizableFactory.java
│ │ │ ├── [ 12K] ProvenanceRepository.java
│ │ │ └── [4.0K] search
│ │ │ ├── [2.7K] Query.java
│ │ │ ├── [2.0K] QueryResult.java
│ │ │ ├── [1.7K] QuerySubmission.java
│ │ │ ├── [1.7K] SearchableField.java
│ │ │ ├── [ 941] SearchableFieldType.java
│ │ │ ├── [ 972] SearchTerm.java
│ │ │ └── [1.6K] SearchTerms.java
│ │ ├── [4.0K] remote
│ │ │ └── [1.6K] RemoteDestination.java
│ │ └── [4.0K] web
│ │ ├── [1.3K] ClusterRequestException.java
│ │ ├── [2.7K] ComponentDescriptor.java
│ │ ├── [4.6K] ComponentDetails.java
│ │ ├── [3.2K] ConfigurationAction.java
│ │ ├── [1.1K] ContentAccess.java
│ │ ├── [1.3K] ContentRequestContext.java
│ │ ├── [1.7K] DownloadableContent.java
│ │ ├── [1.2K] InvalidRevisionException.java
│ │ ├── [4.6K] NiFiWebConfigurationContext.java
│ │ ├── [1.4K] NiFiWebConfigurationRequestContext.java
│ │ ├── [1.4K] NiFiWebRequestContext.java
│ │ ├── [1.2K] ResourceNotFoundException.java
│ │ ├── [3.9K] Revision.java
│ │ ├── [1.4K] UiExtensionType.java
│ │ └── [2.1K] ViewableContent.java
│ └── [4.0K] test
│ ├── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ ├── [4.0K] authorization
│ │ │ ├── [6.1K] MockPolicyBasedAuthorizer.java
│ │ │ ├── [ 13K] TestAbstractPolicyBasedAuthorizer.java
│ │ │ ├── [8.7K] TestAccessPolicy.java
│ │ │ ├── [5.6K] TestGroup.java
│ │ │ └── [2.6K] TestUser.java
│ │ ├── [4.0K] bundle
│ │ │ ├── [2.9K] BundleCoordinateTest.java
│ │ │ └── [6.4K] BundleDetailsTest.java
│ │ ├── [4.0K] nar
│ │ │ ├── [5.2K] NarManifestTest.java
│ │ │ └── [6.6K] NarPropertiesTest.java
│ │ └── [4.0K] web
│ │ └── [2.4K] TestRevision.java
│ └── [4.0K] resources
│ └── [4.0K] nar
│ ├── [ 375] MANIFEST-FULL.MF
│ └── [ 152] MANIFEST-MINIMAL.MF
├── [4.0K] nifi-framework-bundle
│ ├── [4.0K] nifi-framework
│ │ ├── [4.0K] nifi-administration
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] admin
│ │ │ │ │ ├── [4.0K] action
│ │ │ │ │ │ ├── [1.2K] ActionConverter.java
│ │ │ │ │ │ ├── [5.8K] ActionToFlowActionConverter.java
│ │ │ │ │ │ └── [1.2K] StandardFlowAction.java
│ │ │ │ │ └── [4.0K] service
│ │ │ │ │ ├── [1.2K] AdministrationException.java
│ │ │ │ │ ├── [2.9K] AuditService.java
│ │ │ │ │ ├── [4.0K] entity
│ │ │ │ │ │ ├── [1.4K] ActionEntity.java
│ │ │ │ │ │ ├── [1.3K] ActionLink.java
│ │ │ │ │ │ ├── [1.3K] ConfigureDetailsEntity.java
│ │ │ │ │ │ ├── [1.4K] ConnectDetailsEntity.java
│ │ │ │ │ │ ├── [1.1K] EntityProperty.java
│ │ │ │ │ │ ├── [1.3K] EntityType.java
│ │ │ │ │ │ ├── [1.2K] ExtensionDetailsEntity.java
│ │ │ │ │ │ ├── [1.3K] MoveDetailsEntity.java
│ │ │ │ │ │ └── [1.2K] PurgeDetailsEntity.java
│ │ │ │ │ └── [ 31K] EntityStoreAuditService.java
│ │ │ │ └── [4.0K] history
│ │ │ │ ├── [1.6K] History.java
│ │ │ │ ├── [2.3K] HistoryQuery.java
│ │ │ │ └── [1.5K] PreviousValue.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] admin
│ │ │ ├── [4.0K] action
│ │ │ │ └── [3.6K] ActionToFlowActionConverterTest.java
│ │ │ └── [4.0K] service
│ │ │ └── [ 21K] EntityStoreAuditServiceTest.java
│ │ ├── [4.0K] nifi-authorizer
│ │ │ ├── [5.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] authorization
│ │ │ │ │ │ ├── [1.7K] AccessPolicyProviderFactory.java
│ │ │ │ │ │ ├── [2.8K] AccessPolicyProviderInvocationHandler.java
│ │ │ │ │ │ ├── [2.4K] AuthorizationAuditorInvocationHandler.java
│ │ │ │ │ │ ├── [3.4K] AuthorizerCapabilityDetection.java
│ │ │ │ │ │ ├── [ 25K] AuthorizerFactoryBean.java
│ │ │ │ │ │ ├── [ 28K] AuthorizerFactory.java
│ │ │ │ │ │ ├── [2.7K] AuthorizerInvocationHandler.java
│ │ │ │ │ │ ├── [1.7K] UserGroupProviderFactory.java
│ │ │ │ │ │ └── [2.0K] UserGroupProviderInvocationHandler.java
│ │ │ │ │ └── [4.0K] framework
│ │ │ │ │ └── [4.0K] configuration
│ │ │ │ │ └── [2.0K] AuthorizerConfiguration.java
│ │ │ │ └── [4.0K] xsd
│ │ │ │ └── [3.1K] authorizers.xsd
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] authorization
│ │ │ │ ├── [4.1K] AuthorizerFactoryBeanTest.java
│ │ │ │ ├── [ 14K] AuthorizerFactoryTest.java
│ │ │ │ └── [4.0K] mock
│ │ │ │ ├── [2.4K] MockAccessPolicyProvider.java
│ │ │ │ ├── [2.0K] MockAuthorizer.java
│ │ │ │ └── [2.6K] MockUserGroupProvider.java
│ │ │ └── [4.0K] resources
│ │ │ └── [1.4K] authorizers.xml
│ │ ├── [4.0K] nifi-client-dto
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] web
│ │ │ │ └── [4.0K] api
│ │ │ │ ├── [ 12K] dto
│ │ │ │ │ ├── [4.1K] AboutDTO.java
│ │ │ │ │ ├── [1.9K] AccessPolicyDTO.java
│ │ │ │ │ ├── [2.6K] AccessPolicySummaryDTO.java
│ │ │ │ │ ├── [1.5K] AccessTokenExpirationDTO.java
│ │ │ │ │ ├── [4.0K] action
│ │ │ │ │ │ ├── [4.3K] ActionDTO.java
│ │ │ │ │ │ ├── [4.0K] component
│ │ │ │ │ │ │ └── [4.0K] details
│ │ │ │ │ │ │ ├── [1.1K] ComponentDetailsDTO.java
│ │ │ │ │ │ │ ├── [1.3K] ExtensionDetailsDTO.java
│ │ │ │ │ │ │ └── [1.4K] RemoteProcessGroupDetailsDTO.java
│ │ │ │ │ │ ├── [4.0K] details
│ │ │ │ │ │ │ ├── [1.1K] ActionDetailsDTO.java
│ │ │ │ │ │ │ ├── [1.9K] ConfigureDetailsDTO.java
│ │ │ │ │ │ │ ├── [3.5K] ConnectDetailsDTO.java
│ │ │ │ │ │ │ ├── [2.5K] MoveDetailsDTO.java
│ │ │ │ │ │ │ └── [1.6K] PurgeDetailsDTO.java
│ │ │ │ │ │ ├── [2.3K] HistoryDTO.java
│ │ │ │ │ │ └── [3.6K] HistoryQueryDTO.java
│ │ │ │ │ ├── [4.2K] AffectedComponentDTO.java
│ │ │ │ │ ├── [2.6K] AllowableValueDTO.java
│ │ │ │ │ ├── [1.6K] AnalyzeFlowRequestDTO.java
│ │ │ │ │ ├── [1004] AnalyzeFlowRequestUpdateStepDTO.java
│ │ │ │ │ ├── [2.4K] AssetDTO.java
│ │ │ │ │ ├── [2.1K] AssetReferenceDTO.java
│ │ │ │ │ ├── [4.1K] AsynchronousRequestDTO.java
│ │ │ │ │ ├── [2.6K] AuthenticationConfigurationDTO.java
│ │ │ │ │ ├── [1.7K] BannerDTO.java
│ │ │ │ │ ├── [2.1K] BatchSettingsDTO.java
│ │ │ │ │ ├── [2.1K] BulletinBoardDTO.java
│ │ │ │ │ ├── [4.4K] BulletinDTO.java
│ │ │ │ │ ├── [3.4K] BulletinQueryDTO.java
│ │ │ │ │ ├── [2.7K] BundleDTO.java
│ │ │ │ │ ├── [2.0K] ClusterDTO.java
│ │ │ │ │ ├── [2.9K] ClusterSummaryDTO.java
│ │ │ │ │ ├── [2.9K] ComponentDifferenceDTO.java
│ │ │ │ │ ├── [2.9K] ComponentDTO.java
│ │ │ │ │ ├── [1.8K] ComponentHistoryDTO.java
│ │ │ │ │ ├── [2.1K] ComponentReferenceDTO.java
│ │ │ │ │ ├── [2.5K] ComponentRestrictionPermissionDTO.java
│ │ │ │ │ ├── [2.5K] ComponentStateDTO.java
│ │ │ │ │ ├── [2.1K] ComponentValidationResultDTO.java
│ │ │ │ │ ├── [2.3K] ConfigurationAnalysisDTO.java
│ │ │ │ │ ├── [1.8K] ConfigVerificationResultDTO.java
│ │ │ │ │ ├── [4.5K] ConnectableDTO.java
│ │ │ │ │ ├── [9.9K] ConnectionDTO.java
│ │ │ │ │ ├── [2.2K] ContentViewerDTO.java
│ │ │ │ │ ├── [1.5K] ControllerConfigurationDTO.java
│ │ │ │ │ ├── [8.6K] ControllerDTO.java
│ │ │ │ │ ├── [2.3K] ControllerServiceApiDTO.java
│ │ │ │ │ ├── [ 11K] ControllerServiceDTO.java
│ │ │ │ │ ├── [6.8K] ControllerServiceReferencingComponentDTO.java
│ │ │ │ │ ├── [2.7K] CounterDTO.java
│ │ │ │ │ ├── [2.0K] CountersDTO.java
│ │ │ │ │ ├── [2.3K] CountersSnapshotDTO.java
│ │ │ │ │ ├── [4.0K] diagnostics
│ │ │ │ │ │ ├── [1.7K] ClassLoaderDiagnosticsDTO.java
│ │ │ │ │ │ ├── [2.3K] ConnectionDiagnosticsDTO.java
│ │ │ │ │ │ ├── [2.7K] ConnectionDiagnosticsSnapshotDTO.java
│ │ │ │ │ │ ├── [1.8K] ControllerServiceDiagnosticsDTO.java
│ │ │ │ │ │ ├── [2.2K] GarbageCollectionDiagnosticsDTO.java
│ │ │ │ │ │ ├── [2.3K] GCDiagnosticsSnapshotDTO.java
│ │ │ │ │ │ ├── [2.3K] JVMControllerDiagnosticsSnapshotDTO.java
│ │ │ │ │ │ ├── [2.3K] JVMDiagnosticsDTO.java
│ │ │ │ │ │ ├── [5.2K] JVMDiagnosticsSnapshotDTO.java
│ │ │ │ │ │ ├── [2.8K] JVMFlowDiagnosticsSnapshotDTO.java
│ │ │ │ │ │ ├── [7.0K] JVMSystemDiagnosticsSnapshotDTO.java
│ │ │ │ │ │ ├── [5.0K] LocalQueuePartitionDTO.java
│ │ │ │ │ │ ├── [2.0K] NodeGCDiagnosticsSnapshotDTO.java
│ │ │ │ │ │ ├── [2.0K] NodeJVMDiagnosticsSnapshotDTO.java
│ │ │ │ │ │ ├── [4.2K] ProcessorDiagnosticsDTO.java
│ │ │ │ │ │ ├── [4.5K] RemoteQueuePartitionDTO.java
│ │ │ │ │ │ ├── [3.6K] RepositoryUsageDTO.java
│ │ │ │ │ │ └── [3.0K] ThreadDumpDTO.java
│ │ │ │ │ ├── [2.0K] DifferenceDTO.java
│ │ │ │ │ ├── [1.7K] DimensionsDTO.java
│ │ │ │ │ ├── [5.2K] DocumentedTypeDTO.java
│ │ │ │ │ ├── [7.4K] DropRequestDTO.java
│ │ │ │ │ ├── [2.0K] ExplicitRestrictionDTO.java
│ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ ├── [2.2K] FlowBreadcrumbDTO.java
│ │ │ │ │ │ ├── [4.5K] FlowDTO.java
│ │ │ │ │ │ └── [3.9K] ProcessGroupFlowDTO.java
│ │ │ │ │ ├── [8.4K] FlowAnalysisRuleDTO.java
│ │ │ │ │ ├── [4.4K] FlowAnalysisRuleViolationDTO.java
│ │ │ │ │ ├── [4.7K] FlowConfigurationDTO.java
│ │ │ │ │ ├── [4.1K] FlowFileDTO.java
│ │ │ │ │ ├── [5.0K] FlowFileSummaryDTO.java
│ │ │ │ │ ├── [1.3K] FlowRegistryBranchDTO.java
│ │ │ │ │ ├── [1.9K] FlowRegistryBucketDTO.java
│ │ │ │ │ ├── [7.1K] FlowRegistryClientDTO.java
│ │ │ │ │ ├── [ 12K] FlowSnippetDTO.java
│ │ │ │ │ ├── [3.5K] FlowUpdateRequestDTO.java
│ │ │ │ │ ├── [1023] FunnelDTO.java
│ │ │ │ │ ├── [1.8K] JmxMetricsResultDTO.java
│ │ │ │ │ ├── [2.7K] LabelDTO.java
│ │ │ │ │ ├── [5.8K] ListingRequestDTO.java
│ │ │ │ │ ├── [2.4K] NarCoordinateDTO.java
│ │ │ │ │ ├── [5.0K] NarSummaryDTO.java
│ │ │ │ │ ├── [2.3K] NodeCountersSnapshotDTO.java
│ │ │ │ │ ├── [6.3K] NodeDTO.java
│ │ │ │ │ ├── [2.1K] NodeEventDTO.java
│ │ │ │ │ ├── [2.4K] NodeSystemDiagnosticsSnapshotDTO.java
│ │ │ │ │ ├── [3.9K] ParameterContextDTO.java
│ │ │ │ │ ├── [ 916] ParameterContextHandlingStrategy.java
│ │ │ │ │ ├── [1.4K] ParameterContextReferenceDTO.java
│ │ │ │ │ ├── [2.1K] ParameterContextUpdateRequestDTO.java
│ │ │ │ │ ├── [1000] ParameterContextUpdateStepDTO.java
│ │ │ │ │ ├── [2.1K] ParameterContextValidationRequestDTO.java
│ │ │ │ │ ├── [1.4K] ParameterContextValidationResultsDTO.java
│ │ │ │ │ ├── [1008] ParameterContextValidationStepDTO.java
│ │ │ │ │ ├── [4.8K] ParameterDTO.java
│ │ │ │ │ ├── [2.8K] ParameterProviderApplyParametersRequestDTO.java
│ │ │ │ │ ├── [1.0K] ParameterProviderApplyParametersUpdateStepDTO.java
│ │ │ │ │ ├── [2.3K] ParameterProviderConfigurationDTO.java
│ │ │ │ │ ├── [9.8K] ParameterProviderDTO.java
│ │ │ │ │ ├── [1.8K] ParameterProviderReferencingComponentDTO.java
│ │ │ │ │ ├── [1.6K] ParameterStatusDTO.java
│ │ │ │ │ ├── [1.1K] ParameterStatus.java
│ │ │ │ │ ├── [1.9K] PermissionsDTO.java
│ │ │ │ │ ├── [4.9K] PortDTO.java
│ │ │ │ │ ├── [1.6K] PositionDTO.java
│ │ │ │ │ ├── [2.2K] PreviousValueDTO.java
│ │ │ │ │ ├── [ 15K] ProcessGroupDTO.java
│ │ │ │ │ ├── [1.5K] ProcessGroupNameDTO.java
│ │ │ │ │ ├── [1009] ProcessGroupReplaceRequestDTO.java
│ │ │ │ │ ├── [ 12K] ProcessorConfigDTO.java
│ │ │ │ │ ├── [10.0K] ProcessorDTO.java
│ │ │ │ │ ├── [2.6K] ProcessorRunStatusDetailsDTO.java
│ │ │ │ │ ├── [1.7K] PropertyDependencyDTO.java
│ │ │ │ │ ├── [6.7K] PropertyDescriptorDTO.java
│ │ │ │ │ ├── [1.4K] PropertyHistoryDTO.java
│ │ │ │ │ ├── [4.0K] provenance
│ │ │ │ │ │ ├── [1.9K] AttributeDTO.java
│ │ │ │ │ │ ├── [1.7K] LatestProvenanceEventsDTO.java
│ │ │ │ │ │ ├── [4.0K] lineage
│ │ │ │ │ │ │ ├── [3.9K] LineageDTO.java
│ │ │ │ │ │ │ ├── [3.8K] LineageRequestDTO.java
│ │ │ │ │ │ │ ├── [2.0K] LineageResultsDTO.java
│ │ │ │ │ │ │ ├── [2.9K] ProvenanceLinkDTO.java
│ │ │ │ │ │ │ └── [4.4K] ProvenanceNodeDTO.java
│ │ │ │ │ │ ├── [4.0K] ProvenanceDTO.java
│ │ │ │ │ │ ├── [ 18K] ProvenanceEventDTO.java
│ │ │ │ │ │ ├── [1.5K] ProvenanceOptionsDTO.java
│ │ │ │ │ │ ├── [5.0K] ProvenanceRequestDTO.java
│ │ │ │ │ │ ├── [3.8K] ProvenanceResultsDTO.java
│ │ │ │ │ │ ├── [2.1K] ProvenanceSearchableFieldDTO.java
│ │ │ │ │ │ └── [1.6K] ProvenanceSearchValueDTO.java
│ │ │ │ │ ├── [1.6K] QueueSizeDTO.java
│ │ │ │ │ ├── [1.1K] ReadablePermission.java
│ │ │ │ │ ├── [2.3K] RelationshipDTO.java
│ │ │ │ │ ├── [4.0K] remote
│ │ │ │ │ │ └── [2.0K] PeerDTO.java
│ │ │ │ │ ├── [1.9K] RemoteProcessGroupContentsDTO.java
│ │ │ │ │ ├── [ 12K] RemoteProcessGroupDTO.java
│ │ │ │ │ ├── [6.2K] RemoteProcessGroupPortDTO.java
│ │ │ │ │ ├── [ 11K] ReportingTaskDTO.java
│ │ │ │ │ ├── [2.2K] RequiredPermissionDTO.java
│ │ │ │ │ ├── [1.7K] ResourceDTO.java
│ │ │ │ │ ├── [3.1K] RevisionDTO.java
│ │ │ │ │ ├── [4.0K] search
│ │ │ │ │ │ ├── [3.2K] ComponentSearchResultDTO.java
│ │ │ │ │ │ ├── [1.6K] NodeSearchResultDTO.java
│ │ │ │ │ │ ├── [1.6K] SearchResultGroupDTO.java
│ │ │ │ │ │ └── [7.0K] SearchResultsDTO.java
│ │ │ │ │ ├── [9.1K] SnippetDTO.java
│ │ │ │ │ ├── [2.4K] StateEntryDTO.java
│ │ │ │ │ ├── [2.1K] StateMapDTO.java
│ │ │ │ │ ├── [4.0K] status
│ │ │ │ │ │ ├── [1.4K] ClusterStatusDTO.java
│ │ │ │ │ │ ├── [2.9K] ComponentStatusDTO.java
│ │ │ │ │ │ ├── [3.2K] ConnectionStatisticsDTO.java
│ │ │ │ │ │ ├── [5.2K] ConnectionStatisticsSnapshotDTO.java
│ │ │ │ │ │ ├── [5.0K] ConnectionStatusDTO.java
│ │ │ │ │ │ ├── [5.0K] ConnectionStatusPredictionsSnapshotDTO.java
│ │ │ │ │ │ ├── [9.5K] ConnectionStatusSnapshotDTO.java
│ │ │ │ │ │ ├── [1.4K] ControllerServiceStatusDTO.java
│ │ │ │ │ │ ├── [7.9K] ControllerStatusDTO.java
│ │ │ │ │ │ ├── [1.4K] FlowAnalysisRuleStatusDTO.java
│ │ │ │ │ │ ├── [2.5K] NodeConnectionStatisticsSnapshotDTO.java
│ │ │ │ │ │ ├── [2.5K] NodeConnectionStatusSnapshotDTO.java
│ │ │ │ │ │ ├── [1.7K] NodePortStatusDTO.java
│ │ │ │ │ │ ├── [2.4K] NodePortStatusSnapshotDTO.java
│ │ │ │ │ │ ├── [2.4K] NodeProcessGroupStatusSnapshotDTO.java
│ │ │ │ │ │ ├── [2.5K] NodeProcessorStatusSnapshotDTO.java
│ │ │ │ │ │ ├── [2.5K] NodeRemoteProcessGroupStatusSnapshotDTO.java
│ │ │ │ │ │ ├── [1.7K] NodeStatusDTO.java
│ │ │ │ │ │ ├── [2.4K] NodeStatusSnapshotsDTO.java
│ │ │ │ │ │ ├── [3.9K] PortStatusDTO.java
│ │ │ │ │ │ ├── [5.6K] PortStatusSnapshotDTO.java
│ │ │ │ │ │ ├── [3.0K] ProcessGroupStatusDTO.java
│ │ │ │ │ │ ├── [ 21K] ProcessGroupStatusSnapshotDTO.java
│ │ │ │ │ │ ├── [3.7K] ProcessingPerformanceStatusDTO.java
│ │ │ │ │ │ ├── [4.7K] ProcessorStatusDTO.java
│ │ │ │ │ │ ├── [10.0K] ProcessorStatusSnapshotDTO.java
│ │ │ │ │ │ ├── [4.6K] RemoteProcessGroupStatusDTO.java
│ │ │ │ │ │ ├── [5.9K] RemoteProcessGroupStatusSnapshotDTO.java
│ │ │ │ │ │ ├── [1.5K] ReportingTaskStatusDTO.java
│ │ │ │ │ │ ├── [3.2K] StatusDescriptorDTO.java
│ │ │ │ │ │ ├── [3.7K] StatusHistoryDTO.java
│ │ │ │ │ │ └── [1.7K] StatusSnapshotDTO.java
│ │ │ │ │ ├── [1.8K] SupportedMimeTypesDTO.java
│ │ │ │ │ ├── [2.1K] SystemDiagnosticsDTO.java
│ │ │ │ │ ├── [ 25K] SystemDiagnosticsSnapshotDTO.java
│ │ │ │ │ ├── [1.6K] TenantDTO.java
│ │ │ │ │ ├── [1.8K] UpdateStepDTO.java
│ │ │ │ │ ├── [2.1K] UserDTO.java
│ │ │ │ │ ├── [2.2K] UserGroupDTO.java
│ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ ├── [1.8K] DateTimeAdapter.java
│ │ │ │ │ │ ├── [1.3K] InstantAdapter.java
│ │ │ │ │ │ ├── [1.5K] NumberUtil.java
│ │ │ │ │ │ ├── [3.8K] ParseDefaultingDateTimeFormatter.java
│ │ │ │ │ │ ├── [2.7K] TimeAdapter.java
│ │ │ │ │ │ ├── [1.8K] TimestampAdapter.java
│ │ │ │ │ │ └── [2.7K] TimezoneAdapter.java
│ │ │ │ │ ├── [2.5K] VerifyConfigRequestDTO.java
│ │ │ │ │ ├── [ 992] VerifyConfigUpdateStepDTO.java
│ │ │ │ │ ├── [5.2K] VersionControlInformationDTO.java
│ │ │ │ │ ├── [3.1K] VersionedFlowDTO.java
│ │ │ │ │ ├── [1.6K] VersionedFlowUpdateRequestDTO.java
│ │ │ │ │ └── [1.1K] WritablePermission.java
│ │ │ │ └── [ 12K] entity
│ │ │ │ ├── [1.4K] AboutEntity.java
│ │ │ │ ├── [2.2K] AccessPolicyEntity.java
│ │ │ │ ├── [1.6K] AccessPolicySummaryEntity.java
│ │ │ │ ├── [2.7K] ActionEntity.java
│ │ │ │ ├── [2.6K] ActivateControllerServicesEntity.java
│ │ │ │ ├── [1.2K] AdditionalDetailsEntity.java
│ │ │ │ ├── [3.2K] AffectedComponentEntity.java
│ │ │ │ ├── [1.8K] AllowableValueEntity.java
│ │ │ │ ├── [1.6K] AnalyzeFlowRequestEntity.java
│ │ │ │ ├── [1.7K] AssetEntity.java
│ │ │ │ ├── [1.3K] AssetsEntity.java
│ │ │ │ ├── [1.4K] AuthenticationConfigurationEntity.java
│ │ │ │ ├── [1.5K] BannerEntity.java
│ │ │ │ ├── [1.5K] BulletinBoardEntity.java
│ │ │ │ ├── [3.3K] BulletinEntity.java
│ │ │ │ ├── [1.5K] ClusterEntity.java
│ │ │ │ ├── [1.6K] ClusterSearchResultsEntity.java
│ │ │ │ ├── [1.6K] ClusterStatusEntity.java
│ │ │ │ ├── [1.6K] ClusterSummaryEntity.java
│ │ │ │ ├── [4.3K] ComponentEntity.java
│ │ │ │ ├── [1.6K] ComponentHistoryEntity.java
│ │ │ │ ├── [2.1K] ComponentReferenceEntity.java
│ │ │ │ ├── [2.7K] ComponentRunStatusEntity.java
│ │ │ │ ├── [1.7K] ComponentStateEntity.java
│ │ │ │ ├── [1.5K] ComponentValidationResultEntity.java
│ │ │ │ ├── [1.6K] ComponentValidationResultsEntity.java
│ │ │ │ ├── [1.5K] ConfigurationAnalysisEntity.java
│ │ │ │ ├── [5.7K] ConnectionEntity.java
│ │ │ │ ├── [1.5K] ConnectionsEntity.java
│ │ │ │ ├── [2.0K] ConnectionStatisticsEntity.java
│ │ │ │ ├── [2.6K] ConnectionStatisticsSnapshotEntity.java
│ │ │ │ ├── [1.9K] ConnectionStatusEntity.java
│ │ │ │ ├── [2.6K] ConnectionStatusSnapshotEntity.java
│ │ │ │ ├── [1.7K] ContentViewerEntity.java
│ │ │ │ ├── [5.1K] ControllerBulletinsEntity.java
│ │ │ │ ├── [3.3K] ControllerConfigurationEntity.java
│ │ │ │ ├── [1.5K] ControllerEntity.java
│ │ │ │ ├── [3.0K] ControllerServiceEntity.java
│ │ │ │ ├── [2.3K] ControllerServiceReferencingComponentEntity.java
│ │ │ │ ├── [1.9K] ControllerServiceReferencingComponentsEntity.java
│ │ │ │ ├── [2.1K] ControllerServiceRunStatusEntity.java
│ │ │ │ ├── [2.2K] ControllerServicesEntity.java
│ │ │ │ ├── [1.7K] ControllerServiceTypesEntity.java
│ │ │ │ ├── [1.6K] ControllerStatusEntity.java
│ │ │ │ ├── [4.1K] CopyRequestEntity.java
│ │ │ │ ├── [6.8K] CopyResponseEntity.java
│ │ │ │ ├── [2.4K] CopySnippetRequestEntity.java
│ │ │ │ ├── [1.4K] CounterEntity.java
│ │ │ │ ├── [1.5K] CountersEntity.java
│ │ │ │ ├── [1.8K] CreateActiveRequestEntity.java
│ │ │ │ ├── [6.8K] CurrentUserEntity.java
│ │ │ │ ├── [1.5K] DropRequestEntity.java
│ │ │ │ ├── [1006] Entity.java
│ │ │ │ ├── [2.6K] FlowAnalysisResultEntity.java
│ │ │ │ ├── [2.6K] FlowAnalysisRuleEntity.java
│ │ │ │ ├── [1.5K] FlowAnalysisRuleRunStatusEntity.java
│ │ │ │ ├── [2.2K] FlowAnalysisRulesEntity.java
│ │ │ │ ├── [1.6K] FlowAnalysisRuleTypesEntity.java
│ │ │ │ ├── [3.4K] FlowBreadcrumbEntity.java
│ │ │ │ ├── [1.6K] FlowComparisonEntity.java
│ │ │ │ ├── [1.7K] FlowConfigurationEntity.java
│ │ │ │ ├── [1.4K] FlowEntity.java
│ │ │ │ ├── [1.5K] FlowFileEntity.java
│ │ │ │ ├── [1.3K] FlowRegistryBranchEntity.java
│ │ │ │ ├── [1.3K] FlowRegistryBranchesEntity.java
│ │ │ │ ├── [1.8K] FlowRegistryBucketEntity.java
│ │ │ │ ├── [1.5K] FlowRegistryBucketsEntity.java
│ │ │ │ ├── [1.9K] FlowRegistryClientEntity.java
│ │ │ │ ├── [2.1K] FlowRegistryClientsEntity.java
│ │ │ │ ├── [1.7K] FlowRegistryClientTypesEntity.java
│ │ │ │ ├── [1.5K] FlowSnippetEntity.java
│ │ │ │ ├── [1.6K] FlowUpdateRequestEntity.java
│ │ │ │ ├── [1.5K] FunnelEntity.java
│ │ │ │ ├── [1.4K] FunnelsEntity.java
│ │ │ │ ├── [1.5K] HistoryEntity.java
│ │ │ │ ├── [1.5K] InputPortsEntity.java
│ │ │ │ ├── [1.7K] JmxMetricsResultsEntity.java
│ │ │ │ ├── [2.2K] LabelEntity.java
│ │ │ │ ├── [1.4K] LabelsEntity.java
│ │ │ │ ├── [1.4K] LatestProvenanceEventsEntity.java
│ │ │ │ ├── [1.5K] LineageEntity.java
│ │ │ │ ├── [1.6K] ListingRequestEntity.java
│ │ │ │ ├── [4.2K] NarDetailsEntity.java
│ │ │ │ ├── [1.9K] NarSummariesEntity.java
│ │ │ │ ├── [1.9K] NarSummaryEntity.java
│ │ │ │ ├── [1.4K] NodeEntity.java
│ │ │ │ ├── [2.0K] NodeReplayLastEventSnapshotDTO.java
│ │ │ │ ├── [1.5K] NodeStatusEntity.java
│ │ │ │ ├── [1.3K] OperationPermissible.java
│ │ │ │ ├── [1.5K] OutputPortsEntity.java
│ │ │ │ ├── [1.6K] ParameterContextEntity.java
│ │ │ │ ├── [2.5K] ParameterContextReferenceEntity.java
│ │ │ │ ├── [1.9K] ParameterContextsEntity.java
│ │ │ │ ├── [2.5K] ParameterContextUpdateEntity.java
│ │ │ │ ├── [1.8K] ParameterContextUpdateRequestEntity.java
│ │ │ │ ├── [1.9K] ParameterContextValidationRequestEntity.java
│ │ │ │ ├── [1.7K] ParameterEntity.java
│ │ │ │ ├── [3.3K] ParameterGroupConfigurationEntity.java
│ │ │ │ ├── [1.5K] ParameterProviderApplyParametersRequestEntity.java
│ │ │ │ ├── [2.5K] ParameterProviderConfigurationEntity.java
│ │ │ │ ├── [2.1K] ParameterProviderEntity.java
│ │ │ │ ├── [2.9K] ParameterProviderParameterApplicationEntity.java
│ │ │ │ ├── [2.2K] ParameterProviderParameterFetchEntity.java
│ │ │ │ ├── [2.2K] ParameterProviderReferencingComponentEntity.java
│ │ │ │ ├── [1.9K] ParameterProviderReferencingComponentsEntity.java
│ │ │ │ ├── [2.2K] ParameterProvidersEntity.java
│ │ │ │ ├── [1.7K] ParameterProviderTypesEntity.java
│ │ │ │ ├── [2.3K] PasteRequestEntity.java
│ │ │ │ ├── [1.9K] PasteResponseEntity.java
│ │ │ │ ├── [1.5K] PeersEntity.java
│ │ │ │ ├── [1.3K] Permissible.java
│ │ │ │ ├── [3.0K] PortEntity.java
│ │ │ │ ├── [1.5K] PortRunStatusEntity.java
│ │ │ │ ├── [1.8K] PortStatusEntity.java
│ │ │ │ ├── [2.4K] PortStatusSnapshotEntity.java
│ │ │ │ ├── [1.6K] PrioritizerTypesEntity.java
│ │ │ │ ├── [1.9K] ProcessGroupDescriptorEntity.java
│ │ │ │ ├── [ 11K] ProcessGroupEntity.java
│ │ │ │ ├── [2.5K] ProcessGroupFlowEntity.java
│ │ │ │ ├── [1.6K] ProcessGroupImportEntity.java
│ │ │ │ ├── [ 924] ProcessGroupRecursivity.java
│ │ │ │ ├── [2.1K] ProcessGroupReplaceRequestEntity.java
│ │ │ │ ├── [1.6K] ProcessGroupsEntity.java
│ │ │ │ ├── [1.9K] ProcessGroupStatusEntity.java
│ │ │ │ ├── [2.6K] ProcessGroupStatusSnapshotEntity.java
│ │ │ │ ├── [3.1K] ProcessGroupUploadEntity.java
│ │ │ │ ├── [1.5K] ProcessorDiagnosticsEntity.java
│ │ │ │ ├── [2.8K] ProcessorEntity.java
│ │ │ │ ├── [2.1K] ProcessorRunStatusDetailsEntity.java
│ │ │ │ ├── [1.5K] ProcessorRunStatusEntity.java
│ │ │ │ ├── [1.5K] ProcessorsEntity.java
│ │ │ │ ├── [1.3K] ProcessorsRunStatusDetailsEntity.java
│ │ │ │ ├── [1.9K] ProcessorStatusEntity.java
│ │ │ │ ├── [2.5K] ProcessorStatusSnapshotEntity.java
│ │ │ │ ├── [1.6K] ProcessorTypesEntity.java
│ │ │ │ ├── [1.6K] PropertyDescriptorEntity.java
│ │ │ │ ├── [1.3K] ProvenanceEntity.java
│ │ │ │ ├── [1.6K] ProvenanceEventEntity.java
│ │ │ │ ├── [1.6K] ProvenanceOptionsEntity.java
│ │ │ │ ├── [1.5K] RemotePortRunStatusEntity.java
│ │ │ │ ├── [3.5K] RemoteProcessGroupEntity.java
│ │ │ │ ├── [2.3K] RemoteProcessGroupPortEntity.java
│ │ │ │ ├── [1.6K] RemoteProcessGroupsEntity.java
│ │ │ │ ├── [2.0K] RemoteProcessGroupStatusEntity.java
│ │ │ │ ├── [2.7K] RemoteProcessGroupStatusSnapshotEntity.java
│ │ │ │ ├── [1.6K] ReplayLastEventRequestEntity.java
│ │ │ │ ├── [2.4K] ReplayLastEventResponseEntity.java
│ │ │ │ ├── [2.1K] ReplayLastEventSnapshotDTO.java
│ │ │ │ ├── [2.6K] ReportingTaskEntity.java
│ │ │ │ ├── [1.5K] ReportingTaskRunStatusEntity.java
│ │ │ │ ├── [2.1K] ReportingTasksEntity.java
│ │ │ │ ├── [1.6K] ReportingTaskTypesEntity.java
│ │ │ │ ├── [1.5K] ResourcesEntity.java
│ │ │ │ ├── [2.4K] RuleViolationEntity.java
│ │ │ │ ├── [1.4K] RunStatusDetailsRequestEntity.java
│ │ │ │ ├── [1.3K] RuntimeManifestEntity.java
│ │ │ │ ├── [3.1K] ScheduleComponentsEntity.java
│ │ │ │ ├── [1.6K] SearchResultsEntity.java
│ │ │ │ ├── [2.0K] SnippetEntity.java
│ │ │ │ ├── [2.2K] StartVersionControlRequestEntity.java
│ │ │ │ ├── [1.9K] StatusHistoryEntity.java
│ │ │ │ ├── [1.7K] SubmitReplayRequestEntity.java
│ │ │ │ ├── [1.6K] SystemDiagnosticsEntity.java
│ │ │ │ ├── [1.4K] TenantCollectionEntity.java
│ │ │ │ ├── [1.5K] TenantEntity.java
│ │ │ │ ├── [1.9K] TenantsEntity.java
│ │ │ │ ├── [1.5K] TransactionResultEntity.java
│ │ │ │ ├── [3.3K] UpdateControllerServiceReferenceRequestEntity.java
│ │ │ │ ├── [1.5K] UserEntity.java
│ │ │ │ ├── [1.6K] UserGroupEntity.java
│ │ │ │ ├── [1.6K] UserGroupsEntity.java
│ │ │ │ ├── [2.1K] UsersEntity.java
│ │ │ │ ├── [1.3K] VerifyConfigRequestEntity.java
│ │ │ │ ├── [2.8K] VersionControlComponentMappingEntity.java
│ │ │ │ ├── [1.5K] VersionControlInformationEntity.java
│ │ │ │ ├── [1.4K] VersionedFlowEntity.java
│ │ │ │ ├── [1.4K] VersionedFlowsEntity.java
│ │ │ │ ├── [3.1K] VersionedFlowSnapshotEntity.java
│ │ │ │ ├── [1.9K] VersionedFlowSnapshotMetadataEntity.java
│ │ │ │ ├── [1.6K] VersionedFlowSnapshotMetadataSetEntity.java
│ │ │ │ ├── [1.5K] VersionedFlowUpdateRequestEntity.java
│ │ │ │ ├── [1.9K] VersionedReportingTaskImportRequestEntity.java
│ │ │ │ └── [1.8K] VersionedReportingTaskImportResponseEntity.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] web
│ │ │ └── [4.0K] api
│ │ │ └── [4.0K] dto
│ │ │ ├── [1.9K] TestProcessGroupDTO.java
│ │ │ ├── [2.0K] TestProcessGroupEntity.java
│ │ │ ├── [2.1K] TestRemoteProcessGroupDTO.java
│ │ │ └── [4.0K] util
│ │ │ └── [1.4K] TestNumberUtil.java
│ │ ├── [4.0K] nifi-file-authorizer
│ │ │ ├── [6.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] authorization
│ │ │ │ │ ├── [6.7K] AuthorizationsHolder.java
│ │ │ │ │ ├── [ 43K] FileAccessPolicyProvider.java
│ │ │ │ │ ├── [ 33K] FileUserGroupProvider.java
│ │ │ │ │ └── [8.6K] UserGroupHolder.java
│ │ │ │ ├── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ ├── [ 836] org.apache.nifi.authorization.AccessPolicyProvider
│ │ │ │ │ └── [ 833] org.apache.nifi.authorization.UserGroupProvider
│ │ │ │ └── [4.0K] xsd
│ │ │ │ ├── [3.4K] authorizations.xsd
│ │ │ │ └── [3.6K] tenants.xsd
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] authorization
│ │ │ │ ├── [ 47K] FileAccessPolicyProviderTest.java
│ │ │ │ └── [ 27K] FileUserGroupProviderTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [1.1K] flow.json.gz
│ │ │ ├── [1.1K] flow-no-ports.json.gz
│ │ │ └── [1.1K] flow-with-dns.json.gz
│ │ ├── [4.0K] nifi-flowfile-repo-serialization
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] controller
│ │ │ └── [4.0K] repository
│ │ │ ├── [1.5K] CaffeineFieldCache.java
│ │ │ ├── [3.4K] ReconstitutedSerializedRepositoryRecord.java
│ │ │ ├── [1.0K] RepositoryRecordSerdeFactory.java
│ │ │ ├── [1.8K] RepositoryRecordSerde.java
│ │ │ ├── [4.0K] schema
│ │ │ │ ├── [5.7K] ContentClaimFieldMap.java
│ │ │ │ ├── [3.4K] ContentClaimSchema.java
│ │ │ │ ├── [4.5K] FlowFileRecordFieldMap.java
│ │ │ │ ├── [4.9K] FlowFileSchema.java
│ │ │ │ ├── [3.4K] RepositoryRecordFieldMap.java
│ │ │ │ ├── [7.7K] RepositoryRecordSchema.java
│ │ │ │ ├── [2.4K] RepositoryRecordUpdate.java
│ │ │ │ └── [3.8K] ResourceClaimFieldMap.java
│ │ │ ├── [ 13K] SchemaRepositoryRecordSerde.java
│ │ │ ├── [1.9K] SerializedRepositoryRecord.java
│ │ │ ├── [3.4K] StandardRepositoryRecordSerdeFactory.java
│ │ │ └── [ 20K] WriteAheadRepositoryRecordSerde.java
│ │ ├── [4.0K] nifi-framework-authorization
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] authorization
│ │ │ │ ├── [4.0K] resource
│ │ │ │ │ ├── [4.7K] AccessPolicyAuthorizable.java
│ │ │ │ │ ├── [4.1K] DataAuthorizable.java
│ │ │ │ │ ├── [1.5K] DataTransferAuthorizable.java
│ │ │ │ │ ├── [1.8K] EnforcePolicyPermissionsThroughBaseResource.java
│ │ │ │ │ ├── [3.8K] OperationAuthorizable.java
│ │ │ │ │ ├── [1.7K] ProvenanceDataAuthorizable.java
│ │ │ │ │ ├── [ 18K] ResourceFactory.java
│ │ │ │ │ ├── [2.6K] ResourceType.java
│ │ │ │ │ ├── [4.9K] RestrictedComponentsAuthorizableFactory.java
│ │ │ │ │ └── [1.1K] TenantAuthorizable.java
│ │ │ │ ├── [4.0K] user
│ │ │ │ │ └── [6.7K] StandardNiFiUser.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [2.3K] UserGroupUtil.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] authorization
│ │ │ └── [4.0K] resource
│ │ │ ├── [6.4K] DataAuthorizableTest.java
│ │ │ ├── [8.8K] OperationAuthorizableTest.java
│ │ │ └── [4.7K] ProvenanceDataAuthorizableTest.java
│ │ ├── [4.0K] nifi-framework-authorization-providers
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] authorization
│ │ │ │ │ ├── [9.8K] CompositeConfigurableUserGroupProvider.java
│ │ │ │ │ ├── [2.2K] CompositeUserAndGroups.java
│ │ │ │ │ ├── [8.9K] CompositeUserGroupProvider.java
│ │ │ │ │ ├── [1.8K] StandardAuthorizerConfigurationContext.java
│ │ │ │ │ ├── [2.1K] StandardAuthorizerInitializationContext.java
│ │ │ │ │ ├── [ 13K] StandardManagedAuthorizer.java
│ │ │ │ │ └── [4.0K] user
│ │ │ │ │ ├── [2.2K] NiFiUserDetails.java
│ │ │ │ │ └── [4.0K] NiFiUserUtils.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 837] org.apache.nifi.authorization.Authorizer
│ │ │ │ └── [ 907] org.apache.nifi.authorization.UserGroupProvider
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] authorization
│ │ │ ├── [ 12K] CompositeConfigurableUserGroupProviderTest.java
│ │ │ ├── [ 11K] CompositeUserGroupProviderTestBase.java
│ │ │ ├── [8.0K] CompositeUserGroupProviderTest.java
│ │ │ ├── [2.8K] SimpleConfigurableUserGroupProvider.java
│ │ │ ├── [3.5K] SimpleUserGroupProvider.java
│ │ │ ├── [ 24K] StandardManagedAuthorizerTest.java
│ │ │ └── [4.0K] user
│ │ │ └── [3.5K] NiFiUserUtilsTest.java
│ │ ├── [4.0K] nifi-framework-cluster
│ │ │ ├── [9.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ ├── [4.0K] coordination
│ │ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ │ ├── [3.2K] FlowElection.java
│ │ │ │ │ │ │ └── [9.5K] PopularVoteFlowElection.java
│ │ │ │ │ │ ├── [4.0K] heartbeat
│ │ │ │ │ │ │ ├── [ 16K] AbstractHeartbeatMonitor.java
│ │ │ │ │ │ │ ├── [ 12K] ClusterProtocolHeartbeatMonitor.java
│ │ │ │ │ │ │ └── [3.5K] StandardNodeHeartbeat.java
│ │ │ │ │ │ ├── [4.0K] http
│ │ │ │ │ │ │ ├── [2.4K] EndpointResponseMerger.java
│ │ │ │ │ │ │ ├── [4.0K] endpoints
│ │ │ │ │ │ │ │ ├── [1.9K] AbstractNodeStatusEndpoint.java
│ │ │ │ │ │ │ │ ├── [3.4K] AbstractSingleDTOEndpoint.java
│ │ │ │ │ │ │ │ ├── [3.1K] AbstractSingleEntityEndpoint.java
│ │ │ │ │ │ │ │ ├── [2.8K] AccessPolicyEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.7K] AnalyzeFlowRequestEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.2K] AssetsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.8K] BulletinBoardEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.6K] ComponentStateEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [5.9K] ConfigVerificationResultMerger.java
│ │ │ │ │ │ │ │ ├── [2.6K] ConnectionEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.5K] ConnectionsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.2K] ConnectionStatusEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [8.4K] ControllerBulletinsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.4K] ControllerConfigurationEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [5.4K] ControllerEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.2K] ControllerServiceEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.5K] ControllerServiceReferenceEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.7K] ControllerServicesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.1K] ControllerServiceTypesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.5K] ControllerStatusEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.9K] CountersEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.4K] CurrentUserEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [1.7K] DropAllFlowFilesRequestEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [5.0K] DropRequestEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.6K] FlowAnalysisEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.8K] FlowAnalysisRuleEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.6K] FlowAnalysisRulesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.1K] FlowAnalysisRuleTypesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.3K] FlowConfigurationEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [7.5K] FlowMerger.java
│ │ │ │ │ │ │ │ ├── [2.8K] FlowRegistryClientEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.5K] FlowRegistryClientsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.1K] FlowRepositoryClientTypesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.6K] FlowSnippetEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.3K] FunnelEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.4K] FunnelsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.3K] GroupStatusEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.2K] InputPortsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.3K] LabelEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.3K] LabelsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.8K] LatestProvenanceEventsMerger.java
│ │ │ │ │ │ │ │ ├── [6.4K] ListFlowFilesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.9K] NarDetailsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.2K] NarSummariesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.5K] NarSummaryEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.2K] OutputPortsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.1K] ParameterContextEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [8.0K] ParameterContextMerger.java
│ │ │ │ │ │ │ │ ├── [3.1K] ParameterContextsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.5K] ParameterContextUpdateEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [7.5K] ParameterContextValidationMerger.java
│ │ │ │ │ │ │ │ ├── [2.3K] ParameterProviderEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.2K] ParameterProviderFetchRequestsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.2K] ParameterProviderMerger.java
│ │ │ │ │ │ │ │ ├── [2.9K] ParameterProvidersEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.1K] ParameterProviderTypesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [7.2K] PasteEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.9K] PortEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.4K] PortStatusEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.0K] PrioritizerTypesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.6K] ProcessGroupEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.4K] ProcessGroupsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.9K] ProcessorDiagnosticsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.8K] ProcessorEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [5.6K] ProcessorRunStatusDetailsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.3K] ProcessorsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.2K] ProcessorStatusEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.0K] ProcessorTypesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.9K] ProvenanceEventEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [9.1K] ProvenanceQueryEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.0K] RemoteProcessGroupEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.0K] RemoteProcessGroupsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.5K] RemoteProcessGroupStatusEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.5K] ReplayLastEventEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.8K] ReportingTaskEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.3K] ReportingTasksEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.1K] ReportingTaskTypesEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.0K] RuleViolationEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.2K] RuntimeManifestEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.8K] SearchUsersEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [ 16K] StatusHistoryEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.1K] SystemDiagnosticsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.4K] UserEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [2.5K] UserGroupEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.4K] UserGroupsEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [3.3K] UsersEndpointMerger.java
│ │ │ │ │ │ │ │ ├── [4.3K] VerifyConfigEndpointMerger.java
│ │ │ │ │ │ │ │ └── [2.5K] VersionControlInformationEndpointMerger.java
│ │ │ │ │ │ │ ├── [2.7K] HttpResponseMapper.java
│ │ │ │ │ │ │ ├── [4.0K] replication
│ │ │ │ │ │ │ │ ├── [4.9K] AsyncClusterResponse.java
│ │ │ │ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ │ │ │ ├── [1.3K] PreparedRequestHeader.java
│ │ │ │ │ │ │ │ │ ├── [ 18K] StandardHttpReplicationClient.java
│ │ │ │ │ │ │ │ │ └── [1.6K] StandardPreparedRequest.java
│ │ │ │ │ │ │ │ ├── [ 961] CompletionCallback.java
│ │ │ │ │ │ │ │ ├── [1.2K] HttpReplicationClient.java
│ │ │ │ │ │ │ │ ├── [4.0K] io
│ │ │ │ │ │ │ │ │ ├── [1.0K] EntitySerializer.java
│ │ │ │ │ │ │ │ │ ├── [1.6K] JsonEntitySerializer.java
│ │ │ │ │ │ │ │ │ ├── [8.6K] ReplicatedResponse.java
│ │ │ │ │ │ │ │ │ └── [2.3K] XmlEntitySerializer.java
│ │ │ │ │ │ │ │ ├── [1015] PreparedRequest.java
│ │ │ │ │ │ │ │ ├── [1.5K] RequestCompletionCallback.java
│ │ │ │ │ │ │ │ ├── [3.2K] RequestReplicationHeader.java
│ │ │ │ │ │ │ │ ├── [9.1K] RequestReplicator.java
│ │ │ │ │ │ │ │ ├── [3.7K] ResponseUtils.java
│ │ │ │ │ │ │ │ ├── [ 13K] StandardAsyncClusterResponse.java
│ │ │ │ │ │ │ │ ├── [9.1K] StandardUploadRequestReplicator.java
│ │ │ │ │ │ │ │ ├── [ 48K] ThreadPoolRequestReplicator.java
│ │ │ │ │ │ │ │ ├── [4.4K] UploadRequest.java
│ │ │ │ │ │ │ │ ├── [1.3K] UploadRequestReplicationException.java
│ │ │ │ │ │ │ │ └── [1.4K] UploadRequestReplicator.java
│ │ │ │ │ │ │ └── [ 19K] StandardHttpResponseMapper.java
│ │ │ │ │ │ └── [4.0K] node
│ │ │ │ │ │ ├── [ 68K] NodeClusterCoordinator.java
│ │ │ │ │ │ ├── [1.7K] NodeStateManager.java
│ │ │ │ │ │ └── [4.0K] state
│ │ │ │ │ │ └── [5.3K] NodeIdentifierDescriptor.java
│ │ │ │ │ ├── [4.0K] event
│ │ │ │ │ │ └── [3.5K] Event.java
│ │ │ │ │ ├── [4.0K] firewall
│ │ │ │ │ │ ├── [1.3K] ClusterNodeFirewall.java
│ │ │ │ │ │ └── [4.0K] impl
│ │ │ │ │ │ └── [8.4K] FileBasedClusterNodeFirewall.java
│ │ │ │ │ ├── [4.0K] lifecycle
│ │ │ │ │ │ └── [9.5K] ClusterDecommissionTask.java
│ │ │ │ │ ├── [4.0K] manager
│ │ │ │ │ │ ├── [3.1K] AccessPolicyEntityMerger.java
│ │ │ │ │ │ ├── [6.4K] AffectedComponentEntityMerger.java
│ │ │ │ │ │ ├── [1.7K] AllowableValueEntityMerger.java
│ │ │ │ │ │ ├── [1.2K] AssetsEntityMerger.java
│ │ │ │ │ │ ├── [4.7K] BulletinMerger.java
│ │ │ │ │ │ ├── [4.4K] ComponentEntityMerger.java
│ │ │ │ │ │ ├── [1.8K] ComponentEntityStatusMerger.java
│ │ │ │ │ │ ├── [4.0K] ConnectionEntityMerger.java
│ │ │ │ │ │ ├── [1.6K] ConnectionsEntityMerger.java
│ │ │ │ │ │ ├── [ 16K] ControllerServiceEntityMerger.java
│ │ │ │ │ │ ├── [1.7K] ControllerServicesEntityMerger.java
│ │ │ │ │ │ ├── [1.6K] DocumentedTypesMerger.java
│ │ │ │ │ │ ├── [3.5K] ErrorMerger.java
│ │ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ │ ├── [2.1K] BlockedByFirewallException.java
│ │ │ │ │ │ │ ├── [1.7K] ConflictingNodeIdException.java
│ │ │ │ │ │ │ ├── [1.4K] ConnectingNodeMutableRequestException.java
│ │ │ │ │ │ │ ├── [1.4K] DisconnectedNodeMutableRequestException.java
│ │ │ │ │ │ │ ├── [1.4K] IllegalClusterStateException.java
│ │ │ │ │ │ │ ├── [1.4K] IllegalNodeDeletionException.java
│ │ │ │ │ │ │ ├── [1.4K] IllegalNodeDisconnectionException.java
│ │ │ │ │ │ │ ├── [1.4K] IllegalNodeOffloadException.java
│ │ │ │ │ │ │ ├── [1.4K] IllegalNodeReconnectionException.java
│ │ │ │ │ │ │ ├── [1.4K] MutableRequestException.java
│ │ │ │ │ │ │ ├── [1.4K] NoConnectedNodesException.java
│ │ │ │ │ │ │ ├── [1.4K] NodeDisconnectionException.java
│ │ │ │ │ │ │ ├── [1.4K] NodeReconnectionException.java
│ │ │ │ │ │ │ ├── [1.5K] NoResponseFromNodesException.java
│ │ │ │ │ │ │ ├── [1.4K] OffloadedNodeMutableRequestException.java
│ │ │ │ │ │ │ ├── [1.3K] UnknownNodeException.java
│ │ │ │ │ │ │ └── [1.4K] UriConstructionException.java
│ │ │ │ │ │ ├── [3.3K] FlowAnalysisResultEntityMerger.java
│ │ │ │ │ │ ├── [5.3K] FlowAnalysisRuleEntityMerger.java
│ │ │ │ │ │ ├── [1.7K] FlowAnalysisRulesEntityMerger.java
│ │ │ │ │ │ ├── [4.5K] FlowRegistryClientEntityMerger.java
│ │ │ │ │ │ ├── [1.5K] FlowRegistryClientsEntityMerger.java
│ │ │ │ │ │ ├── [1.1K] FunnelEntityMerger.java
│ │ │ │ │ │ ├── [1.6K] FunnelsEntityMerger.java
│ │ │ │ │ │ ├── [1.0K] LabelEntityMerger.java
│ │ │ │ │ │ ├── [1.6K] LabelsEntityMerger.java
│ │ │ │ │ │ ├── [2.0K] NarSummariesMerger.java
│ │ │ │ │ │ ├── [1.4K] NarSummaryDtoMerger.java
│ │ │ │ │ │ ├── [ 10K] NodeResponse.java
│ │ │ │ │ │ ├── [1.7K] PermissionsDtoMerger.java
│ │ │ │ │ │ ├── [3.9K] PortEntityMerger.java
│ │ │ │ │ │ ├── [1.5K] PortsEntityMerger.java
│ │ │ │ │ │ ├── [5.8K] ProcessGroupEntityMerger.java
│ │ │ │ │ │ ├── [1.6K] ProcessGroupsEntityMerger.java
│ │ │ │ │ │ ├── [1.7K] ProcessingPerformanceStatusMerger.java
│ │ │ │ │ │ ├── [ 15K] ProcessorDiagnosticsEntityMerger.java
│ │ │ │ │ │ ├── [6.1K] ProcessorEntityMerger.java
│ │ │ │ │ │ ├── [1.6K] ProcessorsEntityMerger.java
│ │ │ │ │ │ ├── [3.5K] PropertyDescriptorDtoMerger.java
│ │ │ │ │ │ ├── [7.5K] RemoteProcessGroupEntityMerger.java
│ │ │ │ │ │ ├── [1.7K] RemoteProcessGroupsEntityMerger.java
│ │ │ │ │ │ ├── [5.5K] ReportingTaskEntityMerger.java
│ │ │ │ │ │ ├── [1.7K] ReportingTasksEntityMerger.java
│ │ │ │ │ │ ├── [ 53K] StatusMerger.java
│ │ │ │ │ │ ├── [3.1K] UserEntityMerger.java
│ │ │ │ │ │ ├── [3.1K] UserGroupEntityMerger.java
│ │ │ │ │ │ ├── [1.7K] UserGroupsEntityMerger.java
│ │ │ │ │ │ ├── [1.6K] UsersEntityMerger.java
│ │ │ │ │ │ └── [3.9K] VersionControlInformationEntityMerger.java
│ │ │ │ │ └── [4.1K] StandardClusterDetailsFactory.java
│ │ │ │ └── [4.0K] framework
│ │ │ │ └── [4.0K] configuration
│ │ │ │ ├── [6.1K] ClusterCoordinatorConfiguration.java
│ │ │ │ └── [4.7K] FrameworkClusterConfiguration.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] cluster
│ │ │ │ ├── [4.0K] coordination
│ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ └── [6.3K] TestPopularVoteFlowElection.java
│ │ │ │ │ ├── [4.0K] heartbeat
│ │ │ │ │ │ └── [ 17K] TestAbstractHeartbeatMonitor.java
│ │ │ │ │ ├── [4.0K] http
│ │ │ │ │ │ ├── [4.0K] endpoints
│ │ │ │ │ │ │ ├── [2.1K] AccessPolicyEndpointMergerTest.java
│ │ │ │ │ │ │ ├── [5.8K] AnalyzeFlowRequestEndpointMergerTest.java
│ │ │ │ │ │ │ ├── [7.2K] CurrentUserEndpointMergerTest.java
│ │ │ │ │ │ │ ├── [2.6K] TestProcessorEndpointMerger.java
│ │ │ │ │ │ │ └── [1.9K] TestStatusHistoryEndpointMerger.java
│ │ │ │ │ │ └── [4.0K] replication
│ │ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ │ └── [ 11K] TestStandardHttpReplicationClient.java
│ │ │ │ │ │ ├── [4.0K] io
│ │ │ │ │ │ │ └── [4.4K] TestJsonEntitySerializer.java
│ │ │ │ │ │ ├── [4.8K] TestResponseUtils.java
│ │ │ │ │ │ ├── [ 28K] TestThreadPoolRequestReplicator.java
│ │ │ │ │ │ └── [4.0K] util
│ │ │ │ │ │ └── [6.2K] MockReplicationClient.java
│ │ │ │ │ └── [4.0K] node
│ │ │ │ │ └── [ 28K] TestNodeClusterCoordinator.java
│ │ │ │ ├── [4.0K] firewall
│ │ │ │ │ └── [4.0K] impl
│ │ │ │ │ └── [4.3K] FileBasedClusterNodeFirewallTest.java
│ │ │ │ ├── [4.0K] manager
│ │ │ │ │ ├── [4.1K] AccessPolicyEntityMergerTest.java
│ │ │ │ │ ├── [3.6K] AssetsEntityMergerTest.java
│ │ │ │ │ ├── [4.5K] BulletinMergerTest.java
│ │ │ │ │ ├── [3.9K] ControllerServiceEntityMergerTest.java
│ │ │ │ │ ├── [9.0K] FlowAnalysisResultEntityMergerTest.java
│ │ │ │ │ ├── [3.6K] NarSummariesMergerTest.java
│ │ │ │ │ ├── [2.9K] NarSummaryDtoMergerTest.java
│ │ │ │ │ ├── [6.8K] PropertyDescriptorDtoMergerTest.java
│ │ │ │ │ ├── [8.6K] RemoteProcessGroupEntityMergerTest.java
│ │ │ │ │ ├── [3.9K] ReportingTaskEntityMergerTest.java
│ │ │ │ │ ├── [4.8K] UserEntityMergerTest.java
│ │ │ │ │ └── [4.8K] UserGroupEntityMergerTest.java
│ │ │ │ └── [1.4K] ReportedEvent.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] conf
│ │ │ │ ├── [ 921] auto-generated-empty-flow.json
│ │ │ │ ├── [1.9K] controller-service-flow.json
│ │ │ │ ├── [ 927] different-empty-flow.json
│ │ │ │ ├── [ 927] empty-flow.json
│ │ │ │ ├── [5.6K] nifi.properties
│ │ │ │ ├── [ 933] non-empty-flow.json
│ │ │ │ ├── [1.8K] reporting-task-flow.json
│ │ │ │ └── [3.4K] state-management.xml
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] cluster
│ │ │ └── [4.0K] firewall
│ │ │ └── [4.0K] impl
│ │ │ ├── [ 0] empty.txt
│ │ │ └── [ 141] ips.txt
│ │ ├── [4.0K] nifi-framework-cluster-protocol
│ │ │ ├── [3.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ ├── [4.0K] coordination
│ │ │ │ │ │ ├── [ 12K] ClusterCoordinator.java
│ │ │ │ │ │ ├── [1.2K] ClusterTopologyEventListener.java
│ │ │ │ │ │ ├── [4.0K] heartbeat
│ │ │ │ │ │ │ ├── [2.2K] HeartbeatMonitor.java
│ │ │ │ │ │ │ └── [2.0K] NodeHeartbeat.java
│ │ │ │ │ │ └── [4.0K] node
│ │ │ │ │ │ ├── [1.2K] ClusterRoles.java
│ │ │ │ │ │ ├── [2.7K] DisconnectionCode.java
│ │ │ │ │ │ ├── [3.6K] LeaderElectionNodeProtocolSender.java
│ │ │ │ │ │ ├── [2.2K] NodeConnectionState.java
│ │ │ │ │ │ ├── [6.7K] NodeConnectionStatus.java
│ │ │ │ │ │ ├── [2.1K] NodeWorkload.java
│ │ │ │ │ │ └── [1.2K] OffloadCode.java
│ │ │ │ │ ├── [4.0K] event
│ │ │ │ │ │ └── [1023] NodeEvent.java
│ │ │ │ │ └── [4.0K] protocol
│ │ │ │ │ ├── [ 12K] AbstractNodeProtocolSender.java
│ │ │ │ │ ├── [3.1K] ClusterCoordinationProtocolSender.java
│ │ │ │ │ ├── [3.3K] ComponentRevision.java
│ │ │ │ │ ├── [2.6K] ComponentRevisionSnapshot.java
│ │ │ │ │ ├── [1.8K] ConnectionRequest.java
│ │ │ │ │ ├── [4.5K] ConnectionResponse.java
│ │ │ │ │ ├── [2.2K] Heartbeat.java
│ │ │ │ │ ├── [4.7K] HeartbeatPayload.java
│ │ │ │ │ ├── [4.0K] impl
│ │ │ │ │ │ ├── [4.3K] ClusterCoordinationProtocolSenderListener.java
│ │ │ │ │ │ ├── [2.5K] CopyingInputStream.java
│ │ │ │ │ │ ├── [4.1K] NodeProtocolSenderListener.java
│ │ │ │ │ │ ├── [ 12K] SocketProtocolListener.java
│ │ │ │ │ │ └── [ 15K] StandardClusterCoordinationProtocolSender.java
│ │ │ │ │ ├── [4.0K] jaxb
│ │ │ │ │ │ ├── [5.1K] JaxbProtocolContext.java
│ │ │ │ │ │ └── [4.0K] message
│ │ │ │ │ │ ├── [1.6K] AdaptedConnectionRequest.java
│ │ │ │ │ │ ├── [3.1K] AdaptedConnectionResponse.java
│ │ │ │ │ │ ├── [1.4K] AdaptedCounter.java
│ │ │ │ │ │ ├── [1.8K] AdaptedDataFlow.java
│ │ │ │ │ │ ├── [1.8K] AdaptedHeartbeat.java
│ │ │ │ │ │ ├── [1.5K] AdaptedNodeBulletins.java
│ │ │ │ │ │ ├── [2.6K] AdaptedNodeConnectionStatus.java
│ │ │ │ │ │ ├── [3.3K] AdaptedNodeIdentifier.java
│ │ │ │ │ │ ├── [1.6K] ConnectionRequestAdapter.java
│ │ │ │ │ │ ├── [2.3K] ConnectionResponseAdapter.java
│ │ │ │ │ │ ├── [1.8K] DataFlowAdapter.java
│ │ │ │ │ │ ├── [1.7K] HeartbeatAdapter.java
│ │ │ │ │ │ ├── [1.4K] JaxbProtocolUtils.java
│ │ │ │ │ │ ├── [1.7K] NodeBulletinsAdapter.java
│ │ │ │ │ │ ├── [2.2K] NodeConnectionStatusAdapter.java
│ │ │ │ │ │ ├── [2.4K] NodeIdentifierAdapter.java
│ │ │ │ │ │ └── [4.8K] ObjectFactory.java
│ │ │ │ │ ├── [4.0K] message
│ │ │ │ │ │ ├── [1.1K] ClusterWorkloadRequestMessage.java
│ │ │ │ │ │ ├── [1.5K] ClusterWorkloadResponseMessage.java
│ │ │ │ │ │ ├── [2.1K] CommsTimingDetails.java
│ │ │ │ │ │ ├── [1.5K] ConnectionRequestMessage.java
│ │ │ │ │ │ ├── [1.5K] ConnectionResponseMessage.java
│ │ │ │ │ │ ├── [1.7K] DisconnectMessage.java
│ │ │ │ │ │ ├── [1.4K] ExceptionMessage.java
│ │ │ │ │ │ ├── [1.5K] FlowRequestMessage.java
│ │ │ │ │ │ ├── [1.4K] FlowResponseMessage.java
│ │ │ │ │ │ ├── [1.3K] HeartbeatMessage.java
│ │ │ │ │ │ ├── [2.1K] HeartbeatResponseMessage.java
│ │ │ │ │ │ ├── [1.9K] MulticastProtocolMessage.java
│ │ │ │ │ │ ├── [1.1K] NodeConnectionStatusRequestMessage.java
│ │ │ │ │ │ ├── [1.5K] NodeConnectionStatusResponseMessage.java
│ │ │ │ │ │ ├── [2.2K] NodeStatusChangeMessage.java
│ │ │ │ │ │ ├── [1.1K] NodeStatusesRequestMessage.java
│ │ │ │ │ │ ├── [1.5K] NodeStatusesResponseMessage.java
│ │ │ │ │ │ ├── [1.7K] OffloadMessage.java
│ │ │ │ │ │ ├── [1.4K] PingMessage.java
│ │ │ │ │ │ ├── [1.5K] ProtocolMessage.java
│ │ │ │ │ │ ├── [3.0K] ReconnectionRequestMessage.java
│ │ │ │ │ │ ├── [1.2K] ReconnectionResponseMessage.java
│ │ │ │ │ │ └── [1.7K] ServiceBroadcastMessage.java
│ │ │ │ │ ├── [1.4K] NodeBulletins.java
│ │ │ │ │ ├── [ 10K] NodeIdentifier.java
│ │ │ │ │ ├── [3.3K] NodeProtocolSender.java
│ │ │ │ │ ├── [1.3K] ProtocolContext.java
│ │ │ │ │ ├── [1.3K] ProtocolException.java
│ │ │ │ │ ├── [1.7K] ProtocolHandler.java
│ │ │ │ │ ├── [2.3K] ProtocolListener.java
│ │ │ │ │ ├── [1.3K] ProtocolMessageMarshaller.java
│ │ │ │ │ ├── [1.3K] ProtocolMessageUnmarshaller.java
│ │ │ │ │ ├── [6.6K] StandardDataFlow.java
│ │ │ │ │ └── [1.3K] UnknownServiceAddressException.java
│ │ │ │ ├── [4.0K] framework
│ │ │ │ │ └── [4.0K] configuration
│ │ │ │ │ └── [5.6K] FrameworkClusterProtocolConfiguration.java
│ │ │ │ └── [4.0K] io
│ │ │ │ └── [4.0K] socket
│ │ │ │ ├── [2.0K] ServerSocketConfiguration.java
│ │ │ │ ├── [2.8K] SocketConfiguration.java
│ │ │ │ ├── [7.5K] SocketListener.java
│ │ │ │ └── [7.4K] SocketUtils.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] cluster
│ │ │ └── [4.0K] protocol
│ │ │ ├── [4.0K] impl
│ │ │ │ ├── [4.3K] SocketProtocolListenerTest.java
│ │ │ │ └── [4.0K] testutils
│ │ │ │ ├── [1.8K] DelayedProtocolHandler.java
│ │ │ │ └── [1.6K] ReflexiveProtocolHandler.java
│ │ │ └── [4.0K] jaxb
│ │ │ └── [4.0K] message
│ │ │ └── [ 11K] TestJaxbProtocolUtils.java
│ │ ├── [4.0K] nifi-framework-cluster-zookeeper
│ │ │ ├── [2.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] framework
│ │ │ └── [4.0K] cluster
│ │ │ └── [4.0K] zookeeper
│ │ │ ├── [3.4K] SecureClientZooKeeperFactory.java
│ │ │ └── [ 13K] ZooKeeperClientConfig.java
│ │ ├── [4.0K] nifi-framework-components
│ │ │ ├── [6.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] action
│ │ │ │ │ │ └── [1.6K] StandardFlowActionReporterConfigurationContext.java
│ │ │ │ │ ├── [4.0K] asset
│ │ │ │ │ │ ├── [2.1K] StandardAsset.java
│ │ │ │ │ │ ├── [1.9K] StandardAssetManagerInitializationContext.java
│ │ │ │ │ │ ├── [8.2K] StandardAssetManager.java
│ │ │ │ │ │ └── [1.7K] StandardAssetReferenceLookup.java
│ │ │ │ │ ├── [4.0K] components
│ │ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ │ └── [2.2K] StandardValidationTrigger.java
│ │ │ │ │ ├── [4.0K] connectable
│ │ │ │ │ │ ├── [7.1K] ConnectionUtils.java
│ │ │ │ │ │ ├── [ 15K] LocalPort.java
│ │ │ │ │ │ └── [ 20K] StandardConnection.java
│ │ │ │ │ ├── [4.0K] controller
│ │ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ │ └── [ 31K] AbstractFlowManager.java
│ │ │ │ │ │ ├── [4.0K] flowanalysis
│ │ │ │ │ │ │ ├── [4.3K] AbstractFlowAnalysisRuleContext.java
│ │ │ │ │ │ │ ├── [ 17K] AbstractFlowAnalysisRuleNode.java
│ │ │ │ │ │ │ ├── [1.9K] FlowAnalysisRuleDetails.java
│ │ │ │ │ │ │ ├── [2.3K] FlowAnalysisUtil.java
│ │ │ │ │ │ │ └── [3.7K] StandardFlowAnalysisInitializationContext.java
│ │ │ │ │ │ ├── [4.0K] kerberos
│ │ │ │ │ │ │ └── [1.5K] KerberosConfig.java
│ │ │ │ │ │ ├── [4.0K] label
│ │ │ │ │ │ │ └── [5.9K] StandardLabel.java
│ │ │ │ │ │ ├── [4.0K] lifecycle
│ │ │ │ │ │ │ └── [1.1K] TaskTermination.java
│ │ │ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ │ │ ├── [1.9K] ParameterProviderDetails.java
│ │ │ │ │ │ │ └── [ 32K] StandardParameterProviderNode.java
│ │ │ │ │ │ ├── [4.1K] ProcessorDetails.java
│ │ │ │ │ │ ├── [4.0K] queue
│ │ │ │ │ │ │ └── [1.0K] FlowFileQueueFactory.java
│ │ │ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ │ │ ├── [5.7K] AbstractReportingContext.java
│ │ │ │ │ │ │ ├── [ 20K] AbstractReportingTaskNode.java
│ │ │ │ │ │ │ ├── [1.8K] ReportingTaskDetails.java
│ │ │ │ │ │ │ └── [4.9K] StandardReportingInitializationContext.java
│ │ │ │ │ │ ├── [4.0K] repository
│ │ │ │ │ │ │ ├── [9.9K] AbstractRepositoryContext.java
│ │ │ │ │ │ │ ├── [4.0K] claim
│ │ │ │ │ │ │ │ └── [1.2K] ContentClaimWriteCache.java
│ │ │ │ │ │ │ ├── [4.0K] io
│ │ │ │ │ │ │ │ ├── [7.6K] ContentClaimInputStream.java
│ │ │ │ │ │ │ │ ├── [1.5K] ContentClaimOutputStream.java
│ │ │ │ │ │ │ │ ├── [2.5K] DisableOnCloseInputStream.java
│ │ │ │ │ │ │ │ ├── [2.1K] DisableOnCloseOutputStream.java
│ │ │ │ │ │ │ │ ├── [4.9K] FlowFileAccessInputStream.java
│ │ │ │ │ │ │ │ ├── [3.1K] FlowFileAccessOutputStream.java
│ │ │ │ │ │ │ │ ├── [3.5K] LimitedInputStream.java
│ │ │ │ │ │ │ │ ├── [3.7K] TaskTerminationInputStream.java
│ │ │ │ │ │ │ │ └── [3.1K] TaskTerminationOutputStream.java
│ │ │ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ │ │ ├── [2.8K] EmptyFlowFileEvent.java
│ │ │ │ │ │ │ │ ├── [1.1K] EventContainer.java
│ │ │ │ │ │ │ │ ├── [2.4K] EventSum.java
│ │ │ │ │ │ │ │ ├── [9.0K] EventSumValue.java
│ │ │ │ │ │ │ │ ├── [2.8K] NanoTimePerformanceTracker.java
│ │ │ │ │ │ │ │ ├── [1.5K] NopPerformanceTracker.java
│ │ │ │ │ │ │ │ ├── [1.2K] PerformanceTracker.java
│ │ │ │ │ │ │ │ ├── [2.1K] PerformanceTrackingInputStream.java
│ │ │ │ │ │ │ │ ├── [2.3K] PerformanceTrackingOutputStream.java
│ │ │ │ │ │ │ │ ├── [2.8K] RingBufferEventRepository.java
│ │ │ │ │ │ │ │ ├── [4.8K] SecondPrecisionEventContainer.java
│ │ │ │ │ │ │ │ ├── [7.4K] StandardFlowFileEvent.java
│ │ │ │ │ │ │ │ └── [4.0K] tracking
│ │ │ │ │ │ │ │ ├── [5.8K] StandardStatsTracker.java
│ │ │ │ │ │ │ │ ├── [1.1K] StatsTracker.java
│ │ │ │ │ │ │ │ └── [1.8K] TrackedStats.java
│ │ │ │ │ │ │ ├── [1.4K] ProvenanceEventEnricher.java
│ │ │ │ │ │ │ ├── [2.4K] RepositoryContext.java
│ │ │ │ │ │ │ ├── [4.0K] scheduling
│ │ │ │ │ │ │ │ └── [9.2K] ConnectableProcessContext.java
│ │ │ │ │ │ │ ├── [4.7K] StandardCounterRepository.java
│ │ │ │ │ │ │ ├── [1.7K] StandardProcessSessionFactory.java
│ │ │ │ │ │ │ ├── [188K] StandardProcessSession.java
│ │ │ │ │ │ │ ├── [ 22K] StandardProvenanceReporter.java
│ │ │ │ │ │ │ ├── [3.1K] StandardRepositoryStatusReport.java
│ │ │ │ │ │ │ ├── [2.4K] TransientClaimRepositoryRecord.java
│ │ │ │ │ │ │ └── [2.1K] WeakHashMapProcessSessionFactory.java
│ │ │ │ │ │ ├── [4.0K] scheduling
│ │ │ │ │ │ │ └── [3.3K] StandardLifecycleStateManager.java
│ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ ├── [2.5K] ControllerServiceDetails.java
│ │ │ │ │ │ │ ├── [1.1K] ControllerServiceNotValidException.java
│ │ │ │ │ │ │ ├── [7.8K] ServiceStateTransition.java
│ │ │ │ │ │ │ ├── [7.4K] StandardConfigurationContext.java
│ │ │ │ │ │ │ ├── [3.3K] StandardControllerServiceApiLookup.java
│ │ │ │ │ │ │ ├── [4.1K] StandardControllerServiceInitializationContext.java
│ │ │ │ │ │ │ ├── [ 12K] StandardControllerServiceInvocationHandler.java
│ │ │ │ │ │ │ ├── [ 41K] StandardControllerServiceNode.java
│ │ │ │ │ │ │ ├── [ 36K] StandardControllerServiceProvider.java
│ │ │ │ │ │ │ ├── [4.4K] StandardControllerServiceReference.java
│ │ │ │ │ │ │ ├── [ 11K] StandardControllerServiceResolver.java
│ │ │ │ │ │ │ └── [3.9K] StandardPropertyContext.java
│ │ │ │ │ │ ├── [3.0K] StandardCounter.java
│ │ │ │ │ │ ├── [ 98K] StandardProcessorNode.java
│ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ ├── [4.0K] config
│ │ │ │ │ │ │ │ ├── [6.8K] StateManagerConfiguration.java
│ │ │ │ │ │ │ │ └── [1.6K] StateProviderConfiguration.java
│ │ │ │ │ │ │ ├── [1.2K] ConfigParseException.java
│ │ │ │ │ │ │ ├── [4.0K] manager
│ │ │ │ │ │ │ │ └── [ 30K] StandardStateManagerProvider.java
│ │ │ │ │ │ │ ├── [3.6K] StandardStateManager.java
│ │ │ │ │ │ │ ├── [1.8K] StandardStateMap.java
│ │ │ │ │ │ │ └── [2.7K] StandardStateProviderInitializationContext.java
│ │ │ │ │ │ └── [4.0K] tasks
│ │ │ │ │ │ └── [1.2K] ActiveTask.java
│ │ │ │ │ ├── [4.0K] events
│ │ │ │ │ │ └── [ 14K] VolatileBulletinRepository.java
│ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ └── [4.0K] synchronization
│ │ │ │ │ │ ├── [3.0K] ConnectableAdditionTracker.java
│ │ │ │ │ │ ├── [1.2K] FlowSynchronizationException.java
│ │ │ │ │ │ ├── [224K] StandardVersionedComponentSynchronizer.java
│ │ │ │ │ │ ├── [ 15K] VersionedComponentSynchronizer.java
│ │ │ │ │ │ └── [7.4K] VersionedFlowSynchronizationContext.java
│ │ │ │ │ ├── [4.0K] groups
│ │ │ │ │ │ ├── [3.0K] DefaultComponentScheduler.java
│ │ │ │ │ │ ├── [1.1K] NoOpBatchCounts.java
│ │ │ │ │ │ ├── [7.8K] RetainExistingStateComponentScheduler.java
│ │ │ │ │ │ ├── [1.4K] SingleBatchFlowFileGate.java
│ │ │ │ │ │ ├── [3.0K] SingleConcurrencyFlowFileGate.java
│ │ │ │ │ │ ├── [4.4K] StandardBatchCounts.java
│ │ │ │ │ │ ├── [ 18K] StandardDataValve.java
│ │ │ │ │ │ ├── [197K] StandardProcessGroup.java
│ │ │ │ │ │ ├── [1.4K] StandardVersionedFlowStatus.java
│ │ │ │ │ │ ├── [1.1K] StatelessGroupNodeFactory.java
│ │ │ │ │ │ ├── [1.1K] UnboundedFlowFileGate.java
│ │ │ │ │ │ └── [1.9K] VersionControlFields.java
│ │ │ │ │ ├── [4.0K] logging
│ │ │ │ │ │ ├── [2.1K] ConnectableLogObserver.java
│ │ │ │ │ │ ├── [2.6K] ControllerServiceLogObserver.java
│ │ │ │ │ │ ├── [2.3K] FlowRegistryClientLogObserver.java
│ │ │ │ │ │ ├── [1.2K] LoggingContext.java
│ │ │ │ │ │ ├── [2.2K] ProcessorLogObserver.java
│ │ │ │ │ │ ├── [2.3K] ReportingTaskLogObserver.java
│ │ │ │ │ │ ├── [4.0K] repository
│ │ │ │ │ │ │ ├── [2.3K] NopLogRepository.java
│ │ │ │ │ │ │ └── [7.3K] StandardLogRepository.java
│ │ │ │ │ │ └── [2.0K] StandardLoggingContext.java
│ │ │ │ │ ├── [4.0K] migration
│ │ │ │ │ │ ├── [ 12K] StandardControllerServiceFactory.java
│ │ │ │ │ │ ├── [6.7K] StandardPropertyConfiguration.java
│ │ │ │ │ │ └── [6.5K] StandardRelationshipConfiguration.java
│ │ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ │ ├── [1.7K] FilterSensitiveParameterValueMapper.java
│ │ │ │ │ │ ├── [1.3K] ParameterValueMapper.java
│ │ │ │ │ │ ├── [1.9K] ReferenceOnlyParameterContext.java
│ │ │ │ │ │ ├── [ 47K] StandardParameterContext.java
│ │ │ │ │ │ ├── [3.0K] StandardParameterContextManager.java
│ │ │ │ │ │ ├── [1.8K] StandardParameterProviderConfiguration.java
│ │ │ │ │ │ ├── [2.5K] StandardParameterProviderInitializationContext.java
│ │ │ │ │ │ ├── [6.8K] StandardParameterReferenceManager.java
│ │ │ │ │ │ ├── [2.7K] StandardParameterUpdate.java
│ │ │ │ │ │ └── [2.4K] StandardParameterValueMapper.java
│ │ │ │ │ ├── [4.0K] processor
│ │ │ │ │ │ ├── [2.6K] ComponentSpecificControllerServiceLookup.java
│ │ │ │ │ │ ├── [ 16K] SimpleProcessLogger.java
│ │ │ │ │ │ ├── [ 14K] StandardProcessContext.java
│ │ │ │ │ │ ├── [2.6K] StandardProcessorInitializationContext.java
│ │ │ │ │ │ ├── [2.8K] StandardValidationContextFactory.java
│ │ │ │ │ │ └── [ 11K] StandardValidationContext.java
│ │ │ │ │ ├── [4.0K] registry
│ │ │ │ │ │ ├── [4.0K] extension
│ │ │ │ │ │ │ ├── [2.7K] AbstractExtensionBundleMetadata.java
│ │ │ │ │ │ │ ├── [2.2K] AbstractExtensionRegistry.java
│ │ │ │ │ │ │ ├── [4.0K] NiFiRegistryExtensionBundleMetadata.java
│ │ │ │ │ │ │ ├── [5.2K] NiFiRegistryExtensionRegistry.java
│ │ │ │ │ │ │ └── [4.2K] NiFiRegistryExternalResourceProvider.java
│ │ │ │ │ │ └── [4.0K] flow
│ │ │ │ │ │ ├── [ 16K] FlowAnalyzingRegistryClientNode.java
│ │ │ │ │ │ ├── [4.0K] mapping
│ │ │ │ │ │ │ ├── [1.4K] InstantiatedConnectableComponent.java
│ │ │ │ │ │ │ ├── [1.0K] InstantiatedVersionedComponent.java
│ │ │ │ │ │ │ ├── [1.4K] InstantiatedVersionedConnection.java
│ │ │ │ │ │ │ ├── [1.4K] InstantiatedVersionedControllerService.java
│ │ │ │ │ │ │ ├── [1.4K] InstantiatedVersionedFunnel.java
│ │ │ │ │ │ │ ├── [1.4K] InstantiatedVersionedLabel.java
│ │ │ │ │ │ │ ├── [1.4K] InstantiatedVersionedPort.java
│ │ │ │ │ │ │ ├── [2.1K] InstantiatedVersionedProcessGroup.java
│ │ │ │ │ │ │ ├── [1.4K] InstantiatedVersionedProcessor.java
│ │ │ │ │ │ │ ├── [1.5K] InstantiatedVersionedRemoteGroupPort.java
│ │ │ │ │ │ │ ├── [1.5K] InstantiatedVersionedRemoteProcessGroup.java
│ │ │ │ │ │ │ ├── [ 55K] NiFiRegistryFlowMapper.java
│ │ │ │ │ │ │ └── [4.4K] StandardComparableDataFlow.java
│ │ │ │ │ │ ├── [1.8K] StandardFlowRegistryClientConfigurationContext.java
│ │ │ │ │ │ ├── [ 21K] StandardFlowRegistryClientNode.java
│ │ │ │ │ │ └── [7.8K] StandardVersionControlInformation.java
│ │ │ │ │ ├── [4.0K] remote
│ │ │ │ │ │ ├── [2.7K] RemoteNiFiUtils.java
│ │ │ │ │ │ ├── [ 56K] StandardRemoteProcessGroup.java
│ │ │ │ │ │ └── [4.8K] StandardRemoteProcessGroupPortDescriptor.java
│ │ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ │ └── [ 40K] AbstractEventAccess.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [ 14K] BundleUtils.java
│ │ │ │ │ ├── [2.4K] Connectables.java
│ │ │ │ │ ├── [ 22K] FlowDifferenceFilters.java
│ │ │ │ │ ├── [ 18K] ReflectionUtils.java
│ │ │ │ │ ├── [ 17K] SnippetUtils.java
│ │ │ │ │ └── [3.4K] ThreadUtils.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 824] org.apache.nifi.asset.AssetManager
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] controller
│ │ │ │ │ ├── [4.0K] label
│ │ │ │ │ │ └── [1.6K] TestStandardLabel.java
│ │ │ │ │ ├── [4.0K] repository
│ │ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ │ └── [6.4K] TestSecondPrecisionEventContainer.java
│ │ │ │ │ │ ├── [6.4K] StandardCounterRepositoryTest.java
│ │ │ │ │ │ ├── [6.5K] StandardProcessSessionTest.java
│ │ │ │ │ │ ├── [3.3K] StandardProvenanceReporterTest.java
│ │ │ │ │ │ ├── [5.8K] TestRingBufferEventRepository.java
│ │ │ │ │ │ └── [2.3K] TestStandardFlowFileRecord.java
│ │ │ │ │ ├── [4.0K] scheduling
│ │ │ │ │ │ └── [3.4K] TestStandardLifecycleStateManager.java
│ │ │ │ │ └── [4.0K] service
│ │ │ │ │ ├── [ 16K] StandardControllerServiceResolverTest.java
│ │ │ │ │ └── [6.6K] TestStandardControllerServiceInvocationHandler.java
│ │ │ │ ├── [4.0K] flow
│ │ │ │ │ └── [4.0K] synchronization
│ │ │ │ │ └── [ 78K] StandardVersionedComponentSynchronizerTest.java
│ │ │ │ ├── [4.0K] logging
│ │ │ │ │ ├── [3.1K] TestStandardLoggingContext.java
│ │ │ │ │ └── [4.5K] TestStandardLogRepository.java
│ │ │ │ ├── [4.0K] migration
│ │ │ │ │ ├── [7.1K] TestStandardControllerServiceFactory.java
│ │ │ │ │ ├── [5.7K] TestStandardPropertyConfiguration.java
│ │ │ │ │ └── [8.3K] TestStandardRelationshipConfiguration.java
│ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ ├── [ 39K] TestStandardParameterContext.java
│ │ │ │ │ └── [3.3K] TestStandardParameterValueMapper.java
│ │ │ │ ├── [4.0K] processor
│ │ │ │ │ ├── [ 24K] TestSimpleProcessLogger.java
│ │ │ │ │ ├── [ 11K] TestStandardPropertyValue.java
│ │ │ │ │ └── [3.5K] TestStandardValidationContext.java
│ │ │ │ ├── [4.0K] registry
│ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ ├── [6.5K] FlowAnalyzingRegistryClientNodeTest.java
│ │ │ │ │ │ └── [4.0K] mapping
│ │ │ │ │ │ └── [ 11K] TestNiFiRegistryFlowMapper.java
│ │ │ │ │ └── [2.3K] NiFiRegistryExtensionBundleMetadataTest.java
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [5.2K] ReflectionUtilsTest.java
│ │ │ │ ├── [4.5K] TestBundleUtils.java
│ │ │ │ ├── [6.3K] TestFlowDifferenceFilters.java
│ │ │ │ └── [4.0K] ThreadUtilsTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] conf
│ │ │ │ └── [4.7K] nifi.properties
│ │ │ └── [4.0K] snapshots
│ │ │ ├── [4.0K] standard-external-service-reference
│ │ │ │ └── [ 11K] convert-record-external-schema-registry.json
│ │ │ └── [4.0K] versioned-child-services-from-parent
│ │ │ ├── [7.4K] child.json
│ │ │ └── [8.6K] parent.json
│ │ ├── [4.0K] nifi-framework-core
│ │ │ ├── [ 15K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] asset
│ │ │ │ │ │ ├── [4.2K] AssetsRestApiClient.java
│ │ │ │ │ │ ├── [ 13K] StandardAssetComponentManager.java
│ │ │ │ │ │ └── [ 13K] StandardAssetSynchronizer.java
│ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ ├── [5.4K] NiFiRestApiClient.java
│ │ │ │ │ │ └── [1.2K] NiFiRestApiRetryableException.java
│ │ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ │ ├── [3.5K] BulletinsPayload.java
│ │ │ │ │ │ ├── [1.5K] ConnectionException.java
│ │ │ │ │ │ └── [1.3K] DisconnectionException.java
│ │ │ │ │ ├── [4.0K] components
│ │ │ │ │ │ ├── [4.6K] ClassLoaderAwarePythonBridge.java
│ │ │ │ │ │ ├── [4.0K] monitor
│ │ │ │ │ │ │ └── [3.9K] LongRunningTaskMonitor.java
│ │ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ │ └── [2.6K] TriggerValidationTask.java
│ │ │ │ │ ├── [4.0K] controller
│ │ │ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ │ │ ├── [6.2K] ClusterProtocolHeartbeater.java
│ │ │ │ │ │ │ └── [1.5K] Heartbeater.java
│ │ │ │ │ │ ├── [2.4K] ClusterCoordinatorNodeInformant.java
│ │ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ │ ├── [1006] ComponentStartTimeoutException.java
│ │ │ │ │ │ │ ├── [1.3K] FlowFileConsumptionException.java
│ │ │ │ │ │ │ ├── [1.2K] ReportingTaskInstantiationException.java
│ │ │ │ │ │ │ └── [1.6K] ValidationException.java
│ │ │ │ │ │ ├── [ 46K] ExtensionBuilder.java
│ │ │ │ │ │ ├── [ 20K] FileSystemSwapManager.java
│ │ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ │ ├── [ 39K] StandardFlowManager.java
│ │ │ │ │ │ │ └── [ 18K] StandardStatelessGroupNodeFactory.java
│ │ │ │ │ │ ├── [4.0K] flowanalysis
│ │ │ │ │ │ │ ├── [3.2K] StandardFlowAnalysisContext.java
│ │ │ │ │ │ │ ├── [2.4K] StandardFlowAnalysisRuleContext.java
│ │ │ │ │ │ │ └── [4.8K] StandardFlowAnalysisRuleNode.java
│ │ │ │ │ │ ├── [161K] FlowController.java
│ │ │ │ │ │ ├── [2.1K] FlowSnippet.java
│ │ │ │ │ │ ├── [1.3K] GarbageCollectionEvent.java
│ │ │ │ │ │ ├── [1.2K] GarbageCollectionLog.java
│ │ │ │ │ │ ├── [4.0K] inheritance
│ │ │ │ │ │ │ ├── [3.7K] AuthorizerCheck.java
│ │ │ │ │ │ │ ├── [8.1K] BundleCompatibilityCheck.java
│ │ │ │ │ │ │ ├── [5.6K] ConnectionMissingCheck.java
│ │ │ │ │ │ │ ├── [1.5K] FlowInheritabilityCheck.java
│ │ │ │ │ │ │ └── [2.2K] FlowInheritability.java
│ │ │ │ │ │ ├── [4.0K] leader
│ │ │ │ │ │ │ └── [4.0K] election
│ │ │ │ │ │ │ └── [2.4K] StandaloneLeaderElectionManager.java
│ │ │ │ │ │ ├── [4.0K] lifecycle
│ │ │ │ │ │ │ └── [2.4K] TaskTerminationAwareStateManager.java
│ │ │ │ │ │ ├── [1.7K] MissingBundleException.java
│ │ │ │ │ │ ├── [3.4K] PositionScaler.java
│ │ │ │ │ │ ├── [4.0K] queue
│ │ │ │ │ │ │ ├── [ 20K] AbstractFlowFileQueue.java
│ │ │ │ │ │ │ ├── [3.2K] BlockingSwappablePriorityQueue.java
│ │ │ │ │ │ │ ├── [4.0K] clustered
│ │ │ │ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ │ │ │ ├── [4.0K] async
│ │ │ │ │ │ │ │ │ │ ├── [1.0K] AsyncLoadBalanceClientFactory.java
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] AsyncLoadBalanceClient.java
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] AsyncLoadBalanceClientRegistry.java
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] nio
│ │ │ │ │ │ │ │ │ │ │ ├── [ 27K] LoadBalanceSession.java
│ │ │ │ │ │ │ │ │ │ │ ├── [2.6K] NioAsyncLoadBalanceClientFactory.java
│ │ │ │ │ │ │ │ │ │ │ ├── [ 22K] NioAsyncLoadBalanceClient.java
│ │ │ │ │ │ │ │ │ │ │ ├── [5.2K] NioAsyncLoadBalanceClientRegistry.java
│ │ │ │ │ │ │ │ │ │ │ ├── [5.6K] NioAsyncLoadBalanceClientTask.java
│ │ │ │ │ │ │ │ │ │ │ ├── [ 19K] PeerChannel.java
│ │ │ │ │ │ │ │ │ │ │ └── [3.3K] RegisteredPartition.java
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] TransactionCompleteCallback.java
│ │ │ │ │ │ │ │ │ │ └── [1.5K] TransactionFailureCallback.java
│ │ │ │ │ │ │ │ │ ├── [1.1K] LoadBalanceFlowFileCodec.java
│ │ │ │ │ │ │ │ │ └── [2.0K] StandardLoadBalanceFlowFileCodec.java
│ │ │ │ │ │ │ │ ├── [3.7K] ContentRepositoryFlowFileAccess.java
│ │ │ │ │ │ │ │ ├── [1.1K] FlowFileContentAccess.java
│ │ │ │ │ │ │ │ ├── [4.0K] partition
│ │ │ │ │ │ │ │ │ ├── [4.1K] CorrelationAttributePartitioner.java
│ │ │ │ │ │ │ │ │ ├── [1.4K] FirstNodePartitioner.java
│ │ │ │ │ │ │ │ │ ├── [2.3K] FlowFilePartitioner.java
│ │ │ │ │ │ │ │ │ ├── [1.4K] LocalPartitionPartitioner.java
│ │ │ │ │ │ │ │ │ ├── [5.4K] LocalQueuePartition.java
│ │ │ │ │ │ │ │ │ ├── [2.2K] NonLocalPartitionPartitioner.java
│ │ │ │ │ │ │ │ │ ├── [4.3K] QueuePartition.java
│ │ │ │ │ │ │ │ │ ├── [1.7K] RebalancingPartition.java
│ │ │ │ │ │ │ │ │ ├── [ 17K] RemoteQueuePartition.java
│ │ │ │ │ │ │ │ │ ├── [1.6K] RoundRobinPartitioner.java
│ │ │ │ │ │ │ │ │ ├── [8.5K] StandardRebalancingPartition.java
│ │ │ │ │ │ │ │ │ └── [7.0K] SwappablePriorityQueueLocalPartition.java
│ │ │ │ │ │ │ │ ├── [4.0K] protocol
│ │ │ │ │ │ │ │ │ └── [1.9K] LoadBalanceProtocolConstants.java
│ │ │ │ │ │ │ │ ├── [4.0K] server
│ │ │ │ │ │ │ │ │ ├── [4.1K] ClusterLoadBalanceAuthorizer.java
│ │ │ │ │ │ │ │ │ ├── [ 13K] ConnectionLoadBalanceServer.java
│ │ │ │ │ │ │ │ │ ├── [1.6K] LoadBalanceAuthorizer.java
│ │ │ │ │ │ │ │ │ ├── [1.7K] LoadBalanceProtocol.java
│ │ │ │ │ │ │ │ │ ├── [1.0K] NotAuthorizedException.java
│ │ │ │ │ │ │ │ │ ├── [ 34K] StandardLoadBalanceProtocol.java
│ │ │ │ │ │ │ │ │ └── [1.1K] TransactionAbortedException.java
│ │ │ │ │ │ │ │ ├── [1.4K] SimpleLimitThreshold.java
│ │ │ │ │ │ │ │ ├── [ 57K] SocketLoadBalancedFlowFileQueue.java
│ │ │ │ │ │ │ │ ├── [ 986] TransactionThreshold.java
│ │ │ │ │ │ │ │ └── [2.4K] TransferFailureDestination.java
│ │ │ │ │ │ │ ├── [1.1K] DropFlowFileAction.java
│ │ │ │ │ │ │ ├── [2.6K] DropFlowFileRepositoryRecord.java
│ │ │ │ │ │ │ ├── [1.8K] FlowFileQueueContents.java
│ │ │ │ │ │ │ ├── [3.2K] FlowFileQueueSize.java
│ │ │ │ │ │ │ ├── [1.4K] MaxQueueSize.java
│ │ │ │ │ │ │ ├── [2.7K] QueuePrioritizer.java
│ │ │ │ │ │ │ ├── [7.0K] StandardFlowFileQueue.java
│ │ │ │ │ │ │ ├── [2.1K] StandardLocalQueuePartitionDiagnostics.java
│ │ │ │ │ │ │ ├── [1.7K] StandardQueueDiagnostics.java
│ │ │ │ │ │ │ ├── [1.8K] StandardRemoteQueuePartitionDiagnostics.java
│ │ │ │ │ │ │ ├── [ 55K] SwappablePriorityQueue.java
│ │ │ │ │ │ │ └── [1.2K] TimePeriod.java
│ │ │ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ │ │ ├── [3.0K] StandardReportingContext.java
│ │ │ │ │ │ │ └── [5.1K] StandardReportingTaskNode.java
│ │ │ │ │ │ ├── [4.0K] repository
│ │ │ │ │ │ │ ├── [9.5K] BatchingSessionFactory.java
│ │ │ │ │ │ │ ├── [4.0K] claim
│ │ │ │ │ │ │ │ ├── [1.2K] ContentDirection.java
│ │ │ │ │ │ │ │ └── [8.1K] StandardContentClaimWriteCache.java
│ │ │ │ │ │ │ ├── [ 81K] FileSystemRepository.java
│ │ │ │ │ │ │ ├── [4.0K] io
│ │ │ │ │ │ │ │ ├── [7.7K] ArrayManagedOutputStream.java
│ │ │ │ │ │ │ │ ├── [1.7K] MemoryManager.java
│ │ │ │ │ │ │ │ └── [1.7K] SyncOnCloseOutputStream.java
│ │ │ │ │ │ │ ├── [2.6K] LiveSerializedRepositoryRecord.java
│ │ │ │ │ │ │ ├── [5.5K] NonPurgeableContentRepository.java
│ │ │ │ │ │ │ ├── [1.4K] RepositoryPurgeException.java
│ │ │ │ │ │ │ ├── [1.6K] StandardContentRepositoryContext.java
│ │ │ │ │ │ │ ├── [1.7K] StandardQueueProvider.java
│ │ │ │ │ │ │ ├── [2.4K] StandardRepositoryContext.java
│ │ │ │ │ │ │ ├── [3.5K] StatelessBridgeFlowFileRepository.java
│ │ │ │ │ │ │ ├── [6.4K] VolatileFlowFileRepository.java
│ │ │ │ │ │ │ └── [ 39K] WriteAheadFlowFileRepository.java
│ │ │ │ │ │ ├── [5.6K] RingBufferGarbageCollectionLog.java
│ │ │ │ │ │ ├── [4.0K] scheduling
│ │ │ │ │ │ │ ├── [4.9K] AbstractSchedulingAgent.java
│ │ │ │ │ │ │ ├── [3.8K] AbstractTimeBasedSchedulingAgent.java
│ │ │ │ │ │ │ ├── [9.3K] CronSchedulingAgent.java
│ │ │ │ │ │ │ ├── [3.3K] RepositoryContextFactory.java
│ │ │ │ │ │ │ ├── [ 43K] StandardProcessScheduler.java
│ │ │ │ │ │ │ └── [9.4K] TimerDrivenSchedulingAgent.java
│ │ │ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ │ │ ├── [ 41K] AffectedComponentSet.java
│ │ │ │ │ │ │ ├── [3.8K] ComponentSetFilter.java
│ │ │ │ │ │ │ ├── [4.4K] FlowEncodingVersion.java
│ │ │ │ │ │ │ ├── [2.0K] FlowSerializer.java
│ │ │ │ │ │ │ ├── [1.7K] FlowSynchronizationException.java
│ │ │ │ │ │ │ ├── [5.0K] FlowSynchronizationUtils.java
│ │ │ │ │ │ │ ├── [2.7K] FlowSynchronizer.java
│ │ │ │ │ │ │ ├── [7.2K] RunningComponentSetFilter.java
│ │ │ │ │ │ │ ├── [1.9K] ScheduledStateLookup.java
│ │ │ │ │ │ │ ├── [7.9K] StandardVersionedReportingTaskImporter.java
│ │ │ │ │ │ │ ├── [9.7K] VersionedDataflowMapper.java
│ │ │ │ │ │ │ ├── [3.2K] VersionedFlowSerializer.java
│ │ │ │ │ │ │ ├── [ 78K] VersionedFlowSynchronizer.java
│ │ │ │ │ │ │ ├── [1.4K] VersionedReportingTaskImporter.java
│ │ │ │ │ │ │ ├── [1.9K] VersionedReportingTaskImportResult.java
│ │ │ │ │ │ │ └── [3.5K] VersionedReportingTaskSnapshotMapper.java
│ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ └── [2.9K] GhostControllerService.java
│ │ │ │ │ │ ├── [3.9K] SnippetManager.java
│ │ │ │ │ │ ├── [ 49K] StandardFlowService.java
│ │ │ │ │ │ ├── [ 36K] StandardFlowSnippet.java
│ │ │ │ │ │ ├── [4.4K] StandardGarbageCollectionEvent.java
│ │ │ │ │ │ ├── [ 22K] StandardReloadComponent.java
│ │ │ │ │ │ ├── [4.1K] StandardSnippet.java
│ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ ├── [1.5K] ClusterState.java
│ │ │ │ │ │ │ ├── [1.3K] NodeDescription.java
│ │ │ │ │ │ │ ├── [4.0K] providers
│ │ │ │ │ │ │ │ ├── [1.8K] AbstractStateProvider.java
│ │ │ │ │ │ │ │ ├── [4.0K] local
│ │ │ │ │ │ │ │ │ └── [ 14K] WriteAheadLocalStateProvider.java
│ │ │ │ │ │ │ │ └── [4.0K] zookeeper
│ │ │ │ │ │ │ │ └── [ 24K] ZooKeeperStateProvider.java
│ │ │ │ │ │ │ ├── [4.0K] server
│ │ │ │ │ │ │ │ ├── [1.1K] ZooKeeperQuorumX509Util.java
│ │ │ │ │ │ │ │ ├── [1.1K] ZooKeeperServerX509Util.java
│ │ │ │ │ │ │ │ └── [ 19K] ZooKeeperStateServer.java
│ │ │ │ │ │ │ ├── [1.8K] SortedStateUtils.java
│ │ │ │ │ │ │ ├── [4.3K] StateMapSerDe.java
│ │ │ │ │ │ │ ├── [1.5K] StateMapUpdate.java
│ │ │ │ │ │ │ └── [1.2K] StateProviderException.java
│ │ │ │ │ │ ├── [4.0K] status
│ │ │ │ │ │ │ ├── [4.0K] analytics
│ │ │ │ │ │ │ │ ├── [3.0K] CachingConnectionStatusAnalyticsEngine.java
│ │ │ │ │ │ │ │ ├── [3.2K] ConnectionStatusAnalyticsEngine.java
│ │ │ │ │ │ │ │ ├── [ 18K] ConnectionStatusAnalytics.java
│ │ │ │ │ │ │ │ ├── [4.0K] models
│ │ │ │ │ │ │ │ │ ├── [1.9K] BivariateStatusAnalyticsModel.java
│ │ │ │ │ │ │ │ │ ├── [4.4K] OrdinaryLeastSquares.java
│ │ │ │ │ │ │ │ │ └── [3.8K] SimpleRegression.java
│ │ │ │ │ │ │ │ ├── [6.1K] StatusAnalyticsModelMapFactory.java
│ │ │ │ │ │ │ │ └── [1.4K] StatusMetricExtractFunction.java
│ │ │ │ │ │ │ └── [4.0K] history
│ │ │ │ │ │ │ ├── [2.1K] ComponentStatusHistory.java
│ │ │ │ │ │ │ ├── [1.4K] EmptyStatusHistory.java
│ │ │ │ │ │ │ ├── [2.2K] EmptyStatusSnapshot.java
│ │ │ │ │ │ │ ├── [2.1K] JsonNodeStatusHistoryDumpFactory.java
│ │ │ │ │ │ │ ├── [1.9K] JsonNodeStatusHistoryDump.java
│ │ │ │ │ │ │ ├── [5.7K] MetricRollingBuffer.java
│ │ │ │ │ │ │ ├── [6.0K] StatusHistoryUtil.java
│ │ │ │ │ │ │ └── [ 21K] VolatileComponentStatusRepository.java
│ │ │ │ │ │ ├── [4.0K] swap
│ │ │ │ │ │ │ ├── [4.2K] SchemaSwapDeserializer.java
│ │ │ │ │ │ │ ├── [4.9K] SchemaSwapSerializer.java
│ │ │ │ │ │ │ ├── [ 13K] SimpleSwapDeserializer.java
│ │ │ │ │ │ │ ├── [1.7K] StandardSwapContents.java
│ │ │ │ │ │ │ ├── [2.4K] StandardSwapSummary.java
│ │ │ │ │ │ │ ├── [1.4K] SwapDeserializer.java
│ │ │ │ │ │ │ ├── [8.5K] SwapSchema.java
│ │ │ │ │ │ │ ├── [1.2K] SwapSerializer.java
│ │ │ │ │ │ │ └── [5.2K] SwapSummaryFieldMap.java
│ │ │ │ │ │ ├── [4.0K] tasks
│ │ │ │ │ │ │ ├── [ 15K] ConnectableTask.java
│ │ │ │ │ │ │ ├── [4.7K] ExpireFlowFiles.java
│ │ │ │ │ │ │ ├── [1.5K] InvocationResult.java
│ │ │ │ │ │ │ ├── [3.3K] ReportingTaskWrapper.java
│ │ │ │ │ │ │ └── [ 39K] StatelessFlowTask.java
│ │ │ │ │ │ └── [1.7K] UninheritableFlowException.java
│ │ │ │ │ ├── [4.0K] diagnostics
│ │ │ │ │ │ ├── [4.0K] bootstrap
│ │ │ │ │ │ │ ├── [5.0K] BootstrapDiagnosticsFactory.java
│ │ │ │ │ │ │ ├── [4.0K] shell
│ │ │ │ │ │ │ │ ├── [4.0K] command
│ │ │ │ │ │ │ │ │ ├── [2.9K] AbstractShellCommand.java
│ │ │ │ │ │ │ │ │ ├── [2.2K] GetDiskLayoutCommand.java
│ │ │ │ │ │ │ │ │ ├── [1.8K] GetPhysicalCpuCoresCommand.java
│ │ │ │ │ │ │ │ │ ├── [1.9K] GetTotalPhysicalRamCommand.java
│ │ │ │ │ │ │ │ │ └── [ 970] PlatformShellCommand.java
│ │ │ │ │ │ │ │ └── [4.0K] result
│ │ │ │ │ │ │ │ ├── [2.4K] LineSplittingResult.java
│ │ │ │ │ │ │ │ ├── [1.0K] ShellCommandResult.java
│ │ │ │ │ │ │ │ └── [2.0K] SingleLineResult.java
│ │ │ │ │ │ │ └── [4.0K] tasks
│ │ │ │ │ │ │ ├── [4.6K] ClusterDiagnosticTask.java
│ │ │ │ │ │ │ ├── [4.6K] ComponentCountTask.java
│ │ │ │ │ │ │ ├── [8.8K] ContentRepositoryScanTask.java
│ │ │ │ │ │ │ ├── [3.3K] DataValveDiagnosticsTask.java
│ │ │ │ │ │ │ ├── [ 10K] DiagnosticAnalysisTask.java
│ │ │ │ │ │ │ ├── [3.5K] FlowConfigurationDiagnosticTask.java
│ │ │ │ │ │ │ ├── [3.2K] GarbageCollectionDiagnosticTask.java
│ │ │ │ │ │ │ ├── [3.3K] JVMDiagnosticTask.java
│ │ │ │ │ │ │ ├── [2.9K] LongRunningProcessorTask.java
│ │ │ │ │ │ │ ├── [2.3K] MemoryPoolPeakUsageTask.java
│ │ │ │ │ │ │ ├── [1.8K] NarsDiagnosticTask.java
│ │ │ │ │ │ │ ├── [3.3K] NiFiPropertiesDiagnosticTask.java
│ │ │ │ │ │ │ ├── [4.2K] OperatingSystemDiagnosticTask.java
│ │ │ │ │ │ │ ├── [ 10K] ProcessorTimingDiagnosticTask.java
│ │ │ │ │ │ │ ├── [3.4K] PythonBridgeDiagnosticTask.java
│ │ │ │ │ │ │ └── [5.3K] RepositoryDiagnosticTask.java
│ │ │ │ │ │ ├── [1.0K] DiagnosticUtils.java
│ │ │ │ │ │ └── [ 10K] SystemDiagnosticsFactory.java
│ │ │ │ │ ├── [4.0K] encrypt
│ │ │ │ │ │ └── [1.9K] PropertyEncryptorFactory.java
│ │ │ │ │ ├── [4.0K] events
│ │ │ │ │ │ ├── [4.0K] network
│ │ │ │ │ │ │ ├── [1.2K] CommunicationsFailure.java
│ │ │ │ │ │ │ └── [1.5K] NetworkTransfer.java
│ │ │ │ │ │ ├── [1.5K] NodeBulletinProcessingStrategy.java
│ │ │ │ │ │ └── [1.5K] StandardEventReporter.java
│ │ │ │ │ ├── [4.0K] flowanalysis
│ │ │ │ │ │ ├── [2.8K] GhostFlowAnalysisRule.java
│ │ │ │ │ │ ├── [ 12K] StandardFlowAnalyzer.java
│ │ │ │ │ │ └── [2.1K] TriggerFlowAnalysisTask.java
│ │ │ │ │ ├── [4.0K] framework
│ │ │ │ │ │ ├── [4.0K] configuration
│ │ │ │ │ │ │ ├── [1.6K] ApplicationPropertiesConfiguration.java
│ │ │ │ │ │ │ ├── [ 18K] FlowControllerConfiguration.java
│ │ │ │ │ │ │ ├── [5.7K] ManagerConfiguration.java
│ │ │ │ │ │ │ └── [ 15K] SslContextConfiguration.java
│ │ │ │ │ │ └── [4.0K] ssl
│ │ │ │ │ │ ├── [5.0K] FrameworkKeyManagerBuilder.java
│ │ │ │ │ │ ├── [3.0K] FrameworkSslContextHolder.java
│ │ │ │ │ │ ├── [7.5K] FrameworkSslContextProvider.java
│ │ │ │ │ │ ├── [2.8K] FrameworkTrustManagerBuilder.java
│ │ │ │ │ │ ├── [4.1K] SecurityStoreChangedPathListener.java
│ │ │ │ │ │ └── [3.6K] WatchServiceMonitorCommand.java
│ │ │ │ │ ├── [4.0K] groups
│ │ │ │ │ │ └── [ 39K] StandardStatelessGroupNode.java
│ │ │ │ │ ├── [4.0K] jaxb
│ │ │ │ │ │ ├── [2.7K] AdaptedBulletin.java
│ │ │ │ │ │ ├── [1.5K] AdaptedCounter.java
│ │ │ │ │ │ ├── [2.3K] BulletinAdapter.java
│ │ │ │ │ │ └── [1.8K] CounterAdapter.java
│ │ │ │ │ ├── [4.0K] logging
│ │ │ │ │ │ ├── [2.4K] FlowAnalysisRuleLogObserver.java
│ │ │ │ │ │ └── [2.4K] ParameterProviderLogObserver.java
│ │ │ │ │ ├── [4.0K] manifest
│ │ │ │ │ │ └── [ 21K] StandardRuntimeManifestService.java
│ │ │ │ │ ├── [4.0K] nar
│ │ │ │ │ │ ├── [2.9K] ComponentNodeDefinitionPredicate.java
│ │ │ │ │ │ ├── [ 14K] NarInstallTask.java
│ │ │ │ │ │ ├── [7.3K] NarPersistenceProviderFactoryBean.java
│ │ │ │ │ │ ├── [4.3K] NarRestApiClient.java
│ │ │ │ │ │ ├── [ 13K] StandardNarComponentManager.java
│ │ │ │ │ │ ├── [ 26K] StandardNarManager.java
│ │ │ │ │ │ ├── [1.3K] StandardNarPersistenceProviderInitializationContext.java
│ │ │ │ │ │ ├── [ 14K] StandardNarPersistenceProvider.java
│ │ │ │ │ │ └── [4.7K] StandardStoppedComponents.java
│ │ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ │ └── [3.1K] GhostParameterProvider.java
│ │ │ │ │ ├── [4.0K] persistence
│ │ │ │ │ │ ├── [9.7K] FlowConfigurationArchiveManager.java
│ │ │ │ │ │ ├── [5.0K] FlowConfigurationDAO.java
│ │ │ │ │ │ ├── [8.8K] StandardFlowConfigurationDAO.java
│ │ │ │ │ │ ├── [2.1K] StandardSnippetDeserializer.java
│ │ │ │ │ │ └── [1.9K] StandardSnippetSerializer.java
│ │ │ │ │ ├── [4.0K] processor
│ │ │ │ │ │ └── [3.1K] GhostProcessor.java
│ │ │ │ │ ├── [4.0K] provenance
│ │ │ │ │ │ ├── [3.0K] ComponentIdentifierLookup.java
│ │ │ │ │ │ └── [5.8K] StandardProvenanceAuthorizableFactory.java
│ │ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ │ ├── [3.0K] GhostReportingTask.java
│ │ │ │ │ │ └── [ 11K] StandardEventAccess.java
│ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ ├── [7.5K] ComponentMetrics.java
│ │ │ │ │ │ ├── [1.5K] FlowInfo.java
│ │ │ │ │ │ └── [4.9K] FlowParser.java
│ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ ├── [2.0K] RuleViolationKey.java
│ │ │ │ │ └── [8.8K] StandardRuleViolationsManager.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 934] org.apache.nifi.components.state.StateProvider
│ │ │ │ ├── [ 840] org.apache.nifi.controller.repository.ContentRepository
│ │ │ │ ├── [ 913] org.apache.nifi.controller.repository.FlowFileRepository
│ │ │ │ ├── [ 845] org.apache.nifi.controller.repository.FlowFileSwapManager
│ │ │ │ ├── [ 920] org.apache.nifi.controller.status.analytics.StatusAnalyticsModel
│ │ │ │ ├── [ 872] org.apache.nifi.controller.status.history.StatusHistoryRepository
│ │ │ │ ├── [ 853] org.apache.nifi.flow.resource.ExternalResourceProvider
│ │ │ │ └── [ 847] org.apache.nifi.nar.NarPersistenceProvider
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ ├── [2.6K] HeartbeatPayloadTest.java
│ │ │ │ │ └── [ 14K] ZooKeeperClientConfigTest.java
│ │ │ │ ├── [4.0K] components
│ │ │ │ │ └── [6.9K] LongRunningTaskMonitorTest.java
│ │ │ │ ├── [4.0K] controller
│ │ │ │ │ ├── [1.4K] DummyPrimaryNodeOnlyProcessor.java
│ │ │ │ │ ├── [1.5K] DummyScheduledProcessor.java
│ │ │ │ │ ├── [2.6K] DummyScheduledReportingTask.java
│ │ │ │ │ ├── [1.5K] DummySettingsProcessor.java
│ │ │ │ │ ├── [4.0K] leader
│ │ │ │ │ │ └── [4.0K] election
│ │ │ │ │ │ └── [5.4K] TestCuratorACLProviderFactory.java
│ │ │ │ │ ├── [4.1K] MockFlowFileRecord.java
│ │ │ │ │ ├── [7.9K] MockSwapManager.java
│ │ │ │ │ ├── [4.0K] queue
│ │ │ │ │ │ ├── [4.0K] clustered
│ │ │ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ │ │ └── [4.0K] async
│ │ │ │ │ │ │ │ └── [4.0K] nio
│ │ │ │ │ │ │ │ ├── [ 12K] TestLoadBalanceSession.java
│ │ │ │ │ │ │ │ └── [ 12K] TestPeerChannel.java
│ │ │ │ │ │ │ ├── [ 68K] LoadBalancedQueueIT.java
│ │ │ │ │ │ │ ├── [2.4K] MockTransferFailureDestination.java
│ │ │ │ │ │ │ ├── [4.0K] partition
│ │ │ │ │ │ │ │ └── [4.2K] CorrelationAttributePartitionerTest.java
│ │ │ │ │ │ │ ├── [4.0K] server
│ │ │ │ │ │ │ │ ├── [6.3K] ConnectionLoadBalanceServerTest.java
│ │ │ │ │ │ │ │ └── [ 28K] TestStandardLoadBalanceProtocol.java
│ │ │ │ │ │ │ ├── [5.7K] TestContentRepositoryFlowFileAccess.java
│ │ │ │ │ │ │ ├── [2.0K] TestNaiveLimitThreshold.java
│ │ │ │ │ │ │ ├── [ 28K] TestSocketLoadBalancedFlowFileQueue.java
│ │ │ │ │ │ │ └── [ 33K] TestSwappablePriorityQueue.java
│ │ │ │ │ │ └── [8.0K] QueuePrioritizerTest.java
│ │ │ │ │ ├── [4.0K] repository
│ │ │ │ │ │ ├── [4.0K] claim
│ │ │ │ │ │ │ └── [5.6K] TestStandardContentClaimWriteCache.java
│ │ │ │ │ │ ├── [4.0K] io
│ │ │ │ │ │ │ ├── [8.6K] TestContentClaimInputStream.java
│ │ │ │ │ │ │ ├── [3.0K] TestFlowFileAccessInputStream.java
│ │ │ │ │ │ │ └── [3.9K] TestLimitedInputStream.java
│ │ │ │ │ │ ├── [ 14K] SchemaRepositoryRecordSerdeTest.java
│ │ │ │ │ │ ├── [133K] StandardProcessSessionIT.java
│ │ │ │ │ │ ├── [ 37K] TestFileSystemRepository.java
│ │ │ │ │ │ ├── [ 31K] TestWriteAheadFlowFileRepository.java
│ │ │ │ │ │ └── [4.0K] util
│ │ │ │ │ │ └── [2.1K] DiskUtils.java
│ │ │ │ │ ├── [4.0K] scheduling
│ │ │ │ │ │ ├── [4.4K] CronSchedulingAgentTest.java
│ │ │ │ │ │ ├── [1.9K] LongEnablingService.java
│ │ │ │ │ │ ├── [1.2K] NoStartServiceImpl.java
│ │ │ │ │ │ ├── [ 967] NoStartService.java
│ │ │ │ │ │ ├── [4.0K] processors
│ │ │ │ │ │ │ └── [3.3K] FailOnScheduledProcessor.java
│ │ │ │ │ │ └── [ 31K] TestStandardProcessScheduler.java
│ │ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ │ └── [3.2K] TestAffectedComponentSet.java
│ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ ├── [4.0K] mock
│ │ │ │ │ │ │ ├── [1.8K] DummyProcessor.java
│ │ │ │ │ │ │ ├── [1.9K] DummyReportingTask.java
│ │ │ │ │ │ │ ├── [ 21K] MockProcessGroup.java
│ │ │ │ │ │ │ ├── [1.8K] ServiceA.java
│ │ │ │ │ │ │ ├── [ 975] ServiceB.java
│ │ │ │ │ │ │ ├── [2.0K] ServiceC.java
│ │ │ │ │ │ │ └── [1.5K] ServiceD.java
│ │ │ │ │ │ ├── [8.4K] StandardControllerServiceProviderTest.java
│ │ │ │ │ │ ├── [ 29K] TestStandardControllerServiceProvider.java
│ │ │ │ │ │ └── [4.0K] util
│ │ │ │ │ │ └── [2.0K] TestControllerService.java
│ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ ├── [4.0K] providers
│ │ │ │ │ │ │ ├── [ 10K] AbstractTestStateProvider.java
│ │ │ │ │ │ │ ├── [4.0K] local
│ │ │ │ │ │ │ │ └── [4.3K] TestWriteAheadLocalStateProvider.java
│ │ │ │ │ │ │ └── [4.0K] zookeeper
│ │ │ │ │ │ │ └── [ 14K] TestZooKeeperStateProvider.java
│ │ │ │ │ │ ├── [4.0K] server
│ │ │ │ │ │ │ └── [5.0K] TestZooKeeperStateServer.java
│ │ │ │ │ │ └── [2.8K] TestStateMapSerDe.java
│ │ │ │ │ ├── [4.0K] status
│ │ │ │ │ │ ├── [4.0K] analytics
│ │ │ │ │ │ │ ├── [4.0K] models
│ │ │ │ │ │ │ │ ├── [6.0K] TestOrdinaryLeastSquares.java
│ │ │ │ │ │ │ │ └── [3.5K] TestSimpleRegression.java
│ │ │ │ │ │ │ ├── [2.8K] TestCachingConnectionStatusAnalyticsEngine.java
│ │ │ │ │ │ │ ├── [1.7K] TestConnectionStatusAnalyticsEngine.java
│ │ │ │ │ │ │ ├── [ 22K] TestConnectionStatusAnalytics.java
│ │ │ │ │ │ │ ├── [4.9K] TestStatusAnalyticsEngine.java
│ │ │ │ │ │ │ └── [3.0K] TestStatusAnalyticsModelMapFactory.java
│ │ │ │ │ │ └── [4.0K] history
│ │ │ │ │ │ ├── [ 23K] AbstractStatusHistoryRepositoryTest.java
│ │ │ │ │ │ ├── [3.6K] JsonNodeStatusHistoryDumpFactoryTest.java
│ │ │ │ │ │ ├── [4.9K] StatusHistoryUtilTest.java
│ │ │ │ │ │ ├── [5.3K] TestMetricRollingBuffer.java
│ │ │ │ │ │ ├── [ 10K] VolatileComponentStatusRepositoryForComponentsTest.java
│ │ │ │ │ │ └── [8.6K] VolatileComponentStatusRepositoryForNodeTest.java
│ │ │ │ │ ├── [4.0K] swap
│ │ │ │ │ │ ├── [4.0K] MockFlowFile.java
│ │ │ │ │ │ └── [9.0K] TestSchemaSwapSerializerDeserializer.java
│ │ │ │ │ ├── [4.0K] tasks
│ │ │ │ │ │ ├── [9.8K] TestConnectableTask.java
│ │ │ │ │ │ └── [ 26K] TestStatelessFlowTask.java
│ │ │ │ │ ├── [9.3K] TestFileSystemSwapManager.java
│ │ │ │ │ └── [ 23K] TestStandardFlowFileQueue.java
│ │ │ │ ├── [4.0K] diagnostics
│ │ │ │ │ └── [4.0K] bootstrap
│ │ │ │ │ └── [4.0K] shell
│ │ │ │ │ └── [4.0K] result
│ │ │ │ │ ├── [2.8K] LineSplittingResultTest.java
│ │ │ │ │ └── [2.5K] SingleLineResultTest.java
│ │ │ │ ├── [4.0K] events
│ │ │ │ │ └── [2.1K] TestNodeBulletinProcessingStrategy.java
│ │ │ │ ├── [4.0K] framework
│ │ │ │ │ └── [4.0K] ssl
│ │ │ │ │ └── [2.9K] WatchServiceMonitorCommandTest.java
│ │ │ │ ├── [4.0K] manifest
│ │ │ │ │ └── [9.0K] StandardRuntimeManifestServiceTest.java
│ │ │ │ ├── [4.0K] nar
│ │ │ │ │ ├── [7.0K] ComponentNodeDefinitionPredicateTest.java
│ │ │ │ │ └── [7.2K] StandardNarPersistenceProviderTest.java
│ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ └── [4.0K] mock
│ │ │ │ │ └── [2.6K] PlaceholderParameterProvider.java
│ │ │ │ ├── [4.0K] persistence
│ │ │ │ │ └── [ 13K] TestFlowConfigurationArchiveManager.java
│ │ │ │ ├── [4.0K] provenance
│ │ │ │ │ └── [6.0K] MockProvenanceRepository.java
│ │ │ │ ├── [4.0K] registry
│ │ │ │ │ └── [4.0K] flow
│ │ │ │ │ └── [4.0K] mapping
│ │ │ │ │ └── [ 49K] NiFiRegistryFlowMapperTest.java
│ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ └── [9.2K] AbstractEventAccessTest.java
│ │ │ │ ├── [4.0K] test
│ │ │ │ │ └── [4.0K] processors
│ │ │ │ │ ├── [1.7K] AlwaysInvalid.java
│ │ │ │ │ ├── [2.6K] DataGeneratorTestProcessor.java
│ │ │ │ │ ├── [4.6K] DynamicPropertiesTestProcessor.java
│ │ │ │ │ ├── [2.0K] ModifiesClasspathNoAnnotationProcessor.java
│ │ │ │ │ ├── [1.7K] ModifiesClasspathProcessor.java
│ │ │ │ │ ├── [4.2K] StubAttributeLoggerProcessor.java
│ │ │ │ │ └── [1.4K] StubTerminationFileProcessor.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [1.2K] SynchronousValidationTrigger.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 189] bgBannerFoot.png
│ │ │ ├── [4.0K] conf
│ │ │ │ ├── [ 0] 0bytes.json
│ │ │ │ ├── [ 18K] all-flow-corrupt.json
│ │ │ │ ├── [ 18K] all-flow-inheritable.json
│ │ │ │ ├── [ 14K] all-flow.json
│ │ │ │ ├── [ 18K] all-flow-uninheritable.json
│ │ │ │ ├── [5.1K] flow-json-missing-component-id.json
│ │ │ │ ├── [4.8K] nifi.properties
│ │ │ │ ├── [1.5K] only-termination.json
│ │ │ │ ├── [1.9K] parameter-context-flow-description.json
│ │ │ │ ├── [3.5K] parameter-context-flow-error.json
│ │ │ │ ├── [2.5K] parameter-context-flow.json
│ │ │ │ ├── [4.9K] parameter-provider-with-cs-flow.json
│ │ │ │ ├── [3.6K] processor-with-cs-flow-0.7.0.json
│ │ │ │ ├── [5.1K] reporting-task-with-cs-flow-0.7.0.json
│ │ │ │ ├── [ 51K] scale-positions-flow-0.7.0.json
│ │ │ │ ├── [9.9K] standard-flow.json
│ │ │ │ └── [ 0] termination-only.json
│ │ │ ├── [810K] encrypted_content_repo.png
│ │ │ ├── [5.4K] flowcontrollertest.nifi.properties
│ │ │ ├── [ 12] hello.txt
│ │ │ ├── [1.0K] longtext.txt
│ │ │ ├── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [1.0K] org.apache.nifi.controller.ControllerService
│ │ │ │ ├── [ 781] org.apache.nifi.controller.flowanalysis.FlowAnalyzer
│ │ │ │ ├── [ 840] org.apache.nifi.parameter.ParameterProvider
│ │ │ │ ├── [ 965] org.apache.nifi.processor.Processor
│ │ │ │ ├── [ 834] org.apache.nifi.provenance.ProvenanceRepository
│ │ │ │ └── [ 839] org.apache.nifi.reporting.ReportingTask
│ │ │ ├── [4.0K] native
│ │ │ │ └── [8.4K] libtestjni.dylib
│ │ │ ├── [4.0K] nifi
│ │ │ │ └── [4.0K] fingerprint
│ │ │ │ ├── [ 17K] flow1a.json
│ │ │ │ ├── [ 18K] flow1b.json
│ │ │ │ ├── [ 15K] flow2.json
│ │ │ │ ├── [2.2K] flow3-with-bundle-1.json
│ │ │ │ ├── [2.2K] flow3-with-bundle-2.json
│ │ │ │ ├── [2.2K] flow3-with-missing-bundle.json
│ │ │ │ ├── [2.2K] flow3-with-no-bundle.json
│ │ │ │ ├── [2.6K] flow4.json
│ │ │ │ ├── [2.6K] flow4-with-different-bundle.json
│ │ │ │ ├── [1.9K] flow-connection-with-multiple-rels.xml
│ │ │ │ ├── [9.0K] flow-with-parameter-context.xml
│ │ │ │ ├── [1.4K] group-with-controller-services.xml
│ │ │ │ ├── [5.4K] initial.xml
│ │ │ │ ├── [5.4K] modified.xml
│ │ │ │ ├── [1.7K] public-port-with-no-policies.xml
│ │ │ │ └── [5.7K] validating-flow.xml
│ │ │ ├── [4.5K] nifi-with-remote.properties
│ │ │ ├── [1.6M] old-swap-file.swap
│ │ │ ├── [5.1K] standardflowserializertest.nifi.properties
│ │ │ ├── [5.1K] standardflowsynchronizerspec.nifi.properties
│ │ │ ├── [5.1K] standardprocessschedulertest.nifi.properties
│ │ │ ├── [1.9K] state-management.xml
│ │ │ ├── [4.0K] swap
│ │ │ │ └── [1.6M] 444-old-swap-file.swap
│ │ │ ├── [4.0K] TestClasspathResources
│ │ │ │ ├── [ 790] resource1.txt
│ │ │ │ ├── [ 790] resource2.txt
│ │ │ │ └── [ 790] resource3.txt
│ │ │ ├── [4.0K] TestRuntimeManifest
│ │ │ │ ├── [4.0K] nifi-framework-nar
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] docs
│ │ │ │ │ └── [ 908] extension-manifest.xml
│ │ │ │ ├── [4.0K] nifi-test-components-nar
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] docs
│ │ │ │ │ └── [3.5K] extension-manifest.xml
│ │ │ │ └── [4.0K] nifi-test-python-components-nar
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] docs
│ │ │ │ └── [2.1K] extension-manifest.xml
│ │ │ └── [4.0K] TestZooKeeperStateServerConfigurations
│ │ │ ├── [1.4K] insecure.zookeeper.properties
│ │ │ ├── [1.4K] partial.zookeeper.properties
│ │ │ └── [ 985] secure.zookeeper.properties
│ │ ├── [4.0K] nifi-framework-core-api
│ │ │ ├── [4.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] asset
│ │ │ │ │ ├── [1.3K] AssetComponentManager.java
│ │ │ │ │ └── [1.0K] AssetSynchronizer.java
│ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ ├── [1.2K] ClusterException.java
│ │ │ │ │ │ └── [1.3K] NoClusterCoordinatorException.java
│ │ │ │ │ └── [4.0K] protocol
│ │ │ │ │ └── [1.6K] DataFlow.java
│ │ │ │ ├── [4.0K] components
│ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ └── [2.3K] StateManagerProvider.java
│ │ │ │ │ └── [4.0K] validation
│ │ │ │ │ ├── [1.6K] DisabledServiceValidationResult.java
│ │ │ │ │ ├── [1.4K] EnablingServiceValidationResult.java
│ │ │ │ │ ├── [1.5K] ValidationState.java
│ │ │ │ │ ├── [1.1K] ValidationStatus.java
│ │ │ │ │ └── [1.3K] ValidationTrigger.java
│ │ │ │ ├── [4.0K] connectable
│ │ │ │ │ ├── [9.5K] Connectable.java
│ │ │ │ │ ├── [1.4K] ConnectableType.java
│ │ │ │ │ ├── [2.5K] Connection.java
│ │ │ │ │ ├── [ 999] Funnel.java
│ │ │ │ │ ├── [1.3K] Port.java
│ │ │ │ │ ├── [1.2K] Positionable.java
│ │ │ │ │ ├── [1.1K] Position.java
│ │ │ │ │ └── [1.1K] Size.java
│ │ │ │ ├── [4.0K] controller
│ │ │ │ │ ├── [ 77K] AbstractComponentNode.java
│ │ │ │ │ ├── [ 25K] AbstractPort.java
│ │ │ │ │ ├── [1.6K] ActiveThreadInfo.java
│ │ │ │ │ ├── [ 911] BackoffMechanism.java
│ │ │ │ │ ├── [ 13K] ComponentNode.java
│ │ │ │ │ ├── [1.8K] ContentAvailability.java
│ │ │ │ │ ├── [3.1K] ControllerServiceApiMatcher.java
│ │ │ │ │ ├── [1017] Counter.java
│ │ │ │ │ ├── [1.1K] EventBasedWorker.java
│ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ ├── [1.4K] CommunicationsException.java
│ │ │ │ │ │ ├── [1.2K] ComponentLifeCycleException.java
│ │ │ │ │ │ ├── [1.1K] ControllerServiceAlreadyExistsException.java
│ │ │ │ │ │ └── [1.4K] ControllerServiceInstantiationException.java
│ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ ├── [ 18K] FlowManager.java
│ │ │ │ │ │ ├── [3.9K] VersionedDataflow.java
│ │ │ │ │ │ └── [1.5K] VersionedFlowEncodingVersion.java
│ │ │ │ │ ├── [4.0K] flowanalysis
│ │ │ │ │ │ ├── [1.2K] FlowAnalysisRuleInstantiationException.java
│ │ │ │ │ │ ├── [3.6K] FlowAnalysisRuleProvider.java
│ │ │ │ │ │ └── [2.2K] FlowAnalyzer.java
│ │ │ │ │ ├── [3.2K] FlowAnalysisRuleNode.java
│ │ │ │ │ ├── [4.0K] flowrepository
│ │ │ │ │ │ └── [1.2K] FlowRepositoryClientInstantiationException.java
│ │ │ │ │ ├── [4.0K] label
│ │ │ │ │ │ └── [1.6K] Label.java
│ │ │ │ │ ├── [1.7K] LoggableComponent.java
│ │ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ │ ├── [1.1K] ParameterProviderInstantiationException.java
│ │ │ │ │ │ └── [1.3K] ParameterProviderLookup.java
│ │ │ │ │ ├── [4.0K] ParameterProviderNode.java
│ │ │ │ │ ├── [1.6K] ParametersApplication.java
│ │ │ │ │ ├── [ 15K] ProcessorNode.java
│ │ │ │ │ ├── [ 11K] ProcessScheduler.java
│ │ │ │ │ ├── [4.8K] PropertyConfiguration.java
│ │ │ │ │ ├── [4.0K] PropertyConfigurationMapper.java
│ │ │ │ │ ├── [4.0K] queue
│ │ │ │ │ │ ├── [3.0K] DropFlowFileRequest.java
│ │ │ │ │ │ └── [3.4K] ListFlowFileRequest.java
│ │ │ │ │ ├── [5.8K] ReloadComponent.java
│ │ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ │ ├── [1.2K] ReportingTaskInstantiationException.java
│ │ │ │ │ │ └── [4.1K] ReportingTaskProvider.java
│ │ │ │ │ ├── [4.9K] ReportingTaskNode.java
│ │ │ │ │ ├── [4.0K] repository
│ │ │ │ │ │ ├── [1023] ActiveProcessSessionFactory.java
│ │ │ │ │ │ ├── [2.2K] ContentNotFoundException.java
│ │ │ │ │ │ ├── [1.2K] CounterRepository.java
│ │ │ │ │ │ ├── [1.6K] FlowFileEvent.java
│ │ │ │ │ │ ├── [2.1K] FlowFileEventRepository.java
│ │ │ │ │ │ └── [1.1K] RepositoryStatusReport.java
│ │ │ │ │ ├── [4.0K] scheduling
│ │ │ │ │ │ ├── [6.9K] LifecycleState.java
│ │ │ │ │ │ ├── [2.6K] LifecycleStateManager.java
│ │ │ │ │ │ └── [1.8K] SchedulingAgent.java
│ │ │ │ │ ├── [1.0K] SchedulingAgentCallback.java
│ │ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ │ └── [1.6K] FlowSerializationException.java
│ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ ├── [1.6K] ControllerServiceApiLookup.java
│ │ │ │ │ │ ├── [1.2K] ControllerServiceDisabledException.java
│ │ │ │ │ │ ├── [1.2K] ControllerServiceInvocationHandler.java
│ │ │ │ │ │ ├── [ 12K] ControllerServiceNode.java
│ │ │ │ │ │ ├── [9.6K] ControllerServiceProvider.java
│ │ │ │ │ │ ├── [2.0K] ControllerServiceReference.java
│ │ │ │ │ │ ├── [2.2K] ControllerServiceResolver.java
│ │ │ │ │ │ └── [1.4K] ControllerServiceState.java
│ │ │ │ │ ├── [ 21K] StandardFunnel.java
│ │ │ │ │ ├── [5.9K] TerminationAwareLogger.java
│ │ │ │ │ ├── [1.8K] ThreadDetails.java
│ │ │ │ │ ├── [1.6K] ValidationContextFactory.java
│ │ │ │ │ └── [1.2K] WorkerQueue.java
│ │ │ │ ├── [4.0K] engine
│ │ │ │ │ └── [6.5K] FlowEngine.java
│ │ │ │ ├── [4.0K] events
│ │ │ │ │ ├── [6.0K] BulletinFactory.java
│ │ │ │ │ ├── [ 975] BulletinProcessingStrategy.java
│ │ │ │ │ ├── [1.0K] ComponentBulletin.java
│ │ │ │ │ └── [1.1K] SystemBulletin.java
│ │ │ │ ├── [4.0K] groups
│ │ │ │ │ ├── [ 11K] AbstractComponentScheduler.java
│ │ │ │ │ ├── [1.2K] BatchCounts.java
│ │ │ │ │ ├── [1.1K] BundleUpdateStrategy.java
│ │ │ │ │ ├── [5.1K] ComponentAdditions.java
│ │ │ │ │ ├── [1.4K] ComponentIdGenerator.java
│ │ │ │ │ ├── [2.7K] ComponentScheduler.java
│ │ │ │ │ ├── [1.6K] DataValveDiagnostics.java
│ │ │ │ │ ├── [4.7K] DataValve.java
│ │ │ │ │ ├── [2.4K] FlowFileConcurrency.java
│ │ │ │ │ ├── [ 982] FlowFileGate.java
│ │ │ │ │ ├── [1.6K] FlowFileOutboundPolicy.java
│ │ │ │ │ ├── [ 13K] FlowSynchronizationOptions.java
│ │ │ │ │ ├── [3.6K] ProcessGroupCounts.java
│ │ │ │ │ ├── [ 45K] ProcessGroup.java
│ │ │ │ │ ├── [ 966] PropertyDecryptor.java
│ │ │ │ │ ├── [1.2K] RemoteProcessGroupCounts.java
│ │ │ │ │ ├── [7.5K] RemoteProcessGroup.java
│ │ │ │ │ ├── [2.5K] RemoteProcessGroupPortDescriptor.java
│ │ │ │ │ ├── [2.1K] ScheduledStateChangeListener.java
│ │ │ │ │ ├── [1.9K] StatelessGroupFactory.java
│ │ │ │ │ ├── [ 973] StatelessGroupNodeInitializationContext.java
│ │ │ │ │ ├── [1.9K] StatelessGroupNode.java
│ │ │ │ │ ├── [ 907] StatelessGroupScheduledState.java
│ │ │ │ │ └── [7.2K] VersionedComponentAdditions.java
│ │ │ │ ├── [4.0K] lifecycle
│ │ │ │ │ ├── [1.6K] LifeCycleException.java
│ │ │ │ │ ├── [1.8K] LifeCycle.java
│ │ │ │ │ ├── [1.6K] LifeCycleStartException.java
│ │ │ │ │ ├── [1.6K] LifeCycleStopException.java
│ │ │ │ │ └── [1.8K] ProcessorStopLifecycleMethods.java
│ │ │ │ ├── [4.0K] logging
│ │ │ │ │ ├── [ 955] GroupedComponent.java
│ │ │ │ │ ├── [ 953] LogObserver.java
│ │ │ │ │ ├── [2.9K] LogRepositoryFactory.java
│ │ │ │ │ └── [2.1K] LogRepository.java
│ │ │ │ ├── [4.0K] manifest
│ │ │ │ │ └── [1.9K] RuntimeManifestService.java
│ │ │ │ ├── [4.0K] migration
│ │ │ │ │ ├── [1.2K] ControllerServiceCreationDetails.java
│ │ │ │ │ └── [2.0K] ControllerServiceFactory.java
│ │ │ │ ├── [4.0K] nar
│ │ │ │ │ ├── [2.4K] NarComponentManager.java
│ │ │ │ │ ├── [2.3K] NarInstallRequest.java
│ │ │ │ │ ├── [3.7K] NarManager.java
│ │ │ │ │ ├── [4.5K] NarNode.java
│ │ │ │ │ ├── [1.4K] NarNotFoundException.java
│ │ │ │ │ ├── [1.2K] NarState.java
│ │ │ │ │ └── [1.5K] StoppedComponents.java
│ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ ├── [9.5K] ParameterContext.java
│ │ │ │ │ ├── [1.6K] ParameterContextLookup.java
│ │ │ │ │ ├── [1.2K] ParameterContextManager.java
│ │ │ │ │ ├── [1.4K] ParameterProviderConfiguration.java
│ │ │ │ │ ├── [2.3K] ParameterReferencedControllerServiceData.java
│ │ │ │ │ ├── [3.8K] ParameterReferenceManager.java
│ │ │ │ │ └── [1.4K] ParameterUpdate.java
│ │ │ │ ├── [4.0K] provenance
│ │ │ │ │ └── [1.9K] InternalProvenanceReporter.java
│ │ │ │ ├── [4.0K] registry
│ │ │ │ │ ├── [4.0K] extension
│ │ │ │ │ │ ├── [1.4K] ExtensionBundleMetadata.java
│ │ │ │ │ │ ├── [1.2K] ExtensionRegistryException.java
│ │ │ │ │ │ └── [2.8K] ExtensionRegistry.java
│ │ │ │ │ └── [4.0K] flow
│ │ │ │ │ ├── [1.4K] FlowRegistryClientContextFactory.java
│ │ │ │ │ ├── [3.7K] FlowRegistryClientNode.java
│ │ │ │ │ ├── [ 967] FlowRegistryClientUserContext.java
│ │ │ │ │ ├── [ 973] FlowRegistryUtil.java
│ │ │ │ │ ├── [6.6K] FlowSnapshotContainer.java
│ │ │ │ │ ├── [5.3K] GhostFlowRegistryClient.java
│ │ │ │ │ ├── [4.0K] mapping
│ │ │ │ │ │ ├── [2.7K] ComponentIdLookup.java
│ │ │ │ │ │ ├── [9.9K] FlowMappingOptions.java
│ │ │ │ │ │ ├── [ 930] SensitiveValueEncryptor.java
│ │ │ │ │ │ └── [5.1K] VersionedComponentStateLookup.java
│ │ │ │ │ ├── [1.8K] StandardFlowRegistryClientInitializationContext.java
│ │ │ │ │ ├── [1.3K] StandardFlowRegistryClientUserContext.java
│ │ │ │ │ ├── [2.5K] VersionControlInformation.java
│ │ │ │ │ └── [1.1K] VersionedFlowStatus.java
│ │ │ │ ├── [4.0K] remote
│ │ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ │ └── [ 928] NodeInformant.java
│ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ ├── [1.1K] BadRequestException.java
│ │ │ │ │ │ ├── [1.0K] NotAuthorizedException.java
│ │ │ │ │ │ └── [1.0K] RequestExpiredException.java
│ │ │ │ │ ├── [ 940] PortAuthorizationResult.java
│ │ │ │ │ ├── [4.0K] protocol
│ │ │ │ │ │ └── [4.8K] ServerProtocol.java
│ │ │ │ │ ├── [3.1K] PublicPort.java
│ │ │ │ │ ├── [ 935] RemoteAuthorizationState.java
│ │ │ │ │ └── [2.0K] RemoteGroupPort.java
│ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ └── [3.3K] UserAwareEventAccess.java
│ │ │ │ ├── [4.0K] services
│ │ │ │ │ └── [4.4K] FlowService.java
│ │ │ │ ├── [4.0K] util
│ │ │ │ │ └── [2.3K] CharacterFilterUtils.java
│ │ │ │ ├── [4.0K] validation
│ │ │ │ │ ├── [6.5K] RuleViolation.java
│ │ │ │ │ └── [3.5K] RuleViolationsManager.java
│ │ │ │ └── [4.0K] web
│ │ │ │ ├── [1.7K] FlowModification.java
│ │ │ │ └── [4.0K] revision
│ │ │ │ ├── [ 908] DeleteRevisionTask.java
│ │ │ │ ├── [1.1K] ExpiredRevisionClaimException.java
│ │ │ │ ├── [1.3K] ReadOnlyRevisionCallback.java
│ │ │ │ ├── [ 972] RevisionClaim.java
│ │ │ │ ├── [5.4K] RevisionManager.java
│ │ │ │ ├── [2.1K] RevisionSnapshot.java
│ │ │ │ ├── [1.4K] RevisionUpdate.java
│ │ │ │ └── [1.1K] UpdateRevisionTask.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ ├── [4.0K] controller
│ │ │ │ ├── [ 28K] TestAbstractComponentNode.java
│ │ │ │ ├── [8.2K] TestControllerServiceApiMatcher.java
│ │ │ │ └── [2.1K] TestStandardFunnel.java
│ │ │ ├── [4.0K] registry
│ │ │ │ └── [4.0K] flow
│ │ │ │ └── [7.7K] FlowSnapshotContainerTest.java
│ │ │ └── [4.0K] util
│ │ │ └── [1.4K] CharacterFilterUtilsTest.java
│ │ ├── [4.0K] nifi-framework-external-resource-utils
│ │ │ ├── [2.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] flow
│ │ │ │ └── [4.0K] resource
│ │ │ │ ├── [4.2K] CollisionAwareResourceProviderWorker.java
│ │ │ │ ├── [3.4K] CompositeExternalResourceProviderService.java
│ │ │ │ ├── [5.9K] ConflictResolvingExternalResourceProviderWorker.java
│ │ │ │ ├── [1.3K] DoNotReplaceResolutionStrategy.java
│ │ │ │ ├── [1.1K] ExternalResourceProviderException.java
│ │ │ │ ├── [4.8K] ExternalResourceProviderServiceBuilder.java
│ │ │ │ ├── [1.8K] ExternalResourceProviderService.java
│ │ │ │ ├── [1.5K] ExternalResourceProviderWorker.java
│ │ │ │ ├── [2.7K] PropertyBasedExternalResourceProviderInitializationContext.java
│ │ │ │ └── [1.5K] ReplaceWithNewerResolutionStrategy.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] flow
│ │ │ │ └── [4.0K] resource
│ │ │ │ ├── [ 17K] CollisionAwareResourceProviderWorkerTest.java
│ │ │ │ ├── [2.8K] CompositeExternalResourceProviderServiceTest.java
│ │ │ │ ├── [2.1K] DoNotReplaceResolutionStrategyTest.java
│ │ │ │ └── [4.1K] ReplaceWithNewerResolutionStrategyTest.java
│ │ │ └── [4.0K] resources
│ │ │ └── [ 0] resource.json
│ │ ├── [4.0K] nifi-framework-leader-election-shared
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] controller
│ │ │ └── [4.0K] leader
│ │ │ └── [4.0K] election
│ │ │ ├── [1.4K] LeaderElectionRole.java
│ │ │ └── [5.7K] TrackedLeaderElectionManager.java
│ │ ├── [4.0K] nifi-framework-nar-loading-utils
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] nar
│ │ │ │ ├── [1.3K] ExtensionUiLoader.java
│ │ │ │ ├── [3.6K] NarAutoLoader.java
│ │ │ │ ├── [6.5K] NarAutoLoaderTask.java
│ │ │ │ ├── [1.8K] NarLoaderHolder.java
│ │ │ │ ├── [2.0K] NarLoader.java
│ │ │ │ └── [8.7K] StandardNarLoader.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] nar
│ │ │ │ ├── [4.8K] AbstractTestNarLoader.java
│ │ │ │ ├── [6.2K] TestLoadNativeLibFromNar.java
│ │ │ │ ├── [6.7K] TestLoadNativeLibViaSystemProperty.java
│ │ │ │ └── [5.9K] TestNarLoader.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] conf
│ │ │ │ ├── [4.5K] nifi.nar_with_native_lib.properties
│ │ │ │ ├── [4.5K] nifi.nar_without_native_lib.properties
│ │ │ │ └── [4.5K] nifi.properties
│ │ │ ├── [4.0K] extensions
│ │ │ │ ├── [7.1K] nifi-example-processors-nar-1.0.nar
│ │ │ │ ├── [4.2K] nifi-example-service-api-nar-1.0.nar
│ │ │ │ └── [6.3K] nifi-example-service-nar-1.1.nar
│ │ │ ├── [4.0K] lib
│ │ │ │ ├── [ 577] nifi-framework-nar.nar
│ │ │ │ ├── [ 576] nifi-jetty-nar.nar
│ │ │ │ └── [292K] nifiserver-test-nar.nar
│ │ │ ├── [4.0K] nars_with_native_lib
│ │ │ │ ├── [7.1K] nifi-nar_with_native_lib-1-1.0.nar
│ │ │ │ └── [7.1K] nifi-nar_with_native_lib-2-1.0.nar
│ │ │ ├── [4.0K] nars_without_native_lib
│ │ │ │ └── [6.2K] nifi-nar_without_native_lib-1-1.0.nar
│ │ │ ├── [4.0K] native
│ │ │ │ ├── [8.4K] libtestjni.dylib
│ │ │ │ ├── [ 652] org_apache_nifi_nar_sharedlib_TestJNI.cpp
│ │ │ │ ├── [ 548] org_apache_nifi_nar_sharedlib_TestJNI.h
│ │ │ │ ├── [1012] org_apache_nifi_nar_sharedlib_TestJNI.o
│ │ │ │ └── [ 968] TestJNI.java
│ │ │ ├── [ 38K] nifi-example-nars-source.zip
│ │ │ └── [ 477] README
│ │ ├── [4.0K] nifi-framework-nar-utils
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [3.0K] FlowRegistryClientInitializer.java
│ │ │ │ ├── [4.0K] init
│ │ │ │ │ ├── [2.8K] ConfigurableComponentInitializerFactory.java
│ │ │ │ │ ├── [1.7K] ConfigurableComponentInitializer.java
│ │ │ │ │ ├── [2.9K] ControllerServiceInitializer.java
│ │ │ │ │ ├── [2.8K] FlowAnalysisRuleInitializer.java
│ │ │ │ │ ├── [2.8K] ParameterProviderInitializer.java
│ │ │ │ │ ├── [2.7K] ProcessorInitializer.java
│ │ │ │ │ ├── [5.6K] ReflectionUtils.java
│ │ │ │ │ └── [2.8K] ReportingTaskInitializer.java
│ │ │ │ ├── [4.0K] mock
│ │ │ │ │ ├── [3.1K] MockComponentLogger.java
│ │ │ │ │ ├── [1.8K] MockConfigurationContext.java
│ │ │ │ │ ├── [2.1K] MockControllerServiceInitializationContext.java
│ │ │ │ │ ├── [2.0K] MockControllerServiceLookup.java
│ │ │ │ │ ├── [1.7K] MockFlowAnalysisRuleInitializationContext.java
│ │ │ │ │ ├── [1.4K] MockFlowRegistryClientInitializationContext.java
│ │ │ │ │ ├── [1.2K] MockNodeTypeProvider.java
│ │ │ │ │ ├── [1.9K] MockParameterProviderInitializationContext.java
│ │ │ │ │ ├── [3.3K] MockProcessContext.java
│ │ │ │ │ ├── [2.0K] MockProcessorInitializationContext.java
│ │ │ │ │ └── [2.4K] MockReportingInitializationContext.java
│ │ │ │ └── [4.0K] nar
│ │ │ │ ├── [6.0K] ExtensionDefinition.java
│ │ │ │ ├── [3.9K] ExtensionDiscoveringManager.java
│ │ │ │ ├── [2.2K] ExtensionManagerHolder.java
│ │ │ │ ├── [8.1K] ExtensionManager.java
│ │ │ │ ├── [6.5K] InstanceClassLoader.java
│ │ │ │ ├── [4.6K] NarCloseable.java
│ │ │ │ ├── [ 14K] NarThreadContextClassLoader.java
│ │ │ │ ├── [1.8K] SharedInstanceClassLoader.java
│ │ │ │ └── [ 50K] StandardExtensionDiscoveringManager.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] nar
│ │ │ │ ├── [4.4K] NarThreadContextClassLoaderTest.java
│ │ │ │ ├── [8.4K] NarUnpackerTest.java
│ │ │ │ └── [2.2K] TestInstanceClassLoader.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 934] org.apache.nifi.processor.Processor
│ │ │ ├── [4.0K] NarUnpacker
│ │ │ │ ├── [4.0K] conf
│ │ │ │ │ └── [4.5K] nifi.properties
│ │ │ │ ├── [4.0K] lib
│ │ │ │ │ ├── [1.7K] dummy-one.nar
│ │ │ │ │ ├── [ 406] nifi-framework-nar.nar
│ │ │ │ │ └── [ 473] nifi-jetty-nar.nar
│ │ │ │ └── [4.0K] lib2
│ │ │ │ └── [1.7K] dummy-two.nar
│ │ │ └── [7.6K] nifi.properties
│ │ ├── [4.0K] nifi-framework-status-history-shared
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] controller
│ │ │ └── [4.0K] status
│ │ │ └── [4.0K] history
│ │ │ ├── [3.3K] AbstractMetricDescriptor.java
│ │ │ ├── [5.3K] ComponentDetails.java
│ │ │ ├── [3.8K] ConnectionStatusDescriptor.java
│ │ │ ├── [2.4K] CounterMetricDescriptor.java
│ │ │ ├── [ 911] IndexableMetric.java
│ │ │ ├── [7.5K] NodeStatusDescriptor.java
│ │ │ ├── [4.5K] ProcessGroupStatusDescriptor.java
│ │ │ ├── [ 16K] ProcessorStatusDescriptor.java
│ │ │ ├── [5.2K] RemoteProcessGroupStatusDescriptor.java
│ │ │ ├── [2.0K] StandardGarbageCollectionHistory.java
│ │ │ ├── [1.8K] StandardGarbageCollectionStatus.java
│ │ │ ├── [2.4K] StandardMetricDescriptor.java
│ │ │ ├── [1.7K] StandardStatusHistory.java
│ │ │ └── [4.5K] StandardStatusSnapshot.java
│ │ ├── [4.0K] nifi-framework-zookeeper-leader-election
│ │ │ ├── [3.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] framework
│ │ │ │ └── [4.0K] cluster
│ │ │ │ └── [4.0K] leader
│ │ │ │ └── [4.0K] zookeeper
│ │ │ │ ├── [3.2K] CuratorACLProviderFactory.java
│ │ │ │ └── [ 26K] CuratorLeaderElectionManager.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 861] org.apache.nifi.controller.leader.election.LeaderElectionManager
│ │ ├── [4.0K] nifi-headless-server
│ │ │ ├── [3.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] headless
│ │ │ ├── [1.9K] HeadlessAuditService.java
│ │ │ └── [ 13K] HeadlessNiFiServer.java
│ │ ├── [4.0K] nifi-mock-authorizer
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] authorization
│ │ │ └── [6.7K] MockPolicyBasedAuthorizer.java
│ │ ├── [4.0K] nifi-nar-utils
│ │ │ ├── [4.4K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] nar
│ │ │ │ │ │ ├── [7.1K] AbstractNativeLibHandlingClassLoader.java
│ │ │ │ │ │ ├── [2.5K] FileDigestUtils.java
│ │ │ │ │ │ ├── [3.4K] LoadNativeLibAspect.java
│ │ │ │ │ │ ├── [3.6K] NarBundleUtil.java
│ │ │ │ │ │ ├── [8.7K] NarClassLoader.java
│ │ │ │ │ │ ├── [1.3K] NarClassLoadersHolder.java
│ │ │ │ │ │ ├── [ 30K] NarClassLoaders.java
│ │ │ │ │ │ ├── [1.5K] NarLoadResult.java
│ │ │ │ │ │ ├── [ 32K] NarUnpacker.java
│ │ │ │ │ │ ├── [1.5K] NarUnpackMode.java
│ │ │ │ │ │ ├── [1.2K] OSUtil.java
│ │ │ │ │ │ ├── [2.3K] PythonBundle.java
│ │ │ │ │ │ └── [2.7K] SystemBundle.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ └── [8.4K] FileUtils.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [ 959] aop.xml
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] nar
│ │ │ │ ├── [ 15K] AbstractNativeLibHandlingClassLoaderTest.java
│ │ │ │ ├── [4.1K] LoadNativeLibAspectTest.java
│ │ │ │ └── [4.9K] NarBundleUtilTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] nars
│ │ │ │ ├── [4.0K] nar-without-dependency
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [ 296] MANIFEST.MF
│ │ │ │ ├── [4.0K] nar-without-versioning
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [ 193] MANIFEST.MF
│ │ │ │ └── [4.0K] nar-with-versioning
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [ 416] MANIFEST.MF
│ │ │ └── [7.6K] nifi.properties
│ │ ├── [4.0K] nifi-properties-loader
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] properties
│ │ │ │ └── [9.5K] NiFiPropertiesLoader.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] properties
│ │ │ │ └── [4.2K] NiFiPropertiesLoaderTest.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] properties
│ │ │ └── [4.0K] conf
│ │ │ ├── [ 924] duplicates.nifi.properties
│ │ │ ├── [ 781] empty.nifi.properties
│ │ │ └── [1.0K] flow.nifi.properties
│ │ ├── [4.0K] nifi-repository-models
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] controller
│ │ │ │ └── [4.0K] repository
│ │ │ │ ├── [4.0K] claim
│ │ │ │ │ ├── [3.1K] StandardContentClaim.java
│ │ │ │ │ ├── [4.2K] StandardResourceClaim.java
│ │ │ │ │ └── [8.5K] StandardResourceClaimManager.java
│ │ │ │ ├── [ 12K] StandardFlowFileRecord.java
│ │ │ │ └── [9.5K] StandardRepositoryRecord.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] controller
│ │ │ └── [4.0K] repository
│ │ │ ├── [4.0K] claim
│ │ │ │ └── [2.4K] TestStandardResourceClaimManager.java
│ │ │ └── [2.5K] TestStandardRepositoryRecord.java
│ │ ├── [4.0K] nifi-resources
│ │ │ ├── [ 11K] LICENSE
│ │ │ ├── [ 168] NOTICE
│ │ │ ├── [ 20K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] assembly
│ │ │ │ └── [1.9K] dependencies.xml
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] bin
│ │ │ │ ├── [2.7K] nifi.cmd
│ │ │ │ ├── [1.2K] nifi-env.cmd
│ │ │ │ ├── [2.2K] nifi-env.sh
│ │ │ │ └── [ 12K] nifi.sh
│ │ │ └── [4.0K] conf
│ │ │ ├── [ 22K] authorizers.xml
│ │ │ ├── [3.1K] bootstrap.conf
│ │ │ ├── [ 16K] logback.xml
│ │ │ ├── [6.9K] login-identity-providers.xml
│ │ │ ├── [ 22K] nifi.properties
│ │ │ ├── [9.8K] state-management.xml
│ │ │ └── [2.5K] zookeeper.properties
│ │ ├── [4.0K] nifi-runtime
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [1.7K] NiFi.java
│ │ │ │ └── [4.0K] runtime
│ │ │ │ ├── [7.4K] Application.java
│ │ │ │ ├── [4.0K] command
│ │ │ │ │ ├── [6.0K] DiagnosticsCommand.java
│ │ │ │ │ └── [2.4K] ShutdownCommand.java
│ │ │ │ ├── [4.7K] HealthClusterHttpHandler.java
│ │ │ │ ├── [3.3K] HealthDiagnosticsHttpHandler.java
│ │ │ │ ├── [2.3K] HealthHttpHandler.java
│ │ │ │ ├── [3.8K] HealthStatusHistoryHttpHandler.java
│ │ │ │ ├── [1.1K] ManagementServer.java
│ │ │ │ ├── [2.4K] ManagementServerProvider.java
│ │ │ │ ├── [2.9K] PropertiesProvider.java
│ │ │ │ ├── [3.5K] StandardManagementServer.java
│ │ │ │ ├── [1.3K] StandardUncaughtExceptionHandler.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [1.7K] HttpExchangeUtils.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] runtime
│ │ │ ├── [4.0K] command
│ │ │ │ ├── [3.5K] DiagnosticsCommandTest.java
│ │ │ │ └── [2.3K] ShutdownCommandTest.java
│ │ │ ├── [2.1K] ManagementServerProviderTest.java
│ │ │ └── [6.8K] StandardManagementServerTest.java
│ │ ├── [4.0K] nifi-site-to-site
│ │ │ ├── [3.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] remote
│ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ └── [1.3K] UnsupportedCodecException.java
│ │ │ │ │ ├── [ 11K] HttpRemoteSiteListener.java
│ │ │ │ │ ├── [1.1K] PeerDescriptionModifiable.java
│ │ │ │ │ ├── [9.5K] PeerDescriptionModifier.java
│ │ │ │ │ ├── [4.0K] protocol
│ │ │ │ │ │ ├── [ 27K] AbstractFlowFileServerProtocol.java
│ │ │ │ │ │ ├── [2.2K] FlowFileTransaction.java
│ │ │ │ │ │ ├── [3.0K] HandshakeProperties.java
│ │ │ │ │ │ ├── [4.0K] http
│ │ │ │ │ │ │ ├── [1.2K] HttpFlowFileServerProtocol.java
│ │ │ │ │ │ │ └── [ 11K] StandardHttpFlowFileServerProtocol.java
│ │ │ │ │ │ └── [4.0K] socket
│ │ │ │ │ │ └── [9.6K] SocketFlowFileServerProtocol.java
│ │ │ │ │ ├── [7.1K] RemoteResourceFactory.java
│ │ │ │ │ ├── [ 10K] RemoteResourceManager.java
│ │ │ │ │ ├── [1.0K] RemoteSiteListener.java
│ │ │ │ │ ├── [ 21K] SocketRemoteSiteListener.java
│ │ │ │ │ ├── [ 25K] StandardPublicPort.java
│ │ │ │ │ └── [ 25K] StandardRemoteGroupPort.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 831] org.apache.nifi.remote.codec.FlowFileCodec
│ │ │ │ ├── [ 840] org.apache.nifi.remote.protocol.ClientProtocol
│ │ │ │ └── [ 849] org.apache.nifi.remote.protocol.ServerProtocol
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] remote
│ │ │ │ ├── [4.0K] protocol
│ │ │ │ │ ├── [4.0K] http
│ │ │ │ │ │ └── [ 29K] TestHttpFlowFileServerProtocol.java
│ │ │ │ │ └── [4.0K] socket
│ │ │ │ │ └── [8.2K] TestSocketFlowFileServerProtocol.java
│ │ │ │ ├── [4.5K] TestHttpRemoteSiteListener.java
│ │ │ │ ├── [ 16K] TestPeerDescriptionModifier.java
│ │ │ │ ├── [3.6K] TestSocketRemoteSiteListener.java
│ │ │ │ ├── [6.3K] TestStandardPublicPort.java
│ │ │ │ └── [ 21K] TestStandardRemoteGroupPort.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.1K] nifi.properties
│ │ ├── [4.0K] nifi-standard-prioritizers
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] prioritizer
│ │ │ │ │ ├── [1.4K] FirstInFirstOutPrioritizer.java
│ │ │ │ │ ├── [1.4K] NewestFlowFileFirstPrioritizer.java
│ │ │ │ │ ├── [1.4K] OldestFlowFileFirstPrioritizer.java
│ │ │ │ │ └── [2.9K] PriorityAttributePrioritizer.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [1010] org.apache.nifi.flowfile.FlowFilePrioritizer
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] prioritizer
│ │ │ ├── [2.2K] FirstInFirstOutPrioritizerTest.java
│ │ │ ├── [2.1K] NewestFirstPrioritizerTest.java
│ │ │ ├── [2.1K] OldestFirstPrioritizerTest.java
│ │ │ └── [3.9K] PriorityAttributePrioritizerTest.java
│ │ ├── [4.0K] nifi-user-actions
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] action
│ │ │ ├── [4.0K] component
│ │ │ │ └── [4.0K] details
│ │ │ │ ├── [1.1K] FlowChangeExtensionDetails.java
│ │ │ │ └── [1.1K] FlowChangeRemoteProcessGroupDetails.java
│ │ │ ├── [4.0K] details
│ │ │ │ ├── [1.5K] FlowChangeConfigureDetails.java
│ │ │ │ ├── [2.5K] FlowChangeConnectDetails.java
│ │ │ │ ├── [1.7K] FlowChangeMoveDetails.java
│ │ │ │ └── [1.3K] FlowChangePurgeDetails.java
│ │ │ ├── [3.3K] FlowChangeAction.java
│ │ │ └── [1.5K] StandardRequestDetails.java
│ │ ├── [4.0K] nifi-web
│ │ │ ├── [4.0K] nifi-jetty
│ │ │ │ ├── [5.1K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ └── [4.0K] server
│ │ │ │ │ │ ├── [4.0K] connector
│ │ │ │ │ │ │ ├── [7.2K] FrameworkServerConnectorFactory.java
│ │ │ │ │ │ │ └── [3.5K] HostPortValidatorCustomizer.java
│ │ │ │ │ │ ├── [4.0K] filter
│ │ │ │ │ │ │ ├── [2.3K] DataTransferExcludedDoSFilter.java
│ │ │ │ │ │ │ ├── [ 941] FilterParameter.java
│ │ │ │ │ │ │ ├── [2.8K] LogoutCompleteRedirectFilter.java
│ │ │ │ │ │ │ ├── [1.3K] RequestFilterProvider.java
│ │ │ │ │ │ │ ├── [2.6K] RestApiRequestFilterProvider.java
│ │ │ │ │ │ │ └── [4.9K] StandardRequestFilterProvider.java
│ │ │ │ │ │ ├── [4.0K] handler
│ │ │ │ │ │ │ ├── [4.2K] ContextPathRedirectPatternRule.java
│ │ │ │ │ │ │ └── [2.9K] HeaderWriterHandler.java
│ │ │ │ │ │ ├── [ 56K] JettyServer.java
│ │ │ │ │ │ ├── [4.0K] log
│ │ │ │ │ │ │ ├── [3.4K] RequestAuthenticationFilter.java
│ │ │ │ │ │ │ ├── [1.1K] RequestLogProvider.java
│ │ │ │ │ │ │ ├── [1.8K] StandardRequestLogProvider.java
│ │ │ │ │ │ │ └── [1.3K] UserPrincipal.java
│ │ │ │ │ │ ├── [1.2K] ServerProvider.java
│ │ │ │ │ │ └── [6.8K] StandardServerProvider.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 819] org.apache.nifi.NiFiServer
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] web
│ │ │ │ └── [4.0K] server
│ │ │ │ ├── [4.0K] connector
│ │ │ │ │ └── [ 11K] FrameworkServerConnectorFactoryTest.java
│ │ │ │ ├── [4.0K] filter
│ │ │ │ │ ├── [2.8K] DataTransferExcludedDoSFilterTest.java
│ │ │ │ │ ├── [3.7K] LogoutCompleteRedirectFilterTest.java
│ │ │ │ │ ├── [2.8K] RestApiRequestFilterProviderTest.java
│ │ │ │ │ └── [4.1K] StandardRequestFilterProviderTest.java
│ │ │ │ ├── [4.0K] handler
│ │ │ │ │ └── [4.3K] ContextPathRedirectPatternRuleTest.java
│ │ │ │ ├── [4.0K] log
│ │ │ │ │ ├── [3.4K] RequestAuthenticationFilterTest.java
│ │ │ │ │ └── [1.5K] StandardRequestLogProviderTest.java
│ │ │ │ └── [ 14K] StandardServerProviderTest.java
│ │ │ ├── [4.0K] nifi-ui
│ │ │ │ ├── [3.3K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ └── [ 484] NOTICE
│ │ │ ├── [4.0K] nifi-ui-extension
│ │ │ │ ├── [1.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] ui
│ │ │ │ └── [4.0K] extension
│ │ │ │ ├── [4.0K] contentviewer
│ │ │ │ │ ├── [2.2K] ContentViewer.java
│ │ │ │ │ └── [1.5K] SupportedMimeTypes.java
│ │ │ │ ├── [1.5K] UiExtension.java
│ │ │ │ └── [4.3K] UiExtensionMapping.java
│ │ │ ├── [4.0K] nifi-web-api
│ │ │ │ ├── [ 26K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ ├── [4.0K] audit
│ │ │ │ │ │ │ ├── [ 10K] AccessPolicyAuditor.java
│ │ │ │ │ │ │ ├── [ 10K] ComponentStateAuditor.java
│ │ │ │ │ │ │ ├── [3.5K] ControllerAuditor.java
│ │ │ │ │ │ │ ├── [ 21K] ControllerServiceAuditor.java
│ │ │ │ │ │ │ ├── [ 17K] FlowAnalysisRuleAuditor.java
│ │ │ │ │ │ │ ├── [4.3K] FunnelAuditor.java
│ │ │ │ │ │ │ ├── [6.7K] LabelAuditor.java
│ │ │ │ │ │ │ ├── [7.2K] NiFiAuditor.java
│ │ │ │ │ │ │ ├── [ 12K] ParameterContextAuditor.java
│ │ │ │ │ │ │ ├── [ 14K] ParameterProviderAuditor.java
│ │ │ │ │ │ │ ├── [ 11K] PortAuditor.java
│ │ │ │ │ │ │ ├── [ 19K] ProcessGroupAuditor.java
│ │ │ │ │ │ │ ├── [ 24K] ProcessorAuditor.java
│ │ │ │ │ │ │ ├── [ 18K] RelationshipAuditor.java
│ │ │ │ │ │ │ ├── [ 25K] RemoteProcessGroupAuditor.java
│ │ │ │ │ │ │ ├── [ 16K] ReportingTaskAuditor.java
│ │ │ │ │ │ │ ├── [ 21K] SnippetAuditor.java
│ │ │ │ │ │ │ ├── [8.5K] UserAuditor.java
│ │ │ │ │ │ │ └── [9.5K] UserGroupAuditor.java
│ │ │ │ │ │ ├── [4.0K] authorization
│ │ │ │ │ │ │ ├── [1.0K] AuthorizableHolder.java
│ │ │ │ │ │ │ ├── [8.8K] AuthorizableLookup.java
│ │ │ │ │ │ │ ├── [ 926] AuthorizeAccess.java
│ │ │ │ │ │ │ ├── [ 10K] AuthorizeControllerServiceReference.java
│ │ │ │ │ │ │ ├── [3.7K] AuthorizeParameterProviders.java
│ │ │ │ │ │ │ ├── [9.9K] AuthorizeParameterReference.java
│ │ │ │ │ │ │ ├── [2.8K] ComponentAuthorizable.java
│ │ │ │ │ │ │ ├── [1.8K] ConnectionAuthorizable.java
│ │ │ │ │ │ │ ├── [4.1K] ProcessGroupAuthorizable.java
│ │ │ │ │ │ │ ├── [1.2K] PublicPortAuthorizable.java
│ │ │ │ │ │ │ ├── [2.5K] SnippetAuthorizable.java
│ │ │ │ │ │ │ └── [ 56K] StandardAuthorizableLookup.java
│ │ │ │ │ │ ├── [4.0K] prometheusutil
│ │ │ │ │ │ │ ├── [2.2K] AbstractMetricsRegistry.java
│ │ │ │ │ │ │ ├── [1.3K] BulletinMetricsRegistry.java
│ │ │ │ │ │ │ ├── [2.2K] ClusterMetricsRegistry.java
│ │ │ │ │ │ │ ├── [3.0K] ConnectionAnalyticsMetricsRegistry.java
│ │ │ │ │ │ │ ├── [3.2K] JvmMetricsRegistry.java
│ │ │ │ │ │ │ ├── [ 18K] NiFiMetricsRegistry.java
│ │ │ │ │ │ │ └── [ 42K] PrometheusMetricsUtil.java
│ │ │ │ │ │ ├── [4.0K] registry
│ │ │ │ │ │ │ └── [4.0K] flow
│ │ │ │ │ │ │ └── [4.7K] FlowRegistryUtils.java
│ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ ├── [4.0K] api
│ │ │ │ │ │ │ ├── [2.6K] AbstractParameterResource.java
│ │ │ │ │ │ │ ├── [ 23K] AccessPolicyResource.java
│ │ │ │ │ │ │ ├── [ 14K] AccessResource.java
│ │ │ │ │ │ │ ├── [ 61K] ApplicationResource.java
│ │ │ │ │ │ │ ├── [4.7K] AuthenticationResource.java
│ │ │ │ │ │ │ ├── [4.0K] concurrent
│ │ │ │ │ │ │ │ ├── [3.0K] AsynchronousWebRequest.java
│ │ │ │ │ │ │ │ ├── [7.0K] AsyncRequestManager.java
│ │ │ │ │ │ │ │ ├── [3.1K] RequestManager.java
│ │ │ │ │ │ │ │ ├── [5.2K] StandardAsynchronousWebRequest.java
│ │ │ │ │ │ │ │ ├── [1.6K] StandardUpdateStep.java
│ │ │ │ │ │ │ │ └── [1.0K] UpdateStep.java
│ │ │ │ │ │ │ ├── [4.0K] config
│ │ │ │ │ │ │ │ ├── [2.8K] AccessDeniedExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.7K] AdministrationExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [2.0K] AuthenticationCredentialsNotFoundExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [2.1K] AuthenticationNotSupportedExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.7K] AuthorizationAccessExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.6K] ClusterExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [2.1K] ConnectingNodeMutableRequestExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.6K] IllegalArgumentExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] IllegalClusterResourceRequestExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] IllegalClusterStateExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] IllegalNodeDeletionExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] IllegalNodeDisconnectionExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] IllegalNodeOffloadExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] IllegalNodeReconnectionExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.6K] IllegalStateExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.6K] InterruptedExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.7K] InvalidAuthenticationExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] InvalidRevisionExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [2.5K] JsonContentConversionExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] JsonMappingExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.7K] JsonParseExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.9K] MutableRequestExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.6K] NiFiCoreExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] NoClusterCoordinatorExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.9K] NoConnectedNodesExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] NodeDisconnectionExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] NodeReconnectionExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.9K] NoResponseFromNodesExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] NotFoundExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] RangeNotSatisfiableExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] ResourceNotFoundExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.6K] ThrowableMapper.java
│ │ │ │ │ │ │ │ ├── [1.8K] UnknownNodeExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.7K] UploadRequestReplicationExceptionMapper.java
│ │ │ │ │ │ │ │ ├── [1.9K] ValidationExceptionMapper.java
│ │ │ │ │ │ │ │ └── [2.2K] WebApplicationExceptionMapper.java
│ │ │ │ │ │ │ ├── [ 18K] ConnectionResource.java
│ │ │ │ │ │ │ ├── [130K] ControllerResource.java
│ │ │ │ │ │ │ ├── [ 59K] ControllerServiceResource.java
│ │ │ │ │ │ │ ├── [ 12K] CountersResource.java
│ │ │ │ │ │ │ ├── [ 41K] DataTransferResource.java
│ │ │ │ │ │ │ ├── [4.0K] dto
│ │ │ │ │ │ │ │ ├── [246K] DtoFactory.java
│ │ │ │ │ │ │ │ └── [ 39K] EntityFactory.java
│ │ │ │ │ │ │ ├── [4.0K] filter
│ │ │ │ │ │ │ │ └── [2.1K] RedirectResourceFilter.java
│ │ │ │ │ │ │ ├── [ 32K] FlowFileQueueResource.java
│ │ │ │ │ │ │ ├── [184K] FlowResource.java
│ │ │ │ │ │ │ ├── [ 46K] FlowUpdateResource.java
│ │ │ │ │ │ │ ├── [ 13K] FunnelResource.java
│ │ │ │ │ │ │ ├── [ 18K] InputPortResource.java
│ │ │ │ │ │ │ ├── [ 13K] LabelResource.java
│ │ │ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ │ │ ├── [2.1K] AbstractPrometheusMetricsWriter.java
│ │ │ │ │ │ │ │ ├── [4.7K] FilteringMetricFamilySamplesEnumeration.java
│ │ │ │ │ │ │ │ ├── [4.0K] jmx
│ │ │ │ │ │ │ │ │ ├── [3.7K] JmxMetricsCollector.java
│ │ │ │ │ │ │ │ │ ├── [3.5K] JmxMetricsFilter.java
│ │ │ │ │ │ │ │ │ ├── [2.8K] JmxMetricsResultConverter.java
│ │ │ │ │ │ │ │ │ ├── [1.2K] JmxMetricsService.java
│ │ │ │ │ │ │ │ │ └── [1.8K] StandardJmxMetricsService.java
│ │ │ │ │ │ │ │ ├── [3.0K] JsonFormatPrometheusMetricsWriter.java
│ │ │ │ │ │ │ │ ├── [1.4K] PrometheusMetricsWriter.java
│ │ │ │ │ │ │ │ └── [2.0K] TextFormatPrometheusMetricsWriter.java
│ │ │ │ │ │ │ ├── [ 18K] OutputPortResource.java
│ │ │ │ │ │ │ ├── [ 85K] ParameterContextResource.java
│ │ │ │ │ │ │ ├── [ 96K] ParameterProviderResource.java
│ │ │ │ │ │ │ ├── [188K] ProcessGroupResource.java
│ │ │ │ │ │ │ ├── [ 56K] ProcessorResource.java
│ │ │ │ │ │ │ ├── [ 25K] ProvenanceEventResource.java
│ │ │ │ │ │ │ ├── [ 27K] ProvenanceResource.java
│ │ │ │ │ │ │ ├── [ 49K] RemoteProcessGroupResource.java
│ │ │ │ │ │ │ ├── [ 46K] ReportingTaskResource.java
│ │ │ │ │ │ │ ├── [4.0K] request
│ │ │ │ │ │ │ │ ├── [1.7K] BulletinBoardPatternParameter.java
│ │ │ │ │ │ │ │ ├── [1.4K] ClientIdParameter.java
│ │ │ │ │ │ │ │ ├── [1.6K] ConnectableTypeParameter.java
│ │ │ │ │ │ │ │ ├── [2.1K] DateTimeParameter.java
│ │ │ │ │ │ │ │ ├── [1.4K] DoubleParameter.java
│ │ │ │ │ │ │ │ ├── [1.1K] FlowMetricsProducer.java
│ │ │ │ │ │ │ │ ├── [2.0K] FlowMetricsRegistry.java
│ │ │ │ │ │ │ │ ├── [1.4K] IntegerParameter.java
│ │ │ │ │ │ │ │ └── [1.4K] LongParameter.java
│ │ │ │ │ │ │ ├── [3.9K] ResourceResource.java
│ │ │ │ │ │ │ ├── [ 15K] SiteToSiteResource.java
│ │ │ │ │ │ │ ├── [ 19K] SnippetResource.java
│ │ │ │ │ │ │ ├── [4.0K] streaming
│ │ │ │ │ │ │ │ ├── [1.1K] ByteRangeFormatException.java
│ │ │ │ │ │ │ │ ├── [2.0K] ByteRange.java
│ │ │ │ │ │ │ │ ├── [1.2K] ByteRangeParser.java
│ │ │ │ │ │ │ │ ├── [3.8K] ByteRangeStreamingOutput.java
│ │ │ │ │ │ │ │ ├── [1.7K] InputStreamingOutput.java
│ │ │ │ │ │ │ │ ├── [1.2K] RangeNotSatisfiableException.java
│ │ │ │ │ │ │ │ ├── [3.3K] StandardByteRangeParser.java
│ │ │ │ │ │ │ │ └── [4.6K] StreamingOutputResponseBuilder.java
│ │ │ │ │ │ │ ├── [8.9K] SystemDiagnosticsResource.java
│ │ │ │ │ │ │ ├── [ 41K] TenantsResource.java
│ │ │ │ │ │ │ └── [ 79K] VersionsResource.java
│ │ │ │ │ │ ├── [1.2K] ClusterRequestException.java
│ │ │ │ │ │ ├── [4.0K] configuration
│ │ │ │ │ │ │ ├── [1.4K] AuthenticationConfiguration.java
│ │ │ │ │ │ │ ├── [ 11K] WebApplicationConfiguration.java
│ │ │ │ │ │ │ ├── [1.5K] WebRevisionConfiguration.java
│ │ │ │ │ │ │ └── [7.5K] WebSearchConfiguration.java
│ │ │ │ │ │ ├── [4.0K] contextlistener
│ │ │ │ │ │ │ └── [5.3K] ApplicationStartupContextListener.java
│ │ │ │ │ │ ├── [4.0K] controller
│ │ │ │ │ │ │ ├── [ 86K] ControllerFacade.java
│ │ │ │ │ │ │ ├── [ 12K] ControllerSearchService.java
│ │ │ │ │ │ │ └── [2.7K] StandardSearchContext.java
│ │ │ │ │ │ ├── [4.0K] dao
│ │ │ │ │ │ │ ├── [3.5K] AccessPolicyDAO.java
│ │ │ │ │ │ │ ├── [3.7K] ComponentStateDAO.java
│ │ │ │ │ │ │ ├── [5.2K] ConnectionDAO.java
│ │ │ │ │ │ │ ├── [5.6K] ControllerServiceDAO.java
│ │ │ │ │ │ │ ├── [4.2K] FlowAnalysisRuleDAO.java
│ │ │ │ │ │ │ ├── [2.5K] FlowRegistryDAO.java
│ │ │ │ │ │ │ ├── [2.1K] FunnelDAO.java
│ │ │ │ │ │ │ ├── [4.0K] impl
│ │ │ │ │ │ │ │ ├── [8.1K] AbstractPortDAO.java
│ │ │ │ │ │ │ │ ├── [3.3K] ComponentDAO.java
│ │ │ │ │ │ │ │ ├── [4.9K] StandardComponentStateDAO.java
│ │ │ │ │ │ │ │ ├── [ 33K] StandardConnectionDAO.java
│ │ │ │ │ │ │ │ ├── [ 23K] StandardControllerServiceDAO.java
│ │ │ │ │ │ │ │ ├── [ 18K] StandardFlowAnalysisRuleDAO.java
│ │ │ │ │ │ │ │ ├── [ 13K] StandardFlowRegistryDAO.java
│ │ │ │ │ │ │ │ ├── [4.2K] StandardFunnelDAO.java
│ │ │ │ │ │ │ │ ├── [5.1K] StandardInputPortDAO.java
│ │ │ │ │ │ │ │ ├── [4.9K] StandardLabelDAO.java
│ │ │ │ │ │ │ │ ├── [5.0K] StandardOutputPortDAO.java
│ │ │ │ │ │ │ │ ├── [ 26K] StandardParameterContextDAO.java
│ │ │ │ │ │ │ │ ├── [ 16K] StandardParameterProviderDAO.java
│ │ │ │ │ │ │ │ ├── [ 20K] StandardPolicyBasedAuthorizerDAO.java
│ │ │ │ │ │ │ │ ├── [ 31K] StandardProcessGroupDAO.java
│ │ │ │ │ │ │ │ ├── [ 29K] StandardProcessorDAO.java
│ │ │ │ │ │ │ │ ├── [ 23K] StandardRemoteProcessGroupDAO.java
│ │ │ │ │ │ │ │ ├── [ 20K] StandardReportingTaskDAO.java
│ │ │ │ │ │ │ │ └── [ 16K] StandardSnippetDAO.java
│ │ │ │ │ │ │ ├── [2.0K] LabelDAO.java
│ │ │ │ │ │ │ ├── [4.0K] ParameterContextDAO.java
│ │ │ │ │ │ │ ├── [5.9K] ParameterProviderDAO.java
│ │ │ │ │ │ │ ├── [2.7K] PortDAO.java
│ │ │ │ │ │ │ ├── [9.0K] ProcessGroupDAO.java
│ │ │ │ │ │ │ ├── [4.6K] ProcessorDAO.java
│ │ │ │ │ │ │ ├── [4.5K] RemoteProcessGroupDAO.java
│ │ │ │ │ │ │ ├── [4.0K] ReportingTaskDAO.java
│ │ │ │ │ │ │ ├── [2.8K] SnippetDAO.java
│ │ │ │ │ │ │ ├── [1.9K] UserDAO.java
│ │ │ │ │ │ │ └── [2.8K] UserGroupDAO.java
│ │ │ │ │ │ ├── [4.0K] filter
│ │ │ │ │ │ │ └── [2.1K] ExceptionFilter.java
│ │ │ │ │ │ ├── [1.3K] IllegalClusterResourceRequestException.java
│ │ │ │ │ │ ├── [1.1K] NiFiCoreException.java
│ │ │ │ │ │ ├── [113K] NiFiServiceFacade.java
│ │ │ │ │ │ ├── [7.8K] NiFiServiceFacadeLock.java
│ │ │ │ │ │ ├── [5.7K] NiFiWebApiConfiguration.java
│ │ │ │ │ │ ├── [7.7K] NiFiWebApiResourceConfig.java
│ │ │ │ │ │ ├── [1.1K] ResumeFlowException.java
│ │ │ │ │ │ ├── [4.0K] search
│ │ │ │ │ │ │ ├── [2.6K] AttributeBasedComponentMatcher.java
│ │ │ │ │ │ │ ├── [4.0K] attributematchers
│ │ │ │ │ │ │ │ ├── [2.1K] AttributeMatcher.java
│ │ │ │ │ │ │ │ ├── [2.4K] BackPressureMatcher.java
│ │ │ │ │ │ │ │ ├── [1.6K] BasicMatcher.java
│ │ │ │ │ │ │ │ ├── [1.4K] BundleMatcher.java
│ │ │ │ │ │ │ │ ├── [1.7K] ConnectionMatcher.java
│ │ │ │ │ │ │ │ ├── [1.3K] ConnectionRelationshipMatcher.java
│ │ │ │ │ │ │ │ ├── [2.0K] ConnectivityMatcher.java
│ │ │ │ │ │ │ │ ├── [2.2K] ControllerServiceNodeMatcher.java
│ │ │ │ │ │ │ │ ├── [1.5K] ExecutionMatcher.java
│ │ │ │ │ │ │ │ ├── [2.0K] ExpirationMatcher.java
│ │ │ │ │ │ │ │ ├── [1.6K] ExtendedMatcher.java
│ │ │ │ │ │ │ │ ├── [1.5K] LabelMatcher.java
│ │ │ │ │ │ │ │ ├── [1.7K] ParameterContextMatcher.java
│ │ │ │ │ │ │ │ ├── [1.8K] ParameterMatcher.java
│ │ │ │ │ │ │ │ ├── [1.7K] ParameterProviderNodeMatcher.java
│ │ │ │ │ │ │ │ ├── [2.6K] PortScheduledStateMatcher.java
│ │ │ │ │ │ │ │ ├── [1.5K] PrioritiesMatcher.java
│ │ │ │ │ │ │ │ ├── [1.9K] ProcessGroupMatcher.java
│ │ │ │ │ │ │ │ ├── [1.5K] ProcessorMetadataMatcher.java
│ │ │ │ │ │ │ │ ├── [3.1K] PropertyMatcher.java
│ │ │ │ │ │ │ │ ├── [1.3K] RelationshipMatcher.java
│ │ │ │ │ │ │ │ ├── [1.9K] RemoteProcessGroupMatcher.java
│ │ │ │ │ │ │ │ ├── [3.0K] ScheduledStateMatcher.java
│ │ │ │ │ │ │ │ ├── [2.2K] SchedulingMatcher.java
│ │ │ │ │ │ │ │ ├── [2.7K] SearchableMatcher.java
│ │ │ │ │ │ │ │ ├── [1.3K] TargetUriMatcher.java
│ │ │ │ │ │ │ │ └── [2.1K] TransmissionStatusMatcher.java
│ │ │ │ │ │ │ ├── [5.0K] ComponentMatcherFactory.java
│ │ │ │ │ │ │ ├── [1.7K] ComponentMatcher.java
│ │ │ │ │ │ │ ├── [4.0K] query
│ │ │ │ │ │ │ │ ├── [2.1K] MapBasedSearchQuery.java
│ │ │ │ │ │ │ │ ├── [2.6K] RegexSearchQueryParser.java
│ │ │ │ │ │ │ │ ├── [2.2K] SearchQuery.java
│ │ │ │ │ │ │ │ └── [1.6K] SearchQueryParser.java
│ │ │ │ │ │ │ └── [4.0K] resultenrichment
│ │ │ │ │ │ │ ├── [3.0K] AbstractComponentSearchResultEnricher.java
│ │ │ │ │ │ │ ├── [1.8K] ComponentSearchResultEnricherFactory.java
│ │ │ │ │ │ │ ├── [1.4K] ComponentSearchResultEnricher.java
│ │ │ │ │ │ │ ├── [1.6K] GeneralComponentSearchResultEnricher.java
│ │ │ │ │ │ │ ├── [1.6K] ParameterSearchResultEnricher.java
│ │ │ │ │ │ │ └── [1.8K] ProcessGroupSearchResultEnricher.java
│ │ │ │ │ │ ├── [ 11K] StandardNiFiContentAccess.java
│ │ │ │ │ │ ├── [400K] StandardNiFiServiceFacade.java
│ │ │ │ │ │ ├── [ 57K] StandardNiFiWebConfigurationContext.java
│ │ │ │ │ │ └── [4.0K] util
│ │ │ │ │ │ ├── [5.0K] AffectedComponentUtils.java
│ │ │ │ │ │ ├── [2.1K] CancellableTimedPause.java
│ │ │ │ │ │ ├── [1.8K] ClientResponseUtils.java
│ │ │ │ │ │ ├── [3.5K] ClosedOpenInterval.java
│ │ │ │ │ │ ├── [ 43K] ClusterReplicationComponentLifecycle.java
│ │ │ │ │ │ ├── [3.7K] ComponentLifecycle.java
│ │ │ │ │ │ ├── [1.2K] IntervalFactory.java
│ │ │ │ │ │ ├── [2.4K] Interval.java
│ │ │ │ │ │ ├── [1.2K] InvalidComponentAction.java
│ │ │ │ │ │ ├── [1.2K] LifecycleManagementException.java
│ │ │ │ │ │ ├── [ 30K] LocalComponentLifecycle.java
│ │ │ │ │ │ ├── [3.9K] PaginationHelper.java
│ │ │ │ │ │ ├── [3.2K] ParameterContextNameCollisionResolver.java
│ │ │ │ │ │ ├── [6.9K] ParameterContextReplacer.java
│ │ │ │ │ │ ├── [ 19K] ParameterUpdateManager.java
│ │ │ │ │ │ ├── [1.2K] Pause.java
│ │ │ │ │ │ ├── [1.5K] PredictionBasedParallelProcessingService.java
│ │ │ │ │ │ ├── [1.7K] ResponseBuilderUtils.java
│ │ │ │ │ │ ├── [ 55K] SnippetUtils.java
│ │ │ │ │ │ └── [5.0K] VirtualThreadParallelProcessingService.java
│ │ │ │ │ ├── [4.0K] resources
│ │ │ │ │ │ ├── [4.0K] images
│ │ │ │ │ │ │ ├── [5.8K] bgNifiLogo.png
│ │ │ │ │ │ │ └── [1.1K] nifi16.ico
│ │ │ │ │ │ ├── [4.0K] openapi
│ │ │ │ │ │ │ └── [1.1K] openapi.yaml
│ │ │ │ │ │ └── [4.0K] templates
│ │ │ │ │ │ └── [2.4K] style.css.mustache
│ │ │ │ │ └── [4.0K] webapp
│ │ │ │ │ └── [4.0K] WEB-INF
│ │ │ │ │ └── [2.8K] web.xml
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] audit
│ │ │ │ │ │ ├── [8.3K] TestLabelAuditor.java
│ │ │ │ │ │ ├── [8.4K] TestProcessGroupAuditor.java
│ │ │ │ │ │ ├── [ 16K] TestProcessorAuditor.java
│ │ │ │ │ │ └── [ 25K] TestRemoteProcessGroupAuditor.java
│ │ │ │ │ ├── [4.0K] authorization
│ │ │ │ │ │ └── [5.9K] StandardAuthorizableLookupTest.java
│ │ │ │ │ └── [4.0K] web
│ │ │ │ │ ├── [4.0K] api
│ │ │ │ │ │ ├── [4.0K] config
│ │ │ │ │ │ │ └── [3.0K] JsonContentConversionExceptionMapperTest.java
│ │ │ │ │ │ ├── [4.0K] dto
│ │ │ │ │ │ │ └── [ 11K] DtoFactoryTest.java
│ │ │ │ │ │ ├── [4.0K] filter
│ │ │ │ │ │ │ └── [4.2K] TestRedirectResourceFilter.java
│ │ │ │ │ │ ├── [4.0K] metrics
│ │ │ │ │ │ │ └── [4.0K] jmx
│ │ │ │ │ │ │ ├── [5.4K] JmxMetricsFilterTest.java
│ │ │ │ │ │ │ └── [8.2K] JmxMetricsResultConverterTest.java
│ │ │ │ │ │ ├── [4.0K] streaming
│ │ │ │ │ │ │ ├── [3.9K] ByteRangeStreamingOutputTest.java
│ │ │ │ │ │ │ ├── [5.0K] StandardByteRangeParserTest.java
│ │ │ │ │ │ │ └── [2.8K] StreamingOutputResponseBuilderTest.java
│ │ │ │ │ │ ├── [9.3K] TestApplicationResource.java
│ │ │ │ │ │ ├── [ 19K] TestDataTransferResource.java
│ │ │ │ │ │ ├── [ 32K] TestFlowResource.java
│ │ │ │ │ │ ├── [4.3K] TestProcessGroupResource.java
│ │ │ │ │ │ ├── [ 11K] TestSiteToSiteResource.java
│ │ │ │ │ │ └── [3.9K] TestVersionsResource.java
│ │ │ │ │ ├── [4.0K] dao
│ │ │ │ │ │ └── [4.0K] impl
│ │ │ │ │ │ ├── [6.8K] TestStandardParameterContextDAO.java
│ │ │ │ │ │ ├── [3.9K] TestStandardProcessGroupDAO.java
│ │ │ │ │ │ └── [5.5K] TestStandardRemoteProcessGroupDAO.java
│ │ │ │ │ ├── [4.0K] search
│ │ │ │ │ │ ├── [5.2K] AttributeBasedComponentMatcherTest.java
│ │ │ │ │ │ ├── [4.0K] attributematchers
│ │ │ │ │ │ │ ├── [2.4K] AbstractAttributeMatcherTest.java
│ │ │ │ │ │ │ ├── [5.5K] AttributeMatcherTest.java
│ │ │ │ │ │ │ ├── [2.9K] BackPressureMatcherTest.java
│ │ │ │ │ │ │ ├── [1.7K] BasicMatcherTest.java
│ │ │ │ │ │ │ ├── [1.9K] BundleMatcherTest.java
│ │ │ │ │ │ │ ├── [1.7K] ConnectionMatcherTest.java
│ │ │ │ │ │ │ ├── [2.5K] ConnectionRelationshipMatcherTest.java
│ │ │ │ │ │ │ ├── [3.2K] ConnectivityMatcherTest.java
│ │ │ │ │ │ │ ├── [3.3K] ControllerServiceNodeMatcherTest.java
│ │ │ │ │ │ │ ├── [2.4K] ExecutionMatcherTest.java
│ │ │ │ │ │ │ ├── [3.2K] ExpirationMatcherTest.java
│ │ │ │ │ │ │ ├── [2.0K] ExtendedMatcherTest.java
│ │ │ │ │ │ │ ├── [1.5K] LabelMatcherTest.java
│ │ │ │ │ │ │ ├── [1.7K] ParameterContextMatcherTest.java
│ │ │ │ │ │ │ ├── [2.6K] ParameterMatcherTest.java
│ │ │ │ │ │ │ ├── [4.0K] PortScheduledStateMatcherTest.java
│ │ │ │ │ │ │ ├── [2.8K] PrioritiesMatcherTest.java
│ │ │ │ │ │ │ ├── [2.0K] ProcessGroupMatcherTest.java
│ │ │ │ │ │ │ ├── [3.3K] ProcessorMetadataMatcherTest.java
│ │ │ │ │ │ │ ├── [3.4K] PropertyMatcherTest.java
│ │ │ │ │ │ │ ├── [2.5K] RelationshipMatcherTest.java
│ │ │ │ │ │ │ ├── [1.9K] RemoteProcessGroupMatcherTest.java
│ │ │ │ │ │ │ ├── [5.7K] ScheduledStateMatcherTest.java
│ │ │ │ │ │ │ ├── [2.9K] SchedulingMatcherTest.java
│ │ │ │ │ │ │ ├── [3.6K] SearchableMatcherTest.java
│ │ │ │ │ │ │ ├── [1.5K] TargetUriMatcherTest.java
│ │ │ │ │ │ │ └── [2.9K] TransmissionStatusMatcherTest.java
│ │ │ │ │ │ ├── [4.0K] query
│ │ │ │ │ │ │ └── [4.5K] RegexSearchQueryParserTest.java
│ │ │ │ │ │ └── [4.0K] resultenrichment
│ │ │ │ │ │ └── [6.8K] ComponentSearchResultEnricherTest.java
│ │ │ │ │ ├── [ 65K] StandardNiFiServiceFacadeTest.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [5.7K] ClosedOpenIntervalTest.java
│ │ │ │ │ ├── [4.1K] PaginationHelperTest.java
│ │ │ │ │ ├── [4.9K] ParameterContextNameCollisionResolverTest.java
│ │ │ │ │ ├── [6.9K] ParameterContextReplacerTest.java
│ │ │ │ │ ├── [2.3K] ResponseBuilderUtilsTest.java
│ │ │ │ │ └── [ 12K] SnippetUtilsTest.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [1.7K] logback-test.xml
│ │ │ │ └── [4.0K] site-to-site
│ │ │ │ └── [9.1K] nifi.properties
│ │ │ ├── [4.0K] nifi-web-optimistic-locking
│ │ │ │ ├── [1.9K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] web
│ │ │ │ ├── [1.3K] ConfigurationRequest.java
│ │ │ │ ├── [1.4K] ConfigurationResult.java
│ │ │ │ ├── [2.8K] ConfigurationSnapshot.java
│ │ │ │ ├── [4.0K] revision
│ │ │ │ │ ├── [1.0K] LockVerificationFailedException.java
│ │ │ │ │ ├── [6.0K] NaiveRevisionManager.java
│ │ │ │ │ ├── [1.4K] RevisionComparator.java
│ │ │ │ │ ├── [1.6K] StandardRevisionClaim.java
│ │ │ │ │ └── [2.2K] StandardRevisionUpdate.java
│ │ │ │ ├── [1.3K] StandardConfigurationResult.java
│ │ │ │ └── [1.1K] UpdateRevision.java
│ │ │ ├── [4.0K] nifi-web-security
│ │ │ │ ├── [ 13K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ └── [4.0K] security
│ │ │ │ │ │ ├── [4.0K] anonymous
│ │ │ │ │ │ │ ├── [1.5K] NiFiAnonymousAuthenticationFilter.java
│ │ │ │ │ │ │ ├── [2.5K] NiFiAnonymousAuthenticationProvider.java
│ │ │ │ │ │ │ └── [2.0K] NiFiAnonymousAuthenticationRequestToken.java
│ │ │ │ │ │ ├── [4.0K] configuration
│ │ │ │ │ │ │ ├── [4.3K] AuthenticationSecurityConfiguration.java
│ │ │ │ │ │ │ ├── [6.3K] ClientRegistrationConfiguration.java
│ │ │ │ │ │ │ ├── [ 10K] JwtAuthenticationSecurityConfiguration.java
│ │ │ │ │ │ │ ├── [8.8K] JwtDecoderConfiguration.java
│ │ │ │ │ │ │ ├── [2.9K] KeyPairGeneratorConfiguration.java
│ │ │ │ │ │ │ ├── [ 18K] OidcSecurityConfiguration.java
│ │ │ │ │ │ │ ├── [ 19K] SamlAuthenticationSecurityConfiguration.java
│ │ │ │ │ │ │ ├── [ 10K] WebSecurityConfiguration.java
│ │ │ │ │ │ │ └── [4.3K] X509AuthenticationSecurityConfiguration.java
│ │ │ │ │ │ ├── [4.0K] cookie
│ │ │ │ │ │ │ ├── [2.3K] ApplicationCookieName.java
│ │ │ │ │ │ │ ├── [2.7K] ApplicationCookieService.java
│ │ │ │ │ │ │ ├── [1.3K] SameSitePolicy.java
│ │ │ │ │ │ │ └── [6.5K] StandardApplicationCookieService.java
│ │ │ │ │ │ ├── [4.0K] csrf
│ │ │ │ │ │ │ ├── [1.9K] CsrfCookieFilter.java
│ │ │ │ │ │ │ ├── [1.6K] CsrfCookieRequestMatcher.java
│ │ │ │ │ │ │ ├── [2.8K] SkipReplicatedCsrfFilter.java
│ │ │ │ │ │ │ ├── [5.5K] StandardCookieCsrfTokenRepository.java
│ │ │ │ │ │ │ └── [2.7K] StandardCsrfTokenRequestAttributeHandler.java
│ │ │ │ │ │ ├── [4.0K] http
│ │ │ │ │ │ │ ├── [1.3K] SecurityCookieName.java
│ │ │ │ │ │ │ └── [1.3K] SecurityHeader.java
│ │ │ │ │ │ ├── [1.3K] InvalidAuthenticationException.java
│ │ │ │ │ │ ├── [4.0K] jwt
│ │ │ │ │ │ │ ├── [4.0K] converter
│ │ │ │ │ │ │ │ ├── [5.7K] StandardIssuerJwtDecoder.java
│ │ │ │ │ │ │ │ └── [3.4K] StandardJwtAuthenticationConverter.java
│ │ │ │ │ │ │ ├── [4.0K] jws
│ │ │ │ │ │ │ │ ├── [1.7K] JwsSignerContainer.java
│ │ │ │ │ │ │ │ ├── [1.3K] JwsSignerProvider.java
│ │ │ │ │ │ │ │ ├── [1.1K] SignerListener.java
│ │ │ │ │ │ │ │ ├── [1.1K] SigningKeyListener.java
│ │ │ │ │ │ │ │ ├── [2.1K] StandardJWSKeySelector.java
│ │ │ │ │ │ │ │ └── [2.6K] StandardJwsSignerProvider.java
│ │ │ │ │ │ │ ├── [4.0K] key
│ │ │ │ │ │ │ │ ├── [4.0K] command
│ │ │ │ │ │ │ │ │ ├── [1.7K] KeyExpirationCommand.java
│ │ │ │ │ │ │ │ │ └── [3.9K] KeyGenerationCommand.java
│ │ │ │ │ │ │ │ ├── [2.7K] Ed25519Signer.java
│ │ │ │ │ │ │ │ ├── [3.1K] Ed25519Verifier.java
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ ├── [7.2K] StandardVerificationKeyService.java
│ │ │ │ │ │ │ │ │ ├── [1.7K] VerificationKey.java
│ │ │ │ │ │ │ │ │ └── [1.7K] VerificationKeyService.java
│ │ │ │ │ │ │ │ ├── [3.0K] StandardJWSVerifierFactory.java
│ │ │ │ │ │ │ │ ├── [3.5K] StandardVerificationKeySelector.java
│ │ │ │ │ │ │ │ ├── [1.2K] VerificationKeyListener.java
│ │ │ │ │ │ │ │ └── [1.3K] VerificationKeySelector.java
│ │ │ │ │ │ │ ├── [4.0K] provider
│ │ │ │ │ │ │ │ ├── [1.3K] BearerTokenProvider.java
│ │ │ │ │ │ │ │ ├── [1.1K] IssuerProvider.java
│ │ │ │ │ │ │ │ ├── [6.0K] StandardBearerTokenProvider.java
│ │ │ │ │ │ │ │ ├── [2.4K] StandardIssuerProvider.java
│ │ │ │ │ │ │ │ └── [1.6K] SupportedClaim.java
│ │ │ │ │ │ │ ├── [4.0K] resolver
│ │ │ │ │ │ │ │ └── [2.5K] StandardBearerTokenResolver.java
│ │ │ │ │ │ │ └── [4.0K] revocation
│ │ │ │ │ │ │ ├── [4.0K] command
│ │ │ │ │ │ │ │ └── [1.7K] RevocationExpirationCommand.java
│ │ │ │ │ │ │ ├── [1.0K] JwtLogoutListener.java
│ │ │ │ │ │ │ ├── [1.5K] JwtRevocationService.java
│ │ │ │ │ │ │ ├── [2.3K] JwtRevocationValidator.java
│ │ │ │ │ │ │ ├── [1.9K] StandardJwtLogoutListener.java
│ │ │ │ │ │ │ └── [4.0K] StandardJwtRevocationService.java
│ │ │ │ │ │ ├── [4.0K] log
│ │ │ │ │ │ │ ├── [1.2K] AuthenticationUserAttribute.java
│ │ │ │ │ │ │ └── [2.7K] AuthenticationUserFilter.java
│ │ │ │ │ │ ├── [4.0K] logout
│ │ │ │ │ │ │ ├── [2.0K] LogoutRequest.java
│ │ │ │ │ │ │ ├── [3.2K] LogoutRequestManager.java
│ │ │ │ │ │ │ └── [2.9K] StandardLogoutFilter.java
│ │ │ │ │ │ ├── [1.2K] LogoutException.java
│ │ │ │ │ │ ├── [8.5K] NiFiAuthenticationFilter.java
│ │ │ │ │ │ ├── [2.1K] NiFiAuthenticationProvider.java
│ │ │ │ │ │ ├── [1.6K] NiFiAuthenticationRequestToken.java
│ │ │ │ │ │ ├── [2.7K] NiFiWebAuthenticationDetails.java
│ │ │ │ │ │ ├── [1.3K] NiFiWebAuthenticationDetailsSource.java
│ │ │ │ │ │ ├── [4.0K] oidc
│ │ │ │ │ │ │ ├── [4.0K] authentication
│ │ │ │ │ │ │ │ ├── [2.4K] AccessTokenDecoderFactory.java
│ │ │ │ │ │ │ │ └── [8.8K] StandardOidcIdTokenDecoderFactory.java
│ │ │ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ │ │ ├── [3.7K] AuthorizedClientExpirationCommand.java
│ │ │ │ │ │ │ │ ├── [4.0K] converter
│ │ │ │ │ │ │ │ │ ├── [1.9K] AuthenticationResultConverter.java
│ │ │ │ │ │ │ │ │ ├── [1.5K] AuthorizedClientConverter.java
│ │ │ │ │ │ │ │ │ ├── [2.2K] AuthorizedClient.java
│ │ │ │ │ │ │ │ │ ├── [1.9K] AuthorizedToken.java
│ │ │ │ │ │ │ │ │ ├── [7.7K] StandardAuthorizedClientConverter.java
│ │ │ │ │ │ │ │ │ └── [2.0K] StandardOAuth2AuthenticationToken.java
│ │ │ │ │ │ │ │ ├── [2.0K] OidcAuthorizedClient.java
│ │ │ │ │ │ │ │ ├── [ 13K] OidcBearerTokenRefreshFilter.java
│ │ │ │ │ │ │ │ ├── [1.2K] OidcRegistrationProperty.java
│ │ │ │ │ │ │ │ ├── [5.7K] StandardAuthorizationRequestRepository.java
│ │ │ │ │ │ │ │ ├── [5.2K] StandardOAuth2AuthorizationRequestResolver.java
│ │ │ │ │ │ │ │ ├── [ 11K] StandardOidcAuthorizedClientRepository.java
│ │ │ │ │ │ │ │ └── [1.2K] TrackedAuthorizedClientRepository.java
│ │ │ │ │ │ │ ├── [4.0K] logout
│ │ │ │ │ │ │ │ ├── [1.5K] OidcLogoutFilter.java
│ │ │ │ │ │ │ │ └── [ 12K] OidcLogoutSuccessHandler.java
│ │ │ │ │ │ │ ├── [1.2K] OidcConfigurationException.java
│ │ │ │ │ │ │ ├── [1.1K] OidcUrlPath.java
│ │ │ │ │ │ │ ├── [4.0K] registration
│ │ │ │ │ │ │ │ ├── [1.2K] ClientRegistrationProvider.java
│ │ │ │ │ │ │ │ ├── [1.3K] DisabledClientRegistrationRepository.java
│ │ │ │ │ │ │ │ └── [7.5K] StandardClientRegistrationProvider.java
│ │ │ │ │ │ │ ├── [4.0K] revocation
│ │ │ │ │ │ │ │ ├── [6.2K] StandardTokenRevocationResponseClient.java
│ │ │ │ │ │ │ │ ├── [1.4K] TokenRevocationRequest.java
│ │ │ │ │ │ │ │ ├── [1.2K] TokenRevocationResponseClient.java
│ │ │ │ │ │ │ │ ├── [1.3K] TokenRevocationResponse.java
│ │ │ │ │ │ │ │ └── [1.2K] TokenTypeHint.java
│ │ │ │ │ │ │ ├── [4.0K] userinfo
│ │ │ │ │ │ │ │ ├── [2.2K] StandardOidcUser.java
│ │ │ │ │ │ │ │ └── [3.7K] StandardOidcUserService.java
│ │ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ │ └── [4.0K] authentication
│ │ │ │ │ │ │ └── [9.2K] OidcAuthenticationSuccessHandler.java
│ │ │ │ │ │ ├── [9.9K] ProxiedEntitiesUtils.java
│ │ │ │ │ │ ├── [4.0K] requests
│ │ │ │ │ │ │ └── [7.9K] ContentLengthFilter.java
│ │ │ │ │ │ ├── [4.0K] saml2
│ │ │ │ │ │ │ ├── [4.0K] registration
│ │ │ │ │ │ │ │ ├── [1.3K] RegistrationBuilderProvider.java
│ │ │ │ │ │ │ │ ├── [1.3K] Saml2RegistrationProperty.java
│ │ │ │ │ │ │ │ ├── [6.0K] StandardRegistrationBuilderProvider.java
│ │ │ │ │ │ │ │ └── [7.3K] StandardRelyingPartyRegistrationRepository.java
│ │ │ │ │ │ │ ├── [1.1K] SamlConfigurationException.java
│ │ │ │ │ │ │ ├── [1.6K] SamlUrlPath.java
│ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ ├── [4.0K] authentication
│ │ │ │ │ │ │ │ │ └── [4.7K] ResponseAuthenticationConverter.java
│ │ │ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ │ │ ├── [5.6K] StandardRelyingPartyRegistrationResolver.java
│ │ │ │ │ │ │ │ └── [5.6K] StandardSaml2AuthenticationRequestRepository.java
│ │ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ │ └── [4.0K] authentication
│ │ │ │ │ │ │ ├── [4.0K] identity
│ │ │ │ │ │ │ │ └── [1.9K] AttributeNameIdentityConverter.java
│ │ │ │ │ │ │ ├── [4.0K] logout
│ │ │ │ │ │ │ │ ├── [1.5K] Saml2LocalLogoutFilter.java
│ │ │ │ │ │ │ │ ├── [3.9K] Saml2LogoutSuccessHandler.java
│ │ │ │ │ │ │ │ ├── [4.5K] Saml2SingleLogoutFilter.java
│ │ │ │ │ │ │ │ ├── [1.6K] Saml2SingleLogoutHandler.java
│ │ │ │ │ │ │ │ └── [5.7K] StandardSaml2LogoutRequestRepository.java
│ │ │ │ │ │ │ └── [6.8K] Saml2AuthenticationSuccessHandler.java
│ │ │ │ │ │ ├── [4.0K] spring
│ │ │ │ │ │ │ ├── [ 15K] LoginIdentityProviderFactoryBean.java
│ │ │ │ │ │ │ ├── [1.7K] StandardLoginIdentityProviderConfigurationContext.java
│ │ │ │ │ │ │ └── [1.6K] StandardLoginIdentityProviderInitializationContext.java
│ │ │ │ │ │ ├── [5.2K] StandardAuthenticationEntryPoint.java
│ │ │ │ │ │ ├── [4.0K] token
│ │ │ │ │ │ │ ├── [2.3K] LoginAuthenticationToken.java
│ │ │ │ │ │ │ ├── [1.5K] LogoutAuthenticationToken.java
│ │ │ │ │ │ │ └── [2.7K] NiFiAuthenticationToken.java
│ │ │ │ │ │ ├── [1.1K] UntrustedProxyException.java
│ │ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ │ └── [1.8K] CacheKey.java
│ │ │ │ │ │ └── [4.0K] x509
│ │ │ │ │ │ ├── [4.0K] ocsp
│ │ │ │ │ │ │ ├── [1.5K] CertificateStatusException.java
│ │ │ │ │ │ │ ├── [ 20K] OcspCertificateValidator.java
│ │ │ │ │ │ │ ├── [2.6K] OcspRequest.java
│ │ │ │ │ │ │ └── [2.2K] OcspStatus.java
│ │ │ │ │ │ ├── [1.3K] SubjectDnX509PrincipalExtractor.java
│ │ │ │ │ │ ├── [3.1K] X509AuthenticationFilter.java
│ │ │ │ │ │ ├── [8.6K] X509AuthenticationProvider.java
│ │ │ │ │ │ ├── [3.1K] X509AuthenticationRequestToken.java
│ │ │ │ │ │ ├── [1.8K] X509CertificateExtractor.java
│ │ │ │ │ │ ├── [2.2K] X509CertificateValidator.java
│ │ │ │ │ │ └── [4.0K] X509IdentityProvider.java
│ │ │ │ │ └── [4.0K] xsd
│ │ │ │ │ └── [2.0K] login-identity-providers.xsd
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] web
│ │ │ │ │ └── [4.0K] security
│ │ │ │ │ ├── [4.0K] anonymous
│ │ │ │ │ │ └── [5.1K] NiFiAnonymousAuthenticationProviderTest.java
│ │ │ │ │ ├── [4.0K] configuration
│ │ │ │ │ │ └── [2.6K] KeyPairGeneratorConfigurationTest.java
│ │ │ │ │ ├── [4.0K] cookie
│ │ │ │ │ │ └── [7.1K] StandardApplicationCookieServiceTest.java
│ │ │ │ │ ├── [4.0K] csrf
│ │ │ │ │ │ ├── [4.5K] SkipReplicatedCsrfFilterTest.java
│ │ │ │ │ │ └── [6.1K] StandardCookieCsrfTokenRepositoryTest.java
│ │ │ │ │ ├── [4.0K] jwt
│ │ │ │ │ │ ├── [4.0K] converter
│ │ │ │ │ │ │ ├── [5.6K] StandardIssuerJwtDecoderTest.java
│ │ │ │ │ │ │ └── [4.7K] StandardJwtAuthenticationConverterTest.java
│ │ │ │ │ │ ├── [4.0K] jws
│ │ │ │ │ │ │ └── [2.5K] StandardJwsSignerProviderTest.java
│ │ │ │ │ │ ├── [4.0K] key
│ │ │ │ │ │ │ ├── [4.0K] command
│ │ │ │ │ │ │ │ └── [3.0K] KeyGenerationCommandTest.java
│ │ │ │ │ │ │ └── [4.0K] service
│ │ │ │ │ │ │ └── [4.9K] StandardVerificationKeyServiceTest.java
│ │ │ │ │ │ ├── [4.0K] provider
│ │ │ │ │ │ │ ├── [9.0K] StandardBearerTokenProviderTest.java
│ │ │ │ │ │ │ └── [2.7K] StandardIssuerProviderTest.java
│ │ │ │ │ │ ├── [4.0K] resolver
│ │ │ │ │ │ │ └── [2.8K] StandardBearerTokenResolverTest.java
│ │ │ │ │ │ └── [4.0K] revocation
│ │ │ │ │ │ ├── [2.5K] JwtRevocationValidatorTest.java
│ │ │ │ │ │ ├── [2.6K] StandardJwtLogoutListenerTest.java
│ │ │ │ │ │ └── [3.8K] StandardJwtRevocationServiceTest.java
│ │ │ │ │ ├── [4.0K] log
│ │ │ │ │ │ └── [3.2K] AuthenticationUserFilterTest.java
│ │ │ │ │ ├── [4.0K] logout
│ │ │ │ │ │ └── [2.6K] TestLogoutRequestManager.java
│ │ │ │ │ ├── [8.9K] NiFiAuthenticationProviderTest.java
│ │ │ │ │ ├── [4.0K] oidc
│ │ │ │ │ │ ├── [4.0K] authentication
│ │ │ │ │ │ │ └── [5.0K] StandardOidcIdTokenDecoderFactoryTest.java
│ │ │ │ │ │ ├── [4.0K] client
│ │ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ │ ├── [4.0K] converter
│ │ │ │ │ │ │ │ └── [7.9K] StandardAuthorizedClientConverterTest.java
│ │ │ │ │ │ │ ├── [ 12K] OidcBearerTokenRefreshFilterTest.java
│ │ │ │ │ │ │ ├── [5.8K] StandardAuthorizationRequestRepositoryTest.java
│ │ │ │ │ │ │ ├── [6.7K] StandardOAuth2AuthorizationRequestResolverTest.java
│ │ │ │ │ │ │ └── [9.2K] StandardOidcAuthorizedClientRepositoryTest.java
│ │ │ │ │ │ ├── [4.0K] logout
│ │ │ │ │ │ │ └── [ 11K] OidcLogoutSuccessHandlerTest.java
│ │ │ │ │ │ ├── [4.0K] registration
│ │ │ │ │ │ │ └── [9.6K] StandardClientRegistrationProviderTest.java
│ │ │ │ │ │ ├── [4.0K] revocation
│ │ │ │ │ │ │ └── [5.6K] StandardTokenRevocationResponseClientTest.java
│ │ │ │ │ │ ├── [4.0K] userinfo
│ │ │ │ │ │ │ └── [5.7K] StandardOidcUserServiceTest.java
│ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ └── [4.0K] authentication
│ │ │ │ │ │ └── [7.9K] OidcAuthenticationSuccessHandlerTest.java
│ │ │ │ │ ├── [8.6K] ProxiedEntitiesUtilsTest.java
│ │ │ │ │ ├── [4.0K] saml2
│ │ │ │ │ │ ├── [4.0K] registration
│ │ │ │ │ │ │ ├── [8.0K] StandardRegistrationBuilderProviderTest.java
│ │ │ │ │ │ │ └── [8.6K] StandardRelyingPartyRegistrationRepositoryTest.java
│ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ │ ├── [5.8K] StandardRelyingPartyRegistrationResolverTest.java
│ │ │ │ │ │ │ └── [5.9K] StandardSaml2AuthenticationRequestRepositoryTest.java
│ │ │ │ │ │ └── [4.0K] web
│ │ │ │ │ │ └── [4.0K] authentication
│ │ │ │ │ │ ├── [4.0K] logout
│ │ │ │ │ │ │ ├── [2.8K] Saml2LocalLogoutFilterTest.java
│ │ │ │ │ │ │ ├── [3.8K] Saml2LogoutSuccessHandlerTest.java
│ │ │ │ │ │ │ ├── [3.7K] Saml2SingleLogoutFilterTest.java
│ │ │ │ │ │ │ └── [5.6K] StandardSaml2LogoutRequestRepositoryTest.java
│ │ │ │ │ │ └── [5.5K] Saml2AuthenticationSuccessHandlerTest.java
│ │ │ │ │ ├── [4.0K] spring
│ │ │ │ │ │ ├── [3.4K] LoginIdentityProviderFactoryBeanTest.java
│ │ │ │ │ │ └── [4.0K] mock
│ │ │ │ │ │ └── [2.1K] MockLoginIdentityProvider.java
│ │ │ │ │ ├── [7.7K] StandardAuthenticationEntryPointTest.java
│ │ │ │ │ ├── [3.4K] TestProxiedEntitiesUtils.java
│ │ │ │ │ └── [4.0K] x509
│ │ │ │ │ ├── [4.0K] ocsp
│ │ │ │ │ │ └── [ 10K] OcspCertificateValidatorTest.java
│ │ │ │ │ └── [ 12K] X509AuthenticationProviderTest.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [1.1K] login-identity-providers.xml
│ │ │ │ └── [4.0K] saml
│ │ │ │ └── [6.7K] sso-circle-meta.xml
│ │ │ └── [1.5K] pom.xml
│ │ └── [2.8K] pom.xml
│ ├── [4.0K] nifi-framework-extensions
│ │ ├── [4.0K] nifi-framework-kubernetes-bundle
│ │ │ ├── [4.0K] nifi-framework-kubernetes-leader-election
│ │ │ │ ├── [2.2K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] kubernetes
│ │ │ │ │ │ └── [4.0K] leader
│ │ │ │ │ │ └── [4.0K] election
│ │ │ │ │ │ ├── [4.0K] command
│ │ │ │ │ │ │ ├── [4.3K] LeaderElectionCommand.java
│ │ │ │ │ │ │ ├── [1.9K] LeaderElectionCommandProvider.java
│ │ │ │ │ │ │ └── [4.6K] StandardLeaderElectionCommandProvider.java
│ │ │ │ │ │ └── [ 13K] KubernetesLeaderElectionManager.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 856] org.apache.nifi.controller.leader.election.LeaderElectionManager
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] kubernetes
│ │ │ │ └── [4.0K] leader
│ │ │ │ └── [4.0K] election
│ │ │ │ └── [ 10K] KubernetesLeaderElectionManagerTest.java
│ │ │ ├── [4.0K] nifi-framework-kubernetes-nar
│ │ │ │ ├── [3.4K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ └── [1.1K] NOTICE
│ │ │ ├── [4.0K] nifi-framework-kubernetes-state-provider
│ │ │ │ ├── [3.3K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] kubernetes
│ │ │ │ │ │ └── [4.0K] state
│ │ │ │ │ │ └── [4.0K] provider
│ │ │ │ │ │ ├── [ 17K] KubernetesConfigMapStateProvider.java
│ │ │ │ │ │ └── [1.9K] StandardStateMap.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 856] org.apache.nifi.components.state.StateProvider
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] kubernetes
│ │ │ │ └── [4.0K] state
│ │ │ │ └── [4.0K] provider
│ │ │ │ └── [ 14K] KubernetesConfigMapStateProviderTest.java
│ │ │ └── [1.5K] pom.xml
│ │ ├── [4.0K] nifi-kerberos-iaa-providers-bundle
│ │ │ ├── [4.0K] nifi-kerberos-iaa-providers
│ │ │ │ ├── [2.7K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] kerberos
│ │ │ │ │ ├── [7.0K] KerberosProvider.java
│ │ │ │ │ ├── [1.5K] KerberosUserDetailsService.java
│ │ │ │ │ └── [4.0K] parser
│ │ │ │ │ └── [2.4K] KerberosPrincipalParser.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [ 822] org.apache.nifi.authentication.LoginIdentityProvider
│ │ │ ├── [4.0K] nifi-kerberos-iaa-providers-nar
│ │ │ │ ├── [1.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 13K] LICENSE
│ │ │ │ └── [1.1K] NOTICE
│ │ │ └── [1.4K] pom.xml
│ │ ├── [4.0K] nifi-ldap-iaa-providers-bundle
│ │ │ ├── [4.0K] nifi-ldap-iaa-providers
│ │ │ │ ├── [4.1K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] ldap
│ │ │ │ │ │ ├── [ 908] IdentityStrategy.java
│ │ │ │ │ │ ├── [ 940] LdapAuthenticationStrategy.java
│ │ │ │ │ │ ├── [ 15K] LdapProvider.java
│ │ │ │ │ │ ├── [3.3K] LdapsSocketFactory.java
│ │ │ │ │ │ ├── [1.3K] ProviderProperty.java
│ │ │ │ │ │ ├── [1.1K] ReferralStrategy.java
│ │ │ │ │ │ ├── [4.0K] ssl
│ │ │ │ │ │ │ ├── [1.2K] LdapSslContextProvider.java
│ │ │ │ │ │ │ └── [6.0K] StandardLdapSslContextProvider.java
│ │ │ │ │ │ └── [4.0K] tenants
│ │ │ │ │ │ ├── [ 44K] LdapUserGroupProvider.java
│ │ │ │ │ │ ├── [ 962] SearchScope.java
│ │ │ │ │ │ └── [6.3K] TenantHolder.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ ├── [ 814] org.apache.nifi.authentication.LoginIdentityProvider
│ │ │ │ │ └── [ 832] org.apache.nifi.authorization.UserGroupProvider
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] ldap
│ │ │ │ │ ├── [4.0K] ssl
│ │ │ │ │ │ └── [5.9K] StandardLdapSslContextProviderTest.java
│ │ │ │ │ └── [4.0K] tenants
│ │ │ │ │ └── [ 52K] LdapUserGroupProviderTest.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [3.8K] nifi-example.ldif
│ │ │ ├── [4.0K] nifi-ldap-iaa-providers-nar
│ │ │ │ ├── [1.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 13K] LICENSE
│ │ │ │ └── [1.1K] NOTICE
│ │ │ └── [1.4K] pom.xml
│ │ ├── [4.0K] nifi-provenance-repository-bundle
│ │ │ ├── [4.0K] nifi-persistent-provenance-repository
│ │ │ │ ├── [2.4K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] provenance
│ │ │ │ │ │ ├── [5.7K] AbstractRecordWriter.java
│ │ │ │ │ │ ├── [4.0K] authorization
│ │ │ │ │ │ │ ├── [1007] AuthorizationCheck.java
│ │ │ │ │ │ │ ├── [4.4K] EventAuthorizer.java
│ │ │ │ │ │ │ ├── [1.6K] EventTransformer.java
│ │ │ │ │ │ │ └── [2.7K] UserEventAuthorizer.java
│ │ │ │ │ │ ├── [3.6K] ByteArraySchemaRecordReader.java
│ │ │ │ │ │ ├── [3.7K] ByteArraySchemaRecordWriter.java
│ │ │ │ │ │ ├── [7.6K] EventIdFirstSchemaRecordReader.java
│ │ │ │ │ │ ├── [9.7K] EventIdFirstSchemaRecordWriter.java
│ │ │ │ │ │ ├── [4.0K] expiration
│ │ │ │ │ │ │ ├── [1.4K] ExpirationAction.java
│ │ │ │ │ │ │ └── [2.3K] FileRemovalAction.java
│ │ │ │ │ │ ├── [4.0K] index
│ │ │ │ │ │ │ ├── [8.8K] EventIndex.java
│ │ │ │ │ │ │ ├── [1.0K] EventIndexSearcher.java
│ │ │ │ │ │ │ ├── [1.4K] EventIndexWriter.java
│ │ │ │ │ │ │ ├── [4.0K] lucene
│ │ │ │ │ │ │ │ ├── [1.2K] CachedQuery.java
│ │ │ │ │ │ │ │ ├── [ 943] CommitPreference.java
│ │ │ │ │ │ │ │ ├── [7.6K] ConvertEventToLuceneDocument.java
│ │ │ │ │ │ │ │ ├── [ 12K] EventIndexTask.java
│ │ │ │ │ │ │ │ ├── [1.6K] IndexableDocument.java
│ │ │ │ │ │ │ │ ├── [ 22K] IndexDirectoryManager.java
│ │ │ │ │ │ │ │ ├── [2.3K] IndexLocation.java
│ │ │ │ │ │ │ │ ├── [4.3K] LatestEventsPerProcessorQuery.java
│ │ │ │ │ │ │ │ ├── [2.2K] LatestEventsQuery.java
│ │ │ │ │ │ │ │ ├── [3.1K] LuceneCacheWarmer.java
│ │ │ │ │ │ │ │ ├── [ 45K] LuceneEventIndex.java
│ │ │ │ │ │ │ │ ├── [6.9K] MigrateDefunctIndex.java
│ │ │ │ │ │ │ │ ├── [ 10K] QueryTask.java
│ │ │ │ │ │ │ │ └── [1.4K] StoredDocument.java
│ │ │ │ │ │ │ └── [1.1K] SearchFailedException.java
│ │ │ │ │ │ ├── [ 14K] IndexConfiguration.java
│ │ │ │ │ │ ├── [4.0K] lucene
│ │ │ │ │ │ │ ├── [6.9K] DocsReader.java
│ │ │ │ │ │ │ ├── [1.2K] DocumentToEventConverter.java
│ │ │ │ │ │ │ ├── [1.1K] FieldNames.java
│ │ │ │ │ │ │ ├── [7.2K] IndexingAction.java
│ │ │ │ │ │ │ ├── [1.5K] IndexManager.java
│ │ │ │ │ │ │ ├── [4.8K] LineageQuery.java
│ │ │ │ │ │ │ ├── [2.9K] LuceneEventIndexSearcher.java
│ │ │ │ │ │ │ ├── [4.9K] LuceneEventIndexWriter.java
│ │ │ │ │ │ │ ├── [ 10K] LuceneUtil.java
│ │ │ │ │ │ │ ├── [ 19K] StandardIndexManager.java
│ │ │ │ │ │ │ └── [2.2K] UpdateMinimumEventId.java
│ │ │ │ │ │ ├── [ 19K] RepositoryConfiguration.java
│ │ │ │ │ │ ├── [4.0K] schema
│ │ │ │ │ │ │ ├── [3.2K] EventFieldNames.java
│ │ │ │ │ │ │ ├── [2.5K] EventIdFirstHeaderSchema.java
│ │ │ │ │ │ │ ├── [5.9K] EventRecordFields.java
│ │ │ │ │ │ │ ├── [ 10K] EventRecord.java
│ │ │ │ │ │ │ ├── [6.7K] LookupTableEventRecordFields.java
│ │ │ │ │ │ │ ├── [ 19K] LookupTableEventRecord.java
│ │ │ │ │ │ │ ├── [5.2K] LookupTableEventSchema.java
│ │ │ │ │ │ │ └── [4.2K] ProvenanceEventSchema.java
│ │ │ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ │ │ ├── [ 14K] CompressableRecordReader.java
│ │ │ │ │ │ │ ├── [8.6K] CompressableRecordWriter.java
│ │ │ │ │ │ │ ├── [2.1K] EmptyRecordReader.java
│ │ │ │ │ │ │ ├── [9.3K] EventFileCompressor.java
│ │ │ │ │ │ │ ├── [5.5K] RecordReader.java
│ │ │ │ │ │ │ ├── [7.1K] RecordReaders.java
│ │ │ │ │ │ │ ├── [4.3K] RecordWriter.java
│ │ │ │ │ │ │ ├── [2.0K] RecordWriters.java
│ │ │ │ │ │ │ └── [2.5K] StorageSummary.java
│ │ │ │ │ │ ├── [4.0K] store
│ │ │ │ │ │ │ ├── [4.1K] EventFileManager.java
│ │ │ │ │ │ │ ├── [6.6K] EventStore.java
│ │ │ │ │ │ │ ├── [4.9K] EventStorePartition.java
│ │ │ │ │ │ │ ├── [4.0K] iterator
│ │ │ │ │ │ │ │ ├── [2.1K] AggregateEventIterator.java
│ │ │ │ │ │ │ │ ├── [2.2K] AuthorizingEventIterator.java
│ │ │ │ │ │ │ │ ├── [2.7K] EventIterator.java
│ │ │ │ │ │ │ │ ├── [6.4K] SelectiveRecordReaderEventIterator.java
│ │ │ │ │ │ │ │ └── [4.3K] SequentialRecordReaderEventIterator.java
│ │ │ │ │ │ │ ├── [ 12K] PartitionedEventStore.java
│ │ │ │ │ │ │ ├── [6.8K] PartitionedWriteAheadEventStore.java
│ │ │ │ │ │ │ ├── [1.2K] RecordReaderFactory.java
│ │ │ │ │ │ │ ├── [1.2K] RecordWriterFactory.java
│ │ │ │ │ │ │ ├── [5.0K] RecordWriterLease.java
│ │ │ │ │ │ │ ├── [1.2K] RolloverState.java
│ │ │ │ │ │ │ ├── [2.2K] StorageResult.java
│ │ │ │ │ │ │ └── [ 32K] WriteAheadStorePartition.java
│ │ │ │ │ │ ├── [4.0K] toc
│ │ │ │ │ │ │ ├── [6.3K] StandardTocReader.java
│ │ │ │ │ │ │ ├── [3.5K] StandardTocWriter.java
│ │ │ │ │ │ │ ├── [3.4K] TocReader.java
│ │ │ │ │ │ │ ├── [1.7K] TocUtil.java
│ │ │ │ │ │ │ └── [1.8K] TocWriter.java
│ │ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ │ ├── [1.7K] CloseableUtil.java
│ │ │ │ │ │ │ ├── [3.0K] DirectoryUtils.java
│ │ │ │ │ │ │ ├── [3.4K] DumpEventFile.java
│ │ │ │ │ │ │ ├── [1.7K] NamedThreadFactory.java
│ │ │ │ │ │ │ └── [4.9K] StorageSummaryEvent.java
│ │ │ │ │ │ └── [ 15K] WriteAheadProvenanceRepository.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 905] org.apache.nifi.provenance.ProvenanceRepository
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] provenance
│ │ │ │ ├── [9.9K] AbstractTestRecordReaderWriter.java
│ │ │ │ ├── [4.0K] index
│ │ │ │ │ └── [4.0K] lucene
│ │ │ │ │ ├── [6.1K] TestEventIndexTask.java
│ │ │ │ │ ├── [6.8K] TestIndexDirectoryManager.java
│ │ │ │ │ └── [ 24K] TestLuceneEventIndex.java
│ │ │ │ ├── [2.8K] LoopingInputStream.java
│ │ │ │ ├── [4.0K] lucene
│ │ │ │ │ └── [6.9K] TestSimpleIndexManager.java
│ │ │ │ ├── [4.0K] store
│ │ │ │ │ ├── [5.1K] ArrayListEventStore.java
│ │ │ │ │ ├── [4.0K] iterator
│ │ │ │ │ │ └── [6.4K] TestSelectiveRecordReaderEventIterator.java
│ │ │ │ │ ├── [6.4K] TestEventFileManager.java
│ │ │ │ │ ├── [ 23K] TestPartitionedWriteAheadEventStore.java
│ │ │ │ │ └── [6.8K] TestWriteAheadStorePartition.java
│ │ │ │ ├── [ 21K] TestEventIdFirstSchemaRecordReaderWriter.java
│ │ │ │ ├── [ 17K] TestSchemaRecordReaderWriter.java
│ │ │ │ ├── [3.2K] TestUtil.java
│ │ │ │ └── [4.0K] toc
│ │ │ │ ├── [1.4K] NopTocWriter.java
│ │ │ │ ├── [3.7K] TestStandardTocReader.java
│ │ │ │ └── [1.5K] TestStandardTocWriter.java
│ │ │ ├── [4.0K] nifi-provenance-repository-nar
│ │ │ │ ├── [1.7K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [ 10K] NOTICE
│ │ │ ├── [4.0K] nifi-volatile-provenance-repository
│ │ │ │ ├── [1.9K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] provenance
│ │ │ │ │ │ ├── [ 10K] NoOpProvenanceRepository.java
│ │ │ │ │ │ └── [ 36K] VolatileProvenanceRepository.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 888] org.apache.nifi.provenance.ProvenanceRepository
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] provenance
│ │ │ │ │ └── [9.9K] TestVolatileProvenanceRepository.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [ 956] nifi.properties
│ │ │ └── [2.6K] pom.xml
│ │ ├── [4.0K] nifi-py4j-framework-bundle
│ │ │ ├── [4.0K] nifi-python-extension-api
│ │ │ │ ├── [2.0K] pom.xml
│ │ │ │ ├── [ 661] README
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] python
│ │ │ │ ├── [1.4K] pyproject.toml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] nifiapi
│ │ │ │ ├── [5.9K] componentstate.py
│ │ │ │ ├── [5.7K] documentation.py
│ │ │ │ ├── [2.1K] flowfilesource.py
│ │ │ │ ├── [2.2K] flowfiletransform.py
│ │ │ │ ├── [ 781] __init__.py
│ │ │ │ ├── [ 966] __jvm__.py
│ │ │ │ ├── [2.1K] logging.py
│ │ │ │ ├── [ 24K] properties.py
│ │ │ │ ├── [3.6K] recordtransform.py
│ │ │ │ └── [1.2K] relationship.py
│ │ │ ├── [4.0K] nifi-python-framework
│ │ │ │ ├── [5.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ └── [4.0K] python
│ │ │ │ │ └── [4.0K] framework
│ │ │ │ │ ├── [1.6K] BundleCoordinate.py
│ │ │ │ │ ├── [6.6K] Controller.py
│ │ │ │ │ ├── [3.1K] ExtensionDetails.py
│ │ │ │ │ ├── [ 19K] ExtensionManager.py
│ │ │ │ │ ├── [ 18K] ProcessorInspection.py
│ │ │ │ │ └── [5.5K] PythonProcessorAdapter.py
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] python
│ │ │ │ │ └── [4.0K] framework
│ │ │ │ │ ├── [2.0K] TestExtensionManager.py
│ │ │ │ │ ├── [2.8K] TestPythonProcessorAdapter.py
│ │ │ │ │ └── [1.9K] testutils.py
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] python
│ │ │ │ └── [4.0K] framework
│ │ │ │ ├── [4.0K] dummy_processor
│ │ │ │ │ └── [1.9K] DummyProcessor.py
│ │ │ │ └── [4.0K] processor_with_dependencies
│ │ │ │ ├── [1.4K] ProcessorWithDependencies.py
│ │ │ │ └── [ 809] requirements.txt
│ │ │ ├── [4.0K] nifi-python-framework-api
│ │ │ │ ├── [1.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] python
│ │ │ │ ├── [ 994] BoundObjectCounts.java
│ │ │ │ ├── [1.6K] ControllerServiceTypeLookup.java
│ │ │ │ ├── [2.5K] DisabledPythonBridge.java
│ │ │ │ ├── [4.0K] processor
│ │ │ │ │ ├── [4.0K] documentation
│ │ │ │ │ │ ├── [1.1K] MultiProcessorUseCaseDetails.java
│ │ │ │ │ │ ├── [1.0K] ProcessorConfigurationDetails.java
│ │ │ │ │ │ ├── [1.1K] PropertyDependency.java
│ │ │ │ │ │ ├── [1.3K] PropertyDescription.java
│ │ │ │ │ │ └── [1.1K] UseCaseDetails.java
│ │ │ │ │ ├── [1.4K] Idempotent.java
│ │ │ │ │ ├── [1.5K] PreserveJavaBinding.java
│ │ │ │ │ ├── [1.7K] PythonProcessorAdapter.java
│ │ │ │ │ ├── [2.3K] PythonProcessorBridge.java
│ │ │ │ │ ├── [1009] PythonProcessorInitializationContext.java
│ │ │ │ │ └── [1.2K] PythonProcessor.java
│ │ │ │ ├── [1.1K] PythonBridgeInitializationContext.java
│ │ │ │ ├── [5.2K] PythonBridge.java
│ │ │ │ ├── [1.1K] PythonBundleCoordinate.java
│ │ │ │ ├── [4.6K] PythonController.java
│ │ │ │ ├── [ 892] PythonObjectProxy.java
│ │ │ │ ├── [5.6K] PythonProcessConfig.java
│ │ │ │ └── [3.3K] PythonProcessorDetails.java
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [3.9K] README.md
│ │ ├── [4.0K] nifi-questdb-bundle
│ │ │ ├── [4.0K] nifi-questdb
│ │ │ │ ├── [2.1K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] questdb
│ │ │ │ │ ├── [2.2K] Client.java
│ │ │ │ │ ├── [1.1K] DatabaseException.java
│ │ │ │ │ ├── [1.4K] DatabaseManager.java
│ │ │ │ │ ├── [4.0K] embedded
│ │ │ │ │ │ ├── [1.0K] ClientDisconnectedException.java
│ │ │ │ │ │ ├── [2.6K] ConditionAwareClient.java
│ │ │ │ │ │ ├── [1.0K] ConditionFailedException.java
│ │ │ │ │ │ ├── [1.2K] CorruptedDatabaseException.java
│ │ │ │ │ │ ├── [1.9K] CursorBasedQueryRowContext.java
│ │ │ │ │ │ ├── [5.3K] EmbeddedClient.java
│ │ │ │ │ │ ├── [4.0K] EmbeddedDatabaseManagerBuilder.java
│ │ │ │ │ │ ├── [1.2K] EmbeddedDatabaseManagerContext.java
│ │ │ │ │ │ ├── [ 13K] EmbeddedDatabaseManager.java
│ │ │ │ │ │ ├── [1.7K] EmbeddedDatabaseManagerStatus.java
│ │ │ │ │ │ ├── [3.7K] LockedClient.java
│ │ │ │ │ │ ├── [1.1K] LockUnsuccessfulException.java
│ │ │ │ │ │ ├── [2.0K] ManagedTableDefinition.java
│ │ │ │ │ │ ├── [1.7K] NoOpClient.java
│ │ │ │ │ │ ├── [4.7K] RetryingClient.java
│ │ │ │ │ │ ├── [1.9K] RolloverWorker.java
│ │ │ │ │ │ ├── [3.5K] SimpleEmbeddedDatabaseManagerContext.java
│ │ │ │ │ │ ├── [1.3K] SqlExecutionContextFactory.java
│ │ │ │ │ │ └── [3.1K] TableWriterBasedInsertRowContext.java
│ │ │ │ │ ├── [1.5K] InsertRowContext.java
│ │ │ │ │ ├── [ 956] InsertRowDataSource.java
│ │ │ │ │ ├── [4.0K] mapping
│ │ │ │ │ │ ├── [2.1K] RequestMappingBasedQueryResultProcessor.java
│ │ │ │ │ │ ├── [2.5K] RequestMappingBuilder.java
│ │ │ │ │ │ ├── [1.3K] RequestMapping.java
│ │ │ │ │ │ └── [1.8K] SimpleRequestMapping.java
│ │ │ │ │ ├── [3.5K] package-info.java
│ │ │ │ │ ├── [1.5K] QueryResultProcessor.java
│ │ │ │ │ ├── [1.0K] QueryRowContext.java
│ │ │ │ │ └── [4.0K] rollover
│ │ │ │ │ ├── [4.1K] DeleteOldRolloverStrategy.java
│ │ │ │ │ ├── [1.2K] KeepAllRolloverStrategy.java
│ │ │ │ │ └── [1.7K] RolloverStrategy.java
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] questdb
│ │ │ │ │ ├── [4.0K] embedded
│ │ │ │ │ │ ├── [7.9K] CompositeClientTest.java
│ │ │ │ │ │ ├── [3.5K] ConditionAwareClientTest.java
│ │ │ │ │ │ ├── [4.4K] EmbeddedClientTest.java
│ │ │ │ │ │ ├── [ 19K] EmbeddedDatabaseManagerTest.java
│ │ │ │ │ │ ├── [1.4K] EmbeddedQuestDbTest.java
│ │ │ │ │ │ ├── [1.4K] EmbeddedQuestDbTestUtil.java
│ │ │ │ │ │ ├── [ 13K] LockedClientTest.java
│ │ │ │ │ │ ├── [1.3K] ManagedQuestDbTest.java
│ │ │ │ │ │ └── [7.1K] RetryingClientTest.java
│ │ │ │ │ ├── [4.0K] mapping
│ │ │ │ │ │ └── [1.2K] RequestMappingBuilderTest.java
│ │ │ │ │ ├── [4.0K] rollover
│ │ │ │ │ │ └── [4.2K] DeleteOldRolloverStrategyTest.java
│ │ │ │ │ └── [4.0K] util
│ │ │ │ │ ├── [2.3K] Event.java
│ │ │ │ │ └── [4.9K] QuestDbTestUtil.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [ 868] log-stdout.conf
│ │ │ ├── [4.0K] nifi-questdb-status-history
│ │ │ │ ├── [2.3K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] controller
│ │ │ │ │ │ └── [4.0K] status
│ │ │ │ │ │ └── [4.0K] history
│ │ │ │ │ │ └── [4.0K] questdb
│ │ │ │ │ │ ├── [8.3K] BufferedStatusHistoryStorage.java
│ │ │ │ │ │ ├── [1.6K] CapturedStatus.java
│ │ │ │ │ │ ├── [1.7K] ComponentDetailsStorage.java
│ │ │ │ │ │ ├── [2.2K] ComponentStatusDataSource.java
│ │ │ │ │ │ ├── [3.5K] CounterStatisticsDataSource.java
│ │ │ │ │ │ ├── [3.3K] CounterStatisticsResultProcessor.java
│ │ │ │ │ │ ├── [ 17K] EmbeddedQuestDbStatusHistoryRepositoryDefinitions.java
│ │ │ │ │ │ ├── [ 15K] EmbeddedQuestDbStatusHistoryRepository.java
│ │ │ │ │ │ ├── [1.9K] GarbageCollectionResultProcessor.java
│ │ │ │ │ │ ├── [1.8K] GarbageCollectionStatusDataSource.java
│ │ │ │ │ │ ├── [1.8K] InMemoryComponentDetailsStorage.java
│ │ │ │ │ │ ├── [2.0K] NodeStatusDataSource.java
│ │ │ │ │ │ ├── [3.2K] NodeStatusResultProcessor.java
│ │ │ │ │ │ ├── [ 11K] QuestDbStatusHistoryStorage.java
│ │ │ │ │ │ ├── [2.7K] StatusHistoryStorage.java
│ │ │ │ │ │ ├── [1.2K] StorageMetric.java
│ │ │ │ │ │ ├── [3.4K] StorageStatusDataSource.java
│ │ │ │ │ │ ├── [3.9K] StorageStatusResultProcessor.java
│ │ │ │ │ │ └── [1.8K] StorageStatusType.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 870] org.apache.nifi.controller.status.history.StatusHistoryRepository
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] controller
│ │ │ │ │ └── [4.0K] status
│ │ │ │ │ └── [4.0K] history
│ │ │ │ │ ├── [4.0K] AbstractEmbeddedQuestDbStatusHistoryRepositoryTest.java
│ │ │ │ │ ├── [ 23K] AbstractStatusHistoryRepositoryTest.java
│ │ │ │ │ ├── [6.3K] EmbeddedQuestDbStatusHistoryRepositoryForComponentsTest.java
│ │ │ │ │ └── [3.1K] EmbeddedQuestDbStatusHistoryRepositoryForNodeTest.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [ 868] log-stdout.conf
│ │ │ ├── [4.0K] nifi-questdb-status-history-nar
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ └── [ 860] NOTICE
│ │ │ └── [1.9K] pom.xml
│ │ ├── [4.0K] nifi-single-user-iaa-providers-bundle
│ │ │ ├── [4.0K] nifi-single-user-iaa-providers
│ │ │ │ ├── [1.9K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ ├── [4.0K] authentication
│ │ │ │ │ │ │ └── [4.0K] single
│ │ │ │ │ │ │ └── [4.0K] user
│ │ │ │ │ │ │ └── [7.3K] SingleUserLoginIdentityProvider.java
│ │ │ │ │ │ └── [4.0K] authorization
│ │ │ │ │ │ └── [4.0K] single
│ │ │ │ │ │ └── [4.0K] user
│ │ │ │ │ │ └── [6.7K] SingleUserAuthorizer.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ ├── [ 855] org.apache.nifi.authentication.LoginIdentityProvider
│ │ │ │ │ └── [ 844] org.apache.nifi.authorization.Authorizer
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] authentication
│ │ │ │ │ │ └── [4.0K] single
│ │ │ │ │ │ └── [4.0K] user
│ │ │ │ │ │ └── [8.3K] SingleUserLoginIdentityProviderTest.java
│ │ │ │ │ └── [4.0K] authorization
│ │ │ │ │ └── [4.0K] single
│ │ │ │ │ └── [4.0K] user
│ │ │ │ │ └── [5.5K] SingleUserAuthorizerTest.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] conf
│ │ │ │ ├── [1.2K] login-identity-providers.xml
│ │ │ │ └── [1.0K] unsupported-login-identity-providers.xml
│ │ │ ├── [4.0K] nifi-single-user-iaa-providers-nar
│ │ │ │ ├── [1.6K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 13K] LICENSE
│ │ │ │ └── [ 824] NOTICE
│ │ │ └── [1.5K] pom.xml
│ │ └── [1.7K] pom.xml
│ ├── [4.0K] nifi-framework-nar
│ │ ├── [7.3K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ ├── [ 19K] LICENSE
│ │ └── [ 11K] NOTICE
│ ├── [4.0K] nifi-framework-nar-bom
│ │ └── [ 14K] pom.xml
│ ├── [4.0K] nifi-jetty-nar
│ │ ├── [9.2K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ └── [1.0K] NOTICE
│ ├── [4.0K] nifi-server-nar
│ │ ├── [2.2K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [4.0K] META-INF
│ │ ├── [ 20K] LICENSE
│ │ └── [8.9K] NOTICE
│ ├── [4.0K] nifi-server-nar-bom
│ │ └── [5.5K] pom.xml
│ └── [ 16K] pom.xml
├── [4.0K] nifi-frontend
│ ├── [ 19K] pom.xml
│ └── [4.0K] src
│ └── [4.0K] main
│ ├── [4.0K] frontend
│ │ ├── [4.0K] apps
│ │ │ ├── [4.0K] nifi
│ │ │ │ ├── [1.9K] jest.config.ts
│ │ │ │ ├── [5.3K] project.json
│ │ │ │ ├── [1.6K] proxy.config.mjs
│ │ │ │ ├── [ 965] setup-jest.ts
│ │ │ │ ├── [4.0K] src
│ │ │ │ │ ├── [4.0K] app
│ │ │ │ │ │ ├── [1.1K] app.component.html
│ │ │ │ │ │ ├── [ 975] app.component.scss
│ │ │ │ │ │ ├── [2.0K] app.component.spec.ts
│ │ │ │ │ │ ├── [ 954] _app.component-theme.scss
│ │ │ │ │ │ ├── [4.9K] app.component.ts
│ │ │ │ │ │ ├── [6.1K] app.module.ts
│ │ │ │ │ │ ├── [5.0K] app-routing.module.ts
│ │ │ │ │ │ ├── [4.0K] pages
│ │ │ │ │ │ │ ├── [4.0K] access-policies
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [1.2K] access-policies.component.html
│ │ │ │ │ │ │ │ │ ├── [ 814] access-policies.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.8K] access-policies.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.0K] access-policies.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.0K] access-policies.module.ts
│ │ │ │ │ │ │ │ │ └── [2.1K] access-policies-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ └── [4.3K] access-policy.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] access-policy
│ │ │ │ │ │ │ │ │ │ ├── [3.8K] access-policy.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 21K] access-policy.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.6K] access-policy.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.8K] access-policy.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [2.1K] index.ts
│ │ │ │ │ │ │ │ │ ├── [1.9K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] policy-component
│ │ │ │ │ │ │ │ │ │ ├── [1.3K] index.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.4K] policy-component.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.6K] policy-component.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] policy-component.reducer.ts
│ │ │ │ │ │ │ │ │ │ └── [1.1K] policy-component.selectors.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] shared
│ │ │ │ │ │ │ │ │ │ └── [1.6K] index.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] tenants
│ │ │ │ │ │ │ │ │ ├── [1.2K] index.ts
│ │ │ │ │ │ │ │ │ ├── [1.2K] tenants.actions.ts
│ │ │ │ │ │ │ │ │ ├── [2.5K] tenants.effects.ts
│ │ │ │ │ │ │ │ │ ├── [1.5K] tenants.reducer.ts
│ │ │ │ │ │ │ │ │ └── [1.3K] tenants.selectors.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ │ │ │ ├── [4.0K] add-tenant-to-policy-dialog
│ │ │ │ │ │ │ │ │ │ ├── [2.7K] add-tenant-to-policy-dialog.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 988] add-tenant-to-policy-dialog.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [3.2K] add-tenant-to-policy-dialog.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [6.2K] add-tenant-to-policy-dialog.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] override-policy-dialog
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] override-policy-dialog.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 986] override-policy-dialog.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] override-policy-dialog.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [2.0K] override-policy-dialog.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] policy-table
│ │ │ │ │ │ │ │ │ ├── [3.2K] policy-table.component.html
│ │ │ │ │ │ │ │ │ ├── [ 814] policy-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.0K] policy-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [4.8K] policy-table.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] component-access-policies
│ │ │ │ │ │ │ │ │ ├── [9.3K] component-access-policies.component.html
│ │ │ │ │ │ │ │ │ ├── [ 939] component-access-policies.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.6K] component-access-policies.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [ 18K] component-access-policies.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.3K] component-access-policies.module.ts
│ │ │ │ │ │ │ │ │ └── [1.5K] component-access-policies-routing.module.ts
│ │ │ │ │ │ │ │ └── [4.0K] global-access-policies
│ │ │ │ │ │ │ │ ├── [ 10K] global-access-policies.component.html
│ │ │ │ │ │ │ │ ├── [1.0K] global-access-policies.component.scss
│ │ │ │ │ │ │ │ ├── [1.6K] global-access-policies.component.spec.ts
│ │ │ │ │ │ │ │ ├── [ 12K] global-access-policies.component.ts
│ │ │ │ │ │ │ │ ├── [2.3K] global-access-policies.module.ts
│ │ │ │ │ │ │ │ └── [1.8K] global-access-policies-routing.module.ts
│ │ │ │ │ │ │ ├── [4.0K] bulletins
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [1.2K] bulletins.component.html
│ │ │ │ │ │ │ │ │ ├── [ 814] bulletins.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.0K] bulletins.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.0K] bulletins.component.ts
│ │ │ │ │ │ │ │ │ ├── [1.8K] bulletins.module.ts
│ │ │ │ │ │ │ │ │ └── [1.1K] bulletins-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ └── [1.3K] bulletin-board.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] bulletin-board
│ │ │ │ │ │ │ │ │ │ ├── [2.0K] bulletin-board.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.9K] bulletin-board.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.7K] bulletin-board.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] bulletin-board.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [1.8K] index.ts
│ │ │ │ │ │ │ │ │ └── [1.4K] index.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ └── [4.0K] bulletin-board
│ │ │ │ │ │ │ │ ├── [2.4K] bulletin-board.component.html
│ │ │ │ │ │ │ │ ├── [ 835] bulletin-board.component.scss
│ │ │ │ │ │ │ │ ├── [1.6K] bulletin-board.component.spec.ts
│ │ │ │ │ │ │ │ ├── [5.1K] bulletin-board.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] bulletin-board-list
│ │ │ │ │ │ │ │ ├── [4.2K] bulletin-board-list.component.html
│ │ │ │ │ │ │ │ ├── [ 802] bulletin-board-list.component.scss
│ │ │ │ │ │ │ │ ├── [1.5K] bulletin-board-list.component.spec.ts
│ │ │ │ │ │ │ │ └── [7.8K] bulletin-board-list.component.ts
│ │ │ │ │ │ │ ├── [4.0K] cluster
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [2.9K] cluster.component.html
│ │ │ │ │ │ │ │ │ ├── [ 851] cluster.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.9K] cluster.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [4.9K] cluster.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.1K] cluster.module.ts
│ │ │ │ │ │ │ │ │ └── [5.5K] cluster-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ └── [2.4K] cluster.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] cluster-listing
│ │ │ │ │ │ │ │ │ │ ├── [5.2K] cluster-listing.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 14K] cluster-listing.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.5K] cluster-listing.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] cluster-listing.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [1.8K] index.ts
│ │ │ │ │ │ │ │ │ └── [1.4K] index.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ ├── [4.0K] cluster-content-storage-listing
│ │ │ │ │ │ │ │ │ ├── [1.5K] cluster-content-storage-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] cluster-content-storage-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.3K] cluster-content-storage-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [3.9K] cluster-content-storage-listing.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] cluster-flow-file-storage-listing
│ │ │ │ │ │ │ │ │ ├── [1.4K] cluster-flow-file-storage-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] cluster-flow-file-storage-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.3K] cluster-flow-file-storage-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [3.4K] cluster-flow-file-storage-listing.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] cluster-jvm-listing
│ │ │ │ │ │ │ │ │ ├── [1.4K] cluster-jvm-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] cluster-jvm-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.2K] cluster-jvm-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [2.5K] cluster-jvm-listing.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] cluster-jvm-table
│ │ │ │ │ │ │ │ │ ├── [8.5K] cluster-jvm-table.component.html
│ │ │ │ │ │ │ │ │ ├── [1.0K] cluster-jvm-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] cluster-jvm-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [5.8K] cluster-jvm-table.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] cluster-node-listing
│ │ │ │ │ │ │ │ │ ├── [4.0K] cluster-node-detail-dialog
│ │ │ │ │ │ │ │ │ │ ├── [2.0K] cluster-node-detail-dialog.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 904] cluster-node-detail-dialog.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.9K] cluster-node-detail-dialog.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [1.5K] cluster-node-detail-dialog.component.ts
│ │ │ │ │ │ │ │ │ ├── [1.7K] cluster-node-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] cluster-node-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.3K] cluster-node-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [3.4K] cluster-node-listing.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] cluster-node-table
│ │ │ │ │ │ │ │ │ ├── [ 12K] cluster-node-table.component.html
│ │ │ │ │ │ │ │ │ ├── [ 956] cluster-node-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] cluster-node-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [7.8K] cluster-node-table.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] cluster-provenance-storage-listing
│ │ │ │ │ │ │ │ │ ├── [1.5K] cluster-provenance-storage-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] cluster-provenance-storage-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.3K] cluster-provenance-storage-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [3.9K] cluster-provenance-storage-listing.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] cluster-system-listing
│ │ │ │ │ │ │ │ │ ├── [1.4K] cluster-system-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] cluster-system-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.3K] cluster-system-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [2.6K] cluster-system-listing.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] cluster-system-table
│ │ │ │ │ │ │ │ │ ├── [5.9K] cluster-system-table.component.html
│ │ │ │ │ │ │ │ │ ├── [ 955] cluster-system-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] cluster-system-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [4.5K] cluster-system-table.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] cluster-version-listing
│ │ │ │ │ │ │ │ │ ├── [1.4K] cluster-version-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] cluster-version-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.3K] cluster-version-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [2.6K] cluster-version-listing.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] cluster-version-table
│ │ │ │ │ │ │ │ │ ├── [7.0K] cluster-version-table.component.html
│ │ │ │ │ │ │ │ │ ├── [ 959] cluster-version-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] cluster-version-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [5.1K] cluster-version-table.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] common
│ │ │ │ │ │ │ │ ├── [4.0K] cluster-table
│ │ │ │ │ │ │ │ │ └── [5.5K] cluster-table.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] cluster-table-filter
│ │ │ │ │ │ │ │ │ ├── [1.9K] cluster-table-filter.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] cluster-table-filter.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] cluster-table-filter.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [4.7K] cluster-table-filter.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] repository-storage-table
│ │ │ │ │ │ │ │ ├── [6.3K] repository-storage-table.component.html
│ │ │ │ │ │ │ │ ├── [ 962] repository-storage-table.component.scss
│ │ │ │ │ │ │ │ ├── [1.6K] repository-storage-table.component.spec.ts
│ │ │ │ │ │ │ │ └── [5.8K] repository-storage-table.component.ts
│ │ │ │ │ │ │ ├── [4.0K] content-viewer
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [3.1K] content-viewer.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] content-viewer.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.4K] content-viewer.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [ 13K] content-viewer.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.3K] content-viewer.module.ts
│ │ │ │ │ │ │ │ │ └── [1.7K] content-viewer-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ └── [1.5K] content-viewer.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] content
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] content.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] content.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.2K] content.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.2K] content.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [ 906] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] external-viewer
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] external-viewer.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.7K] external-viewer.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.3K] external-viewer.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.3K] external-viewer.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [1.0K] index.ts
│ │ │ │ │ │ │ │ │ ├── [1.9K] index.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] viewer-options
│ │ │ │ │ │ │ │ │ ├── [1.9K] index.ts
│ │ │ │ │ │ │ │ │ ├── [1.3K] viewer-options.actions.ts
│ │ │ │ │ │ │ │ │ ├── [2.1K] viewer-options.effects.ts
│ │ │ │ │ │ │ │ │ ├── [1.7K] viewer-options.reducer.ts
│ │ │ │ │ │ │ │ │ └── [1.4K] viewer-options.selectors.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ ├── [4.0K] external-viewer
│ │ │ │ │ │ │ │ │ ├── [1.0K] external-viewer.component.html
│ │ │ │ │ │ │ │ │ ├── [ 848] external-viewer.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.9K] external-viewer.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [3.5K] external-viewer.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] hex-viewer
│ │ │ │ │ │ │ │ │ ├── [1.0K] hex-viewer.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] hex-viewer.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.9K] hex-viewer.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [5.1K] hex-viewer.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] image-viewer
│ │ │ │ │ │ │ │ │ ├── [ 859] image-viewer.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] image-viewer.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.9K] image-viewer.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [1.6K] image-viewer.component.ts
│ │ │ │ │ │ │ │ └── [1.7K] recreate-view.directive.ts
│ │ │ │ │ │ │ ├── [4.0K] counters
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [1.2K] counters.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] counters.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.2K] counters.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.3K] counters.component.ts
│ │ │ │ │ │ │ │ │ ├── [1.9K] counters.module.ts
│ │ │ │ │ │ │ │ │ └── [1.4K] counters-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ └── [1.7K] counters.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] counter-listing
│ │ │ │ │ │ │ │ │ │ ├── [2.3K] counter-listing.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [9.4K] counter-listing.effects.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [6.5K] counter-listing.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [7.6K] counter-listing.reducer.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.3K] counter-listing.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.3K] counter-listing.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [1.4K] index.ts
│ │ │ │ │ │ │ │ │ └── [1.4K] index.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ └── [4.0K] counter-listing
│ │ │ │ │ │ │ │ ├── [2.1K] counter-listing.component.html
│ │ │ │ │ │ │ │ ├── [ 814] counter-listing.component.scss
│ │ │ │ │ │ │ │ ├── [5.0K] counter-listing.component.spec.ts
│ │ │ │ │ │ │ │ ├── [2.8K] counter-listing.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] counter-table
│ │ │ │ │ │ │ │ ├── [5.3K] counter-table.component.html
│ │ │ │ │ │ │ │ ├── [1.0K] counter-table.component.scss
│ │ │ │ │ │ │ │ ├── [6.3K] counter-table.component.spec.ts
│ │ │ │ │ │ │ │ └── [6.7K] counter-table.component.ts
│ │ │ │ │ │ │ ├── [4.0K] documentation
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [8.1K] documentation.component.html
│ │ │ │ │ │ │ │ │ ├── [1.1K] documentation.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.9K] documentation.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.7K] _documentation.component-theme.scss
│ │ │ │ │ │ │ │ │ ├── [8.9K] documentation.component.ts
│ │ │ │ │ │ │ │ │ ├── [3.1K] documentation.module.ts
│ │ │ │ │ │ │ │ │ └── [2.9K] documentation-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ └── [3.6K] documentation.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] additional-details
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] additional-details.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.4K] additional-details.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] additional-details.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] additional-details.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [1.1K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] controller-service-definition
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] controller-service-definition.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.6K] controller-service-definition.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] controller-service-definition.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] controller-service-definition.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [1.2K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] documentation
│ │ │ │ │ │ │ │ │ │ ├── [ 992] documentation.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] documentation.effects.ts
│ │ │ │ │ │ │ │ │ │ └── [2.3K] documentation.selectors.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] external-documentation
│ │ │ │ │ │ │ │ │ │ ├── [2.9K] external-documentation.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] external-documentation.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [1.1K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] flow-analysis-rule-definition
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] flow-analysis-rule-definition.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.5K] flow-analysis-rule-definition.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] flow-analysis-rule-definition.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] flow-analysis-rule-definition.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [1.2K] index.ts
│ │ │ │ │ │ │ │ │ ├── [7.0K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] parameter-provider-definition
│ │ │ │ │ │ │ │ │ │ ├── [1.2K] index.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] parameter-provider-definition.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.6K] parameter-provider-definition.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] parameter-provider-definition.reducer.ts
│ │ │ │ │ │ │ │ │ │ └── [1.1K] parameter-provider-definition.selectors.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] processor-definition
│ │ │ │ │ │ │ │ │ │ ├── [2.7K] index.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] processor-definition.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.4K] processor-definition.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] processor-definition.reducer.ts
│ │ │ │ │ │ │ │ │ │ └── [1.1K] processor-definition.selectors.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] reporting-task-definition
│ │ │ │ │ │ │ │ │ ├── [1.4K] index.ts
│ │ │ │ │ │ │ │ │ ├── [1.7K] reporting-task-definition.actions.ts
│ │ │ │ │ │ │ │ │ ├── [2.5K] reporting-task-definition.effects.ts
│ │ │ │ │ │ │ │ │ ├── [1.9K] reporting-task-definition.reducer.ts
│ │ │ │ │ │ │ │ │ └── [1.1K] reporting-task-definition.selectors.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ │ │ │ ├── [4.0K] additional-details
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] additional-details.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] additional-details.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.1K] additional-details.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [3.8K] additional-details.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] attributes-definition
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] attributes-definition.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 925] attributes-definition.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] attributes-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [1.8K] attributes-definition.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] configurable-extension-definition
│ │ │ │ │ │ │ │ │ │ ├── [5.3K] configurable-extension-definition.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] configurable-extension-definition.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] configurable-extension-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [2.4K] configurable-extension-definition.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] dynamic-properties-definition
│ │ │ │ │ │ │ │ │ │ ├── [4.2K] dynamic-properties-definition.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] dynamic-properties-definition.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] dynamic-properties-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [2.5K] dynamic-properties-definition.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] input-requirement
│ │ │ │ │ │ │ │ │ │ ├── [1.4K] input-requirement.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] input-requirement.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] input-requirement.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [1.2K] input-requirement.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] multi-processor-use-case
│ │ │ │ │ │ │ │ │ │ ├── [4.5K] multi-processor-use-case.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 910] multi-processor-use-case.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.0K] multi-processor-use-case.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [2.6K] multi-processor-use-case.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] properties-definition
│ │ │ │ │ │ │ │ │ │ ├── [2.6K] properties-definition.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 830] properties-definition.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] properties-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [2.6K] properties-definition.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] property-definition
│ │ │ │ │ │ │ │ │ │ ├── [7.0K] property-definition.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] property-definition.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] property-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [5.1K] property-definition.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] relationships-definition
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] relationships-definition.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 928] relationships-definition.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] relationships-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [1.8K] relationships-definition.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] resource-considerations
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] resource-considerations.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 931] resource-considerations.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] resource-considerations.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [2.0K] resource-considerations.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] restrictions-definition
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] restrictions-definition.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 942] restrictions-definition.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] restrictions-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [1.8K] restrictions-definition.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] see-also
│ │ │ │ │ │ │ │ │ │ ├── [2.3K] see-also.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] see-also.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] see-also.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [3.7K] see-also.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] use-case
│ │ │ │ │ │ │ │ │ ├── [3.5K] use-case.component.html
│ │ │ │ │ │ │ │ │ ├── [ 894] use-case.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.4K] use-case.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [1.8K] use-case.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] controller-service-definition
│ │ │ │ │ │ │ │ │ ├── [1.8K] controller-service-definition.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] controller-service-definition.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.1K] controller-service-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [3.7K] controller-service-definition.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] flow-analysis-rule-definition
│ │ │ │ │ │ │ │ │ ├── [1.5K] flow-analysis-rule-definition.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] flow-analysis-rule-definition.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.1K] flow-analysis-rule-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [3.6K] flow-analysis-rule-definition.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] overview
│ │ │ │ │ │ │ │ │ ├── [3.4K] overview.component.html
│ │ │ │ │ │ │ │ │ ├── [ 848] overview.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.9K] overview.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [1.7K] overview.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] parameter-provider-definition
│ │ │ │ │ │ │ │ │ ├── [1.5K] parameter-provider-definition.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] parameter-provider-definition.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.1K] parameter-provider-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [3.6K] parameter-provider-definition.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] processor-definition
│ │ │ │ │ │ │ │ │ ├── [4.9K] processor-definition.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] processor-definition.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.0K] processor-definition.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [4.4K] processor-definition.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] reporting-task-definition
│ │ │ │ │ │ │ │ ├── [1.5K] reporting-task-definition.component.html
│ │ │ │ │ │ │ │ ├── [ 802] reporting-task-definition.component.scss
│ │ │ │ │ │ │ │ ├── [2.1K] reporting-task-definition.component.spec.ts
│ │ │ │ │ │ │ │ └── [3.5K] reporting-task-definition.component.ts
│ │ │ │ │ │ │ ├── [4.0K] error
│ │ │ │ │ │ │ │ └── [4.0K] feature
│ │ │ │ │ │ │ │ ├── [1.2K] error.component.html
│ │ │ │ │ │ │ │ ├── [ 929] error.component.scss
│ │ │ │ │ │ │ │ ├── [1.9K] error.component.spec.ts
│ │ │ │ │ │ │ │ └── [1.6K] error.component.ts
│ │ │ │ │ │ │ ├── [4.0K] flow-configuration-history
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [1.2K] flow-configuration-history.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] flow-configuration-history.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.1K] flow-configuration-history.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.1K] flow-configuration-history.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.1K] flow-configuration-history.module.ts
│ │ │ │ │ │ │ │ │ └── [1.2K] flow-configuration-history-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ └── [1.6K] flow-configuration-history.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] flow-configuration-history-listing
│ │ │ │ │ │ │ │ │ │ ├── [2.3K] flow-configuration-history-listing.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [6.6K] flow-configuration-history-listing.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.4K] flow-configuration-history-listing.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.3K] flow-configuration-history-listing.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [2.9K] index.ts
│ │ │ │ │ │ │ │ │ └── [1.7K] index.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ └── [4.0K] flow-configuration-history-listing
│ │ │ │ │ │ │ │ ├── [4.0K] action-details
│ │ │ │ │ │ │ │ │ ├── [ 11K] action-details.component.html
│ │ │ │ │ │ │ │ │ ├── [ 956] action-details.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.1K] action-details.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [3.2K] action-details.component.ts
│ │ │ │ │ │ │ │ ├── [7.2K] flow-configuration-history-listing.component.html
│ │ │ │ │ │ │ │ ├── [ 937] flow-configuration-history-listing.component.scss
│ │ │ │ │ │ │ │ ├── [1.7K] flow-configuration-history-listing.component.spec.ts
│ │ │ │ │ │ │ │ ├── [ 12K] flow-configuration-history-listing.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] flow-configuration-history-table
│ │ │ │ │ │ │ │ │ ├── [5.6K] flow-configuration-history-table.component.html
│ │ │ │ │ │ │ │ │ ├── [ 935] flow-configuration-history-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.6K] flow-configuration-history-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [4.1K] flow-configuration-history-table.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] purge-history
│ │ │ │ │ │ │ │ ├── [4.4K] purge-history.component.html
│ │ │ │ │ │ │ │ ├── [ 963] purge-history.component.scss
│ │ │ │ │ │ │ │ ├── [2.0K] purge-history.component.spec.ts
│ │ │ │ │ │ │ │ └── [5.5K] purge-history.component.ts
│ │ │ │ │ │ │ ├── [4.0K] flow-designer
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [ 886] flow-designer.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] flow-designer.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.8K] flow-designer.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.4K] flow-designer.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.3K] flow-designer.module.ts
│ │ │ │ │ │ │ │ │ └── [2.3K] flow-designer-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ ├── [4.0K] behavior
│ │ │ │ │ │ │ │ │ │ ├── [3.7K] connectable-behavior.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 21K] connectable-behavior.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.9K] draggable-behavior.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 14K] draggable-behavior.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.9K] editable-behavior.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] editable-behavior.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.2K] position-behavior.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.3K] position-behavior.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.7K] quick-select-behavior.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.2K] quick-select-behavior.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.7K] selectable-behavior.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.6K] selectable-behavior.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.2K] transition-behavior.service.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [1.1K] transition-behavior.service.ts
│ │ │ │ │ │ │ │ │ ├── [3.9K] birdseye-view.service.spec.ts
│ │ │ │ │ │ │ │ │ ├── [ 14K] birdseye-view.service.ts
│ │ │ │ │ │ │ │ │ ├── [ 23K] canvas-actions.service.ts
│ │ │ │ │ │ │ │ │ ├── [ 59K] canvas-context-menu.service.ts
│ │ │ │ │ │ │ │ │ ├── [5.8K] canvas-utils.service.spec.ts
│ │ │ │ │ │ │ │ │ ├── [ 80K] canvas-utils.service.ts
│ │ │ │ │ │ │ │ │ ├── [3.8K] canvas-view.service.spec.ts
│ │ │ │ │ │ │ │ │ ├── [ 28K] canvas-view.service.ts
│ │ │ │ │ │ │ │ │ ├── [4.5K] controller-service.service.ts
│ │ │ │ │ │ │ │ │ ├── [ 15K] copy-paste.service.ts
│ │ │ │ │ │ │ │ │ ├── [1.5K] flow-analysis.service.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.3K] flow-analysis.service.ts
│ │ │ │ │ │ │ │ │ ├── [ 20K] flow.service.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] manager
│ │ │ │ │ │ │ │ │ │ ├── [4.2K] connection-manager.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [101K] connection-manager.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.9K] funnel-manager.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [6.6K] funnel-manager.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.2K] label-manager.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 17K] label-manager.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.9K] port-manager.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 20K] port-manager.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.9K] process-group-manager.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 59K] process-group-manager.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.9K] processor-manager.service.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 34K] processor-manager.service.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] remote-process-group-manager.service.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [ 29K] remote-process-group-manager.service.ts
│ │ │ │ │ │ │ │ │ ├── [3.1K] manage-remote-port.service.ts
│ │ │ │ │ │ │ │ │ ├── [8.9K] parameter-helper.service.ts
│ │ │ │ │ │ │ │ │ ├── [2.6K] parameter.service.ts
│ │ │ │ │ │ │ │ │ ├── [2.1K] queue.service.ts
│ │ │ │ │ │ │ │ │ ├── [3.0K] registry.service.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] resolver
│ │ │ │ │ │ │ │ │ │ ├── [3.7K] controller-service-advanced-ui-params.resolver.ts
│ │ │ │ │ │ │ │ │ │ └── [3.7K] processor-advanced-ui-params.resolver.ts
│ │ │ │ │ │ │ │ │ ├── [2.3K] search.service.ts
│ │ │ │ │ │ │ │ │ └── [4.6K] snippet.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] controller-services
│ │ │ │ │ │ │ │ │ │ ├── [5.1K] controller-services.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 40K] controller-services.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] controller-services.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.8K] controller-services.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [2.4K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ │ │ │ │ ├── [ 29K] flow.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 51K] flow.effects.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [201K] flow.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 28K] flow.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 10K] flow.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [ 21K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] flow-analysis
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] flow-analysis.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.8K] flow-analysis.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] flow-analysis.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] flow-analysis.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [2.2K] index.ts
│ │ │ │ │ │ │ │ │ ├── [2.6K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] manage-remote-ports
│ │ │ │ │ │ │ │ │ │ ├── [2.5K] index.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.7K] manage-remote-ports.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 12K] manage-remote-ports.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.4K] manage-remote-ports.reducer.ts
│ │ │ │ │ │ │ │ │ │ └── [2.2K] manage-remote-ports.selectors.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] index.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.2K] parameter.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 14K] parameter.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.2K] parameter.reducer.ts
│ │ │ │ │ │ │ │ │ │ └── [1.6K] parameter.selectors.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] queue
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] index.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.7K] queue.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 14K] queue.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] queue.reducer.ts
│ │ │ │ │ │ │ │ │ │ └── [1.4K] queue.selectors.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] shared
│ │ │ │ │ │ │ │ │ │ └── [1.3K] index.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] transform
│ │ │ │ │ │ │ │ │ ├── [ 972] index.ts
│ │ │ │ │ │ │ │ │ ├── [1.6K] transform.actions.ts
│ │ │ │ │ │ │ │ │ ├── [6.2K] transform.effects.ts
│ │ │ │ │ │ │ │ │ ├── [1.3K] transform.reducer.ts
│ │ │ │ │ │ │ │ │ └── [1.2K] transform.selectors.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ ├── [4.0K] canvas
│ │ │ │ │ │ │ │ │ ├── [1.6K] canvas.component.html
│ │ │ │ │ │ │ │ │ ├── [7.9K] canvas.component.scss
│ │ │ │ │ │ │ │ │ ├── [ 74K] canvas.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [ 11K] _canvas.component-theme.scss
│ │ │ │ │ │ │ │ │ ├── [ 32K] canvas.component.ts
│ │ │ │ │ │ │ │ │ ├── [1.9K] canvas.module.ts
│ │ │ │ │ │ │ │ │ ├── [2.0K] canvas-routing.module.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] change-color-dialog
│ │ │ │ │ │ │ │ │ │ ├── [3.0K] change-color-dialog.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] change-color-dialog.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.0K] change-color-dialog.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.2K] _change-color-dialog.component-theme.scss
│ │ │ │ │ │ │ │ │ │ └── [5.4K] change-color-dialog.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] footer
│ │ │ │ │ │ │ │ │ │ ├── [1.0K] footer.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 845] footer.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.4K] footer.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 969] _footer.component-theme.scss
│ │ │ │ │ │ │ │ │ │ └── [1.5K] footer.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] graph-controls
│ │ │ │ │ │ │ │ │ │ ├── [1.2K] graph-controls.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 894] graph-controls.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [3.0K] graph-controls.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.7K] graph-controls.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] navigation-control
│ │ │ │ │ │ │ │ │ │ │ ├── [4.0K] birdseye
│ │ │ │ │ │ │ │ │ │ │ │ ├── [ 862] birdseye.component.html
│ │ │ │ │ │ │ │ │ │ │ │ ├── [1004] birdseye.component.scss
│ │ │ │ │ │ │ │ │ │ │ │ ├── [2.0K] birdseye.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ │ ├── [1.0K] _birdseye.component-theme.scss
│ │ │ │ │ │ │ │ │ │ │ │ └── [1.4K] birdseye.component.ts
│ │ │ │ │ │ │ │ │ │ │ ├── [2.8K] navigation-control.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [1.1K] navigation-control.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [2.0K] navigation-control.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ ├── [1.6K] _navigation-control.component-theme.scss
│ │ │ │ │ │ │ │ │ │ │ └── [3.6K] navigation-control.component.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] operation-control
│ │ │ │ │ │ │ │ │ │ ├── [6.0K] operation-control.component.html
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] operation-control.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.0K] operation-control.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] _operation-control.component-theme.scss
│ │ │ │ │ │ │ │ │ │ └── [9.9K] operation-control.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] header
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] flow-analysis-drawer
│ │ │ │ │ │ │ │ │ │ │ ├── [ 13K] flow-analysis-drawer.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 802] flow-analysis-drawer.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.7K] flow-analysis-drawer.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ ├── [6.7K] flow-analysis-drawer.component.ts
│ │ │ │ │ │ │ │ │ │ │ └── [4.0K] violation-details-dialog
│ │ │ │ │ │ │ │ │ │ │ ├── [1.6K] violation-details-dialog.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 802] violation-details-dialog.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [4.9K] violation-details-dialog.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ ├── [1.1K] _violation-details-dialog.component-theme.scss
│ │ │ │ │ │ │ │ │ │ │ └── [3.0K] violation-details-dialog.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] flow-status
│ │ │ │ │ │ │ │ │ │ │ ├── [8.0K] flow-status.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 909] flow-status.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [2.5K] flow-status.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ ├── [2.1K] _flow-status.component-theme.scss
│ │ │ │ │ │ │ │ │ │ │ └── [7.2K] flow-status.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.7K] header.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 856] header.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [5.9K] header.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 802] _header.component-theme.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.9K] header.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] new-canvas-item
│ │ │ │ │ │ │ │ │ │ │ ├── [1.7K] new-canvas-item.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [1.2K] new-canvas-item.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.6K] new-canvas-item.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ ├── [1.9K] _new-canvas-item.component-theme.scss
│ │ │ │ │ │ │ │ │ │ │ └── [3.6K] new-canvas-item.component.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] search
│ │ │ │ │ │ │ │ │ │ ├── [ 14K] search.component.html
│ │ │ │ │ │ │ │ │ │ ├── [1.0K] search.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.1K] search.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.2K] _search.component-theme.scss
│ │ │ │ │ │ │ │ │ │ └── [9.6K] search.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] items
│ │ │ │ │ │ │ │ │ ├── [4.0K] connection
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] create-connection
│ │ │ │ │ │ │ │ │ │ │ ├── [ 14K] create-connection.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 956] create-connection.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [ 18K] create-connection.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [ 14K] create-connection.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] destination
│ │ │ │ │ │ │ │ │ │ │ ├── [4.0K] destination-funnel
│ │ │ │ │ │ │ │ │ │ │ │ ├── [1.2K] destination-funnel.component.html
│ │ │ │ │ │ │ │ │ │ │ │ ├── [ 802] destination-funnel.component.scss
│ │ │ │ │ │ │ │ │ │ │ │ ├── [1.4K] destination-funnel.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ │ └── [1.1K] destination-funnel.component.ts
│ │ │ │ │ │ │ │ │ │ │ ├── [4.0K] destination-output-port
│ │ │ │ │ │ │ │ │ │ │ │ ├── [1.3K] destination-output-port.component.html
│ │ │ │ │ │ │ │ │ │ │ │ ├── [ 802] destination-output-port.component.scss
│ │ │ │ │ │ │ │ │ │ │ │ ├── [1.4K] destination-output-port.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ │ └── [1.2K] destination-output-port.component.ts
│ │ │ │ │ │ │ │ │ │ │ ├── [4.0K] destination-process-group
│ │ │ │ │ │ │ │ │ │ │ │ ├── [2.4K] destination-process-group.component.html
│ │ │ │ │ │ │ │ │ │ │ │ ├── [ 802] destination-process-group.component.scss
│ │ │ │ │ │ │ │ │ │ │ │ ├── [1.5K] destination-process-group.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ │ └── [4.0K] destination-process-group.component.ts
│ │ │ │ │ │ │ │ │ │ │ ├── [4.0K] destination-processor
│ │ │ │ │ │ │ │ │ │ │ │ ├── [1.4K] destination-processor.component.html
│ │ │ │ │ │ │ │ │ │ │ │ ├── [ 802] destination-processor.component.scss
│ │ │ │ │ │ │ │ │ │ │ │ ├── [1.4K] destination-processor.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ │ └── [1.4K] destination-processor.component.ts
│ │ │ │ │ │ │ │ │ │ │ └── [4.0K] destination-remote-process-group
│ │ │ │ │ │ │ │ │ │ │ ├── [2.3K] destination-remote-process-group.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 802] destination-remote-process-group.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.6K] destination-remote-process-group.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [3.5K] destination-remote-process-group.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] edit-connection
│ │ │ │ │ │ │ │ │ │ │ ├── [ 16K] edit-connection.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 954] edit-connection.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [6.7K] edit-connection.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [ 19K] edit-connection.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] prioritizers
│ │ │ │ │ │ │ │ │ │ │ ├── [5.2K] prioritizers.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [1.3K] prioritizers.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.4K] prioritizers.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [5.8K] prioritizers.component.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] source
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] source-funnel
│ │ │ │ │ │ │ │ │ │ │ ├── [1.2K] source-funnel.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 802] source-funnel.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.4K] source-funnel.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [1.1K] source-funnel.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] source-input-port
│ │ │ │ │ │ │ │ │ │ │ ├── [1.3K] source-input-port.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 802] source-input-port.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.4K] source-input-port.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [1.2K] source-input-port.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] source-process-group
│ │ │ │ │ │ │ │ │ │ │ ├── [2.4K] source-process-group.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 802] source-process-group.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.5K] source-process-group.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [4.0K] source-process-group.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] source-processor
│ │ │ │ │ │ │ │ │ │ │ ├── [2.3K] source-processor.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 802] source-processor.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.4K] source-processor.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [5.2K] source-processor.component.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] source-remote-process-group
│ │ │ │ │ │ │ │ │ │ ├── [2.4K] source-remote-process-group.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] source-remote-process-group.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] source-remote-process-group.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [3.5K] source-remote-process-group.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] change-version-dialog
│ │ │ │ │ │ │ │ │ │ │ ├── [6.1K] change-version-dialog.html
│ │ │ │ │ │ │ │ │ │ │ ├── [1.1K] change-version-dialog.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [4.1K] change-version-dialog.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [5.6K] change-version-dialog.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] change-version-progress-dialog
│ │ │ │ │ │ │ │ │ │ │ ├── [2.7K] change-version-progress-dialog.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 903] change-version-progress-dialog.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.5K] change-version-progress-dialog.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [1.9K] change-version-progress-dialog.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] import-from-registry
│ │ │ │ │ │ │ │ │ │ │ ├── [ 11K] import-from-registry.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [1.1K] import-from-registry.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [7.5K] import-from-registry.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [ 19K] import-from-registry.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] local-changes-dialog
│ │ │ │ │ │ │ │ │ │ │ ├── [2.1K] local-changes-dialog.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 822] local-changes-dialog.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [4.1K] local-changes-dialog.spec.ts
│ │ │ │ │ │ │ │ │ │ │ ├── [2.5K] local-changes-dialog.ts
│ │ │ │ │ │ │ │ │ │ │ └── [4.0K] local-changes-table
│ │ │ │ │ │ │ │ │ │ │ ├── [4.6K] local-changes-table.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 997] local-changes-table.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [4.0K] local-changes-table.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [8.3K] local-changes-table.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] save-version-dialog
│ │ │ │ │ │ │ │ │ │ ├── [6.3K] save-version-dialog.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 950] save-version-dialog.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [5.8K] save-version-dialog.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [ 10K] save-version-dialog.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] label
│ │ │ │ │ │ │ │ │ │ └── [4.0K] edit-label
│ │ │ │ │ │ │ │ │ │ ├── [2.5K] edit-label.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 949] edit-label.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [3.4K] edit-label.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [4.6K] edit-label.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] port
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] create-port
│ │ │ │ │ │ │ │ │ │ │ ├── [3.2K] create-port.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 950] create-port.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [2.2K] create-port.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [4.5K] create-port.component.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] edit-port
│ │ │ │ │ │ │ │ │ │ ├── [3.6K] edit-port.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 948] edit-port.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [4.5K] edit-port.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [5.4K] edit-port.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] process-group
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] create-process-group
│ │ │ │ │ │ │ │ │ │ │ ├── [5.4K] create-process-group.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 959] create-process-group.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [6.4K] create-process-group.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [7.5K] create-process-group.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] edit-process-group
│ │ │ │ │ │ │ │ │ │ │ ├── [ 16K] edit-process-group.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 957] edit-process-group.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [ 18K] edit-process-group.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [ 13K] edit-process-group.component.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] group-components
│ │ │ │ │ │ │ │ │ │ ├── [2.6K] group-components.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 959] group-components.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [ 53K] group-components.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [4.3K] group-components.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] processor
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] create-processor
│ │ │ │ │ │ │ │ │ │ │ ├── [1.1K] create-processor.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 802] create-processor.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [3.6K] create-processor.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [2.5K] create-processor.component.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] edit-processor
│ │ │ │ │ │ │ │ │ │ ├── [ 22K] edit-processor.component.html
│ │ │ │ │ │ │ │ │ │ ├── [1002] edit-processor.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [ 40K] edit-processor.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] _edit-processor.component-theme.scss
│ │ │ │ │ │ │ │ │ │ ├── [ 24K] edit-processor.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] relationship-settings
│ │ │ │ │ │ │ │ │ │ │ ├── [6.4K] relationship-settings.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 883] relationship-settings.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.4K] relationship-settings.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [4.3K] relationship-settings.component.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] run-duration-slider
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] run-duration-slider.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 968] run-duration-slider.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.4K] run-duration-slider.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [3.1K] run-duration-slider.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] remote-process-group
│ │ │ │ │ │ │ │ │ ├── [4.0K] create-remote-process-group
│ │ │ │ │ │ │ │ │ │ ├── [8.1K] create-remote-process-group.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 966] create-remote-process-group.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.3K] create-remote-process-group.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [4.8K] create-remote-process-group.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] edit-remote-process-group
│ │ │ │ │ │ │ │ │ ├── [9.0K] edit-remote-process-group.component.html
│ │ │ │ │ │ │ │ │ ├── [ 964] edit-remote-process-group.component.scss
│ │ │ │ │ │ │ │ │ ├── [3.5K] edit-remote-process-group.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [5.4K] edit-remote-process-group.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ │ │ │ ├── [4.0K] breadcrumbs
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] breadcrumbs.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 931] breadcrumbs.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] breadcrumbs.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [4.4K] breadcrumbs.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] no-registry-clients-dialog
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] no-registry-clients-dialog.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 897] no-registry-clients-dialog.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.0K] no-registry-clients-dialog.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [1.5K] no-registry-clients-dialog.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] tooltips
│ │ │ │ │ │ │ │ │ └── [4.0K] version-control-tip
│ │ │ │ │ │ │ │ │ ├── [2.1K] version-control-tip.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] version-control-tip.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.4K] version-control-tip.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [2.0K] version-control-tip.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] controller-service
│ │ │ │ │ │ │ │ │ ├── [4.7K] controller-services.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] controller-services.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.5K] controller-services.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [ 11K] controller-services.component.ts
│ │ │ │ │ │ │ │ │ ├── [1.8K] controller-services.module.ts
│ │ │ │ │ │ │ │ │ └── [1.7K] controller-services-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] manage-remote-ports
│ │ │ │ │ │ │ │ │ ├── [4.0K] edit-remote-port
│ │ │ │ │ │ │ │ │ │ ├── [4.2K] edit-remote-port.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 955] edit-remote-port.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [3.0K] edit-remote-port.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [5.0K] edit-remote-port.component.ts
│ │ │ │ │ │ │ │ │ ├── [ 17K] manage-remote-ports.component.html
│ │ │ │ │ │ │ │ │ ├── [1.0K] manage-remote-ports.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.4K] manage-remote-ports.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [ 11K] manage-remote-ports.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.6K] manage-remote-ports.module.ts
│ │ │ │ │ │ │ │ │ └── [1.4K] manage-remote-ports-routing.module.ts
│ │ │ │ │ │ │ │ └── [4.0K] root
│ │ │ │ │ │ │ │ ├── [4.0K] guard
│ │ │ │ │ │ │ │ │ ├── [1.3K] root-group.guard.spec.ts
│ │ │ │ │ │ │ │ │ └── [2.1K] root-group.guard.ts
│ │ │ │ │ │ │ │ └── [4.0K] redirector
│ │ │ │ │ │ │ │ ├── [1.4K] root-group-redirector.component.spec.ts
│ │ │ │ │ │ │ │ └── [ 977] root-group-redirector.component.ts
│ │ │ │ │ │ │ ├── [4.0K] login
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [1.5K] login.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] login.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.6K] login.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.0K] _login.component-theme.scss
│ │ │ │ │ │ │ │ │ ├── [2.1K] login.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.2K] login.module.ts
│ │ │ │ │ │ │ │ │ └── [1.1K] login-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] access
│ │ │ │ │ │ │ │ │ │ ├── [1.2K] access.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.5K] access.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.2K] access.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] access.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [ 986] index.ts
│ │ │ │ │ │ │ │ │ └── [1.3K] index.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ └── [4.0K] login-form
│ │ │ │ │ │ │ │ ├── [2.1K] login-form.component.html
│ │ │ │ │ │ │ │ ├── [ 872] login-form.component.scss
│ │ │ │ │ │ │ │ ├── [2.5K] login-form.component.spec.ts
│ │ │ │ │ │ │ │ └── [3.1K] login-form.component.ts
│ │ │ │ │ │ │ ├── [4.0K] logout
│ │ │ │ │ │ │ │ └── [4.0K] feature
│ │ │ │ │ │ │ │ ├── [1.0K] logout.component.html
│ │ │ │ │ │ │ │ ├── [ 802] logout.component.scss
│ │ │ │ │ │ │ │ ├── [1.6K] logout.component.spec.ts
│ │ │ │ │ │ │ │ ├── [1.0K] _logout.component-theme.scss
│ │ │ │ │ │ │ │ └── [1.1K] logout.component.ts
│ │ │ │ │ │ │ ├── [4.0K] parameter-contexts
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [1.2K] parameter-contexts.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] parameter-contexts.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.1K] parameter-contexts.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.0K] parameter-contexts.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.1K] parameter-contexts.module.ts
│ │ │ │ │ │ │ │ │ └── [1.5K] parameter-contexts-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ └── [3.8K] parameter-contexts.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [1.6K] index.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] parameter-context-listing
│ │ │ │ │ │ │ │ │ ├── [1.9K] index.ts
│ │ │ │ │ │ │ │ │ ├── [5.5K] parameter-context-listing.actions.ts
│ │ │ │ │ │ │ │ │ ├── [ 26K] parameter-context-listing.effects.ts
│ │ │ │ │ │ │ │ │ ├── [4.7K] parameter-context-listing.reducer.ts
│ │ │ │ │ │ │ │ │ └── [2.5K] parameter-context-listing.selectors.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ └── [4.0K] parameter-context-listing
│ │ │ │ │ │ │ │ ├── [3.0K] parameter-context-listing.component.html
│ │ │ │ │ │ │ │ ├── [ 802] parameter-context-listing.component.scss
│ │ │ │ │ │ │ │ ├── [1.6K] parameter-context-listing.component.spec.ts
│ │ │ │ │ │ │ │ ├── [5.2K] parameter-context-listing.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] parameter-context-table
│ │ │ │ │ │ │ │ │ ├── [6.5K] parameter-context-table.component.html
│ │ │ │ │ │ │ │ │ ├── [ 920] parameter-context-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [ 13K] parameter-context-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [8.3K] parameter-context-table.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] parameter-table
│ │ │ │ │ │ │ │ │ ├── [ 11K] parameter-table.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] parameter-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [3.9K] parameter-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [ 19K] parameter-table.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] process-group-references
│ │ │ │ │ │ │ │ ├── [3.1K] process-group-references.component.html
│ │ │ │ │ │ │ │ ├── [1.0K] process-group-references.component.scss
│ │ │ │ │ │ │ │ ├── [1.4K] process-group-references.component.spec.ts
│ │ │ │ │ │ │ │ └── [2.9K] process-group-references.component.ts
│ │ │ │ │ │ │ ├── [4.0K] provenance
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [1.2K] provenance.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] provenance.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.3K] provenance.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.3K] _provenance.component-theme.scss
│ │ │ │ │ │ │ │ │ ├── [1.4K] provenance.component.ts
│ │ │ │ │ │ │ │ │ ├── [1.9K] provenance.module.ts
│ │ │ │ │ │ │ │ │ └── [1.4K] provenance-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ └── [6.1K] provenance.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [1.7K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] lineage
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] index.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] lineage.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [8.4K] lineage.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.4K] lineage.reducer.ts
│ │ │ │ │ │ │ │ │ │ └── [1.6K] lineage.selectors.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] provenance-event-listing
│ │ │ │ │ │ │ │ │ ├── [3.1K] index.ts
│ │ │ │ │ │ │ │ │ ├── [3.8K] provenance-event-listing.actions.ts
│ │ │ │ │ │ │ │ │ ├── [ 23K] provenance-event-listing.effects.ts
│ │ │ │ │ │ │ │ │ ├── [3.3K] provenance-event-listing.reducer.ts
│ │ │ │ │ │ │ │ │ └── [3.2K] provenance-event-listing.selectors.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ └── [4.0K] provenance-event-listing
│ │ │ │ │ │ │ │ ├── [2.2K] provenance-event-listing.component.html
│ │ │ │ │ │ │ │ ├── [ 802] provenance-event-listing.component.scss
│ │ │ │ │ │ │ │ ├── [1.6K] provenance-event-listing.component.spec.ts
│ │ │ │ │ │ │ │ ├── [8.4K] provenance-event-listing.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] provenance-event-table
│ │ │ │ │ │ │ │ │ ├── [4.0K] lineage
│ │ │ │ │ │ │ │ │ │ ├── [ 991] lineage.component.html
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] lineage.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.4K] lineage.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.7K] _lineage.component-theme.scss
│ │ │ │ │ │ │ │ │ │ └── [ 37K] lineage.component.ts
│ │ │ │ │ │ │ │ │ ├── [ 11K] provenance-event-table.component.html
│ │ │ │ │ │ │ │ │ ├── [1.3K] provenance-event-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.8K] provenance-event-table.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1004] _provenance-event-table.component-theme.scss
│ │ │ │ │ │ │ │ │ └── [ 16K] provenance-event-table.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] provenance-search-dialog
│ │ │ │ │ │ │ │ ├── [5.5K] provenance-search-dialog.component.html
│ │ │ │ │ │ │ │ ├── [1.1K] provenance-search-dialog.component.scss
│ │ │ │ │ │ │ │ ├── [3.2K] provenance-search-dialog.component.spec.ts
│ │ │ │ │ │ │ │ └── [ 10K] provenance-search-dialog.component.ts
│ │ │ │ │ │ │ ├── [4.0K] queue
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [1.1K] queue.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] queue.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.7K] queue.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1016] queue.component.ts
│ │ │ │ │ │ │ │ │ ├── [1.7K] queue.module.ts
│ │ │ │ │ │ │ │ │ └── [1.3K] queue-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ └── [4.5K] queue.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [1.4K] index.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] queue-listing
│ │ │ │ │ │ │ │ │ ├── [3.1K] index.ts
│ │ │ │ │ │ │ │ │ ├── [3.4K] queue-listing.actions.ts
│ │ │ │ │ │ │ │ │ ├── [ 15K] queue-listing.effects.ts
│ │ │ │ │ │ │ │ │ ├── [3.1K] queue-listing.reducer.ts
│ │ │ │ │ │ │ │ │ └── [2.0K] queue-listing.selectors.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ └── [4.0K] queue-listing
│ │ │ │ │ │ │ │ ├── [4.0K] flowfile-dialog
│ │ │ │ │ │ │ │ │ ├── [ 15K] flowfile-dialog.component.html
│ │ │ │ │ │ │ │ │ ├── [ 888] flowfile-dialog.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.5K] flowfile-dialog.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [2.8K] flowfile-dialog.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] flowfile-table
│ │ │ │ │ │ │ │ │ ├── [8.2K] flowfile-table.component.html
│ │ │ │ │ │ │ │ │ ├── [1.2K] flowfile-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.7K] flowfile-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [6.1K] flowfile-table.component.ts
│ │ │ │ │ │ │ │ ├── [2.2K] queue-listing.component.html
│ │ │ │ │ │ │ │ ├── [ 802] queue-listing.component.scss
│ │ │ │ │ │ │ │ ├── [1.5K] queue-listing.component.spec.ts
│ │ │ │ │ │ │ │ └── [4.8K] queue-listing.component.ts
│ │ │ │ │ │ │ ├── [4.0K] route-not-found
│ │ │ │ │ │ │ │ └── [4.0K] feature
│ │ │ │ │ │ │ │ ├── [1.0K] route-not-found.component.html
│ │ │ │ │ │ │ │ ├── [ 929] route-not-found.component.scss
│ │ │ │ │ │ │ │ ├── [2.0K] route-not-found.component.spec.ts
│ │ │ │ │ │ │ │ └── [1.1K] route-not-found.component.ts
│ │ │ │ │ │ │ ├── [4.0K] settings
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [1.8K] settings.component.html
│ │ │ │ │ │ │ │ │ ├── [ 852] settings.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.4K] settings.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [2.0K] settings.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.5K] settings.module.ts
│ │ │ │ │ │ │ │ │ └── [5.8K] settings-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ ├── [1.5K] controller.service.ts
│ │ │ │ │ │ │ │ │ ├── [4.1K] flow-analysis-rule.service.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] management-controller-service.service.ts
│ │ │ │ │ │ │ │ │ ├── [5.2K] parameter-provider.service.ts
│ │ │ │ │ │ │ │ │ ├── [3.1K] registry-client.service.ts
│ │ │ │ │ │ │ │ │ ├── [4.7K] reporting-task.service.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] resolver
│ │ │ │ │ │ │ │ │ ├── [3.7K] controller-service-advanced-ui-params.resolver.ts
│ │ │ │ │ │ │ │ │ ├── [3.6K] parameter-provider-advanced-ui-params.resolver.ts
│ │ │ │ │ │ │ │ │ └── [3.7K] reporting-task-advanced-ui-params.resolver.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] flow-analysis-rules
│ │ │ │ │ │ │ │ │ │ ├── [4.9K] flow-analysis-rules.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 25K] flow-analysis-rules.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.4K] flow-analysis-rules.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.2K] flow-analysis-rules.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [3.3K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] general
│ │ │ │ │ │ │ │ │ │ ├── [1.7K] general.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.5K] general.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.2K] general.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.3K] general.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [1.4K] index.ts
│ │ │ │ │ │ │ │ │ ├── [2.9K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] management-controller-services
│ │ │ │ │ │ │ │ │ │ ├── [2.0K] index.ts
│ │ │ │ │ │ │ │ │ │ ├── [5.4K] management-controller-services.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 33K] management-controller-services.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.8K] management-controller-services.reducer.ts
│ │ │ │ │ │ │ │ │ │ └── [2.3K] management-controller-services.selectors.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] parameter-providers
│ │ │ │ │ │ │ │ │ │ ├── [5.5K] index.ts
│ │ │ │ │ │ │ │ │ │ ├── [6.9K] parameter-providers.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 35K] parameter-providers.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.6K] parameter-providers.reducer.ts
│ │ │ │ │ │ │ │ │ │ └── [2.6K] parameter-providers.selectors.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] registry-clients
│ │ │ │ │ │ │ │ │ │ ├── [2.3K] index.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.6K] registry-clients.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 17K] registry-clients.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.3K] registry-clients.reducer.ts
│ │ │ │ │ │ │ │ │ │ └── [2.2K] registry-clients.selectors.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] reporting-tasks
│ │ │ │ │ │ │ │ │ ├── [3.0K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.8K] reporting-tasks.actions.ts
│ │ │ │ │ │ │ │ │ ├── [ 26K] reporting-tasks.effects.ts
│ │ │ │ │ │ │ │ │ ├── [4.1K] reporting-tasks.reducer.ts
│ │ │ │ │ │ │ │ │ └── [2.1K] reporting-tasks.selectors.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ ├── [4.0K] flow-analysis-rules
│ │ │ │ │ │ │ │ │ ├── [4.0K] create-flow-analysis-rule
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] create-flow-analysis-rule.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] create-flow-analysis-rule.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [3.1K] create-flow-analysis-rule.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [2.7K] create-flow-analysis-rule.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] edit-flow-analysis-rule
│ │ │ │ │ │ │ │ │ │ ├── [6.8K] edit-flow-analysis-rule.component.html
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] edit-flow-analysis-rule.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [5.5K] edit-flow-analysis-rule.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [8.6K] edit-flow-analysis-rule.component.ts
│ │ │ │ │ │ │ │ │ ├── [3.2K] flow-analysis-rules.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] flow-analysis-rules.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.7K] flow-analysis-rules.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [7.4K] flow-analysis-rules.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] flow-analysis-rule-table
│ │ │ │ │ │ │ │ │ ├── [8.3K] flow-analysis-rule-table.component.html
│ │ │ │ │ │ │ │ │ ├── [1.0K] flow-analysis-rule-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.6K] flow-analysis-rule-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [ 11K] flow-analysis-rule-table.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] general
│ │ │ │ │ │ │ │ │ ├── [1.1K] general.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] general.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.6K] general.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.8K] general.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] general-form
│ │ │ │ │ │ │ │ │ ├── [2.3K] general-form.component.html
│ │ │ │ │ │ │ │ │ ├── [ 934] general-form.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.0K] general-form.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [3.6K] general-form.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] management-controller-services
│ │ │ │ │ │ │ │ │ ├── [3.6K] management-controller-services.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] management-controller-services.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.8K] management-controller-services.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [8.8K] management-controller-services.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] parameter-providers
│ │ │ │ │ │ │ │ │ ├── [4.0K] create-parameter-provider
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] create-parameter-provider.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] create-parameter-provider.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [3.7K] create-parameter-provider.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [2.0K] create-parameter-provider.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] edit-parameter-provider
│ │ │ │ │ │ │ │ │ │ ├── [6.4K] edit-parameter-provider.component.html
│ │ │ │ │ │ │ │ │ │ ├── [1011] edit-parameter-provider.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [8.0K] edit-parameter-provider.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [8.1K] edit-parameter-provider.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] fetch-parameter-provider-parameters
│ │ │ │ │ │ │ │ │ │ ├── [ 23K] fetch-parameter-provider-parameters.component.html
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] fetch-parameter-provider-parameters.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [8.4K] fetch-parameter-provider-parameters.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [ 26K] fetch-parameter-provider-parameters.component.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] parameter-groups-table
│ │ │ │ │ │ │ │ │ │ ├── [2.5K] parameter-groups-table.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 925] parameter-groups-table.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] parameter-groups-table.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [3.7K] parameter-groups-table.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] parameter-context-references
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] parameter-provider-references.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.9K] parameter-provider-references.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [2.9K] parameter-providers-references.component.html
│ │ │ │ │ │ │ │ │ │ └── [ 948] parameter-providers-references.component.scss
│ │ │ │ │ │ │ │ │ ├── [3.5K] parameter-providers.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] parameter-providers.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.7K] parameter-providers.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [7.6K] parameter-providers.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] parameter-providers-table
│ │ │ │ │ │ │ │ │ ├── [8.4K] parameter-providers-table.component.html
│ │ │ │ │ │ │ │ │ ├── [1.0K] parameter-providers-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] parameter-providers-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [8.2K] parameter-providers-table.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] registry-clients
│ │ │ │ │ │ │ │ │ ├── [4.0K] create-registry-client
│ │ │ │ │ │ │ │ │ │ ├── [1.1K] create-registry-client.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 802] create-registry-client.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.9K] create-registry-client.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [3.4K] create-registry-client.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] edit-registry-client
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] edit-registry-client.component.html
│ │ │ │ │ │ │ │ │ │ ├── [1008] edit-registry-client.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [5.6K] edit-registry-client.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [6.3K] edit-registry-client.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.7K] registry-clients.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] registry-clients.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.6K] registry-clients.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [4.7K] registry-clients.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] registry-client-table
│ │ │ │ │ │ │ │ │ ├── [6.2K] registry-client-table.component.html
│ │ │ │ │ │ │ │ │ ├── [1.0K] registry-client-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] registry-client-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [6.1K] registry-client-table.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] reporting-tasks
│ │ │ │ │ │ │ │ ├── [4.0K] create-reporting-task
│ │ │ │ │ │ │ │ │ ├── [1.1K] create-reporting-task.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] create-reporting-task.component.scss
│ │ │ │ │ │ │ │ │ ├── [3.0K] create-reporting-task.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [2.7K] create-reporting-task.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] edit-reporting-task
│ │ │ │ │ │ │ │ │ ├── [8.2K] edit-reporting-task.component.html
│ │ │ │ │ │ │ │ │ ├── [1.1K] edit-reporting-task.component.scss
│ │ │ │ │ │ │ │ │ ├── [ 20K] edit-reporting-task.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [ 11K] edit-reporting-task.component.ts
│ │ │ │ │ │ │ │ ├── [3.3K] reporting-tasks.component.html
│ │ │ │ │ │ │ │ ├── [ 802] reporting-tasks.component.scss
│ │ │ │ │ │ │ │ ├── [1.6K] reporting-tasks.component.spec.ts
│ │ │ │ │ │ │ │ ├── [7.8K] reporting-tasks.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] reporting-task-table
│ │ │ │ │ │ │ │ ├── [8.9K] reporting-task-table.component.html
│ │ │ │ │ │ │ │ ├── [ 930] reporting-task-table.component.scss
│ │ │ │ │ │ │ │ ├── [1.5K] reporting-task-table.component.spec.ts
│ │ │ │ │ │ │ │ └── [ 12K] reporting-task-table.component.ts
│ │ │ │ │ │ │ ├── [4.0K] summary
│ │ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ │ ├── [2.2K] summary.component.html
│ │ │ │ │ │ │ │ │ ├── [ 880] summary.component.scss
│ │ │ │ │ │ │ │ │ ├── [2.4K] summary.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [3.0K] summary.component.ts
│ │ │ │ │ │ │ │ │ ├── [2.0K] summary.module.ts
│ │ │ │ │ │ │ │ │ └── [4.7K] summary-routing.module.ts
│ │ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ │ ├── [2.4K] component-cluster-status.service.ts
│ │ │ │ │ │ │ │ │ └── [1.7K] process-group-status.service.ts
│ │ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ │ ├── [4.0K] component-cluster-status
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] component-cluster-status.actions.ts
│ │ │ │ │ │ │ │ │ │ ├── [5.5K] component-cluster-status.effects.ts
│ │ │ │ │ │ │ │ │ │ ├── [3.2K] component-cluster-status.reducer.ts
│ │ │ │ │ │ │ │ │ │ ├── [1.8K] component-cluster-status.selectors.ts
│ │ │ │ │ │ │ │ │ │ └── [1.7K] index.ts
│ │ │ │ │ │ │ │ │ ├── [7.5K] index.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] summary-listing
│ │ │ │ │ │ │ │ │ ├── [2.3K] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.2K] summary-listing.actions.ts
│ │ │ │ │ │ │ │ │ ├── [ 11K] summary-listing.effects.ts
│ │ │ │ │ │ │ │ │ ├── [7.3K] summary-listing.reducer.ts
│ │ │ │ │ │ │ │ │ └── [4.9K] summary-listing.selectors.ts
│ │ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ │ │ │ ├── [4.0K] cluster-summary-dialog
│ │ │ │ │ │ │ │ │ │ ├── [4.2K] cluster-summary-dialog.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 962] cluster-summary-dialog.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [2.6K] cluster-summary-dialog.component.spec.ts
│ │ │ │ │ │ │ │ │ │ ├── [5.5K] cluster-summary-dialog.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] component-cluster-table
│ │ │ │ │ │ │ │ │ │ │ └── [4.4K] component-cluster-table.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] connection-cluster-table
│ │ │ │ │ │ │ │ │ │ │ ├── [6.1K] connection-cluster-table.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 921] connection-cluster-table.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.6K] connection-cluster-table.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [4.5K] connection-cluster-table.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] port-cluster-table
│ │ │ │ │ │ │ │ │ │ │ ├── [5.1K] port-cluster-table.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [1.0K] port-cluster-table.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.5K] port-cluster-table.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [4.6K] port-cluster-table.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] process-group-cluster-table
│ │ │ │ │ │ │ │ │ │ │ ├── [8.3K] process-group-cluster-table.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 924] process-group-cluster-table.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.6K] process-group-cluster-table.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [5.8K] process-group-cluster-table.component.ts
│ │ │ │ │ │ │ │ │ │ ├── [4.0K] processor-cluster-table
│ │ │ │ │ │ │ │ │ │ │ ├── [7.3K] processor-cluster-table.component.html
│ │ │ │ │ │ │ │ │ │ │ ├── [ 920] processor-cluster-table.component.scss
│ │ │ │ │ │ │ │ │ │ │ ├── [1.5K] processor-cluster-table.component.spec.ts
│ │ │ │ │ │ │ │ │ │ │ └── [5.6K] processor-cluster-table.component.ts
│ │ │ │ │ │ │ │ │ │ └── [4.0K] remote-process-group-cluster-table
│ │ │ │ │ │ │ │ │ │ ├── [5.3K] remote-process-group-cluster-table.component.html
│ │ │ │ │ │ │ │ │ │ ├── [ 931] remote-process-group-cluster-table.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.6K] remote-process-group-cluster-table.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [4.7K] remote-process-group-cluster-table.component.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] component-status-table
│ │ │ │ │ │ │ │ │ │ └── [8.0K] component-status-table.component.ts
│ │ │ │ │ │ │ │ │ ├── [ 947] index.ts
│ │ │ │ │ │ │ │ │ ├── [4.0K] port-status-table
│ │ │ │ │ │ │ │ │ │ ├── [ 11K] port-status-table.component.html
│ │ │ │ │ │ │ │ │ │ ├── [1.0K] port-status-table.component.scss
│ │ │ │ │ │ │ │ │ │ ├── [1.5K] port-status-table.component.spec.ts
│ │ │ │ │ │ │ │ │ │ └── [7.2K] port-status-table.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] summary-table-filter
│ │ │ │ │ │ │ │ │ ├── [4.7K] summary-table-filter.component.html
│ │ │ │ │ │ │ │ │ ├── [ 979] summary-table-filter.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] summary-table-filter.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [ 13K] summary-table-filter.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] connection-status-listing
│ │ │ │ │ │ │ │ │ ├── [1.9K] connection-status-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 814] connection-status-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.7K] connection-status-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [5.9K] connection-status-listing.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] connection-status-table
│ │ │ │ │ │ │ │ │ ├── [ 14K] connection-status-table.component.html
│ │ │ │ │ │ │ │ │ ├── [ 932] connection-status-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] connection-status-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [8.5K] connection-status-table.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] input-port-status-listing
│ │ │ │ │ │ │ │ │ ├── [1.8K] input-port-status-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 814] input-port-status-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.7K] input-port-status-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [4.4K] input-port-status-listing.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] output-port-status-listing
│ │ │ │ │ │ │ │ │ ├── [1.8K] output-port-status-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 814] output-port-status-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.7K] output-port-status-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [4.4K] output-port-status-listing.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] process-group-status-listing
│ │ │ │ │ │ │ │ │ ├── [2.0K] process-group-status-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 814] process-group-status-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.8K] process-group-status-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [6.0K] process-group-status-listing.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] process-group-status-table
│ │ │ │ │ │ │ │ │ ├── [ 22K] process-group-status-table.component.html
│ │ │ │ │ │ │ │ │ ├── [ 935] process-group-status-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] process-group-status-table.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [ 14K] process-group-status-table.component.ts
│ │ │ │ │ │ │ │ ├── [4.0K] processor-status-listing
│ │ │ │ │ │ │ │ │ ├── [1.9K] processor-status-listing.component.html
│ │ │ │ │ │ │ │ │ ├── [ 814] processor-status-listing.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.7K] processor-status-listing.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [6.9K] processor-status-listing.component.ts
│ │ │ │ │ │ │ │ │ └── [4.0K] processor-status-table
│ │ │ │ │ │ │ │ │ ├── [ 17K] processor-status-table.component.html
│ │ │ │ │ │ │ │ │ ├── [1.1K] processor-status-table.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] processor-status-table.component.spec.ts
│ │ │ │ │ │ │ │ │ ├── [1.0K] _processor-status-table.component-theme.scss
│ │ │ │ │ │ │ │ │ └── [9.3K] processor-status-table.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] remote-process-group-status-listing
│ │ │ │ │ │ │ │ ├── [1.9K] remote-process-group-status-listing.component.html
│ │ │ │ │ │ │ │ ├── [ 814] remote-process-group-status-listing.component.scss
│ │ │ │ │ │ │ │ ├── [1.8K] remote-process-group-status-listing.component.spec.ts
│ │ │ │ │ │ │ │ ├── [6.0K] remote-process-group-status-listing.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] remote-process-group-status-table
│ │ │ │ │ │ │ │ ├── [ 11K] remote-process-group-status-table.component.html
│ │ │ │ │ │ │ │ ├── [ 942] remote-process-group-status-table.component.scss
│ │ │ │ │ │ │ │ ├── [1.6K] remote-process-group-status-table.component.spec.ts
│ │ │ │ │ │ │ │ └── [7.5K] remote-process-group-status-table.component.ts
│ │ │ │ │ │ │ └── [4.0K] users
│ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ ├── [1.2K] users.component.html
│ │ │ │ │ │ │ │ ├── [ 814] users.component.scss
│ │ │ │ │ │ │ │ ├── [2.3K] users.component.spec.ts
│ │ │ │ │ │ │ │ ├── [1.3K] users.component.ts
│ │ │ │ │ │ │ │ ├── [1.8K] users.module.ts
│ │ │ │ │ │ │ │ └── [1.8K] users-routing.module.ts
│ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ └── [4.3K] users.service.ts
│ │ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ │ ├── [1.3K] index.ts
│ │ │ │ │ │ │ │ └── [4.0K] user-listing
│ │ │ │ │ │ │ │ ├── [2.9K] index.ts
│ │ │ │ │ │ │ │ ├── [4.6K] user-listing.actions.ts
│ │ │ │ │ │ │ │ ├── [ 33K] user-listing.effects.ts
│ │ │ │ │ │ │ │ ├── [2.5K] user-listing.reducer.ts
│ │ │ │ │ │ │ │ └── [2.7K] user-listing.selectors.ts
│ │ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ │ └── [4.0K] user-listing
│ │ │ │ │ │ │ ├── [4.0K] user-access-policies
│ │ │ │ │ │ │ │ ├── [5.1K] user-access-policies.component.html
│ │ │ │ │ │ │ │ ├── [ 900] user-access-policies.component.scss
│ │ │ │ │ │ │ │ ├── [2.5K] user-access-policies.component.spec.ts
│ │ │ │ │ │ │ │ └── [ 12K] user-access-policies.component.ts
│ │ │ │ │ │ │ ├── [2.6K] user-listing.component.html
│ │ │ │ │ │ │ ├── [ 814] user-listing.component.scss
│ │ │ │ │ │ │ ├── [1.5K] user-listing.component.spec.ts
│ │ │ │ │ │ │ ├── [6.6K] user-listing.component.ts
│ │ │ │ │ │ │ └── [4.0K] user-table
│ │ │ │ │ │ │ ├── [6.2K] user-table.component.html
│ │ │ │ │ │ │ ├── [ 814] user-table.component.scss
│ │ │ │ │ │ │ ├── [6.0K] user-table.component.spec.ts
│ │ │ │ │ │ │ └── [9.7K] user-table.component.ts
│ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ ├── [1.2K] about.service.ts
│ │ │ │ │ │ │ ├── [1.7K] auth.service.ts
│ │ │ │ │ │ │ ├── [1.3K] banner-text.service.ts
│ │ │ │ │ │ │ ├── [1.1K] client.service.spec.ts
│ │ │ │ │ │ │ ├── [1.7K] client.service.ts
│ │ │ │ │ │ │ ├── [1.4K] cluster-connection.service.ts
│ │ │ │ │ │ │ ├── [1.6K] cluster.service.ts
│ │ │ │ │ │ │ ├── [1.6K] component-state.service.ts
│ │ │ │ │ │ │ ├── [5.5K] controller-service-state.service.ts
│ │ │ │ │ │ │ ├── [1.2K] current-user.service.ts
│ │ │ │ │ │ │ ├── [3.4K] error-helper.service.ts
│ │ │ │ │ │ │ ├── [4.1K] extension-types.service.ts
│ │ │ │ │ │ │ ├── [1.2K] flow-configuration.service.ts
│ │ │ │ │ │ │ ├── [4.0K] guard
│ │ │ │ │ │ │ │ ├── [1.3K] authentication.guard.spec.ts
│ │ │ │ │ │ │ │ ├── [4.5K] authentication.guard.ts
│ │ │ │ │ │ │ │ ├── [2.2K] authorization.guard.ts
│ │ │ │ │ │ │ │ ├── [3.3K] flow-configuration.guard.ts
│ │ │ │ │ │ │ │ └── [3.4K] login-configuration.guard.ts
│ │ │ │ │ │ │ ├── [4.0K] interceptors
│ │ │ │ │ │ │ │ ├── [3.5K] auth.interceptor.ts
│ │ │ │ │ │ │ │ ├── [1.3K] loading.interceptor.ts
│ │ │ │ │ │ │ │ └── [2.4K] polling.interceptor.ts
│ │ │ │ │ │ │ ├── [1.2K] loading.service.spec.ts
│ │ │ │ │ │ │ ├── [1.6K] loading.service.ts
│ │ │ │ │ │ │ ├── [ 13K] property-table-helper.service.ts
│ │ │ │ │ │ │ ├── [2.8K] property-verification.service.ts
│ │ │ │ │ │ │ ├── [2.2K] status-history.service.ts
│ │ │ │ │ │ │ └── [1.5K] system-diagnostics.service.ts
│ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ ├── [4.0K] about
│ │ │ │ │ │ │ │ ├── [1.1K] about.actions.ts
│ │ │ │ │ │ │ │ ├── [2.7K] about.effects.ts
│ │ │ │ │ │ │ │ ├── [1.3K] about.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.1K] about.selectors.ts
│ │ │ │ │ │ │ │ └── [1.2K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] banner-text
│ │ │ │ │ │ │ │ ├── [1.1K] banner-text.actions.ts
│ │ │ │ │ │ │ │ ├── [2.2K] banner-text.effects.ts
│ │ │ │ │ │ │ │ ├── [1.4K] banner-text.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.1K] banner-text.selectors.ts
│ │ │ │ │ │ │ │ └── [1.2K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] cluster-summary
│ │ │ │ │ │ │ │ ├── [2.3K] cluster-summary.actions.ts
│ │ │ │ │ │ │ │ ├── [7.6K] cluster-summary.effects.ts
│ │ │ │ │ │ │ │ ├── [2.1K] cluster-summary.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.6K] cluster-summary.selectors.ts
│ │ │ │ │ │ │ │ └── [1.6K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] component-state
│ │ │ │ │ │ │ │ ├── [1.9K] component-state.actions.ts
│ │ │ │ │ │ │ │ ├── [7.1K] component-state.effects.ts
│ │ │ │ │ │ │ │ ├── [1.8K] component-state.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.6K] component-state.selectors.ts
│ │ │ │ │ │ │ │ └── [1.9K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] contoller-service-state
│ │ │ │ │ │ │ │ ├── [3.5K] controller-service-state.actions.ts
│ │ │ │ │ │ │ │ ├── [ 22K] controller-service-state.effects.ts
│ │ │ │ │ │ │ │ ├── [3.2K] controller-service-state.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.4K] controller-service-state.selectors.ts
│ │ │ │ │ │ │ │ └── [2.6K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] copy
│ │ │ │ │ │ │ │ ├── [1.2K] copy.actions.ts
│ │ │ │ │ │ │ │ ├── [ 896] copy.effects.ts
│ │ │ │ │ │ │ │ ├── [1.9K] copy.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.1K] copy.selectors.ts
│ │ │ │ │ │ │ │ └── [2.2K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] current-user
│ │ │ │ │ │ │ │ ├── [1.6K] current-user.actions.ts
│ │ │ │ │ │ │ │ ├── [4.1K] current-user.effects.ts
│ │ │ │ │ │ │ │ ├── [2.1K] current-user.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.3K] current-user.selectors.ts
│ │ │ │ │ │ │ │ └── [1.7K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] documentation
│ │ │ │ │ │ │ │ ├── [1.2K] documentation.actions.ts
│ │ │ │ │ │ │ │ ├── [2.2K] documentation.effects.ts
│ │ │ │ │ │ │ │ └── [1.2K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] document-visibility
│ │ │ │ │ │ │ │ ├── [1.1K] document-visibility.actions.ts
│ │ │ │ │ │ │ │ ├── [1.4K] document-visibility.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.0K] document-visibility.selectors.ts
│ │ │ │ │ │ │ │ └── [1.2K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] error
│ │ │ │ │ │ │ │ ├── [1.6K] error.actions.ts
│ │ │ │ │ │ │ │ ├── [2.1K] error.effects.ts
│ │ │ │ │ │ │ │ ├── [2.3K] error.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.5K] error.selectors.ts
│ │ │ │ │ │ │ │ └── [2.2K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] extension-types
│ │ │ │ │ │ │ │ ├── [2.5K] extension-types.actions.ts
│ │ │ │ │ │ │ │ ├── [8.8K] extension-types.effects.ts
│ │ │ │ │ │ │ │ ├── [3.8K] extension-types.reducer.ts
│ │ │ │ │ │ │ │ ├── [5.7K] extension-types.selectors.ts
│ │ │ │ │ │ │ │ └── [2.3K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] flow-configuration
│ │ │ │ │ │ │ │ ├── [1.2K] flow-configuration.actions.ts
│ │ │ │ │ │ │ │ ├── [2.6K] flow-configuration.effects.ts
│ │ │ │ │ │ │ │ ├── [1.4K] flow-configuration.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.6K] flow-configuration.selectors.ts
│ │ │ │ │ │ │ │ └── [1.4K] index.ts
│ │ │ │ │ │ │ ├── [5.3K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] login-configuration
│ │ │ │ │ │ │ │ ├── [1.2K] index.ts
│ │ │ │ │ │ │ │ ├── [1.2K] login-configuration.actions.ts
│ │ │ │ │ │ │ │ ├── [2.5K] login-configuration.effects.ts
│ │ │ │ │ │ │ │ ├── [1.5K] login-configuration.reducer.ts
│ │ │ │ │ │ │ │ └── [1.6K] login-configuration.selectors.ts
│ │ │ │ │ │ │ ├── [4.0K] navigation
│ │ │ │ │ │ │ │ ├── [1.0K] index.ts
│ │ │ │ │ │ │ │ ├── [1.1K] navigation.actions.ts
│ │ │ │ │ │ │ │ ├── [2.6K] navigation.reducer.ts
│ │ │ │ │ │ │ │ └── [1.3K] navigation.selectors.ts
│ │ │ │ │ │ │ ├── [4.0K] property-verification
│ │ │ │ │ │ │ │ ├── [2.6K] index.ts
│ │ │ │ │ │ │ │ ├── [2.8K] property-verification.actions.ts
│ │ │ │ │ │ │ │ ├── [ 14K] property-verification.effects.ts
│ │ │ │ │ │ │ │ ├── [2.8K] property-verification.reducer.ts
│ │ │ │ │ │ │ │ └── [1.9K] property-verification.selectors.ts
│ │ │ │ │ │ │ ├── [4.0K] shared
│ │ │ │ │ │ │ │ └── [ 13K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] status-history
│ │ │ │ │ │ │ │ ├── [2.1K] index.ts
│ │ │ │ │ │ │ │ ├── [2.6K] status-history.actions.ts
│ │ │ │ │ │ │ │ ├── [9.9K] status-history.effects.ts
│ │ │ │ │ │ │ │ ├── [2.1K] status-history.reducer.ts
│ │ │ │ │ │ │ │ └── [1.5K] status-history.selectors.ts
│ │ │ │ │ │ │ └── [4.0K] system-diagnostics
│ │ │ │ │ │ │ ├── [3.2K] index.ts
│ │ │ │ │ │ │ ├── [2.4K] system-diagnostics.actions.ts
│ │ │ │ │ │ │ ├── [6.1K] system-diagnostics.effects.ts
│ │ │ │ │ │ │ ├── [2.2K] system-diagnostics.reducer.ts
│ │ │ │ │ │ │ └── [1.7K] system-diagnostics.selectors.ts
│ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ └── [4.0K] common
│ │ │ │ │ │ ├── [4.0K] about-dialog
│ │ │ │ │ │ │ ├── [2.4K] about-dialog.component.html
│ │ │ │ │ │ │ ├── [ 892] about-dialog.component.scss
│ │ │ │ │ │ │ ├── [1.7K] about-dialog.component.spec.ts
│ │ │ │ │ │ │ └── [2.0K] about-dialog.component.ts
│ │ │ │ │ │ ├── [4.0K] advanced-ui
│ │ │ │ │ │ │ ├── [1.3K] advanced-ui.component.html
│ │ │ │ │ │ │ ├── [ 802] advanced-ui.component.scss
│ │ │ │ │ │ │ ├── [3.8K] advanced-ui.component.spec.ts
│ │ │ │ │ │ │ └── [3.8K] advanced-ui.component.ts
│ │ │ │ │ │ ├── [4.0K] banner-text
│ │ │ │ │ │ │ ├── [1.3K] banner-text.component.html
│ │ │ │ │ │ │ ├── [ 802] banner-text.component.scss
│ │ │ │ │ │ │ ├── [1.8K] banner-text.component.spec.ts
│ │ │ │ │ │ │ └── [1.5K] banner-text.component.ts
│ │ │ │ │ │ ├── [4.0K] cancel-dialog
│ │ │ │ │ │ │ ├── [1.1K] cancel-dialog.component.html
│ │ │ │ │ │ │ ├── [ 802] cancel-dialog.component.scss
│ │ │ │ │ │ │ ├── [1.7K] cancel-dialog.component.spec.ts
│ │ │ │ │ │ │ └── [1.5K] cancel-dialog.component.ts
│ │ │ │ │ │ ├── [4.0K] change-component-version-dialog
│ │ │ │ │ │ │ ├── [3.7K] change-component-version-dialog.html
│ │ │ │ │ │ │ ├── [ 802] change-component-version-dialog.scss
│ │ │ │ │ │ │ ├── [3.9K] change-component-version-dialog.spec.ts
│ │ │ │ │ │ │ └── [3.4K] change-component-version-dialog.ts
│ │ │ │ │ │ ├── [4.0K] component-state
│ │ │ │ │ │ │ ├── [5.3K] component-state.component.html
│ │ │ │ │ │ │ ├── [1.0K] component-state.component.scss
│ │ │ │ │ │ │ ├── [1.8K] component-state.component.spec.ts
│ │ │ │ │ │ │ └── [7.8K] component-state.component.ts
│ │ │ │ │ │ ├── [4.0K] context-error-banner
│ │ │ │ │ │ │ ├── [ 912] context-error-banner.component.html
│ │ │ │ │ │ │ ├── [ 809] context-error-banner.component.scss
│ │ │ │ │ │ │ ├── [1.9K] context-error-banner.component.spec.ts
│ │ │ │ │ │ │ └── [2.3K] context-error-banner.component.ts
│ │ │ │ │ │ ├── [4.0K] context-menu
│ │ │ │ │ │ │ ├── [3.4K] context-menu.component.html
│ │ │ │ │ │ │ ├── [1.8K] context-menu.component.scss
│ │ │ │ │ │ │ ├── [1.5K] context-menu.component.spec.ts
│ │ │ │ │ │ │ ├── [1.8K] _context-menu.component-theme.scss
│ │ │ │ │ │ │ └── [5.4K] context-menu.component.ts
│ │ │ │ │ │ ├── [4.0K] controller-service
│ │ │ │ │ │ │ ├── [4.0K] controller-service-api
│ │ │ │ │ │ │ │ ├── [ 878] controller-service-api.component.html
│ │ │ │ │ │ │ │ ├── [ 802] controller-service-api.component.scss
│ │ │ │ │ │ │ │ ├── [2.0K] controller-service-api.component.spec.ts
│ │ │ │ │ │ │ │ └── [1.5K] controller-service-api.component.ts
│ │ │ │ │ │ │ ├── [4.0K] controller-service-references
│ │ │ │ │ │ │ │ ├── [9.9K] controller-service-references.component.html
│ │ │ │ │ │ │ │ ├── [ 948] controller-service-references.component.scss
│ │ │ │ │ │ │ │ ├── [1.5K] controller-service-references.component.spec.ts
│ │ │ │ │ │ │ │ └── [4.8K] controller-service-references.component.ts
│ │ │ │ │ │ │ ├── [4.0K] controller-service-table
│ │ │ │ │ │ │ │ ├── [9.7K] controller-service-table.component.html
│ │ │ │ │ │ │ │ ├── [1.0K] controller-service-table.component.scss
│ │ │ │ │ │ │ │ ├── [1.5K] controller-service-table.component.spec.ts
│ │ │ │ │ │ │ │ └── [ 13K] controller-service-table.component.ts
│ │ │ │ │ │ │ ├── [4.0K] create-controller-service
│ │ │ │ │ │ │ │ ├── [1.1K] create-controller-service.component.html
│ │ │ │ │ │ │ │ ├── [ 802] create-controller-service.component.scss
│ │ │ │ │ │ │ │ ├── [3.4K] create-controller-service.component.spec.ts
│ │ │ │ │ │ │ │ └── [2.0K] create-controller-service.component.ts
│ │ │ │ │ │ │ ├── [4.0K] disable-controller-service
│ │ │ │ │ │ │ │ ├── [ 11K] disable-controller-service.component.html
│ │ │ │ │ │ │ │ ├── [ 911] disable-controller-service.component.scss
│ │ │ │ │ │ │ │ ├── [ 17K] disable-controller-service.component.spec.ts
│ │ │ │ │ │ │ │ └── [4.5K] disable-controller-service.component.ts
│ │ │ │ │ │ │ ├── [4.0K] edit-controller-service
│ │ │ │ │ │ │ │ ├── [8.9K] edit-controller-service.component.html
│ │ │ │ │ │ │ │ ├── [1.1K] edit-controller-service.component.scss
│ │ │ │ │ │ │ │ ├── [ 29K] edit-controller-service.component.spec.ts
│ │ │ │ │ │ │ │ └── [9.1K] edit-controller-service.component.ts
│ │ │ │ │ │ │ └── [4.0K] enable-controller-service
│ │ │ │ │ │ │ ├── [ 12K] enable-controller-service.component.html
│ │ │ │ │ │ │ ├── [ 964] enable-controller-service.component.scss
│ │ │ │ │ │ │ ├── [ 17K] enable-controller-service.component.spec.ts
│ │ │ │ │ │ │ └── [5.3K] enable-controller-service.component.ts
│ │ │ │ │ │ ├── [4.0K] edit-parameter-dialog
│ │ │ │ │ │ │ ├── [3.2K] edit-parameter-dialog.component.html
│ │ │ │ │ │ │ ├── [1002] edit-parameter-dialog.component.scss
│ │ │ │ │ │ │ ├── [2.5K] edit-parameter-dialog.component.spec.ts
│ │ │ │ │ │ │ └── [8.5K] edit-parameter-dialog.component.ts
│ │ │ │ │ │ ├── [4.0K] edit-tenant
│ │ │ │ │ │ │ ├── [3.4K] edit-tenant-dialog.component.html
│ │ │ │ │ │ │ ├── [1.1K] edit-tenant-dialog.component.scss
│ │ │ │ │ │ │ ├── [ 33K] edit-tenant-dialog.component.spec.ts
│ │ │ │ │ │ │ └── [9.3K] edit-tenant-dialog.component.ts
│ │ │ │ │ │ ├── [4.0K] error-banner
│ │ │ │ │ │ │ ├── [1.9K] error-banner.component.html
│ │ │ │ │ │ │ ├── [1.0K] error-banner.component.scss
│ │ │ │ │ │ │ ├── [1.3K] error-banner.component.spec.ts
│ │ │ │ │ │ │ └── [1.4K] error-banner.component.ts
│ │ │ │ │ │ ├── [4.0K] extension-creation
│ │ │ │ │ │ │ ├── [8.3K] extension-creation.component.html
│ │ │ │ │ │ │ ├── [1.3K] extension-creation.component.scss
│ │ │ │ │ │ │ ├── [3.8K] extension-creation.component.spec.ts
│ │ │ │ │ │ │ ├── [1.0K] _extension-creation.component-theme.scss
│ │ │ │ │ │ │ ├── [9.7K] extension-creation.component.ts
│ │ │ │ │ │ │ └── [4.0K] filter-predicate
│ │ │ │ │ │ │ ├── [1.6K] camel-case.search.spec.ts
│ │ │ │ │ │ │ ├── [1.2K] camel-case.search.ts
│ │ │ │ │ │ │ ├── [3.0K] extensions.spec.ts
│ │ │ │ │ │ │ ├── [1.2K] extensions.ts
│ │ │ │ │ │ │ └── [ 874] filter-predicate.ts
│ │ │ │ │ │ ├── [4.0K] navigation
│ │ │ │ │ │ │ ├── [ 12K] navigation.component.html
│ │ │ │ │ │ │ ├── [1.2K] navigation.component.scss
│ │ │ │ │ │ │ ├── [3.6K] navigation.component.spec.ts
│ │ │ │ │ │ │ ├── [1.4K] _navigation.component-theme.scss
│ │ │ │ │ │ │ └── [6.0K] navigation.component.ts
│ │ │ │ │ │ ├── [4.0K] new-property-dialog
│ │ │ │ │ │ │ ├── [2.0K] new-property-dialog.component.html
│ │ │ │ │ │ │ ├── [ 951] new-property-dialog.component.scss
│ │ │ │ │ │ │ ├── [2.0K] new-property-dialog.component.spec.ts
│ │ │ │ │ │ │ └── [3.6K] new-property-dialog.component.ts
│ │ │ │ │ │ ├── [4.0K] ok-dialog
│ │ │ │ │ │ │ ├── [1.1K] ok-dialog.component.html
│ │ │ │ │ │ │ ├── [ 802] ok-dialog.component.scss
│ │ │ │ │ │ │ ├── [1.7K] ok-dialog.component.spec.ts
│ │ │ │ │ │ │ └── [1.5K] ok-dialog.component.ts
│ │ │ │ │ │ ├── [4.0K] page-content
│ │ │ │ │ │ │ ├── [1.3K] page-content.component.html
│ │ │ │ │ │ │ ├── [ 802] page-content.component.scss
│ │ │ │ │ │ │ ├── [2.0K] page-content.component.spec.ts
│ │ │ │ │ │ │ └── [1.7K] page-content.component.ts
│ │ │ │ │ │ ├── [4.0K] parameter-context
│ │ │ │ │ │ │ ├── [4.0K] edit-parameter-context
│ │ │ │ │ │ │ │ ├── [ 10K] edit-parameter-context.component.html
│ │ │ │ │ │ │ │ ├── [1019] edit-parameter-context.component.scss
│ │ │ │ │ │ │ │ ├── [ 10K] edit-parameter-context.component.spec.ts
│ │ │ │ │ │ │ │ └── [9.3K] edit-parameter-context.component.ts
│ │ │ │ │ │ │ ├── [1.4K] index.ts
│ │ │ │ │ │ │ └── [4.0K] parameter-context-inheritance
│ │ │ │ │ │ │ ├── [5.9K] parameter-context-inheritance.component.html
│ │ │ │ │ │ │ ├── [1.3K] parameter-context-inheritance.component.scss
│ │ │ │ │ │ │ ├── [3.9K] parameter-context-inheritance.component.spec.ts
│ │ │ │ │ │ │ └── [7.4K] parameter-context-inheritance.component.ts
│ │ │ │ │ │ ├── [4.0K] parameter-references
│ │ │ │ │ │ │ ├── [7.6K] parameter-references.component.html
│ │ │ │ │ │ │ ├── [ 939] parameter-references.component.scss
│ │ │ │ │ │ │ ├── [1.4K] parameter-references.component.spec.ts
│ │ │ │ │ │ │ └── [5.8K] parameter-references.component.ts
│ │ │ │ │ │ ├── [4.0K] property-table
│ │ │ │ │ │ │ ├── [4.0K] editors
│ │ │ │ │ │ │ │ ├── [4.0K] combo-editor
│ │ │ │ │ │ │ │ │ ├── [6.9K] combo-editor.component.html
│ │ │ │ │ │ │ │ │ ├── [ 986] combo-editor.component.scss
│ │ │ │ │ │ │ │ │ ├── [9.0K] combo-editor.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [ 12K] combo-editor.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] nf-editor
│ │ │ │ │ │ │ │ ├── [4.0K] modes
│ │ │ │ │ │ │ │ │ ├── [1.2K] el.service.ts
│ │ │ │ │ │ │ │ │ ├── [ 45K] nfel.ts
│ │ │ │ │ │ │ │ │ └── [ 18K] nfpr.ts
│ │ │ │ │ │ │ │ ├── [3.2K] nf-editor.component.html
│ │ │ │ │ │ │ │ ├── [1.0K] nf-editor.component.scss
│ │ │ │ │ │ │ │ ├── [4.3K] nf-editor.component.spec.ts
│ │ │ │ │ │ │ │ ├── [1.1K] _nf-editor.component-theme.scss
│ │ │ │ │ │ │ │ └── [9.1K] nf-editor.component.ts
│ │ │ │ │ │ │ ├── [ 11K] property-table.component.html
│ │ │ │ │ │ │ ├── [ 802] property-table.component.scss
│ │ │ │ │ │ │ ├── [1.4K] property-table.component.spec.ts
│ │ │ │ │ │ │ └── [ 22K] property-table.component.ts
│ │ │ │ │ │ ├── [4.0K] property-verification
│ │ │ │ │ │ │ ├── [4.0K] common
│ │ │ │ │ │ │ │ ├── [4.0K] property-verification-progress
│ │ │ │ │ │ │ │ │ ├── [2.0K] property-verification-progress.component.html
│ │ │ │ │ │ │ │ │ ├── [ 802] property-verification-progress.component.scss
│ │ │ │ │ │ │ │ │ ├── [1.5K] property-verification-progress.component.spec.ts
│ │ │ │ │ │ │ │ │ └── [1.9K] property-verification-progress.component.ts
│ │ │ │ │ │ │ │ └── [4.0K] referenced-attributes-dialog
│ │ │ │ │ │ │ │ ├── [2.3K] referenced-attributes-dialog.component.html
│ │ │ │ │ │ │ │ ├── [ 802] referenced-attributes-dialog.component.scss
│ │ │ │ │ │ │ │ ├── [1.8K] referenced-attributes-dialog.component.spec.ts
│ │ │ │ │ │ │ │ └── [2.8K] referenced-attributes-dialog.component.ts
│ │ │ │ │ │ │ ├── [2.9K] property-verification.component.html
│ │ │ │ │ │ │ ├── [ 900] property-verification.component.scss
│ │ │ │ │ │ │ ├── [1.4K] property-verification.component.spec.ts
│ │ │ │ │ │ │ └── [1.8K] property-verification.component.ts
│ │ │ │ │ │ ├── [4.0K] provenance-event-dialog
│ │ │ │ │ │ │ ├── [ 31K] provenance-event-dialog.component.html
│ │ │ │ │ │ │ ├── [1.0K] provenance-event-dialog.component.scss
│ │ │ │ │ │ │ ├── [3.3K] provenance-event-dialog.component.spec.ts
│ │ │ │ │ │ │ └── [3.5K] provenance-event-dialog.component.ts
│ │ │ │ │ │ ├── [4.0K] spinner
│ │ │ │ │ │ │ ├── [1.4K] nifi-spinner.directive.ts
│ │ │ │ │ │ │ └── [1009] spinner.component.ts
│ │ │ │ │ │ ├── [4.0K] status-history
│ │ │ │ │ │ │ ├── [1.2K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] status-history-chart
│ │ │ │ │ │ │ │ ├── [1.0K] status-history-chart.component.html
│ │ │ │ │ │ │ │ ├── [ 814] status-history-chart.component.scss
│ │ │ │ │ │ │ │ ├── [1.4K] status-history-chart.component.spec.ts
│ │ │ │ │ │ │ │ └── [ 23K] status-history-chart.component.ts
│ │ │ │ │ │ │ ├── [ 15K] status-history.component.html
│ │ │ │ │ │ │ ├── [2.7K] status-history.component.scss
│ │ │ │ │ │ │ ├── [1.8K] status-history.component.spec.ts
│ │ │ │ │ │ │ ├── [1.2K] _status-history.component-theme.scss
│ │ │ │ │ │ │ └── [ 12K] status-history.component.ts
│ │ │ │ │ │ ├── [4.0K] system-diagnostics-dialog
│ │ │ │ │ │ │ ├── [ 16K] system-diagnostics-dialog.component.html
│ │ │ │ │ │ │ ├── [1.1K] system-diagnostics-dialog.component.scss
│ │ │ │ │ │ │ ├── [1.8K] system-diagnostics-dialog.component.spec.ts
│ │ │ │ │ │ │ └── [3.8K] system-diagnostics-dialog.component.ts
│ │ │ │ │ │ ├── [4.0K] tabbed-dialog
│ │ │ │ │ │ │ └── [1.5K] tabbed-dialog.component.ts
│ │ │ │ │ │ └── [4.0K] tooltips
│ │ │ │ │ │ ├── [4.0K] bulletins-tip
│ │ │ │ │ │ │ ├── [1.8K] bulletins-tip.component.html
│ │ │ │ │ │ │ ├── [ 838] bulletins-tip.component.scss
│ │ │ │ │ │ │ ├── [1.4K] bulletins-tip.component.spec.ts
│ │ │ │ │ │ │ └── [1.5K] bulletins-tip.component.ts
│ │ │ │ │ │ ├── [4.0K] controller-service-api-tip
│ │ │ │ │ │ │ ├── [1.1K] controller-service-api-tip.component.html
│ │ │ │ │ │ │ ├── [ 802] controller-service-api-tip.component.scss
│ │ │ │ │ │ │ ├── [1.4K] controller-service-api-tip.component.spec.ts
│ │ │ │ │ │ │ └── [1.3K] controller-service-api-tip.component.ts
│ │ │ │ │ │ ├── [4.0K] garbage-collection-tip
│ │ │ │ │ │ │ ├── [1018] garbage-collection-tip.component.html
│ │ │ │ │ │ │ ├── [ 802] garbage-collection-tip.component.scss
│ │ │ │ │ │ │ ├── [1.4K] garbage-collection-tip.component.spec.ts
│ │ │ │ │ │ │ └── [1.6K] garbage-collection-tip.component.ts
│ │ │ │ │ │ ├── [4.0K] process-group-tip
│ │ │ │ │ │ │ ├── [1009] process-group-tip.component.html
│ │ │ │ │ │ │ ├── [ 848] process-group-tip.component.scss
│ │ │ │ │ │ │ ├── [1.4K] process-group-tip.component.spec.ts
│ │ │ │ │ │ │ └── [1.3K] process-group-tip.component.ts
│ │ │ │ │ │ ├── [4.0K] property-tip
│ │ │ │ │ │ │ ├── [2.4K] property-tip.component.html
│ │ │ │ │ │ │ ├── [ 802] property-tip.component.scss
│ │ │ │ │ │ │ ├── [1.3K] property-tip.component.spec.ts
│ │ │ │ │ │ │ └── [1.8K] property-tip.component.ts
│ │ │ │ │ │ ├── [4.0K] restrictions-tip
│ │ │ │ │ │ │ ├── [1.3K] restrictions-tip.component.html
│ │ │ │ │ │ │ ├── [ 802] restrictions-tip.component.scss
│ │ │ │ │ │ │ ├── [1.4K] restrictions-tip.component.spec.ts
│ │ │ │ │ │ │ └── [1.8K] restrictions-tip.component.ts
│ │ │ │ │ │ ├── [4.0K] search-match-tip
│ │ │ │ │ │ │ ├── [ 985] search-match-tip.component.html
│ │ │ │ │ │ │ ├── [ 802] search-match-tip.component.scss
│ │ │ │ │ │ │ ├── [1.4K] search-match-tip.component.spec.ts
│ │ │ │ │ │ │ └── [1.1K] search-match-tip.component.ts
│ │ │ │ │ │ ├── [4.0K] unordered-list-tip
│ │ │ │ │ │ │ ├── [ 960] unordered-list-tip.component.html
│ │ │ │ │ │ │ ├── [ 802] unordered-list-tip.component.scss
│ │ │ │ │ │ │ ├── [1.4K] unordered-list-tip.component.spec.ts
│ │ │ │ │ │ │ └── [1.2K] unordered-list-tip.component.ts
│ │ │ │ │ │ └── [4.0K] validation-errors-tip
│ │ │ │ │ │ ├── [1.1K] validation-errors-tip.component.html
│ │ │ │ │ │ ├── [ 802] validation-errors-tip.component.scss
│ │ │ │ │ │ ├── [1.4K] validation-errors-tip.component.spec.ts
│ │ │ │ │ │ └── [1.2K] validation-errors-tip.component.ts
│ │ │ │ │ ├── [4.0K] environments
│ │ │ │ │ │ ├── [ 857] environment.development.ts
│ │ │ │ │ │ └── [ 856] environment.ts
│ │ │ │ │ ├── [1.2K] index.html
│ │ │ │ │ ├── [1.3K] main.ts
│ │ │ │ │ └── [7.2K] styles.scss
│ │ │ │ ├── [1.2K] tailwind.config.js
│ │ │ │ ├── [ 269] tsconfig.app.json
│ │ │ │ ├── [ 644] tsconfig.json
│ │ │ │ └── [ 327] tsconfig.spec.json
│ │ │ ├── [4.0K] nifi-jolt-transform-ui
│ │ │ │ ├── [1.9K] jest.config.ts
│ │ │ │ ├── [4.8K] project.json
│ │ │ │ ├── [1.6K] proxy.config.mjs
│ │ │ │ ├── [ 965] setup-jest.ts
│ │ │ │ ├── [4.0K] src
│ │ │ │ │ ├── [4.0K] app
│ │ │ │ │ │ ├── [ 853] app.component.html
│ │ │ │ │ │ ├── [ 802] app.component.scss
│ │ │ │ │ │ ├── [1.7K] app.component.spec.ts
│ │ │ │ │ │ ├── [1.9K] app.component.ts
│ │ │ │ │ │ ├── [3.0K] app.module.ts
│ │ │ │ │ │ ├── [1.3K] app-routing.module.ts
│ │ │ │ │ │ ├── [4.0K] pages
│ │ │ │ │ │ │ └── [4.0K] jolt-transform-json-ui
│ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ ├── [ 27K] jolt-transform-json-ui.component.html
│ │ │ │ │ │ │ │ ├── [ 814] jolt-transform-json-ui.component.scss
│ │ │ │ │ │ │ │ ├── [2.0K] jolt-transform-json-ui.component.spec.ts
│ │ │ │ │ │ │ │ ├── [1.3K] _jolt-transform-json-ui.component-theme.scss
│ │ │ │ │ │ │ │ ├── [ 18K] jolt-transform-json-ui.component.ts
│ │ │ │ │ │ │ │ ├── [3.5K] jolt-transform-json-ui.module.ts
│ │ │ │ │ │ │ │ └── [1.2K] jolt-transform-json-ui-routing.module.ts
│ │ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ │ └── [2.5K] jolt-transform-json-ui.service.ts
│ │ │ │ │ │ │ └── [4.0K] state
│ │ │ │ │ │ │ ├── [3.0K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] jolt-transform-json-processor-details
│ │ │ │ │ │ │ │ ├── [1.2K] index.ts
│ │ │ │ │ │ │ │ ├── [1.7K] jolt-transform-json-processor-details.actions.ts
│ │ │ │ │ │ │ │ ├── [2.9K] jolt-transform-json-processor-details.effects.ts
│ │ │ │ │ │ │ │ ├── [1.8K] jolt-transform-json-processor-details.reducer.ts
│ │ │ │ │ │ │ │ └── [2.7K] jolt-transform-json-processor-details.selectors.ts
│ │ │ │ │ │ │ ├── [4.0K] jolt-transform-json-property
│ │ │ │ │ │ │ │ ├── [1.3K] index.ts
│ │ │ │ │ │ │ │ ├── [1.8K] jolt-transform-json-property.actions.ts
│ │ │ │ │ │ │ │ ├── [2.8K] jolt-transform-json-property.effects.ts
│ │ │ │ │ │ │ │ ├── [2.0K] jolt-transform-json-property.reducer.ts
│ │ │ │ │ │ │ │ └── [1.3K] jolt-transform-json-property.selectors.ts
│ │ │ │ │ │ │ ├── [4.0K] jolt-transform-json-transform
│ │ │ │ │ │ │ │ ├── [1.3K] index.ts
│ │ │ │ │ │ │ │ ├── [1.7K] jolt-transform-json-transform.actions.ts
│ │ │ │ │ │ │ │ ├── [2.4K] jolt-transform-json-transform.effects.ts
│ │ │ │ │ │ │ │ ├── [1.8K] jolt-transform-json-transform.reducer.ts
│ │ │ │ │ │ │ │ └── [1.1K] jolt-transform-json-transform.selectors.ts
│ │ │ │ │ │ │ └── [4.0K] jolt-transform-json-validate
│ │ │ │ │ │ │ ├── [1.3K] index.ts
│ │ │ │ │ │ │ ├── [1.9K] jolt-transform-json-validate.actions.ts
│ │ │ │ │ │ │ ├── [2.8K] jolt-transform-json-validate.effects.ts
│ │ │ │ │ │ │ ├── [2.0K] jolt-transform-json-validate.reducer.ts
│ │ │ │ │ │ │ └── [1.1K] jolt-transform-json-validate.selectors.ts
│ │ │ │ │ │ └── [4.0K] state
│ │ │ │ │ │ └── [1.2K] index.ts
│ │ │ │ │ ├── [4.0K] environments
│ │ │ │ │ │ ├── [ 857] environment.development.ts
│ │ │ │ │ │ └── [ 856] environment.ts
│ │ │ │ │ ├── [1.2K] index.html
│ │ │ │ │ ├── [1.2K] main.ts
│ │ │ │ │ └── [2.0K] styles.scss
│ │ │ │ ├── [1.2K] tailwind.config.js
│ │ │ │ ├── [ 269] tsconfig.app.json
│ │ │ │ ├── [ 608] tsconfig.json
│ │ │ │ └── [ 327] tsconfig.spec.json
│ │ │ ├── [4.0K] standard-content-viewer
│ │ │ │ ├── [1.9K] jest.config.ts
│ │ │ │ ├── [4.8K] project.json
│ │ │ │ ├── [1.6K] proxy.config.mjs
│ │ │ │ ├── [ 965] setup-jest.ts
│ │ │ │ ├── [4.0K] src
│ │ │ │ │ ├── [4.0K] app
│ │ │ │ │ │ ├── [ 853] app.component.html
│ │ │ │ │ │ ├── [ 802] app.component.scss
│ │ │ │ │ │ ├── [1.7K] app.component.spec.ts
│ │ │ │ │ │ ├── [1.9K] app.component.ts
│ │ │ │ │ │ ├── [3.0K] app.module.ts
│ │ │ │ │ │ ├── [1.3K] app-routing.module.ts
│ │ │ │ │ │ ├── [4.0K] pages
│ │ │ │ │ │ │ └── [4.0K] standard-content-viewer
│ │ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ │ ├── [1.7K] standard-content-viewer.component.html
│ │ │ │ │ │ │ │ ├── [ 814] standard-content-viewer.component.scss
│ │ │ │ │ │ │ │ ├── [2.1K] standard-content-viewer.component.spec.ts
│ │ │ │ │ │ │ │ ├── [1.0K] _standard-content-viewer.component-theme.scss
│ │ │ │ │ │ │ │ ├── [5.0K] standard-content-viewer.component.ts
│ │ │ │ │ │ │ │ ├── [1.9K] standard-content-viewer.module.ts
│ │ │ │ │ │ │ │ └── [1.2K] standard-content-viewer-routing.module.ts
│ │ │ │ │ │ │ └── [4.0K] service
│ │ │ │ │ │ │ └── [1.7K] content-viewer.service.ts
│ │ │ │ │ │ └── [4.0K] state
│ │ │ │ │ │ └── [1.2K] index.ts
│ │ │ │ │ ├── [4.0K] environments
│ │ │ │ │ │ ├── [ 857] environment.development.ts
│ │ │ │ │ │ └── [ 856] environment.ts
│ │ │ │ │ ├── [1.2K] index.html
│ │ │ │ │ ├── [1.5K] main.ts
│ │ │ │ │ └── [1.8K] styles.scss
│ │ │ │ ├── [1.2K] tailwind.config.js
│ │ │ │ ├── [ 269] tsconfig.app.json
│ │ │ │ ├── [ 608] tsconfig.json
│ │ │ │ └── [ 327] tsconfig.spec.json
│ │ │ └── [4.0K] update-attribute
│ │ │ ├── [1.9K] jest.config.ts
│ │ │ ├── [4.7K] project.json
│ │ │ ├── [1.6K] proxy.config.mjs
│ │ │ ├── [ 965] setup-jest.ts
│ │ │ ├── [4.0K] src
│ │ │ │ ├── [4.0K] app
│ │ │ │ │ ├── [ 853] app.component.html
│ │ │ │ │ ├── [ 802] app.component.scss
│ │ │ │ │ ├── [1.6K] app.component.spec.ts
│ │ │ │ │ ├── [1.8K] app.component.ts
│ │ │ │ │ ├── [3.0K] app.module.ts
│ │ │ │ │ ├── [1.3K] app-routing.module.ts
│ │ │ │ │ ├── [4.0K] pages
│ │ │ │ │ │ └── [4.0K] update-attribute
│ │ │ │ │ │ ├── [4.0K] feature
│ │ │ │ │ │ │ ├── [2.9K] update-attribute.component.html
│ │ │ │ │ │ │ ├── [ 814] update-attribute.component.scss
│ │ │ │ │ │ │ ├── [2.0K] update-attribute.component.spec.ts
│ │ │ │ │ │ │ ├── [3.1K] update-attribute.component.ts
│ │ │ │ │ │ │ ├── [1.9K] update-attribute.module.ts
│ │ │ │ │ │ │ └── [1.2K] update-attribute-routing.module.ts
│ │ │ │ │ │ ├── [4.0K] service
│ │ │ │ │ │ │ └── [4.8K] update-attribute.service.ts
│ │ │ │ │ │ ├── [4.0K] state
│ │ │ │ │ │ │ ├── [4.0K] advanced-ui-parameters
│ │ │ │ │ │ │ │ ├── [1.4K] advanced-ui-parameters.actions.ts
│ │ │ │ │ │ │ │ ├── [1.7K] advanced-ui-parameters.reducer.ts
│ │ │ │ │ │ │ │ ├── [2.0K] advanced-ui-parameters.selectors.ts
│ │ │ │ │ │ │ │ └── [1.1K] index.ts
│ │ │ │ │ │ │ ├── [4.0K] evaluation-context
│ │ │ │ │ │ │ │ ├── [2.2K] evaluation-context.actions.ts
│ │ │ │ │ │ │ │ ├── [5.2K] evaluation-context.effects.ts
│ │ │ │ │ │ │ │ ├── [2.6K] evaluation-context.reducer.ts
│ │ │ │ │ │ │ │ ├── [1.3K] evaluation-context.selectors.ts
│ │ │ │ │ │ │ │ └── [1.3K] index.ts
│ │ │ │ │ │ │ ├── [2.0K] index.ts
│ │ │ │ │ │ │ └── [4.0K] rules
│ │ │ │ │ │ │ ├── [1.7K] index.ts
│ │ │ │ │ │ │ ├── [2.4K] rules.actions.ts
│ │ │ │ │ │ │ ├── [9.0K] rules.effects.ts
│ │ │ │ │ │ │ ├── [3.6K] rules.reducer.ts
│ │ │ │ │ │ │ └── [1.3K] rules.selectors.ts
│ │ │ │ │ │ └── [4.0K] ui
│ │ │ │ │ │ ├── [4.0K] action-table
│ │ │ │ │ │ │ ├── [7.6K] action-table.component.html
│ │ │ │ │ │ │ ├── [ 926] action-table.component.scss
│ │ │ │ │ │ │ ├── [1.5K] action-table.component.spec.ts
│ │ │ │ │ │ │ └── [ 10K] action-table.component.ts
│ │ │ │ │ │ ├── [4.0K] condition-table
│ │ │ │ │ │ │ ├── [5.8K] condition-table.component.html
│ │ │ │ │ │ │ ├── [ 802] condition-table.component.scss
│ │ │ │ │ │ │ ├── [1.5K] condition-table.component.spec.ts
│ │ │ │ │ │ │ └── [8.8K] condition-table.component.ts
│ │ │ │ │ │ ├── [4.0K] edit-rule
│ │ │ │ │ │ │ ├── [3.2K] edit-rule.component.html
│ │ │ │ │ │ │ ├── [ 978] edit-rule.component.scss
│ │ │ │ │ │ │ ├── [1.5K] edit-rule.component.spec.ts
│ │ │ │ │ │ │ └── [8.8K] edit-rule.component.ts
│ │ │ │ │ │ ├── [4.0K] rule-listing
│ │ │ │ │ │ │ ├── [ 10K] rule-listing.component.html
│ │ │ │ │ │ │ ├── [1.5K] rule-listing.component.scss
│ │ │ │ │ │ │ ├── [1.8K] rule-listing.component.spec.ts
│ │ │ │ │ │ │ ├── [1.0K] _rule-listing.component-theme.scss
│ │ │ │ │ │ │ └── [9.8K] rule-listing.component.ts
│ │ │ │ │ │ └── [4.0K] ua-editor
│ │ │ │ │ │ ├── [4.0K] modes
│ │ │ │ │ │ │ ├── [1.2K] el.service.ts
│ │ │ │ │ │ │ ├── [ 45K] nfel.ts
│ │ │ │ │ │ │ └── [ 18K] nfpr.ts
│ │ │ │ │ │ ├── [2.7K] ua-editor.component.html
│ │ │ │ │ │ ├── [1.0K] ua-editor.component.scss
│ │ │ │ │ │ ├── [1.6K] ua-editor.component.spec.ts
│ │ │ │ │ │ ├── [1.1K] _ua-editor.component-theme.scss
│ │ │ │ │ │ └── [5.2K] ua-editor.component.ts
│ │ │ │ │ └── [4.0K] state
│ │ │ │ │ └── [1.2K] index.ts
│ │ │ │ ├── [4.0K] environments
│ │ │ │ │ ├── [ 857] environment.development.ts
│ │ │ │ │ └── [ 856] environment.ts
│ │ │ │ ├── [1.2K] index.html
│ │ │ │ ├── [1.2K] main.ts
│ │ │ │ └── [2.5K] styles.scss
│ │ │ ├── [1.2K] tailwind.config.js
│ │ │ ├── [ 269] tsconfig.app.json
│ │ │ ├── [ 608] tsconfig.json
│ │ │ └── [ 327] tsconfig.spec.json
│ │ ├── [ 929] jest.config.ts
│ │ ├── [1.3K] jest.preset.js
│ │ ├── [4.0K] libs
│ │ │ └── [4.0K] shared
│ │ │ ├── [1.7K] jest.config.ts
│ │ │ ├── [ 168] ng-package.json
│ │ │ ├── [ 213] package.json
│ │ │ ├── [1.7K] project.json
│ │ │ ├── [ 965] setup-jest.ts
│ │ │ ├── [4.0K] src
│ │ │ │ ├── [4.0K] assets
│ │ │ │ │ ├── [4.0K] fonts
│ │ │ │ │ │ └── [4.0K] flowfont
│ │ │ │ │ │ ├── [3.6K] flowfont.css
│ │ │ │ │ │ ├── [ 25K] flowfont.eot
│ │ │ │ │ │ ├── [ 24K] flowfont.svg
│ │ │ │ │ │ ├── [ 25K] flowfont.ttf
│ │ │ │ │ │ ├── [ 13K] flowfont.woff
│ │ │ │ │ │ └── [ 11K] flowfont.woff2
│ │ │ │ │ ├── [4.0K] icons
│ │ │ │ │ │ ├── [2.7K] bg-error.png
│ │ │ │ │ │ ├── [2.5K] nifi-drop-splash.svg
│ │ │ │ │ │ ├── [1.4K] nifi-drop.svg
│ │ │ │ │ │ ├── [6.1K] nifi-logo-about.svg
│ │ │ │ │ │ └── [4.0K] nifi-logo.svg
│ │ │ │ │ ├── [4.0K] styles
│ │ │ │ │ │ ├── [ 15K] _app.scss
│ │ │ │ │ │ ├── [5.0K] _codemirror-theme.scss
│ │ │ │ │ │ ├── [2.9K] _listing-table.scss
│ │ │ │ │ │ └── [3.8K] _prism-theme.scss
│ │ │ │ │ └── [4.0K] themes
│ │ │ │ │ ├── [ 40K] material.scss
│ │ │ │ │ └── [ 37K] purple.scss
│ │ │ │ ├── [4.0K] components
│ │ │ │ │ ├── [4.0K] close-on-escape-dialog
│ │ │ │ │ │ └── [2.0K] close-on-escape-dialog.component.ts
│ │ │ │ │ ├── [4.0K] component-context
│ │ │ │ │ │ ├── [1.4K] component-context.component.html
│ │ │ │ │ │ ├── [ 802] component-context.component.scss
│ │ │ │ │ │ ├── [1.4K] component-context.component.spec.ts
│ │ │ │ │ │ └── [2.6K] component-context.component.ts
│ │ │ │ │ ├── [4.0K] copy-button
│ │ │ │ │ │ └── [1.1K] copy-button.component.ts
│ │ │ │ │ ├── [1.5K] index.ts
│ │ │ │ │ ├── [4.0K] map-table
│ │ │ │ │ │ ├── [4.0K] editors
│ │ │ │ │ │ │ └── [4.0K] text-editor
│ │ │ │ │ │ │ ├── [2.8K] text-editor.component.html
│ │ │ │ │ │ │ ├── [1.0K] text-editor.component.scss
│ │ │ │ │ │ │ ├── [1.4K] text-editor.component.spec.ts
│ │ │ │ │ │ │ ├── [1.0K] _text-editor.component-theme.scss
│ │ │ │ │ │ │ └── [6.5K] text-editor.component.ts
│ │ │ │ │ │ ├── [7.0K] map-table.component.html
│ │ │ │ │ │ ├── [ 802] map-table.component.scss
│ │ │ │ │ │ ├── [1.4K] map-table.component.spec.ts
│ │ │ │ │ │ └── [ 12K] map-table.component.ts
│ │ │ │ │ ├── [4.0K] new-map-table-entry-dialog
│ │ │ │ │ │ ├── [1.6K] new-map-table-entry-dialog.component.html
│ │ │ │ │ │ ├── [ 948] new-map-table-entry-dialog.component.scss
│ │ │ │ │ │ ├── [1.9K] new-map-table-entry-dialog.component.spec.ts
│ │ │ │ │ │ └── [3.4K] new-map-table-entry-dialog.component.ts
│ │ │ │ │ ├── [4.0K] property-hint
│ │ │ │ │ │ ├── [1.6K] property-hint.component.html
│ │ │ │ │ │ ├── [ 843] property-hint.component.scss
│ │ │ │ │ │ ├── [1.4K] property-hint.component.spec.ts
│ │ │ │ │ │ └── [1.9K] property-hint.component.ts
│ │ │ │ │ ├── [4.0K] resizable
│ │ │ │ │ │ ├── [1.1K] resizable.component.html
│ │ │ │ │ │ ├── [1.5K] resizable.component.scss
│ │ │ │ │ │ ├── [1.3K] resizable.component.spec.ts
│ │ │ │ │ │ ├── [2.9K] resizable.component.ts
│ │ │ │ │ │ └── [1019] _resizeable-theme.scss
│ │ │ │ │ ├── [4.0K] tooltips
│ │ │ │ │ │ ├── [4.0K] el-function-tip
│ │ │ │ │ │ │ ├── [2.4K] el-function-tip.component.html
│ │ │ │ │ │ │ ├── [1.1K] el-function-tip.component.scss
│ │ │ │ │ │ │ ├── [1.4K] el-function-tip.component.spec.ts
│ │ │ │ │ │ │ └── [1.8K] el-function-tip.component.ts
│ │ │ │ │ │ ├── [4.0K] parameter-tip
│ │ │ │ │ │ │ ├── [1.3K] parameter-tip.component.html
│ │ │ │ │ │ │ ├── [ 951] parameter-tip.component.scss
│ │ │ │ │ │ │ ├── [1.4K] parameter-tip.component.spec.ts
│ │ │ │ │ │ │ └── [1.4K] parameter-tip.component.ts
│ │ │ │ │ │ ├── [4.0K] property-hint-tip
│ │ │ │ │ │ │ ├── [3.3K] property-hint-tip.component.html
│ │ │ │ │ │ │ ├── [ 911] property-hint-tip.component.scss
│ │ │ │ │ │ │ ├── [1.4K] property-hint-tip.component.spec.ts
│ │ │ │ │ │ │ ├── [1000] _property-hint-tip.component-theme.scss
│ │ │ │ │ │ │ └── [1.2K] property-hint-tip.component.ts
│ │ │ │ │ │ └── [4.0K] text-tip
│ │ │ │ │ │ ├── [ 859] text-tip.component.html
│ │ │ │ │ │ ├── [ 802] text-tip.component.scss
│ │ │ │ │ │ ├── [1.3K] text-tip.component.spec.ts
│ │ │ │ │ │ └── [1.0K] text-tip.component.ts
│ │ │ │ │ └── [4.0K] yes-no-dialog
│ │ │ │ │ ├── [1.2K] yes-no-dialog.component.html
│ │ │ │ │ ├── [ 802] yes-no-dialog.component.scss
│ │ │ │ │ ├── [2.3K] yes-no-dialog.component.spec.ts
│ │ │ │ │ └── [1.7K] yes-no-dialog.component.ts
│ │ │ │ ├── [4.0K] directives
│ │ │ │ │ ├── [4.0K] copy
│ │ │ │ │ │ ├── [4.4K] copy.directive.spec.ts
│ │ │ │ │ │ └── [3.1K] copy.directive.ts
│ │ │ │ │ ├── [ 884] index.ts
│ │ │ │ │ ├── [1.0K] nifi-tooltip.directive.spec.ts
│ │ │ │ │ └── [5.3K] nifi-tooltip.directive.ts
│ │ │ │ ├── [ 966] index.ts
│ │ │ │ ├── [4.0K] pipes
│ │ │ │ │ ├── [1.0K] component-type-name.pipe.spec.ts
│ │ │ │ │ ├── [2.3K] component-type-name.pipe.ts
│ │ │ │ │ ├── [ 946] index.ts
│ │ │ │ │ ├── [1.7K] join.pipe.spec.ts
│ │ │ │ │ ├── [1.0K] join.pipe.ts
│ │ │ │ │ ├── [4.2K] sort-by-property.pipe.spec.ts
│ │ │ │ │ ├── [1.5K] sort-by-property.pipe.ts
│ │ │ │ │ ├── [1.5K] sort.pipe.spec.ts
│ │ │ │ │ └── [1.4K] sort.pipe.ts
│ │ │ │ ├── [4.0K] services
│ │ │ │ │ ├── [1.0K] index.ts
│ │ │ │ │ ├── [2.3K] map-table-helper.service.ts
│ │ │ │ │ ├── [4.8K] nifi-common.service.spec.ts
│ │ │ │ │ ├── [ 24K] nifi-common.service.ts
│ │ │ │ │ ├── [1.2K] session-storage.service.spec.ts
│ │ │ │ │ ├── [3.1K] session-storage.service.ts
│ │ │ │ │ ├── [1.1K] storage.service.spec.ts
│ │ │ │ │ ├── [5.1K] storage.service.ts
│ │ │ │ │ ├── [3.6K] system-tokens.service.spec.ts
│ │ │ │ │ ├── [2.3K] system-tokens.service.ts
│ │ │ │ │ └── [1.9K] theming.service.ts
│ │ │ │ ├── [4.0K] state
│ │ │ │ │ ├── [ 829] index.ts
│ │ │ │ │ └── [4.0K] router
│ │ │ │ │ ├── [ 839] index.ts
│ │ │ │ │ └── [1.4K] router.selectors.ts
│ │ │ │ └── [4.0K] types
│ │ │ │ └── [5.1K] index.ts
│ │ │ ├── [1.2K] tailwind.config.js
│ │ │ ├── [1.6K] tailwind.theme.json
│ │ │ ├── [ 785] tsconfig.json
│ │ │ ├── [ 349] tsconfig.lib.json
│ │ │ ├── [ 139] tsconfig.lib.prod.json
│ │ │ └── [ 324] tsconfig.spec.json
│ │ ├── [2.3K] nx.json
│ │ ├── [3.7K] package.json
│ │ ├── [1.1M] package-lock.json
│ │ ├── [2.9K] README.md
│ │ └── [ 597] tsconfig.base.json
│ └── [4.0K] resources
│ └── [4.0K] META-INF
│ ├── [ 11K] LICENSE
│ └── [ 496] NOTICE
├── [4.0K] nifi-manifest
│ ├── [4.0K] nifi-extension-manifest-model
│ │ ├── [1.8K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] extension
│ │ └── [4.0K] manifest
│ │ ├── [1.8K] AllowableValue.java
│ │ ├── [1.5K] Attribute.java
│ │ ├── [2.4K] BuildInfo.java
│ │ ├── [1.0K] Cardinality.java
│ │ ├── [2.6K] ControllerServiceDefinition.java
│ │ ├── [1.8K] DefaultSchedule.java
│ │ ├── [1.9K] DefaultSettings.java
│ │ ├── [2.0K] Dependency.java
│ │ ├── [1.4K] DependentValues.java
│ │ ├── [1.7K] DeprecationNotice.java
│ │ ├── [2.6K] DynamicProperty.java
│ │ ├── [1.6K] DynamicRelationship.java
│ │ ├── [1.2K] ExpressionLanguageScope.java
│ │ ├── [ 11K] Extension.java
│ │ ├── [3.4K] ExtensionManifest.java
│ │ ├── [1.0K] ExtensionType.java
│ │ ├── [1.9K] InputRequirement.java
│ │ ├── [2.2K] MultiProcessorUseCase.java
│ │ ├── [1.8K] ParentNar.java
│ │ ├── [1.3K] ProcessorConfiguration.java
│ │ ├── [5.6K] Property.java
│ │ ├── [2.8K] ProvidedServiceAPI.java
│ │ ├── [1.8K] Relationship.java
│ │ ├── [1.8K] ResourceDefinition.java
│ │ ├── [1.4K] ResourceType.java
│ │ ├── [2.0K] Restricted.java
│ │ ├── [2.2K] Restriction.java
│ │ ├── [ 941] Scope.java
│ │ ├── [1.7K] Stateful.java
│ │ ├── [1.6K] SystemResourceConsideration.java
│ │ └── [2.2K] UseCase.java
│ ├── [4.0K] nifi-extension-manifest-parser
│ │ ├── [1.8K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] extension
│ │ │ └── [4.0K] manifest
│ │ │ └── [4.0K] parser
│ │ │ ├── [1.1K] ExtensionManifestException.java
│ │ │ ├── [1.1K] ExtensionManifestParser.java
│ │ │ └── [4.0K] jaxb
│ │ │ └── [2.1K] JAXBExtensionManifestParser.java
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] extension
│ │ │ └── [4.0K] manifest
│ │ │ └── [4.0K] parser
│ │ │ └── [4.0K] jaxb
│ │ │ └── [ 15K] TestJAXBExtensionManifestParser.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] manifests
│ │ ├── [5.3K] extension-manifest-ambari-nar.xml
│ │ ├── [ 19K] extension-manifest-dbcp-service-nar.xml
│ │ ├── [185K] extension-manifest-hadoop-nar.xml
│ │ ├── [188K] extension-manifest-kafka-2-6-nar.xml
│ │ ├── [ 898] extension-manifest-missing-sys-api.xml
│ │ ├── [3.5K] extension-manifest-test-components.xml
│ │ └── [1.2K] extension-manifest-unknown-property.xml
│ ├── [4.0K] nifi-runtime-manifest
│ │ ├── [7.5K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [1.1K] build.properties
│ ├── [4.0K] nifi-runtime-manifest-core
│ │ ├── [2.5K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] runtime
│ │ └── [4.0K] manifest
│ │ ├── [2.6K] ComponentManifestBuilder.java
│ │ ├── [1.8K] ExtensionManifestContainer.java
│ │ ├── [1.0K] ExtensionManifestProvider.java
│ │ ├── [4.0K] impl
│ │ │ ├── [5.9K] DirectoryExtensionManifestProvider.java
│ │ │ ├── [1.8K] JacksonRuntimeManifestSerializer.java
│ │ │ ├── [8.7K] RuntimeManifestGenerator.java
│ │ │ ├── [2.5K] SchedulingDefaultsFactory.java
│ │ │ ├── [4.3K] StandardComponentManifestBuilder.java
│ │ │ └── [ 36K] StandardRuntimeManifestBuilder.java
│ │ ├── [2.8K] RuntimeManifestBuilder.java
│ │ └── [1.4K] RuntimeManifestSerializer.java
│ ├── [4.0K] nifi-runtime-manifest-test
│ │ ├── [3.3K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] runtime
│ │ └── [4.0K] manifest
│ │ └── [ 17K] RuntimeManifestIT.java
│ └── [1.6K] pom.xml
├── [4.0K] nifi-maven-archetypes
│ ├── [4.0K] nifi-processor-bundle-archetype
│ │ ├── [2.9K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ ├── [4.0K] archetype-resources
│ │ │ ├── [4.0K] nifi-__artifactBaseName__-nar
│ │ │ │ └── [1.8K] pom.xml
│ │ │ ├── [4.0K] nifi-__artifactBaseName__-processors
│ │ │ │ ├── [2.4K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [3.4K] MyProcessor.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 803] org.apache.nifi.processor.Processor
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [1.2K] MyProcessorTest.java
│ │ │ └── [1.5K] pom.xml
│ │ └── [4.0K] META-INF
│ │ └── [4.0K] maven
│ │ └── [1.9K] archetype-metadata.xml
│ ├── [4.0K] nifi-service-bundle-archetype
│ │ ├── [2.8K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ ├── [4.0K] archetype-resources
│ │ │ ├── [4.0K] nifi-__artifactBaseName__
│ │ │ │ ├── [2.6K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [2.5K] StandardMyService.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 809] org.apache.nifi.controller.ControllerService
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ ├── [1.7K] TestProcessor.java
│ │ │ │ └── [1.5K] TestStandardMyService.java
│ │ │ ├── [4.0K] nifi-__artifactBaseName__-api
│ │ │ │ ├── [1.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [1.1K] MyService.java
│ │ │ ├── [4.0K] nifi-__artifactBaseName__-api-nar
│ │ │ │ └── [1.8K] pom.xml
│ │ │ ├── [4.0K] nifi-__artifactBaseName__-nar
│ │ │ │ └── [1.8K] pom.xml
│ │ │ └── [1.6K] pom.xml
│ │ └── [4.0K] META-INF
│ │ └── [4.0K] maven
│ │ └── [2.4K] archetype-metadata.xml
│ └── [1.4K] pom.xml
├── [4.0K] nifi-mock
│ ├── [2.6K] pom.xml
│ └── [4.0K] src
│ ├── [4.0K] main
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ ├── [4.0K] provenance
│ │ │ └── [ 26K] MockProvenanceEvent.java
│ │ ├── [4.0K] reporting
│ │ │ ├── [4.5K] BulletinFactory.java
│ │ │ └── [ 973] MockBulletin.java
│ │ ├── [4.0K] state
│ │ │ ├── [ 12K] MockStateManager.java
│ │ │ └── [1.7K] MockStateMap.java
│ │ └── [4.0K] util
│ │ ├── [ 13K] CapturingLogger.java
│ │ ├── [2.4K] ControllerServiceConfiguration.java
│ │ ├── [ 916] EmptyControllerServiceLookup.java
│ │ ├── [5.3K] EqualsWrapper.java
│ │ ├── [1.0K] FlowFileValidator.java
│ │ ├── [1.5K] LogMessage.java
│ │ ├── [2.4K] MockBulletinRepository.java
│ │ ├── [7.7K] MockComponentLog.java
│ │ ├── [4.1K] MockConfigurationContext.java
│ │ ├── [4.5K] MockControllerServiceInitializationContext.java
│ │ ├── [4.3K] MockControllerServiceLookup.java
│ │ ├── [4.2K] MockEventAccess.java
│ │ ├── [ 13K] MockFlowFile.java
│ │ ├── [2.5K] MockFlowFileQueue.java
│ │ ├── [1.8K] MockKerberosContext.java
│ │ ├── [3.4K] MockParameterProviderInitializationContext.java
│ │ ├── [ 25K] MockProcessContext.java
│ │ ├── [4.1K] MockProcessorInitializationContext.java
│ │ ├── [ 55K] MockProcessSession.java
│ │ ├── [4.6K] MockPropertyConfiguration.java
│ │ ├── [1.9K] MockPropertyContext.java
│ │ ├── [ 16K] MockPropertyValue.java
│ │ ├── [ 17K] MockProvenanceReporter.java
│ │ ├── [4.0K] MockRelationshipConfiguration.java
│ │ ├── [5.2K] MockReportingContext.java
│ │ ├── [3.3K] MockReportingInitializationContext.java
│ │ ├── [2.6K] MockSessionFactory.java
│ │ ├── [7.4K] MockValidationContext.java
│ │ ├── [1.2K] NoOpProcessor.java
│ │ ├── [1.7K] PropertyMigrationResult.java
│ │ ├── [6.4K] ReflectionUtils.java
│ │ ├── [1.2K] RelationshipMigrationResult.java
│ │ ├── [3.3K] SharedSessionState.java
│ │ ├── [ 46K] StandardProcessorTestRunner.java
│ │ ├── [ 45K] TestRunner.java
│ │ └── [6.9K] TestRunners.java
│ └── [4.0K] test
│ └── [4.0K] java
│ └── [4.0K] org
│ └── [4.0K] apache
│ └── [4.0K] nifi
│ └── [4.0K] util
│ ├── [2.6K] CurrentTestStandardProcessorTestRunner.java
│ ├── [6.5K] TestMockProcessContext.java
│ ├── [ 27K] TestMockProcessSession.java
│ ├── [ 12K] TestMockPropertyValue.java
│ └── [ 14K] TestStandardProcessorTestRunner.java
├── [4.0K] nifi-registry
│ ├── [1.3K] build-and-run.sh
│ ├── [4.0K] nifi-registry-assembly
│ │ ├── [ 85K] LICENSE
│ │ ├── [ 15K] NOTICE
│ │ ├── [ 16K] pom.xml
│ │ ├── [2.6K] README.md
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] assembly
│ │ └── [6.3K] dependencies.xml
│ ├── [4.0K] nifi-registry-core
│ │ ├── [4.0K] nifi-registry-bootstrap
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] bootstrap
│ │ │ ├── [4.0K] BootstrapCodec.java
│ │ │ ├── [4.0K] exception
│ │ │ │ └── [1.3K] InvalidCommandException.java
│ │ │ ├── [5.0K] NiFiRegistryListener.java
│ │ │ ├── [ 47K] RunNiFiRegistry.java
│ │ │ ├── [3.9K] ShutdownHook.java
│ │ │ └── [4.0K] util
│ │ │ └── [2.7K] LimitingInputStream.java
│ │ ├── [4.0K] nifi-registry-bundle-utils
│ │ │ ├── [1.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] bundle
│ │ │ │ ├── [4.0K] extract
│ │ │ │ │ ├── [1.2K] BundleException.java
│ │ │ │ │ ├── [1.3K] BundleExtractor.java
│ │ │ │ │ ├── [4.0K] minificpp
│ │ │ │ │ │ └── [1.4K] MiNiFiCppBundleExtractor.java
│ │ │ │ │ └── [4.0K] nar
│ │ │ │ │ ├── [ 10K] NarBundleExtractor.java
│ │ │ │ │ └── [1.5K] NarManifestEntry.java
│ │ │ │ ├── [4.0K] model
│ │ │ │ │ ├── [4.8K] BundleDetails.java
│ │ │ │ │ └── [2.4K] BundleIdentifier.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [1.4K] BundleUtils.java
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] bundle
│ │ │ │ └── [4.0K] extract
│ │ │ │ └── [4.0K] nar
│ │ │ │ └── [7.2K] TestNarBundleExtractor.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] nars
│ │ │ ├── [ 574] nifi-foo-nar-missing-extension-descriptor.nar
│ │ │ ├── [ 981] nifi-foo-nar.nar
│ │ │ ├── [ 984] nifi-framework-nar.nar
│ │ │ ├── [ 17K] nifi-hadoop-nar.nar
│ │ │ ├── [ 213] nifi-missing-manifest-entries.nar
│ │ │ └── [ 168] nifi-missing-manifest.nar
│ │ ├── [4.0K] nifi-registry-client
│ │ │ ├── [4.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] client
│ │ │ │ ├── [2.1K] AccessClient.java
│ │ │ │ ├── [3.2K] BucketClient.java
│ │ │ │ ├── [3.0K] BundleClient.java
│ │ │ │ ├── [8.6K] BundleVersionClient.java
│ │ │ │ ├── [2.4K] ExtensionClient.java
│ │ │ │ ├── [8.3K] ExtensionRepoClient.java
│ │ │ │ ├── [5.3K] FlowClient.java
│ │ │ │ ├── [6.3K] FlowSnapshotClient.java
│ │ │ │ ├── [4.0K] impl
│ │ │ │ │ ├── [4.0K] AbstractCRUDJerseyClient.java
│ │ │ │ │ ├── [5.4K] AbstractJerseyClient.java
│ │ │ │ │ ├── [3.1K] BucketItemDeserializer.java
│ │ │ │ │ ├── [2.0K] ClientUtils.java
│ │ │ │ │ ├── [3.8K] JerseyAccessClient.java
│ │ │ │ │ ├── [5.4K] JerseyBucketClient.java
│ │ │ │ │ ├── [4.8K] JerseyBundleClient.java
│ │ │ │ │ ├── [ 15K] JerseyBundleVersionClient.java
│ │ │ │ │ ├── [4.7K] JerseyExtensionClient.java
│ │ │ │ │ ├── [ 15K] JerseyExtensionRepoClient.java
│ │ │ │ │ ├── [8.3K] JerseyFlowClient.java
│ │ │ │ │ ├── [9.8K] JerseyFlowSnapshotClient.java
│ │ │ │ │ ├── [3.0K] JerseyItemsClient.java
│ │ │ │ │ ├── [ 10K] JerseyNiFiRegistryClient.java
│ │ │ │ │ ├── [2.6K] JerseyPoliciesClient.java
│ │ │ │ │ ├── [4.4K] JerseyTenantsClient.java
│ │ │ │ │ ├── [1.8K] JerseyUserClient.java
│ │ │ │ │ └── [4.0K] request
│ │ │ │ │ ├── [2.1K] BasicAuthRequestConfig.java
│ │ │ │ │ ├── [1.6K] BearerTokenRequestConfig.java
│ │ │ │ │ └── [1.8K] ProxiedEntityRequestConfig.java
│ │ │ │ ├── [2.3K] ItemsClient.java
│ │ │ │ ├── [8.3K] NiFiRegistryClientConfig.java
│ │ │ │ ├── [5.8K] NiFiRegistryClient.java
│ │ │ │ ├── [1.2K] NiFiRegistryException.java
│ │ │ │ ├── [2.4K] PoliciesClient.java
│ │ │ │ ├── [1.0K] RequestConfig.java
│ │ │ │ ├── [6.1K] TenantsClient.java
│ │ │ │ └── [1.7K] UserClient.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] client
│ │ │ └── [4.0K] impl
│ │ │ └── [4.0K] request
│ │ │ ├── [1.9K] TestBasicAuthRequestConfig.java
│ │ │ ├── [1.6K] TestBearerTokenRequestConfig.java
│ │ │ └── [2.5K] TestProxiedEntityRequestConfig.java
│ │ ├── [4.0K] nifi-registry-data-model
│ │ │ ├── [3.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ ├── [4.0K] about
│ │ │ │ │ └── [1.6K] RegistryAbout.java
│ │ │ │ ├── [4.0K] authorization
│ │ │ │ │ ├── [2.2K] AccessPolicy.java
│ │ │ │ │ ├── [2.9K] AccessPolicySummary.java
│ │ │ │ │ ├── [2.6K] CurrentUser.java
│ │ │ │ │ ├── [3.7K] Permissions.java
│ │ │ │ │ ├── [1.6K] Resource.java
│ │ │ │ │ ├── [4.6K] ResourcePermissions.java
│ │ │ │ │ ├── [4.1K] Tenant.java
│ │ │ │ │ ├── [2.0K] UserGroup.java
│ │ │ │ │ └── [1.7K] User.java
│ │ │ │ ├── [4.0K] bucket
│ │ │ │ │ ├── [4.5K] BucketItem.java
│ │ │ │ │ ├── [1.1K] BucketItemType.java
│ │ │ │ │ └── [4.5K] Bucket.java
│ │ │ │ ├── [4.0K] diff
│ │ │ │ │ ├── [3.2K] ComponentDifferenceGroup.java
│ │ │ │ │ ├── [2.5K] ComponentDifference.java
│ │ │ │ │ └── [2.5K] VersionedFlowDifference.java
│ │ │ │ ├── [4.0K] extension
│ │ │ │ │ ├── [4.0K] bundle
│ │ │ │ │ │ ├── [2.8K] BuildInfo.java
│ │ │ │ │ │ ├── [2.9K] BundleFilterParams.java
│ │ │ │ │ │ ├── [3.0K] BundleInfo.java
│ │ │ │ │ │ ├── [3.0K] Bundle.java
│ │ │ │ │ │ ├── [1.3K] BundleTypeAdapter.java
│ │ │ │ │ │ ├── [1.8K] BundleType.java
│ │ │ │ │ │ ├── [1014] BundleTypeValues.java
│ │ │ │ │ │ ├── [2.3K] BundleVersionDependency.java
│ │ │ │ │ │ ├── [2.7K] BundleVersionFilterParams.java
│ │ │ │ │ │ ├── [3.1K] BundleVersion.java
│ │ │ │ │ │ └── [5.7K] BundleVersionMetadata.java
│ │ │ │ │ ├── [4.0K] component
│ │ │ │ │ │ ├── [3.0K] ExtensionFilterParams.java
│ │ │ │ │ │ ├── [1.9K] ExtensionMetadataContainer.java
│ │ │ │ │ │ ├── [5.4K] ExtensionMetadata.java
│ │ │ │ │ │ └── [1.9K] TagCount.java
│ │ │ │ │ └── [4.0K] repo
│ │ │ │ │ ├── [2.8K] ExtensionRepoArtifact.java
│ │ │ │ │ ├── [2.0K] ExtensionRepoBucket.java
│ │ │ │ │ ├── [2.5K] ExtensionRepoExtensionMetadata.java
│ │ │ │ │ ├── [2.4K] ExtensionRepoGroup.java
│ │ │ │ │ ├── [3.0K] ExtensionRepoVersion.java
│ │ │ │ │ └── [3.9K] ExtensionRepoVersionSummary.java
│ │ │ │ ├── [4.0K] field
│ │ │ │ │ └── [1.2K] Fields.java
│ │ │ │ ├── [4.0K] flow
│ │ │ │ │ ├── [ 906] SiteToSiteTransportProtocol.java
│ │ │ │ │ ├── [2.3K] VersionedFlow.java
│ │ │ │ │ ├── [7.4K] VersionedFlowSnapshot.java
│ │ │ │ │ └── [3.8K] VersionedFlowSnapshotMetadata.java
│ │ │ │ ├── [4.0K] link
│ │ │ │ │ ├── [3.7K] JaxbLink.java
│ │ │ │ │ ├── [1.1K] LinkableDocs.java
│ │ │ │ │ ├── [1.5K] LinkableEntity.java
│ │ │ │ │ └── [2.3K] LinkAdapter.java
│ │ │ │ ├── [4.0K] params
│ │ │ │ │ ├── [1.3K] SortOrder.java
│ │ │ │ │ └── [2.9K] SortParameter.java
│ │ │ │ ├── [2.9K] RegistryConfiguration.java
│ │ │ │ └── [2.8K] VersionedFlowConverter.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] flow
│ │ │ └── [2.4K] TestVersionedRemoteProcessGroup.java
│ │ ├── [4.0K] nifi-registry-docker
│ │ │ ├── [4.0K] dockerhub
│ │ │ │ ├── [1.9K] DockerBuild.sh
│ │ │ │ ├── [3.7K] Dockerfile
│ │ │ │ ├── [ 809] DockerImage.txt
│ │ │ │ ├── [ 10K] README.md
│ │ │ │ └── [4.0K] sh
│ │ │ │ ├── [1.2K] common.sh
│ │ │ │ ├── [3.1K] secure.sh
│ │ │ │ ├── [2.4K] start.sh
│ │ │ │ ├── [2.4K] update_bundle_provider.sh
│ │ │ │ ├── [1.6K] update_database.sh
│ │ │ │ ├── [2.3K] update_flow_provider.sh
│ │ │ │ ├── [2.4K] update_login_providers.sh
│ │ │ │ └── [2.0K] update_oidc_properties.sh
│ │ │ └── [1.3K] pom.xml
│ │ ├── [4.0K] nifi-registry-docs
│ │ │ ├── [ 13K] LICENSE
│ │ │ ├── [ 173] NOTICE
│ │ │ ├── [8.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] asciidoc
│ │ │ │ ├── [103K] administration-guide.adoc
│ │ │ │ ├── [ 30K] asciidoc-mod.css
│ │ │ │ ├── [ 11K] getting-started.adoc
│ │ │ │ ├── [4.0K] images
│ │ │ │ │ ├── [117K] ABCD_flow_changes.png
│ │ │ │ │ ├── [ 64K] ABCD_flow_in_test_bucket.png
│ │ │ │ │ ├── [153K] ABCD_flow_saved.png
│ │ │ │ │ ├── [181K] ABCD_process_group_menu.png
│ │ │ │ │ ├── [109K] ABCD_save_flow_version_2.png
│ │ │ │ │ ├── [153K] ABCD_version_2.png
│ │ │ │ │ ├── [ 19K] add-registry-client.png
│ │ │ │ │ ├── [ 58K] add_user_button.png
│ │ │ │ │ ├── [ 17K] add_user_dialog.png
│ │ │ │ │ ├── [ 28K] add_user_to_groups_dialog.png
│ │ │ │ │ ├── [ 47K] bucket_menu.png
│ │ │ │ │ ├── [ 73K] bucket_nav_allow_bundle_overwrite.png
│ │ │ │ │ ├── [ 73K] bucket_nav_make_public.png
│ │ │ │ │ ├── [ 71K] bucket_nav_name_edit.png
│ │ │ │ │ ├── [ 49K] buckets_filter_by_name.png
│ │ │ │ │ ├── [ 58K] buckets_sort_by_name.png
│ │ │ │ │ ├── [208K] changed_flow_options.png
│ │ │ │ │ ├── [ 61K] check_multiple_buckets.png
│ │ │ │ │ ├── [ 59K] check_multiple_users.png
│ │ │ │ │ ├── [ 28K] configure-registry-client-properties.png
│ │ │ │ │ ├── [139K] controller-settings-selection.png
│ │ │ │ │ ├── [ 21K] create_new_group_dialog.png
│ │ │ │ │ ├── [ 62K] create_new_group.png
│ │ │ │ │ ├── [ 17K] delete_bucket_dialog.png
│ │ │ │ │ ├── [ 20K] delete_bucket_policy_dialog.png
│ │ │ │ │ ├── [ 92K] delete_bucket_policy.png
│ │ │ │ │ ├── [ 19K] delete_buckets_dialog.png
│ │ │ │ │ ├── [ 61K] delete_bucket_single.png
│ │ │ │ │ ├── [ 64K] delete_multiple_buckets.png
│ │ │ │ │ ├── [ 63K] delete_multiple_users.png
│ │ │ │ │ ├── [ 15K] delete_user_dialog.png
│ │ │ │ │ ├── [ 26K] delete_users_groups_dialog.png
│ │ │ │ │ ├── [ 60K] delete_user_single.png
│ │ │ │ │ ├── [159K] drag_process_group.png
│ │ │ │ │ ├── [ 34K] empty_registry.png
│ │ │ │ │ ├── [ 76K] export_version_action.png
│ │ │ │ │ ├── [ 66K] export_version.png
│ │ │ │ │ ├── [ 83K] flow_change_log.png
│ │ │ │ │ ├── [ 87K] flow_delete_action.png
│ │ │ │ │ ├── [ 68K] flow_delete_confirm.png
│ │ │ │ │ ├── [ 41K] flows_all.png
│ │ │ │ │ ├── [ 26K] flows_filter_by_name.png
│ │ │ │ │ ├── [ 46K] flows_sort_menu.png
│ │ │ │ │ ├── [ 90K] group_added.png
│ │ │ │ │ ├── [ 695] iconDelete.png
│ │ │ │ │ ├── [ 652] iconEdit.png
│ │ │ │ │ ├── [ 970] iconHelp.png
│ │ │ │ │ ├── [1.2K] iconLocallyModified.png
│ │ │ │ │ ├── [ 748] iconManage.png
│ │ │ │ │ ├── [ 887] iconSettings.png
│ │ │ │ │ ├── [ 996] iconUpToDate.png
│ │ │ │ │ ├── [111K] import_ABCD_version_2.png
│ │ │ │ │ ├── [115K] import_flow_from_registry.png
│ │ │ │ │ ├── [ 43K] import_new_flow_button.png
│ │ │ │ │ ├── [ 50K] import_new_flow.png
│ │ │ │ │ ├── [ 70K] import_new_version_action.png
│ │ │ │ │ ├── [ 70K] import_new_version.png
│ │ │ │ │ ├── [ 53K] local_registry.png
│ │ │ │ │ ├── [ 15K] loginRegistry.png
│ │ │ │ │ ├── [ 62K] manage_bucket.png
│ │ │ │ │ ├── [ 61K] manage_user.png
│ │ │ │ │ ├── [ 60K] new_bucket_button.png
│ │ │ │ │ ├── [ 22K] new_bucket_dialog.png
│ │ │ │ │ ├── [ 81K] new_bucket_policy_added.png
│ │ │ │ │ ├── [ 71K] new_bucket_policy_create.png
│ │ │ │ │ ├── [ 28K] new_bucket_policy_user_permission.png
│ │ │ │ │ ├── [ 53K] new_test_bucket.png
│ │ │ │ │ ├── [ 67K] nifi-registry-components.png
│ │ │ │ │ ├── [9.3M] nifi_user1_template.snagproj
│ │ │ │ │ ├── [ 11M] nifi_user_template.snagproj
│ │ │ │ │ ├── [ 54K] registry-client-added.png
│ │ │ │ │ ├── [ 97K] remove_group_from_user.png
│ │ │ │ │ ├── [110K] remove_user_from_group.png
│ │ │ │ │ ├── [104K] save_ABCD_flow_dialog.png
│ │ │ │ │ ├── [ 21K] select_users_create_new_group_dialog.png
│ │ │ │ │ ├── [ 72K] select_users_create_new_group.png
│ │ │ │ │ ├── [109K] select_users_new_group_added.png
│ │ │ │ │ ├── [ 77K] test_bucket_dialog.png
│ │ │ │ │ ├── [ 52K] test_bucket.png
│ │ │ │ │ ├── [171K] two_ABCD_flows.png
│ │ │ │ │ ├── [ 96K] user_nav_add_to_group.png
│ │ │ │ │ ├── [ 82K] user_nav_name_edit.png
│ │ │ │ │ ├── [ 49K] users_filter_by_name.png
│ │ │ │ │ ├── [ 26K] users_non_configurable.png
│ │ │ │ │ ├── [ 96K] user_special_privileges.png
│ │ │ │ │ └── [ 58K] users_sort_by_name.png
│ │ │ │ └── [ 21K] user-guide.adoc
│ │ │ └── [4.0K] assembly
│ │ │ └── [1.6K] dependencies.xml
│ │ ├── [4.0K] nifi-registry-flow-diff
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] flow
│ │ │ │ └── [4.0K] diff
│ │ │ │ ├── [1.7K] ComparableDataFlow.java
│ │ │ │ ├── [4.7K] ConciseEvolvingDifferenceDescriptor.java
│ │ │ │ ├── [1.6K] DifferenceDescriptor.java
│ │ │ │ ├── [ 13K] DifferenceType.java
│ │ │ │ ├── [3.6K] EvolvingDifferenceDescriptor.java
│ │ │ │ ├── [1.4K] FlowComparator.java
│ │ │ │ ├── [1.3K] FlowComparatorVersionedStrategy.java
│ │ │ │ ├── [1021] FlowComparison.java
│ │ │ │ ├── [1.2K] FlowDifference.java
│ │ │ │ ├── [4.3K] StandardComparableDataFlow.java
│ │ │ │ ├── [ 45K] StandardFlowComparator.java
│ │ │ │ ├── [1.9K] StandardFlowComparison.java
│ │ │ │ ├── [5.2K] StandardFlowDifference.java
│ │ │ │ └── [5.8K] StaticDifferenceDescriptor.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] flow
│ │ │ └── [4.0K] diff
│ │ │ └── [9.0K] TestStandardFlowComparator.java
│ │ ├── [4.0K] nifi-registry-framework
│ │ │ ├── [ 18K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] registry
│ │ │ │ │ ├── [4.0K] db
│ │ │ │ │ │ ├── [5.8K] CustomFlywayConfiguration.java
│ │ │ │ │ │ ├── [7.0K] CustomFlywayMigrationStrategy.java
│ │ │ │ │ │ ├── [4.8K] DatabaseKeyService.java
│ │ │ │ │ │ ├── [ 45K] DatabaseMetadataService.java
│ │ │ │ │ │ ├── [3.8K] DataSourceFactory.java
│ │ │ │ │ │ ├── [4.0K] entity
│ │ │ │ │ │ │ ├── [2.5K] BucketEntity.java
│ │ │ │ │ │ │ ├── [2.8K] BucketItemEntity.java
│ │ │ │ │ │ │ ├── [1.4K] BucketItemEntityType.java
│ │ │ │ │ │ │ ├── [2.1K] BundleEntity.java
│ │ │ │ │ │ │ ├── [2.0K] BundleVersionDependencyEntity.java
│ │ │ │ │ │ │ ├── [5.3K] BundleVersionEntity.java
│ │ │ │ │ │ │ ├── [1.4K] ExtensionAdditionalDetailsEntity.java
│ │ │ │ │ │ │ ├── [5.5K] ExtensionEntity.java
│ │ │ │ │ │ │ ├── [2.7K] ExtensionProvidedServiceApiEntity.java
│ │ │ │ │ │ │ ├── [2.3K] ExtensionRestrictionEntity.java
│ │ │ │ │ │ │ ├── [1.2K] ExtensionTagEntity.java
│ │ │ │ │ │ │ ├── [1.4K] FlowEntity.java
│ │ │ │ │ │ │ ├── [2.3K] FlowSnapshotEntity.java
│ │ │ │ │ │ │ ├── [1.4K] KeyEntity.java
│ │ │ │ │ │ │ └── [1.2K] TagCountEntity.java
│ │ │ │ │ │ ├── [4.0K] mapper
│ │ │ │ │ │ │ ├── [1.6K] BucketEntityRowMapper.java
│ │ │ │ │ │ │ ├── [2.7K] BucketItemEntityRowMapper.java
│ │ │ │ │ │ │ ├── [2.0K] BundleEntityRowMapper.java
│ │ │ │ │ │ │ ├── [1.6K] BundleVersionDependencyEntityRowMapper.java
│ │ │ │ │ │ │ ├── [2.4K] BundleVersionEntityRowMapper.java
│ │ │ │ │ │ │ ├── [2.4K] ExtensionEntityRowMapper.java
│ │ │ │ │ │ │ ├── [1.7K] FlowEntityRowMapper.java
│ │ │ │ │ │ │ ├── [1.6K] FlowSnapshotEntityRowMapper.java
│ │ │ │ │ │ │ ├── [1.4K] KeyEntityRowMapper.java
│ │ │ │ │ │ │ └── [1.3K] TagCountEntityMapper.java
│ │ │ │ │ │ └── [4.0K] migration
│ │ │ │ │ │ ├── [2.1K] BucketEntityV1.java
│ │ │ │ │ │ ├── [2.4K] FlowEntityV1.java
│ │ │ │ │ │ ├── [2.4K] FlowSnapshotEntityV1.java
│ │ │ │ │ │ ├── [2.9K] LegacyDatabaseService.java
│ │ │ │ │ │ ├── [3.1K] LegacyDataSourceFactory.java
│ │ │ │ │ │ └── [3.0K] LegacyEntityMapper.java
│ │ │ │ │ ├── [4.0K] event
│ │ │ │ │ │ ├── [ 10K] EventFactory.java
│ │ │ │ │ │ ├── [4.2K] EventService.java
│ │ │ │ │ │ ├── [2.0K] StandardEventField.java
│ │ │ │ │ │ └── [4.5K] StandardEvent.java
│ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ ├── [1.2K] AdministrationException.java
│ │ │ │ │ │ └── [1.2K] ResourceNotFoundException.java
│ │ │ │ │ ├── [4.0K] extension
│ │ │ │ │ │ ├── [1.3K] ExtensionClassLoader.java
│ │ │ │ │ │ ├── [2.2K] ExtensionCloseable.java
│ │ │ │ │ │ └── [8.1K] ExtensionManager.java
│ │ │ │ │ ├── [4.0K] provider
│ │ │ │ │ │ ├── [4.0K] extension
│ │ │ │ │ │ │ ├── [ 12K] FileSystemBundlePersistenceProvider.java
│ │ │ │ │ │ │ ├── [2.9K] StandardBundleCoordinate.java
│ │ │ │ │ │ │ ├── [2.7K] StandardBundlePersistenceContext.java
│ │ │ │ │ │ │ └── [4.2K] StandardBundleVersionCoordinate.java
│ │ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ │ ├── [3.7K] DatabaseFlowPersistenceProvider.java
│ │ │ │ │ │ │ ├── [9.7K] FileSystemFlowPersistenceProvider.java
│ │ │ │ │ │ │ ├── [6.1K] FlowMetadataSynchronizer.java
│ │ │ │ │ │ │ ├── [4.0K] git
│ │ │ │ │ │ │ │ ├── [2.8K] Bucket.java
│ │ │ │ │ │ │ │ ├── [5.0K] Flow.java
│ │ │ │ │ │ │ │ ├── [ 24K] GitFlowMetaData.java
│ │ │ │ │ │ │ │ └── [ 17K] GitFlowPersistenceProvider.java
│ │ │ │ │ │ │ └── [6.2K] StandardFlowSnapshotContext.java
│ │ │ │ │ │ ├── [4.0K] hook
│ │ │ │ │ │ │ ├── [2.1K] LoggingEventHookProvider.java
│ │ │ │ │ │ │ └── [4.0K] ScriptEventHookProvider.java
│ │ │ │ │ │ ├── [1.3K] ProviderFactoryException.java
│ │ │ │ │ │ ├── [1.7K] ProviderFactory.java
│ │ │ │ │ │ ├── [1.4K] StandardProviderConfigurationContext.java
│ │ │ │ │ │ └── [ 15K] StandardProviderFactory.java
│ │ │ │ │ ├── [4.0K] security
│ │ │ │ │ │ ├── [4.0K] authentication
│ │ │ │ │ │ │ ├── [ 11K] IdentityProviderFactory.java
│ │ │ │ │ │ │ └── [1.8K] StandardIdentityProviderConfigurationContext.java
│ │ │ │ │ │ ├── [4.0K] authorization
│ │ │ │ │ │ │ ├── [3.6K] AbstractConfigurableAccessPolicyProvider.java
│ │ │ │ │ │ │ ├── [ 33K] AbstractPolicyBasedAuthorizer.java
│ │ │ │ │ │ │ ├── [2.4K] AuthorizableLookup.java
│ │ │ │ │ │ │ ├── [3.5K] AuthorizerCapabilityDetection.java
│ │ │ │ │ │ │ ├── [1.2K] AuthorizerFactoryException.java
│ │ │ │ │ │ │ ├── [ 49K] AuthorizerFactory.java
│ │ │ │ │ │ │ ├── [9.3K] CompositeConfigurableUserGroupProvider.java
│ │ │ │ │ │ │ ├── [2.2K] CompositeUserAndGroups.java
│ │ │ │ │ │ │ ├── [8.2K] CompositeUserGroupProvider.java
│ │ │ │ │ │ │ ├── [4.0K] database
│ │ │ │ │ │ │ │ ├── [ 18K] DatabaseAccessPolicyProvider.java
│ │ │ │ │ │ │ │ ├── [ 15K] DatabaseUserGroupProvider.java
│ │ │ │ │ │ │ │ ├── [4.0K] entity
│ │ │ │ │ │ │ │ │ ├── [1.4K] DatabaseAccessPolicy.java
│ │ │ │ │ │ │ │ │ ├── [1.3K] DatabaseGroup.java
│ │ │ │ │ │ │ │ │ └── [1.3K] DatabaseUser.java
│ │ │ │ │ │ │ │ └── [4.0K] mapper
│ │ │ │ │ │ │ │ ├── [1.5K] DatabaseAccessPolicyRowMapper.java
│ │ │ │ │ │ │ │ ├── [1.4K] DatabaseGroupRowMapper.java
│ │ │ │ │ │ │ │ └── [1.4K] DatabaseUserRowMapper.java
│ │ │ │ │ │ │ ├── [4.0K] file
│ │ │ │ │ │ │ │ ├── [7.2K] AuthorizationsHolder.java
│ │ │ │ │ │ │ │ ├── [ 29K] FileAccessPolicyProvider.java
│ │ │ │ │ │ │ │ ├── [ 12K] FileAuthorizer.java
│ │ │ │ │ │ │ │ ├── [ 29K] FileUserGroupProvider.java
│ │ │ │ │ │ │ │ └── [8.1K] UserGroupHolder.java
│ │ │ │ │ │ │ ├── [4.0K] resource
│ │ │ │ │ │ │ │ ├── [ 13K] Authorizable.java
│ │ │ │ │ │ │ │ ├── [3.8K] InheritingAuthorizable.java
│ │ │ │ │ │ │ │ ├── [6.8K] ProxyChainAuthorizable.java
│ │ │ │ │ │ │ │ ├── [4.7K] PublicCheckingAuthorizable.java
│ │ │ │ │ │ │ │ ├── [6.6K] ResourceFactory.java
│ │ │ │ │ │ │ │ └── [2.7K] ResourceType.java
│ │ │ │ │ │ │ ├── [ 11K] StandardAuthorizableLookup.java
│ │ │ │ │ │ │ ├── [1.8K] StandardAuthorizerConfigurationContext.java
│ │ │ │ │ │ │ ├── [2.1K] StandardAuthorizerInitializationContext.java
│ │ │ │ │ │ │ ├── [ 13K] StandardManagedAuthorizer.java
│ │ │ │ │ │ │ ├── [1.1K] UntrustedProxyException.java
│ │ │ │ │ │ │ ├── [4.0K] user
│ │ │ │ │ │ │ │ ├── [2.2K] NiFiUserDetails.java
│ │ │ │ │ │ │ │ ├── [1.6K] NiFiUser.java
│ │ │ │ │ │ │ │ ├── [3.1K] NiFiUserUtils.java
│ │ │ │ │ │ │ │ └── [5.5K] StandardNiFiUser.java
│ │ │ │ │ │ │ ├── [1.9K] UsersAndAccessPolicies.java
│ │ │ │ │ │ │ └── [4.0K] util
│ │ │ │ │ │ │ ├── [6.0K] AccessPolicyProviderUtils.java
│ │ │ │ │ │ │ ├── [5.0K] InitialPolicies.java
│ │ │ │ │ │ │ ├── [1.9K] ResourceAndAction.java
│ │ │ │ │ │ │ └── [2.3K] UserGroupProviderUtils.java
│ │ │ │ │ │ ├── [4.0K] identity
│ │ │ │ │ │ │ ├── [2.0K] DefaultIdentityMapper.java
│ │ │ │ │ │ │ └── [1.5K] IdentityMapper.java
│ │ │ │ │ │ ├── [4.0K] key
│ │ │ │ │ │ │ ├── [1.7K] Key.java
│ │ │ │ │ │ │ └── [1.5K] KeyService.java
│ │ │ │ │ │ ├── [4.0K] ldap
│ │ │ │ │ │ │ ├── [ 914] IdentityStrategy.java
│ │ │ │ │ │ │ ├── [ 946] LdapAuthenticationStrategy.java
│ │ │ │ │ │ │ ├── [ 18K] LdapIdentityProvider.java
│ │ │ │ │ │ │ ├── [3.3K] LdapsSocketFactory.java
│ │ │ │ │ │ │ ├── [1.1K] ReferralStrategy.java
│ │ │ │ │ │ │ └── [4.0K] tenants
│ │ │ │ │ │ │ ├── [ 45K] LdapUserGroupProvider.java
│ │ │ │ │ │ │ ├── [ 980] SearchScope.java
│ │ │ │ │ │ │ └── [5.5K] TenantHolder.java
│ │ │ │ │ │ └── [4.0K] util
│ │ │ │ │ │ └── [6.3K] ClassLoaderUtils.java
│ │ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ │ ├── [5.4K] AbstractMultiVersionSerializer.java
│ │ │ │ │ │ ├── [1.9K] ExtensionSerializer.java
│ │ │ │ │ │ ├── [1.3K] FlowContent.java
│ │ │ │ │ │ ├── [7.2K] FlowContentSerializer.java
│ │ │ │ │ │ ├── [4.0K] jackson
│ │ │ │ │ │ │ ├── [1.3K] JacksonExtensionSerializer.java
│ │ │ │ │ │ │ ├── [1.3K] JacksonFlowContentSerializer.java
│ │ │ │ │ │ │ ├── [5.5K] JacksonSerializer.java
│ │ │ │ │ │ │ ├── [1.4K] JacksonVersionedProcessGroupSerializer.java
│ │ │ │ │ │ │ ├── [2.2K] ObjectMapperProvider.java
│ │ │ │ │ │ │ └── [1.6K] SerializationContainer.java
│ │ │ │ │ │ ├── [4.0K] jaxb
│ │ │ │ │ │ │ ├── [5.5K] JAXBSerializer.java
│ │ │ │ │ │ │ └── [1.1K] JAXBVersionedProcessGroupSerializer.java
│ │ │ │ │ │ ├── [ 930] SerializationConstants.java
│ │ │ │ │ │ ├── [1.2K] SerializationException.java
│ │ │ │ │ │ ├── [1.5K] Serializer.java
│ │ │ │ │ │ └── [3.0K] VersionedSerializer.java
│ │ │ │ │ └── [4.0K] service
│ │ │ │ │ ├── [ 39K] AuthorizationService.java
│ │ │ │ │ ├── [4.0K] extension
│ │ │ │ │ │ ├── [1.7K] BundleMetadataExtractors.java
│ │ │ │ │ │ ├── [4.0K] docs
│ │ │ │ │ │ │ ├── [1.3K] DocumentationConstants.java
│ │ │ │ │ │ │ ├── [1.6K] ExtensionDocWriter.java
│ │ │ │ │ │ │ └── [ 36K] HtmlExtensionDocWriter.java
│ │ │ │ │ │ ├── [10.0K] ExtensionService.java
│ │ │ │ │ │ └── [ 46K] StandardExtensionService.java
│ │ │ │ │ ├── [4.0K] mapper
│ │ │ │ │ │ ├── [2.1K] BucketMappings.java
│ │ │ │ │ │ ├── [ 14K] ExtensionMappings.java
│ │ │ │ │ │ ├── [5.6K] FlowMappings.java
│ │ │ │ │ │ └── [1.5K] KeyMappings.java
│ │ │ │ │ ├── [ 17K] MetadataService.java
│ │ │ │ │ ├── [3.4K] QueryParameters.java
│ │ │ │ │ └── [ 47K] RegistryService.java
│ │ │ │ ├── [4.0K] resources
│ │ │ │ │ ├── [4.0K] db
│ │ │ │ │ │ └── [4.0K] migration
│ │ │ │ │ │ ├── [4.0K] default
│ │ │ │ │ │ │ ├── [2.3K] V2__Initial.sql
│ │ │ │ │ │ │ ├── [4.7K] V3__AddExtensions.sql
│ │ │ │ │ │ │ ├── [1.3K] V4__AddCascadeOnDelete.sql
│ │ │ │ │ │ │ ├── [ 863] V5__AddBucketPublicFlags.sql
│ │ │ │ │ │ │ ├── [1.0K] V6__AddFlowPersistence.sql
│ │ │ │ │ │ │ ├── [ 990] V7__AddRevision.sql
│ │ │ │ │ │ │ └── [2.7K] V8__AddUserGroupPolicy.sql
│ │ │ │ │ │ ├── [4.0K] mysql
│ │ │ │ │ │ │ ├── [2.3K] V2__Initial.sql
│ │ │ │ │ │ │ ├── [4.8K] V3__AddExtensions.sql
│ │ │ │ │ │ │ ├── [1.5K] V4__AddCascadeOnDelete.sql
│ │ │ │ │ │ │ ├── [ 861] V5__AddBucketPublicFlags.sql
│ │ │ │ │ │ │ ├── [1.0K] V6__AddFlowPersistence.sql
│ │ │ │ │ │ │ ├── [ 988] V7__AddRevision.sql
│ │ │ │ │ │ │ └── [2.7K] V8__AddUserGroupPolicy.sql
│ │ │ │ │ │ └── [4.0K] postgres
│ │ │ │ │ │ ├── [2.3K] V2__Initial.sql
│ │ │ │ │ │ ├── [4.7K] V3__AddExtensions.sql
│ │ │ │ │ │ ├── [1.3K] V4__AddCascadeOnDelete.sql
│ │ │ │ │ │ ├── [ 863] V5__AddBucketPublicFlags.sql
│ │ │ │ │ │ ├── [1.0K] V6__AddFlowPersistence.sql
│ │ │ │ │ │ ├── [ 990] V7__AddRevision.sql
│ │ │ │ │ │ └── [2.7K] V8__AddUserGroupPolicy.sql
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ ├── [ 860] org.apache.nifi.registry.extension.BundlePersistenceProvider
│ │ │ │ │ ├── [ 994] org.apache.nifi.registry.flow.FlowPersistenceProvider
│ │ │ │ │ ├── [ 907] org.apache.nifi.registry.hook.EventHookProvider
│ │ │ │ │ ├── [ 840] org.apache.nifi.registry.security.authentication.IdentityProvider
│ │ │ │ │ ├── [ 944] org.apache.nifi.registry.security.authorization.AccessPolicyProvider
│ │ │ │ │ ├── [ 922] org.apache.nifi.registry.security.authorization.Authorizer
│ │ │ │ │ └── [1.1K] org.apache.nifi.registry.security.authorization.UserGroupProvider
│ │ │ │ └── [4.0K] xsd
│ │ │ │ ├── [1.5K] aliases.xsd
│ │ │ │ ├── [3.5K] authorizations.xsd
│ │ │ │ ├── [2.9K] authorizers.xsd
│ │ │ │ ├── [2.0K] identity-providers.xsd
│ │ │ │ ├── [2.1K] providers.xsd
│ │ │ │ └── [3.6K] tenants.xsd
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ ├── [4.0K] db
│ │ │ │ │ ├── [1.5K] DatabaseBaseTest.java
│ │ │ │ │ ├── [2.1K] DatabaseTestApplication.java
│ │ │ │ │ ├── [4.0K] migration
│ │ │ │ │ │ └── [3.8K] TestLegacyEntityMapper.java
│ │ │ │ │ ├── [2.8K] TestDatabaseKeyService.java
│ │ │ │ │ └── [ 44K] TestDatabaseMetadataService.java
│ │ │ │ ├── [4.0K] event
│ │ │ │ │ ├── [ 17K] TestEventFactory.java
│ │ │ │ │ ├── [3.3K] TestEventService.java
│ │ │ │ │ └── [1.8K] TestStandardEvent.java
│ │ │ │ ├── [2.2K] GenerateExtensionManifestSchema.java
│ │ │ │ ├── [4.0K] provider
│ │ │ │ │ ├── [4.0K] extension
│ │ │ │ │ │ └── [ 15K] TestFileSystemBundlePersistenceProvider.java
│ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ ├── [4.0K] git
│ │ │ │ │ │ │ └── [ 15K] TestGitFlowPersistenceProvider.java
│ │ │ │ │ │ ├── [4.0K] TestDatabaseFlowPersistenceProvider.java
│ │ │ │ │ │ ├── [8.5K] TestFileSystemFlowPersistenceProvider.java
│ │ │ │ │ │ ├── [5.4K] TestFlowMetadataSynchronizer.java
│ │ │ │ │ │ └── [2.3K] TestStandardFlowSnapshotContext.java
│ │ │ │ │ ├── [4.0K] hook
│ │ │ │ │ │ └── [2.5K] TestScriptEventHookProvider.java
│ │ │ │ │ ├── [2.4K] MockBundlePersistenceProvider.java
│ │ │ │ │ ├── [2.0K] MockFlowPersistenceProvider.java
│ │ │ │ │ └── [6.2K] TestStandardProviderFactory.java
│ │ │ │ ├── [4.0K] security
│ │ │ │ │ ├── [4.0K] authorization
│ │ │ │ │ │ ├── [4.0K] database
│ │ │ │ │ │ │ ├── [ 22K] TestDatabaseAccessPolicyProvider.java
│ │ │ │ │ │ │ └── [ 25K] TestDatabaseUserGroupProvider.java
│ │ │ │ │ │ └── [ 20K] TestStandardAuthorizableLookup.java
│ │ │ │ │ └── [4.0K] ldap
│ │ │ │ │ └── [4.0K] tenants
│ │ │ │ │ └── [ 48K] LdapUserGroupProviderTest.java
│ │ │ │ ├── [4.0K] serialization
│ │ │ │ │ ├── [4.0K] jaxb
│ │ │ │ │ │ └── [2.9K] TestJAXBVersionedProcessGroupSerializer.java
│ │ │ │ │ ├── [2.1K] TestExtensionSerializer.java
│ │ │ │ │ └── [ 12K] TestFlowContentSerializer.java
│ │ │ │ └── [4.0K] service
│ │ │ │ ├── [4.0K] extension
│ │ │ │ │ └── [4.0K] docs
│ │ │ │ │ ├── [4.1K] TestHtmlExtensionDocWriter.java
│ │ │ │ │ └── [1.9K] XmlValidator.java
│ │ │ │ └── [ 65K] TestRegistryService.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [1.4K] application.properties
│ │ │ ├── [4.0K] db
│ │ │ │ └── [4.0K] migration
│ │ │ │ └── [4.0K] common
│ │ │ │ └── [7.5K] V999999.1__test-setup.sql
│ │ │ ├── [4.0K] extensions
│ │ │ │ └── [ 16K] ConsumeKafkaRecord_1_0.json
│ │ │ ├── [3.8K] nifi-example.ldif
│ │ │ ├── [4.0K] provider
│ │ │ │ ├── [4.0K] hook
│ │ │ │ │ └── [1.6K] bad-script-provider.xml
│ │ │ │ ├── [1.4K] providers-class-not-found.xml
│ │ │ │ └── [1.4K] providers-good.xml
│ │ │ ├── [4.0K] security
│ │ │ │ ├── [2.3K] authorizers-bad-ap-provider-ids.xml
│ │ │ │ ├── [2.2K] authorizers-bad-authorizer-ids.xml
│ │ │ │ ├── [2.7K] authorizers-bad-composite.xml
│ │ │ │ ├── [2.8K] authorizers-bad-configurable-composite.xml
│ │ │ │ ├── [2.2K] authorizers-bad-ug-provider-ids.xml
│ │ │ │ └── [1.8K] authorizers-good-file-providers.xml
│ │ │ └── [4.0K] serialization
│ │ │ ├── [4.0K] json
│ │ │ │ ├── [ 68] non-integer-version.snapshot
│ │ │ │ └── [ 38] no-version.snapshot
│ │ │ ├── [4.3K] ver1.snapshot
│ │ │ ├── [2.8K] ver2.snapshot
│ │ │ ├── [ 804] ver3.snapshot
│ │ │ └── [ 77] ver9999.snapshot
│ │ ├── [4.0K] nifi-registry-jetty
│ │ │ ├── [4.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] jetty
│ │ │ │ ├── [4.0K] connector
│ │ │ │ │ └── [9.4K] ApplicationServerConnectorFactory.java
│ │ │ │ ├── [4.0K] handler
│ │ │ │ │ ├── [1.3K] HandlerProvider.java
│ │ │ │ │ ├── [2.6K] HeaderWriterHandler.java
│ │ │ │ │ └── [ 11K] StandardHandlerProvider.java
│ │ │ │ └── [6.5K] JettyServer.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] jetty
│ │ │ ├── [4.0K] connector
│ │ │ │ └── [8.0K] ApplicationServerConnectorFactoryTest.java
│ │ │ ├── [4.0K] handler
│ │ │ │ └── [1.7K] StandardHandlerProviderTest.java
│ │ │ └── [2.9K] JettyServerTest.java
│ │ ├── [4.0K] nifi-registry-properties
│ │ │ ├── [1.8K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] properties
│ │ │ ├── [ 21K] NiFiRegistryProperties.java
│ │ │ └── [4.0K] util
│ │ │ ├── [2.0K] IdentityMapping.java
│ │ │ ├── [9.5K] IdentityMappingUtil.java
│ │ │ ├── [1.4K] NiFiRegistryBootstrapPropertiesLoader.java
│ │ │ └── [2.5K] NiFiRegistryBootstrapUtils.java
│ │ ├── [4.0K] nifi-registry-properties-loader
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] properties
│ │ │ └── [2.8K] NiFiRegistryPropertiesLoader.java
│ │ ├── [4.0K] nifi-registry-provider-api
│ │ │ ├── [1.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ ├── [4.0K] extension
│ │ │ │ ├── [1.3K] BundleCoordinate.java
│ │ │ │ ├── [1.4K] BundlePersistenceContext.java
│ │ │ │ ├── [1.2K] BundlePersistenceException.java
│ │ │ │ ├── [3.4K] BundlePersistenceProvider.java
│ │ │ │ ├── [1.6K] BundleVersionCoordinate.java
│ │ │ │ └── [ 969] BundleVersionType.java
│ │ │ ├── [4.0K] flow
│ │ │ │ ├── [1.2K] FlowPersistenceException.java
│ │ │ │ ├── [3.1K] FlowPersistenceProvider.java
│ │ │ │ ├── [1.9K] FlowSnapshotContext.java
│ │ │ │ └── [1.5K] MetadataAwareFlowPersistenceProvider.java
│ │ │ ├── [4.0K] hook
│ │ │ │ ├── [1.0K] EventField.java
│ │ │ │ ├── [1.2K] EventFieldName.java
│ │ │ │ ├── [1.2K] EventHookException.java
│ │ │ │ ├── [2.0K] EventHookProvider.java
│ │ │ │ ├── [1.7K] Event.java
│ │ │ │ ├── [5.0K] EventType.java
│ │ │ │ └── [2.6K] WhitelistFilteringEventHookProvider.java
│ │ │ ├── [4.0K] metadata
│ │ │ │ ├── [1.8K] BucketMetadata.java
│ │ │ │ ├── [1.8K] FlowMetadata.java
│ │ │ │ └── [1.6K] FlowSnapshotMetadata.java
│ │ │ └── [4.0K] provider
│ │ │ ├── [1.3K] ProviderConfigurationContext.java
│ │ │ ├── [1.3K] ProviderContext.java
│ │ │ ├── [1.3K] ProviderCreationException.java
│ │ │ └── [1.4K] Provider.java
│ │ ├── [4.0K] nifi-registry-resources
│ │ │ ├── [2.2K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] assembly
│ │ │ │ └── [1.4K] dependencies.xml
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] bin
│ │ │ │ ├── [1.8K] dump-nifi-registry.bat
│ │ │ │ ├── [1.1K] nifi-registry-env.sh
│ │ │ │ ├── [ 12K] nifi-registry.sh
│ │ │ │ ├── [2.0K] run-nifi-registry.bat
│ │ │ │ └── [1.9K] status-nifi-registry.bat
│ │ │ └── [4.0K] conf
│ │ │ ├── [ 19K] authorizers.xml
│ │ │ ├── [1.9K] bootstrap.conf
│ │ │ ├── [6.0K] identity-providers.xml
│ │ │ ├── [6.9K] logback.xml
│ │ │ ├── [6.6K] nifi-registry.properties
│ │ │ ├── [4.9K] providers.xml
│ │ │ └── [1020] registry-aliases.xml
│ │ ├── [4.0K] nifi-registry-revision
│ │ │ ├── [4.0K] nifi-registry-revision-api
│ │ │ │ ├── [1.3K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] revision
│ │ │ │ └── [4.0K] api
│ │ │ │ ├── [1.1K] DeleteRevisionTask.java
│ │ │ │ ├── [1.9K] EntityModification.java
│ │ │ │ ├── [1.3K] ExpiredRevisionClaimException.java
│ │ │ │ ├── [1.4K] InvalidRevisionException.java
│ │ │ │ ├── [1.2K] RevisionClaim.java
│ │ │ │ ├── [3.8K] Revision.java
│ │ │ │ ├── [4.2K] RevisionManager.java
│ │ │ │ ├── [1.5K] RevisionUpdate.java
│ │ │ │ ├── [1.4K] UpdateResult.java
│ │ │ │ └── [1.3K] UpdateRevisionTask.java
│ │ │ ├── [4.0K] nifi-registry-revision-common
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] revision
│ │ │ │ ├── [4.0K] naive
│ │ │ │ │ └── [6.8K] NaiveRevisionManager.java
│ │ │ │ ├── [4.0K] standard
│ │ │ │ │ ├── [1.6K] RevisionComparator.java
│ │ │ │ │ ├── [1.7K] StandardRevisionClaim.java
│ │ │ │ │ ├── [2.3K] StandardRevisionUpdate.java
│ │ │ │ │ └── [1.9K] StandardUpdateResult.java
│ │ │ │ └── [4.0K] web
│ │ │ │ ├── [1.4K] ClientIdParameter.java
│ │ │ │ └── [1.4K] LongParameter.java
│ │ │ ├── [4.0K] nifi-registry-revision-entity-model
│ │ │ │ ├── [1.6K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] revision
│ │ │ │ └── [4.0K] entity
│ │ │ │ ├── [1.4K] RevisableEntity.java
│ │ │ │ └── [2.7K] RevisionInfo.java
│ │ │ ├── [4.0K] nifi-registry-revision-entity-service
│ │ │ │ ├── [1.8K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] registry
│ │ │ │ │ └── [4.0K] revision
│ │ │ │ │ └── [4.0K] entity
│ │ │ │ │ ├── [3.4K] RevisableEntityService.java
│ │ │ │ │ └── [8.1K] StandardRevisableEntityService.java
│ │ │ │ └── [4.0K] test
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] revision
│ │ │ │ └── [4.0K] entity
│ │ │ │ └── [10.0K] TestStandardRevisableEntityService.java
│ │ │ ├── [4.0K] nifi-registry-revision-spring-jdbc
│ │ │ │ ├── [2.7K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ └── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] registry
│ │ │ │ │ └── [4.0K] revision
│ │ │ │ │ └── [4.0K] jdbc
│ │ │ │ │ ├── [ 11K] JdbcRevisionManager.java
│ │ │ │ │ └── [1.4K] RevisionRowMapper.java
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] registry
│ │ │ │ │ ├── [4.0K] revision
│ │ │ │ │ │ └── [4.0K] jdbc
│ │ │ │ │ │ └── [ 18K] TestJdbcRevisionManager.java
│ │ │ │ │ └── [1.5K] TestApplication.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [1.0K] application.properties
│ │ │ └── [1.6K] pom.xml
│ │ ├── [4.0K] nifi-registry-runtime
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ ├── [ 15K] BootstrapListener.java
│ │ │ ├── [7.4K] NiFiRegistry.java
│ │ │ └── [4.0K] util
│ │ │ └── [2.7K] LimitingInputStream.java
│ │ ├── [4.0K] nifi-registry-security-api
│ │ │ ├── [1.9K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] security
│ │ │ ├── [4.0K] authentication
│ │ │ │ ├── [4.0K] annotation
│ │ │ │ │ └── [1.2K] IdentityProviderContext.java
│ │ │ │ ├── [2.4K] AuthenticationRequest.java
│ │ │ │ ├── [4.1K] AuthenticationResponse.java
│ │ │ │ ├── [3.7K] BasicAuthIdentityProvider.java
│ │ │ │ ├── [2.8K] BearerAuthIdentityProvider.java
│ │ │ │ ├── [4.0K] exception
│ │ │ │ │ ├── [1.2K] IdentityAccessException.java
│ │ │ │ │ └── [1.2K] InvalidCredentialsException.java
│ │ │ │ ├── [1.8K] IdentityProviderConfigurationContext.java
│ │ │ │ ├── [9.6K] IdentityProvider.java
│ │ │ │ ├── [ 968] IdentityProviderLookup.java
│ │ │ │ ├── [4.3K] IdentityProviderUsage.java
│ │ │ │ └── [1.1K] UsernamePasswordAuthenticationRequest.java
│ │ │ ├── [4.0K] authorization
│ │ │ │ ├── [ 11K] AccessPolicy.java
│ │ │ │ ├── [1.2K] AccessPolicyProviderInitializationContext.java
│ │ │ │ ├── [3.8K] AccessPolicyProvider.java
│ │ │ │ ├── [1.2K] AccessPolicyProviderLookup.java
│ │ │ │ ├── [4.0K] annotation
│ │ │ │ │ └── [1.2K] AuthorizerContext.java
│ │ │ │ ├── [1.3K] AuthorizationAuditor.java
│ │ │ │ ├── [8.0K] AuthorizationRequest.java
│ │ │ │ ├── [3.5K] AuthorizationResult.java
│ │ │ │ ├── [1.6K] AuthorizerConfigurationContext.java
│ │ │ │ ├── [1.2K] AuthorizerInitializationContext.java
│ │ │ │ ├── [2.8K] Authorizer.java
│ │ │ │ ├── [1.1K] AuthorizerLookup.java
│ │ │ │ ├── [4.7K] ConfigurableAccessPolicyProvider.java
│ │ │ │ ├── [6.3K] ConfigurableUserGroupProvider.java
│ │ │ │ ├── [4.0K] exception
│ │ │ │ │ ├── [1.4K] AccessDeniedException.java
│ │ │ │ │ ├── [1.3K] AuthorizationAccessException.java
│ │ │ │ │ └── [1.1K] UninheritableAuthorizationsException.java
│ │ │ │ ├── [7.8K] Group.java
│ │ │ │ ├── [2.8K] ManagedAuthorizer.java
│ │ │ │ ├── [2.0K] RequestAction.java
│ │ │ │ ├── [1.4K] Resource.java
│ │ │ │ ├── [1.6K] UserAndGroups.java
│ │ │ │ ├── [1009] UserContextKeys.java
│ │ │ │ ├── [1.3K] UserGroupProviderInitializationContext.java
│ │ │ │ ├── [4.5K] UserGroupProvider.java
│ │ │ │ ├── [1.2K] UserGroupProviderLookup.java
│ │ │ │ └── [5.7K] User.java
│ │ │ └── [4.0K] exception
│ │ │ ├── [1.3K] SecurityProviderCreationException.java
│ │ │ └── [1.4K] SecurityProviderDestructionException.java
│ │ ├── [4.0K] nifi-registry-security-utils
│ │ │ ├── [1.7K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] security
│ │ │ └── [4.0K] util
│ │ │ ├── [4.0K] kerberos
│ │ │ │ └── [2.4K] KerberosPrincipalParser.java
│ │ │ ├── [ 938] KeystoreType.java
│ │ │ └── [ 10K] ProxiedEntitiesUtils.java
│ │ ├── [4.0K] nifi-registry-test
│ │ │ ├── [3.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] db
│ │ │ ├── [2.5K] DatabaseProfileValueSource.java
│ │ │ ├── [1.4K] MariaDB10_3DataSourceFactory.java
│ │ │ ├── [1.5K] MariaDBCustomContainer.java
│ │ │ ├── [2.0K] MariaDBDataSourceFactory.java
│ │ │ ├── [1.3K] MySql8DataSourceFactory.java
│ │ │ ├── [1.5K] MySqlCustomContainer.java
│ │ │ ├── [2.0K] MySqlDataSourceFactory.java
│ │ │ ├── [2.1K] Postgres10DataSourceFactory.java
│ │ │ ├── [2.1K] Postgres11DataSourceFactory.java
│ │ │ ├── [2.1K] Postgres12DataSourceFactory.java
│ │ │ ├── [2.1K] Postgres13DataSourceFactory.java
│ │ │ ├── [2.1K] Postgres14DataSourceFactory.java
│ │ │ └── [1.2K] TestDataSourceFactory.java
│ │ ├── [4.0K] nifi-registry-utils
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] util
│ │ │ │ ├── [6.9K] DataUnit.java
│ │ │ │ ├── [1.5K] EscapeUtils.java
│ │ │ │ ├── [ 18K] FileUtils.java
│ │ │ │ ├── [ 18K] FormatUtils.java
│ │ │ │ ├── [2.9K] PropertyValue.java
│ │ │ │ └── [2.3K] StandardPropertyValue.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] util
│ │ │ └── [1.2K] TestFileUtils.java
│ │ ├── [4.0K] nifi-registry-web-api
│ │ │ ├── [ 15K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] registry
│ │ │ │ │ ├── [4.4K] NiFiRegistryApiApplication.java
│ │ │ │ │ ├── [1.8K] NiFiRegistryPropertiesFactory.java
│ │ │ │ │ └── [4.0K] web
│ │ │ │ │ ├── [4.0K] api
│ │ │ │ │ │ ├── [ 16K] AccessPolicyResource.java
│ │ │ │ │ │ ├── [ 53K] AccessResource.java
│ │ │ │ │ │ ├── [8.7K] ApplicationResource.java
│ │ │ │ │ │ ├── [7.6K] BucketBundleResource.java
│ │ │ │ │ │ ├── [ 32K] BucketFlowResource.java
│ │ │ │ │ │ ├── [ 12K] BucketResource.java
│ │ │ │ │ │ ├── [ 25K] BundleResource.java
│ │ │ │ │ │ ├── [3.1K] ConfigResource.java
│ │ │ │ │ │ ├── [ 28K] ExtensionRepoResource.java
│ │ │ │ │ │ ├── [8.4K] ExtensionResource.java
│ │ │ │ │ │ ├── [ 11K] FlowResource.java
│ │ │ │ │ │ ├── [1.7K] HttpStatusMessages.java
│ │ │ │ │ │ ├── [5.8K] ItemResource.java
│ │ │ │ │ │ ├── [2.4K] RegistryAboutResource.java
│ │ │ │ │ │ └── [ 23K] TenantResource.java
│ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ └── [2.5K] UnauthorizedException.java
│ │ │ │ │ ├── [4.0K] link
│ │ │ │ │ │ ├── [1.0K] LinkBuilder.java
│ │ │ │ │ │ └── [ 17K] LinkService.java
│ │ │ │ │ ├── [4.0K] mapper
│ │ │ │ │ │ ├── [2.9K] AccessDeniedExceptionMapper.java
│ │ │ │ │ │ ├── [1.8K] AdministrationExceptionMapper.java
│ │ │ │ │ │ ├── [2.0K] AuthenticationCredentialsNotFoundExceptionMapper.java
│ │ │ │ │ │ ├── [1.8K] AuthorizationAccessExceptionMapper.java
│ │ │ │ │ │ ├── [1.8K] BadRequestExceptionMapper.java
│ │ │ │ │ │ ├── [2.7K] ConstraintViolationExceptionMapper.java
│ │ │ │ │ │ ├── [1.8K] IllegalArgumentExceptionMapper.java
│ │ │ │ │ │ ├── [1.7K] IllegalStateExceptionMapper.java
│ │ │ │ │ │ ├── [1.8K] InvalidAuthenticationExceptionMapper.java
│ │ │ │ │ │ ├── [1.8K] InvalidRevisionExceptionMapper.java
│ │ │ │ │ │ ├── [1.4K] NiFiRegistryJsonProvider.java
│ │ │ │ │ │ ├── [1.8K] NotAllowedExceptionMapper.java
│ │ │ │ │ │ ├── [1.8K] NotFoundExceptionMapper.java
│ │ │ │ │ │ ├── [1.8K] QueryParamExceptionMapper.java
│ │ │ │ │ │ ├── [1.8K] ResourceNotFoundExceptionMapper.java
│ │ │ │ │ │ ├── [1.8K] SerializationExceptionMapper.java
│ │ │ │ │ │ ├── [1.7K] ThrowableMapper.java
│ │ │ │ │ │ ├── [2.2K] UnauthorizedExceptionMapper.java
│ │ │ │ │ │ └── [1.8K] UntrustedProxyExceptionMapper.java
│ │ │ │ │ ├── [4.1K] NiFiRegistryResourceConfig.java
│ │ │ │ │ ├── [4.0K] security
│ │ │ │ │ │ ├── [4.0K] authentication
│ │ │ │ │ │ │ ├── [1.6K] AnonymousIdentityFilter.java
│ │ │ │ │ │ │ ├── [3.3K] AuthenticationRequestToken.java
│ │ │ │ │ │ │ ├── [2.0K] AuthenticationSuccessToken.java
│ │ │ │ │ │ │ ├── [4.0K] csrf
│ │ │ │ │ │ │ │ ├── [1.9K] CsrfCookieFilter.java
│ │ │ │ │ │ │ │ ├── [1.3K] CsrfCookieName.java
│ │ │ │ │ │ │ │ ├── [1.7K] CsrfRequestMatcher.java
│ │ │ │ │ │ │ │ ├── [4.7K] StandardCookieCsrfTokenRepository.java
│ │ │ │ │ │ │ │ └── [2.8K] StandardCsrfTokenRequestAttributeHandler.java
│ │ │ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ │ │ └── [1.3K] InvalidAuthenticationException.java
│ │ │ │ │ │ │ ├── [6.4K] IdentityAuthenticationProvider.java
│ │ │ │ │ │ │ ├── [4.7K] IdentityFilter.java
│ │ │ │ │ │ │ ├── [4.0K] jwt
│ │ │ │ │ │ │ │ ├── [4.1K] JwtIdentityProvider.java
│ │ │ │ │ │ │ │ └── [ 11K] JwtService.java
│ │ │ │ │ │ │ ├── [4.0K] kerberos
│ │ │ │ │ │ │ │ ├── [7.2K] KerberosIdentityProvider.java
│ │ │ │ │ │ │ │ ├── [2.7K] KerberosSpnegoFactory.java
│ │ │ │ │ │ │ │ ├── [7.8K] KerberosSpnegoIdentityProvider.java
│ │ │ │ │ │ │ │ ├── [2.9K] KerberosTicketValidatorFactory.java
│ │ │ │ │ │ │ │ └── [1.6K] KerberosUserDetailsService.java
│ │ │ │ │ │ │ ├── [4.0K] oidc
│ │ │ │ │ │ │ │ ├── [3.4K] OidcIdentityProvider.java
│ │ │ │ │ │ │ │ ├── [ 12K] OidcService.java
│ │ │ │ │ │ │ │ └── [ 27K] StandardOidcIdentityProvider.java
│ │ │ │ │ │ │ ├── [4.0K] util
│ │ │ │ │ │ │ │ └── [2.0K] CacheKey.java
│ │ │ │ │ │ │ └── [4.0K] x509
│ │ │ │ │ │ │ ├── [1.4K] SubjectDnX509PrincipalExtractor.java
│ │ │ │ │ │ │ ├── [1.4K] X509AuthenticationRequestDetails.java
│ │ │ │ │ │ │ ├── [1.8K] X509CertificateExtractor.java
│ │ │ │ │ │ │ ├── [5.3K] X509IdentityAuthenticationProvider.java
│ │ │ │ │ │ │ └── [8.4K] X509IdentityProvider.java
│ │ │ │ │ │ ├── [4.0K] authorization
│ │ │ │ │ │ │ ├── [1.7K] HttpMethodAuthorizationRules.java
│ │ │ │ │ │ │ ├── [ 10K] ResourceAuthorizationFilter.java
│ │ │ │ │ │ │ └── [1.5K] StandardHttpMethodAuthorizationRules.java
│ │ │ │ │ │ ├── [ 11K] NiFiRegistrySecurityConfig.java
│ │ │ │ │ │ └── [4.1K] PermissionsService.java
│ │ │ │ │ └── [4.0K] service
│ │ │ │ │ ├── [2.1K] ExportedVersionedFlowSnapshot.java
│ │ │ │ │ ├── [2.0K] RevisionConfiguration.java
│ │ │ │ │ ├── [ 913] RevisionFeature.java
│ │ │ │ │ ├── [ 10K] ServiceFacade.java
│ │ │ │ │ ├── [ 62K] StandardServiceFacade.java
│ │ │ │ │ └── [1.3K] StreamingContent.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ ├── [ 253] banner.txt
│ │ │ │ ├── [4.0K] images
│ │ │ │ │ ├── [5.8K] bgNifiLogo.png
│ │ │ │ │ └── [1.1K] nifi16.ico
│ │ │ │ ├── [4.0K] META-INF
│ │ │ │ │ ├── [ 19K] LICENSE
│ │ │ │ │ ├── [8.4K] NOTICE
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 867] org.apache.nifi.registry.security.authentication.IdentityProvider
│ │ │ │ ├── [4.0K] openapi
│ │ │ │ │ └── [1.1K] openapi.yaml
│ │ │ │ └── [4.0K] templates
│ │ │ │ └── [2.4K] style.css.mustache
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ ├── [2.0K] NiFiRegistryTestApiApplication.java
│ │ │ │ ├── [2.1K] SecureLdapTestApiApplication.java
│ │ │ │ └── [4.0K] web
│ │ │ │ ├── [4.0K] api
│ │ │ │ │ ├── [ 13K] BucketsIT.java
│ │ │ │ │ ├── [7.8K] DBFlowStorageIT.java
│ │ │ │ │ ├── [ 33K] FlowsIT.java
│ │ │ │ │ ├── [9.2K] IntegrationTestBase.java
│ │ │ │ │ ├── [5.8K] IntegrationTestUtils.java
│ │ │ │ │ ├── [5.9K] NoRevisionsIT.java
│ │ │ │ │ ├── [8.7K] SecureFileIT.java
│ │ │ │ │ ├── [4.0K] SecureITClientConfiguration.java
│ │ │ │ │ ├── [9.5K] SecureKerberosIT.java
│ │ │ │ │ ├── [6.7K] SecureNiFiRegistryClientIT.java
│ │ │ │ │ ├── [7.5K] SecureProxyIT.java
│ │ │ │ │ ├── [6.3K] TenantResourceTest.java
│ │ │ │ │ ├── [2.0K] UnsecuredITBase.java
│ │ │ │ │ ├── [ 11K] UnsecuredNiFiRegistryClientIT.java
│ │ │ │ │ └── [2.0K] UnsecuredNoRevisionsITBase.java
│ │ │ │ ├── [4.0K] link
│ │ │ │ │ └── [ 15K] TestLinkService.java
│ │ │ │ └── [4.0K] security
│ │ │ │ └── [4.0K] authentication
│ │ │ │ └── [4.0K] oidc
│ │ │ │ ├── [6.6K] OidcServiceTest.java
│ │ │ │ └── [3.6K] StandardOidcIdentityProviderTest.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [1008] application-ITDBFlowStorage.properties
│ │ │ ├── [1.6K] application-ITSecureDatabase.properties
│ │ │ ├── [1.6K] application-ITSecureFile.properties
│ │ │ ├── [1.6K] application-ITSecureKerberos.properties
│ │ │ ├── [2.1K] application-ITSecureLdap.properties
│ │ │ ├── [1.6K] application-ITSecureProxy.properties
│ │ │ ├── [1016] application-ITUnsecuredNoRevisions.properties
│ │ │ ├── [1003] application-ITUnsecured.properties
│ │ │ ├── [1.4K] application.properties
│ │ │ ├── [ 246] banner.txt
│ │ │ ├── [4.0K] conf
│ │ │ │ ├── [4.0K] db-flow-storage
│ │ │ │ │ └── [1.2K] nifi-registry.properties
│ │ │ │ ├── [1.3K] providers-db-flow-storage.xml
│ │ │ │ ├── [1.4K] providers.xml
│ │ │ │ ├── [4.0K] secure-database
│ │ │ │ │ ├── [4.0K] authorizers.xml
│ │ │ │ │ ├── [1.2K] nifi-registry-client.properties
│ │ │ │ │ └── [1.3K] nifi-registry.properties
│ │ │ │ ├── [4.0K] secure-file
│ │ │ │ │ ├── [8.2K] authorizers.xml
│ │ │ │ │ ├── [1.2K] nifi-registry-client.properties
│ │ │ │ │ └── [1.3K] nifi-registry.properties
│ │ │ │ ├── [4.0K] secure-kerberos
│ │ │ │ │ ├── [5.5K] authorizers.xml
│ │ │ │ │ ├── [1.4K] identity-providers.xml
│ │ │ │ │ ├── [1.1K] nifi-registry-client.properties
│ │ │ │ │ └── [1.7K] nifi-registry.properties
│ │ │ │ ├── [4.0K] secure-ldap
│ │ │ │ │ ├── [ 13K] authorizers.protected.xml
│ │ │ │ │ ├── [ 15K] authorizers.xml
│ │ │ │ │ ├── [2.1K] bootstrap.conf
│ │ │ │ │ ├── [5.2K] identity-providers.protected.xml
│ │ │ │ │ ├── [5.0K] identity-providers.xml
│ │ │ │ │ ├── [1.1K] nifi-registry-client.properties
│ │ │ │ │ ├── [1.5K] nifi-registry.properties
│ │ │ │ │ └── [5.8K] test-ldap-data.ldif
│ │ │ │ ├── [4.0K] secure-proxy
│ │ │ │ │ ├── [5.8K] authorizers.xml
│ │ │ │ │ ├── [1.2K] nifi-registry-client.properties
│ │ │ │ │ └── [1.3K] nifi-registry.properties
│ │ │ │ ├── [4.0K] unsecured
│ │ │ │ │ └── [1.2K] nifi-registry.properties
│ │ │ │ └── [4.0K] unsecured-no-revisions
│ │ │ │ └── [1.2K] nifi-registry.properties
│ │ │ ├── [4.0K] db
│ │ │ │ ├── [1.2K] BucketsIT.sql
│ │ │ │ ├── [ 925] clearDB.sql
│ │ │ │ └── [2.1K] FlowsIT.sql
│ │ │ ├── [4.0K] extensions
│ │ │ │ └── [4.0K] nars
│ │ │ │ ├── [1.1K] nifi-foo-nar-1.0.0.nar
│ │ │ │ ├── [1.3K] nifi-foo-nar-2.0.0-SNAPSHOT-BUILD1.nar
│ │ │ │ ├── [1.3K] nifi-foo-nar-2.0.0-SNAPSHOT-BUILD2.nar
│ │ │ │ ├── [1.3K] nifi-foo-nar-2.0.0-SNAPSHOT-BUILD3.nar
│ │ │ │ ├── [1.3K] nifi-test-nar-1.0.0.nar
│ │ │ │ ├── [1.2K] nifi-test-nar-2.0.0-bad-manifest.nar
│ │ │ │ ├── [1.5K] nifi-test-nar-2.0.0-diff-checksum.nar
│ │ │ │ ├── [ 571] nifi-test-nar-2.0.0-missing-docs-descriptor.nar
│ │ │ │ ├── [ 934] nifi-test-nar-2.0.0-missing-manifest.nar
│ │ │ │ ├── [1.3K] nifi-test-nar-2.0.0.nar
│ │ │ │ └── [1.3K] nifi-test-nar-2.0.0-no-dependency.nar
│ │ │ ├── [4.0K] keys
│ │ │ │ ├── [1.2K] ca-cert.pem
│ │ │ │ ├── [1.6K] ca-key.pem
│ │ │ │ ├── [ 935] ca-ts.jks
│ │ │ │ ├── [1.1K] ca-ts.p12
│ │ │ │ ├── [2.8K] proxy-cert.pem
│ │ │ │ ├── [4.7K] proxy-key.pem
│ │ │ │ ├── [3.0K] proxy-ks.jks
│ │ │ │ ├── [3.5K] proxy-ks.p12
│ │ │ │ ├── [ 11K] README.md
│ │ │ │ ├── [2.8K] registry-cert.pem
│ │ │ │ ├── [4.7K] registry-key.pem
│ │ │ │ ├── [3.1K] registry-ks.jks
│ │ │ │ ├── [3.5K] registry-ks.p12
│ │ │ │ ├── [2.7K] user1-cert.pem
│ │ │ │ ├── [4.6K] user1-key.pem
│ │ │ │ ├── [3.0K] user1-ks.jks
│ │ │ │ └── [3.5K] user1-ks.p12
│ │ │ └── [ 496] test-versioned-flow-snapshot.json
│ │ ├── [4.0K] nifi-registry-web-docs
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 12K] LICENSE
│ │ │ │ └── [ 526] NOTICE
│ │ │ └── [4.0K] webapp
│ │ │ ├── [4.0K] css
│ │ │ │ ├── [3.3K] component-usage.css
│ │ │ │ └── [4.0K] main.css
│ │ │ ├── [4.0K] images
│ │ │ │ ├── [ 189] bgBannerFoot.png
│ │ │ │ ├── [1.4K] bgHeader.png
│ │ │ │ ├── [ 232] bgTableHeader.png
│ │ │ │ ├── [ 562] iconInfo.png
│ │ │ │ └── [ 388] registry-favicon.png
│ │ │ ├── [4.0K] js
│ │ │ │ ├── [ 16K] application.js
│ │ │ │ └── [ 85K] jquery.min.js
│ │ │ └── [4.0K] WEB-INF
│ │ │ ├── [4.0K] jsp
│ │ │ │ ├── [4.9K] documentation.jsp
│ │ │ │ └── [1.4K] no-documentation-found.jsp
│ │ │ └── [1.6K] web.xml
│ │ ├── [4.0K] nifi-registry-web-ui
│ │ │ ├── [ 18K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [1.2K] angular-url-loader.js
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] web
│ │ │ │ └── [4.0K] filter
│ │ │ │ ├── [2.1K] LoginFilter.java
│ │ │ │ └── [2.1K] LogoutFilter.java
│ │ │ ├── [3.8K] karma.conf.js
│ │ │ ├── [4.0K] locale
│ │ │ │ └── [7.9K] messages.es.xlf
│ │ │ ├── [5.9K] package.json
│ │ │ ├── [1.3M] package-lock.json
│ │ │ ├── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ ├── [ 41K] LICENSE
│ │ │ │ └── [1.5K] NOTICE
│ │ │ ├── [1.5K] tsconfig.json
│ │ │ ├── [4.0K] webapp
│ │ │ │ ├── [4.0K] components
│ │ │ │ │ ├── [4.0K] administration
│ │ │ │ │ │ ├── [2.2K] nf-registry-administration.html
│ │ │ │ │ │ ├── [2.9K] nf-registry-administration.js
│ │ │ │ │ │ ├── [3.3K] nf-registry-administration.spec.js
│ │ │ │ │ │ ├── [4.0K] users
│ │ │ │ │ │ │ ├── [4.0K] dialogs
│ │ │ │ │ │ │ │ ├── [4.0K] add-user
│ │ │ │ │ │ │ │ │ ├── [2.2K] nf-registry-add-user.html
│ │ │ │ │ │ │ │ │ ├── [3.4K] nf-registry-add-user.js
│ │ │ │ │ │ │ │ │ └── [3.2K] nf-registry-add-user.spec.js
│ │ │ │ │ │ │ │ ├── [4.0K] add-users-to-group
│ │ │ │ │ │ │ │ │ ├── [4.3K] nf-registry-add-users-to-group.html
│ │ │ │ │ │ │ │ │ ├── [9.3K] nf-registry-add-users-to-group.js
│ │ │ │ │ │ │ │ │ └── [6.0K] nf-registry-add-users-to-group.spec.js
│ │ │ │ │ │ │ │ ├── [4.0K] add-user-to-groups
│ │ │ │ │ │ │ │ │ ├── [4.4K] nf-registry-add-user-to-groups.html
│ │ │ │ │ │ │ │ │ ├── [9.8K] nf-registry-add-user-to-groups.js
│ │ │ │ │ │ │ │ │ └── [6.3K] nf-registry-add-user-to-groups.spec.js
│ │ │ │ │ │ │ │ └── [4.0K] create-new-group
│ │ │ │ │ │ │ │ ├── [2.3K] nf-registry-create-new-group.html
│ │ │ │ │ │ │ │ ├── [3.7K] nf-registry-create-new-group.js
│ │ │ │ │ │ │ │ └── [3.2K] nf-registry-create-new-group.spec.js
│ │ │ │ │ │ │ ├── [ 14K] nf-registry-users-administration.html
│ │ │ │ │ │ │ ├── [5.7K] nf-registry-users-administration.js
│ │ │ │ │ │ │ ├── [5.0K] nf-registry-users-adminstration.spec.js
│ │ │ │ │ │ │ └── [4.0K] sidenav
│ │ │ │ │ │ │ ├── [4.0K] manage-group
│ │ │ │ │ │ │ │ ├── [ 15K] nf-registry-manage-group.html
│ │ │ │ │ │ │ │ ├── [ 36K] nf-registry-manage-group.js
│ │ │ │ │ │ │ │ └── [ 84K] nf-registry-manage-group.spec.js
│ │ │ │ │ │ │ └── [4.0K] manage-user
│ │ │ │ │ │ │ ├── [ 15K] nf-registry-manage-user.html
│ │ │ │ │ │ │ ├── [ 37K] nf-registry-manage-user.js
│ │ │ │ │ │ │ └── [ 61K] nf-registry-manage-user.spec.js
│ │ │ │ │ │ └── [4.0K] workflow
│ │ │ │ │ │ ├── [4.0K] dialogs
│ │ │ │ │ │ │ ├── [4.0K] add-policy-to-bucket
│ │ │ │ │ │ │ │ ├── [5.4K] nf-registry-add-policy-to-bucket.html
│ │ │ │ │ │ │ │ └── [ 18K] nf-registry-add-policy-to-bucket.js
│ │ │ │ │ │ │ ├── [4.0K] create-bucket
│ │ │ │ │ │ │ │ ├── [3.0K] nf-registry-create-bucket.html
│ │ │ │ │ │ │ │ ├── [3.8K] nf-registry-create-bucket.js
│ │ │ │ │ │ │ │ └── [3.3K] nf-registry-create-bucket.spec.js
│ │ │ │ │ │ │ └── [4.0K] edit-bucket-policy
│ │ │ │ │ │ │ ├── [2.9K] nf-registry-edit-bucket-policy.html
│ │ │ │ │ │ │ └── [ 17K] nf-registry-edit-bucket-policy.js
│ │ │ │ │ │ ├── [8.2K] nf-registry-workflow-administration.html
│ │ │ │ │ │ ├── [3.8K] nf-registry-workflow-administration.js
│ │ │ │ │ │ ├── [4.1K] nf-registry-workflow-administration.spec.js
│ │ │ │ │ │ └── [4.0K] sidenav
│ │ │ │ │ │ └── [4.0K] manage-bucket
│ │ │ │ │ │ ├── [ 11K] nf-registry-manage-bucket.html
│ │ │ │ │ │ ├── [ 29K] nf-registry-manage-bucket.js
│ │ │ │ │ │ └── [ 26K] nf-registry-manage-bucket.spec.js
│ │ │ │ │ ├── [4.0K] explorer
│ │ │ │ │ │ ├── [4.0K] dialogs
│ │ │ │ │ │ │ └── [4.0K] about
│ │ │ │ │ │ │ ├── [1.5K] nf-registry-explorer-about.html
│ │ │ │ │ │ │ └── [1.3K] nf-registry-explorer-about.ts
│ │ │ │ │ │ ├── [4.0K] grid-list
│ │ │ │ │ │ │ ├── [4.0K] dialogs
│ │ │ │ │ │ │ │ ├── [4.0K] delete-bundle-version
│ │ │ │ │ │ │ │ │ ├── [2.6K] nf-registry-delete-bundle-version.html
│ │ │ │ │ │ │ │ │ └── [3.2K] nf-registry-delete-bundle-version.js
│ │ │ │ │ │ │ │ ├── [4.0K] download-bundle-version
│ │ │ │ │ │ │ │ │ ├── [2.6K] nf-registry-download-bundle-version.html
│ │ │ │ │ │ │ │ │ └── [3.2K] nf-registry-download-bundle-version.js
│ │ │ │ │ │ │ │ ├── [4.0K] export-versioned-flow
│ │ │ │ │ │ │ │ │ ├── [3.2K] nf-registry-export-versioned-flow.js
│ │ │ │ │ │ │ │ │ ├── [4.8K] nf-registry-export-versioned-flow.spec.js
│ │ │ │ │ │ │ │ │ └── [2.6K] nf-registry-export-version.html
│ │ │ │ │ │ │ │ ├── [4.0K] import-new-flow
│ │ │ │ │ │ │ │ │ ├── [6.3K] nf-registry-import-new-flow.html
│ │ │ │ │ │ │ │ │ ├── [5.9K] nf-registry-import-new-flow.js
│ │ │ │ │ │ │ │ │ └── [3.3K] nf-registry-import-new-flow.spec.js
│ │ │ │ │ │ │ │ └── [4.0K] import-versioned-flow
│ │ │ │ │ │ │ │ ├── [5.6K] nf-registry-import-versioned-flow.html
│ │ │ │ │ │ │ │ ├── [4.7K] nf-registry-import-versioned-flow.js
│ │ │ │ │ │ │ │ └── [3.0K] nf-registry-import-versioned-flow.spec.js
│ │ │ │ │ │ │ └── [4.0K] registry
│ │ │ │ │ │ │ ├── [4.9K] nf-registry-bucket-grid-list-viewer.js
│ │ │ │ │ │ │ ├── [8.5K] nf-registry-bucket-grid-list-viewer.spec.js
│ │ │ │ │ │ │ ├── [5.1K] nf-registry-droplet-grid-list-viewer.js
│ │ │ │ │ │ │ ├── [ 11K] nf-registry-droplet-grid-list-viewer.spec.js
│ │ │ │ │ │ │ ├── [ 19K] nf-registry-grid-list-viewer.html
│ │ │ │ │ │ │ ├── [3.6K] nf-registry-grid-list-viewer.js
│ │ │ │ │ │ │ └── [6.2K] nf-registry-grid-list-viewer.spec.js
│ │ │ │ │ │ ├── [ 793] nf-registry-explorer.html
│ │ │ │ │ │ ├── [2.1K] nf-registry-explorer.js
│ │ │ │ │ │ └── [2.2K] nf-registry-explorer.spec.js
│ │ │ │ │ ├── [4.0K] login
│ │ │ │ │ │ ├── [4.0K] dialogs
│ │ │ │ │ │ │ ├── [2.4K] nf-registry-user-login.html
│ │ │ │ │ │ │ └── [3.0K] nf-registry-user-login.js
│ │ │ │ │ │ ├── [ 842] nf-registry-login.html
│ │ │ │ │ │ └── [2.1K] nf-registry-login.js
│ │ │ │ │ └── [4.0K] page-not-found
│ │ │ │ │ ├── [ 846] nf-registry-page-not-found.html
│ │ │ │ │ └── [2.5K] nf-registry-page-not-found.js
│ │ │ │ ├── [4.0K] images
│ │ │ │ │ ├── [2.4K] registry-background-logo.svg
│ │ │ │ │ └── [2.3K] registry-logo-web-app.svg
│ │ │ │ ├── [3.9K] nf-registry.animations.js
│ │ │ │ ├── [3.4K] nf-registry-bootstrap.js
│ │ │ │ ├── [7.4K] nf-registry.html
│ │ │ │ ├── [4.2K] nf-registry.js
│ │ │ │ ├── [6.9K] nf-registry.module.js
│ │ │ │ ├── [4.5K] nf-registry.routes.js
│ │ │ │ ├── [1.4K] nf-registry.spec.js
│ │ │ │ ├── [4.5K] nf-registry.testbed-factory.js
│ │ │ │ ├── [4.0K] services
│ │ │ │ │ ├── [ 37K] nf-registry.api.js
│ │ │ │ │ ├── [ 70K] nf-registry.api.spec.js
│ │ │ │ │ ├── [ 18K] nf-registry.auth-guard.service.js
│ │ │ │ │ ├── [ 26K] nf-registry.auth-guard.service.spec.js
│ │ │ │ │ ├── [ 51K] nf-registry.service.js
│ │ │ │ │ ├── [ 45K] nf-registry.service.spec.js
│ │ │ │ │ ├── [2.1K] nf-registry.token.interceptor.js
│ │ │ │ │ └── [5.8K] nf-storage.service.js
│ │ │ │ ├── [1.2K] template.dev.html
│ │ │ │ ├── [1.2K] template.html
│ │ │ │ ├── [4.0K] theming
│ │ │ │ │ ├── [4.0K] components
│ │ │ │ │ │ ├── [4.0K] administration
│ │ │ │ │ │ │ ├── [ 904] _structureElements.scss
│ │ │ │ │ │ │ ├── [4.0K] users
│ │ │ │ │ │ │ │ └── [1.8K] _structureElements.scss
│ │ │ │ │ │ │ └── [4.0K] workflow
│ │ │ │ │ │ │ └── [1.4K] _structureElements.scss
│ │ │ │ │ │ └── [4.0K] explorer
│ │ │ │ │ │ ├── [4.0K] dialogs
│ │ │ │ │ │ │ ├── [ 991] _aboutElements.scss
│ │ │ │ │ │ │ └── [4.5K] _structureElements.scss
│ │ │ │ │ │ └── [4.0K] grid-list
│ │ │ │ │ │ └── [2.3K] _structureElements.scss
│ │ │ │ │ ├── [2.4K] _helperClasses.scss
│ │ │ │ │ ├── [4.4K] nf-registry.scss
│ │ │ │ │ └── [3.2K] _structureElements.scss
│ │ │ │ └── [4.0K] WEB-INF
│ │ │ │ └── [2.7K] web.xml
│ │ │ ├── [1.5K] webpack.alias.js
│ │ │ ├── [2.5K] webpack.common.js
│ │ │ ├── [4.8K] webpack.dev.js
│ │ │ ├── [1.4K] webpack.karma.js
│ │ │ ├── [5.9K] webpack.loader.js
│ │ │ └── [2.5K] webpack.prod.js
│ │ └── [ 11K] pom.xml
│ ├── [4.0K] nifi-registry-docker-maven
│ │ ├── [4.0K] dockermaven
│ │ │ ├── [3.8K] Dockerfile
│ │ │ ├── [3.0K] integration-test.sh
│ │ │ └── [8.2K] pom.xml
│ │ └── [1.4K] pom.xml
│ ├── [4.0K] nifi-registry-extensions
│ │ ├── [4.0K] nifi-registry-aws
│ │ │ ├── [4.0K] nifi-registry-aws-assembly
│ │ │ │ ├── [ 11K] LICENSE
│ │ │ │ ├── [9.8K] NOTICE
│ │ │ │ ├── [3.9K] pom.xml
│ │ │ │ ├── [3.2K] README.md
│ │ │ │ └── [4.0K] src
│ │ │ │ └── [4.0K] main
│ │ │ │ └── [4.0K] assembly
│ │ │ │ └── [2.0K] extension.xml
│ │ │ ├── [4.0K] nifi-registry-aws-extensions
│ │ │ │ ├── [2.5K] pom.xml
│ │ │ │ └── [4.0K] src
│ │ │ │ ├── [4.0K] main
│ │ │ │ │ ├── [4.0K] java
│ │ │ │ │ │ └── [4.0K] org
│ │ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ │ └── [4.0K] registry
│ │ │ │ │ │ └── [4.0K] aws
│ │ │ │ │ │ └── [ 15K] S3BundlePersistenceProvider.java
│ │ │ │ │ └── [4.0K] resources
│ │ │ │ │ └── [4.0K] META-INF
│ │ │ │ │ └── [4.0K] services
│ │ │ │ │ └── [ 837] org.apache.nifi.registry.extension.BundlePersistenceProvider
│ │ │ │ └── [4.0K] test
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ └── [4.0K] registry
│ │ │ │ │ └── [4.0K] aws
│ │ │ │ │ └── [7.1K] S3BundlePersistenceProviderIT.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] nars
│ │ │ │ └── [1.1K] nifi-foo-nar-1.0.0.nar
│ │ │ └── [1.4K] pom.xml
│ │ └── [1.4K] pom.xml
│ ├── [4.0K] nifi-registry-toolkit
│ │ ├── [4.0K] nifi-registry-toolkit-assembly
│ │ │ ├── [ 12K] LICENSE
│ │ │ ├── [ 11K] NOTICE
│ │ │ ├── [5.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] assembly
│ │ │ │ └── [2.4K] dependencies.xml
│ │ │ └── [4.0K] resources
│ │ │ ├── [4.0K] bin
│ │ │ │ ├── [1.5K] persistence-toolkit.bat
│ │ │ │ └── [3.3K] persistence-toolkit.sh
│ │ │ └── [4.0K] classpath
│ │ │ └── [1022] log4j.properties
│ │ ├── [4.0K] nifi-registry-toolkit-persistence
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ └── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] registry
│ │ │ │ └── [4.0K] toolkit
│ │ │ │ └── [4.0K] persistence
│ │ │ │ └── [5.6K] FlowPersistenceProviderMigrator.java
│ │ │ └── [4.0K] test
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] registry
│ │ │ └── [4.0K] toolkit
│ │ │ └── [4.0K] persistence
│ │ │ └── [7.0K] FlowPersistenceProviderMigratorTest.java
│ │ ├── [1.5K] pom.xml
│ │ └── [1.5K] README.md
│ ├── [ 16K] pom.xml
│ └── [1.0K] stop.sh
├── [4.0K] nifi-server-api
│ ├── [1.7K] pom.xml
│ └── [4.0K] src
│ └── [4.0K] main
│ └── [4.0K] java
│ └── [4.0K] org
│ └── [4.0K] apache
│ └── [4.0K] nifi
│ ├── [4.0K] nar
│ │ └── [8.1K] ExtensionMapping.java
│ └── [1.7K] NiFiServer.java
├── [4.0K] nifi-stateless
│ ├── [4.0K] nifi-stateless-api
│ │ ├── [1.3K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] stateless
│ │ │ ├── [4.0K] config
│ │ │ │ ├── [1.4K] ConfigurableExtensionDefinition.java
│ │ │ │ ├── [1.7K] ExtensionClientDefinition.java
│ │ │ │ ├── [1.3K] ParameterContextDefinition.java
│ │ │ │ ├── [1.2K] ParameterDefinition.java
│ │ │ │ ├── [1.8K] ParameterOverride.java
│ │ │ │ ├── [1.2K] ParameterValueProviderDefinition.java
│ │ │ │ ├── [ 13K] PropertiesFileEngineConfigurationParser.java
│ │ │ │ ├── [1.5K] ReportingTaskDefinition.java
│ │ │ │ ├── [2.4K] SslContextDefinition.java
│ │ │ │ └── [1.2K] StatelessConfigurationException.java
│ │ │ ├── [4.0K] engine
│ │ │ │ ├── [1.3K] DataflowAbortedException.java
│ │ │ │ ├── [2.3K] NarUnpackLock.java
│ │ │ │ └── [4.4K] StatelessEngineConfiguration.java
│ │ │ ├── [4.0K] flow
│ │ │ │ ├── [1.6K] DataflowDefinition.java
│ │ │ │ ├── [1.6K] DataflowDefinitionParser.java
│ │ │ │ ├── [1.8K] DataflowTriggerContext.java
│ │ │ │ ├── [2.5K] DataflowTrigger.java
│ │ │ │ ├── [1.1K] FailurePortEncounteredException.java
│ │ │ │ ├── [1008] FlowFileSupplier.java
│ │ │ │ ├── [9.0K] NopProvenanceEventRepository.java
│ │ │ │ ├── [1.3K] StatelessDataflowFactory.java
│ │ │ │ ├── [ 948] StatelessDataflowInitializationContext.java
│ │ │ │ ├── [4.4K] StatelessDataflow.java
│ │ │ │ ├── [ 916] StatelessDataflowValidation.java
│ │ │ │ ├── [3.9K] TransactionThresholds.java
│ │ │ │ └── [3.2K] TriggerResult.java
│ │ │ └── [4.0K] parameter
│ │ │ ├── [1.8K] AbstractParameterValueProvider.java
│ │ │ ├── [5.3K] AbstractSecretBasedParameterValueProvider.java
│ │ │ ├── [1015] ParameterValueProviderInitializationContext.java
│ │ │ └── [1.5K] ParameterValueProvider.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] stateless
│ │ └── [4.0K] config
│ │ └── [7.0K] PropertiesFileEngineConfigurationParserTest.java
│ ├── [4.0K] nifi-stateless-assembly
│ │ ├── [ 16K] LICENSE
│ │ ├── [6.3K] NOTICE
│ │ ├── [ 11K] pom.xml
│ │ ├── [ 45K] README.md
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] assembly
│ │ ├── [3.9K] common.xml
│ │ └── [1.8K] dependencies.xml
│ ├── [4.0K] nifi-stateless-bootstrap
│ │ ├── [2.4K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] stateless
│ │ │ │ └── [4.0K] bootstrap
│ │ │ │ ├── [5.6K] AllowListClassLoader.java
│ │ │ │ ├── [ 11K] BootstrapConfiguration.java
│ │ │ │ ├── [5.2K] RunStatelessFlow.java
│ │ │ │ └── [ 18K] StatelessBootstrap.java
│ │ │ └── [4.0K] resources
│ │ │ └── [1.2K] nifi-stateless.properties
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] stateless
│ │ │ └── [4.0K] bootstrap
│ │ │ ├── [3.0K] TestBootstrapConfiguration.java
│ │ │ └── [3.2K] TestStatelessBootstrap.java
│ │ └── [4.0K] resources
│ │ └── [1.1K] nifi-stateless.properties
│ ├── [4.0K] nifi-stateless-bundle
│ │ ├── [4.0K] nifi-stateless-engine
│ │ │ ├── [6.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ ├── [4.0K] main
│ │ │ │ ├── [4.0K] java
│ │ │ │ │ └── [4.0K] org
│ │ │ │ │ └── [4.0K] apache
│ │ │ │ │ └── [4.0K] nifi
│ │ │ │ │ ├── [4.0K] components
│ │ │ │ │ │ └── [4.0K] state
│ │ │ │ │ │ ├── [5.4K] HashMapStateProvider.java
│ │ │ │ │ │ └── [2.1K] StatelessStateManagerProvider.java
│ │ │ │ │ ├── [4.0K] controller
│ │ │ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ │ │ ├── [9.0K] LogComponentStatuses.java
│ │ │ │ │ │ │ ├── [2.6K] StatelessEventAccess.java
│ │ │ │ │ │ │ ├── [2.7K] StatelessReportingContext.java
│ │ │ │ │ │ │ └── [3.7K] StatelessReportingTaskNode.java
│ │ │ │ │ │ └── [4.0K] scheduling
│ │ │ │ │ │ ├── [3.7K] StatelessProcessSchedulerInitializationContext.java
│ │ │ │ │ │ └── [ 15K] StatelessProcessScheduler.java
│ │ │ │ │ ├── [4.0K] extensions
│ │ │ │ │ │ ├── [ 951] BundleAvailability.java
│ │ │ │ │ │ ├── [ 12K] DownloadQueue.java
│ │ │ │ │ │ ├── [4.0K] exception
│ │ │ │ │ │ │ └── [1.3K] BundleNotFoundException.java
│ │ │ │ │ │ ├── [1.0K] ExtensionClient.java
│ │ │ │ │ │ ├── [1.3K] ExtensionRepository.java
│ │ │ │ │ │ ├── [8.0K] FileSystemExtensionRepository.java
│ │ │ │ │ │ └── [6.2K] NexusExtensionClient.java
│ │ │ │ │ ├── [4.0K] registry
│ │ │ │ │ │ └── [4.0K] flow
│ │ │ │ │ │ └── [9.0K] InMemoryFlowRegistry.java
│ │ │ │ │ └── [4.0K] stateless
│ │ │ │ │ ├── [4.0K] bootstrap
│ │ │ │ │ │ └── [2.6K] ExtensionDiscovery.java
│ │ │ │ │ ├── [4.0K] config
│ │ │ │ │ │ ├── [ 33K] PropertiesFileFlowDefinitionParser.java
│ │ │ │ │ │ └── [5.5K] SslConfigurationUtil.java
│ │ │ │ │ ├── [4.0K] core
│ │ │ │ │ │ └── [8.5K] RegistryUtil.java
│ │ │ │ │ ├── [4.0K] engine
│ │ │ │ │ │ ├── [1.7K] CachingProcessContextFactory.java
│ │ │ │ │ │ ├── [ 21K] ComponentBuilder.java
│ │ │ │ │ │ ├── [2.9K] ExecutionProgress.java
│ │ │ │ │ │ ├── [ 901] FlowPurgeAction.java
│ │ │ │ │ │ ├── [1.0K] ProcessContextFactory.java
│ │ │ │ │ │ ├── [ 14K] StandardExecutionProgress.java
│ │ │ │ │ │ ├── [2.3K] StandardParameterValueProviderInitializationContext.java
│ │ │ │ │ │ ├── [ 39K] StandardStatelessEngine.java
│ │ │ │ │ │ ├── [2.0K] StatelessAuthorizer.java
│ │ │ │ │ │ ├── [2.2K] StatelessEngineInitializationContext.java
│ │ │ │ │ │ ├── [2.7K] StatelessEngine.java
│ │ │ │ │ │ ├── [ 21K] StatelessFlowManager.java
│ │ │ │ │ │ ├── [1.1K] StatelessNodeTypeProvider.java
│ │ │ │ │ │ ├── [2.4K] StatelessProcessContextFactory.java
│ │ │ │ │ │ ├── [1.4K] StatelessProvenanceAuthorizableFactory.java
│ │ │ │ │ │ ├── [ 18K] StatelessReloadComponent.java
│ │ │ │ │ │ └── [4.7K] StatelessSchedulingAgent.java
│ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ ├── [1.5K] CachingProcessContextFactory.java
│ │ │ │ │ │ ├── [2.0K] CanceledTriggerResult.java
│ │ │ │ │ │ ├── [2.4K] ExceptionalTriggerResult.java
│ │ │ │ │ │ ├── [6.6K] StandardDataflowDefinition.java
│ │ │ │ │ │ ├── [ 19K] StandardStatelessDataflowFactory.java
│ │ │ │ │ │ ├── [2.1K] StandardStatelessDataflowValidation.java
│ │ │ │ │ │ ├── [ 19K] StandardStatelessFlowCurrent.java
│ │ │ │ │ │ ├── [ 47K] StandardStatelessFlow.java
│ │ │ │ │ │ ├── [1.4K] StatelessFlowCurrent.java
│ │ │ │ │ │ └── [2.6K] TransactionThresholdMeter.java
│ │ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ │ ├── [2.1K] CompositeParameterValueProvider.java
│ │ │ │ │ │ ├── [1.6K] EnvironmentVariableParameterValueProvider.java
│ │ │ │ │ │ └── [3.6K] OverrideParameterValueProvider.java
│ │ │ │ │ ├── [4.0K] queue
│ │ │ │ │ │ ├── [1.5K] DrainableFlowFileQueue.java
│ │ │ │ │ │ └── [ 13K] StatelessFlowFileQueue.java
│ │ │ │ │ ├── [4.0K] repository
│ │ │ │ │ │ ├── [ 11K] ByteArrayContentRepository.java
│ │ │ │ │ │ ├── [1.6K] RepositoryContextFactory.java
│ │ │ │ │ │ ├── [2.9K] StatelessContentClaimWriteCache.java
│ │ │ │ │ │ ├── [ 14K] StatelessFileSystemContentRepository.java
│ │ │ │ │ │ ├── [4.4K] StatelessFlowFileRepository.java
│ │ │ │ │ │ ├── [ 12K] StatelessProvenanceRepository.java
│ │ │ │ │ │ ├── [3.9K] StatelessRepositoryContextFactory.java
│ │ │ │ │ │ └── [2.6K] StatelessRepositoryContext.java
│ │ │ │ │ └── [4.0K] session
│ │ │ │ │ ├── [ 11K] AsynchronousCommitTracker.java
│ │ │ │ │ ├── [3.2K] StatelessProcessSessionFactory.java
│ │ │ │ │ └── [ 18K] StatelessProcessSession.java
│ │ │ │ └── [4.0K] resources
│ │ │ │ └── [4.0K] META-INF
│ │ │ │ └── [4.0K] services
│ │ │ │ ├── [ 849] org.apache.nifi.stateless.flow.DataflowDefinitionParser
│ │ │ │ ├── [ 846] org.apache.nifi.stateless.flow.StatelessDataflowFactory
│ │ │ │ └── [ 927] org.apache.nifi.stateless.parameter.ParameterValueProvider
│ │ │ └── [4.0K] test
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] stateless
│ │ │ │ ├── [4.0K] config
│ │ │ │ │ └── [5.0K] TestPropertiesFileFlowDefinitionParser.java
│ │ │ │ ├── [4.0K] core
│ │ │ │ │ └── [5.3K] TestRegistryUtil.java
│ │ │ │ ├── [4.0K] engine
│ │ │ │ │ └── [2.0K] TestStandardStatelessEngine.java
│ │ │ │ ├── [4.0K] flow
│ │ │ │ │ └── [4.0K] TestStandardStatelessFlow.java
│ │ │ │ ├── [4.0K] queue
│ │ │ │ │ └── [5.0K] TestStatelessFlowFileQueue.java
│ │ │ │ ├── [4.0K] repository
│ │ │ │ │ └── [6.3K] TestStatelessFileSystemContentRepository.java
│ │ │ │ └── [4.0K] session
│ │ │ │ └── [7.2K] TestAsynchronousCommitTracker.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [1.6K] flow-configuration.properties
│ │ │ └── [ 15K] flow-snapshot.json
│ │ ├── [4.0K] nifi-stateless-nar
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ ├── [ 16K] LICENSE
│ │ │ └── [5.7K] NOTICE
│ │ └── [1.4K] pom.xml
│ ├── [4.0K] nifi-stateless-resources
│ │ ├── [2.1K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] assembly
│ │ │ └── [1.4K] dependencies.xml
│ │ └── [4.0K] resources
│ │ ├── [4.0K] bin
│ │ │ ├── [1.3K] nifi-stateless-env.sh
│ │ │ └── [5.3K] nifi-stateless.sh
│ │ └── [4.0K] conf
│ │ ├── [1.8K] env-flow-config.properties
│ │ ├── [3.5K] stateless-logback.xml
│ │ └── [2.1K] stateless.properties
│ └── [1.6K] pom.xml
├── [4.0K] nifi-system-tests
│ ├── [4.0K] nifi-alternate-config-extensions-bundle
│ │ ├── [4.0K] nifi-alternate-config-extensions
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] cs
│ │ │ │ │ └── [4.0K] tests
│ │ │ │ │ └── [4.0K] system
│ │ │ │ │ └── [1.9K] MigrationService.java
│ │ │ │ ├── [4.0K] processors
│ │ │ │ │ └── [4.0K] tests
│ │ │ │ │ └── [4.0K] system
│ │ │ │ │ └── [5.7K] MigrateProperties.java
│ │ │ │ └── [4.0K] reporting
│ │ │ │ └── [1.8K] MigrationReportingTask.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 831] org.apache.nifi.controller.ControllerService
│ │ │ ├── [ 840] org.apache.nifi.processor.Processor
│ │ │ └── [ 830] org.apache.nifi.reporting.ReportingTask
│ │ ├── [4.0K] nifi-alternate-config-extensions-nar
│ │ │ └── [1.8K] pom.xml
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-python-test-extensions-nar
│ │ ├── [3.9K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ └── [4.0K] resources
│ │ └── [1.5K] WriteBech32Charset.py
│ ├── [4.0K] nifi-stateless-system-test-suite
│ │ ├── [7.8K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] test
│ │ ├── [4.0K] assembly
│ │ │ └── [1.5K] dependencies.xml
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] stateless
│ │ │ ├── [4.0K] basics
│ │ │ │ ├── [ 14K] AsyncCommitCallbackIT.java
│ │ │ │ ├── [5.9K] BatchOutputIT.java
│ │ │ │ ├── [3.0K] CancelFlowExecutionIT.java
│ │ │ │ ├── [4.3K] CloneFlowFileIT.java
│ │ │ │ ├── [2.1K] ControllerServiceLifecycleIT.java
│ │ │ │ ├── [3.8K] CreatesFlowFileIT.java
│ │ │ │ ├── [3.6K] HonorsSourceProcessorYieldIT.java
│ │ │ │ ├── [5.0K] InputOutputIT.java
│ │ │ │ ├── [3.4K] LoopingIT.java
│ │ │ │ ├── [3.5K] MergingIT.java
│ │ │ │ ├── [3.6K] PartitioningContentIT.java
│ │ │ │ ├── [ 12K] ProcessorLifecycleIT.java
│ │ │ │ ├── [ 15K] RequiresAdditionalInputIT.java
│ │ │ │ ├── [4.1K] RollbackOnExceptionIT.java
│ │ │ │ ├── [3.8K] SplittingIT.java
│ │ │ │ ├── [3.9K] StatelessRetryIT.java
│ │ │ │ └── [5.9K] StateStorageIT.java
│ │ │ ├── [4.0K] classloader
│ │ │ │ └── [4.6K] InstanceClassLoaderIT.java
│ │ │ ├── [4.0K] controller
│ │ │ │ └── [4.0K] services
│ │ │ │ └── [4.3K] StatelessControllerServiceSystemIT.java
│ │ │ ├── [4.0K] parameters
│ │ │ │ └── [ 18K] ParameterContextIT.java
│ │ │ ├── [4.0K] performance
│ │ │ │ └── [3.2K] StatelessPerformanceIT.java
│ │ │ ├── [ 10K] StatelessSystemIT.java
│ │ │ └── [ 14K] VersionedFlowBuilder.java
│ │ └── [4.0K] resources
│ │ └── [4.0K] flows
│ │ └── [4.9K] GenerateFlowFile.json
│ ├── [4.0K] nifi-system-test-authorizer-bundle
│ │ ├── [4.0K] nifi-system-test-authorizer
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] authorization
│ │ │ │ └── [1.7K] SystemTestAuthorizer.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 832] org.apache.nifi.authorization.Authorizer
│ │ ├── [4.0K] nifi-system-test-authorizer-nar
│ │ │ └── [1.6K] pom.xml
│ │ └── [1.4K] pom.xml
│ ├── [4.0K] nifi-system-test-extensions2-bundle
│ │ ├── [4.0K] nifi-system-test-extensions2
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] cs
│ │ │ │ │ └── [4.0K] tests
│ │ │ │ │ └── [4.0K] system
│ │ │ │ │ └── [1010] FakeControllerService2.java
│ │ │ │ └── [4.0K] processors
│ │ │ │ └── [4.0K] tests
│ │ │ │ └── [4.0K] system
│ │ │ │ └── [2.6K] FakeGenericProcessor.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [ 836] org.apache.nifi.controller.ControllerService
│ │ │ └── [ 842] org.apache.nifi.processor.Processor
│ │ ├── [4.0K] nifi-system-test-extensions2-nar
│ │ │ └── [2.7K] pom.xml
│ │ └── [1.4K] pom.xml
│ ├── [4.0K] nifi-system-test-extensions-bundle
│ │ ├── [4.0K] nifi-system-test-extensions
│ │ │ ├── [2.3K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ ├── [4.0K] flow
│ │ │ │ │ └── [4.0K] registry
│ │ │ │ │ └── [ 20K] FileSystemFlowRegistryClient.java
│ │ │ │ ├── [4.0K] flowanalysis
│ │ │ │ │ ├── [1.8K] ControllerServiceReferencingFlowAnalysisRule.java
│ │ │ │ │ ├── [6.2K] EnsureFlowAnalysisRuleConfigurationCorrect.java
│ │ │ │ │ ├── [1.4K] SensitiveDynamicPropertiesFlowAnalysisRule.java
│ │ │ │ │ └── [2.7K] StatefulFlowAnalysisRule.java
│ │ │ │ ├── [4.0K] nar
│ │ │ │ │ └── [4.0K] provider
│ │ │ │ │ └── [2.7K] LocalDirectoryNarProvider.java
│ │ │ │ ├── [4.0K] parameter
│ │ │ │ │ └── [4.0K] tests
│ │ │ │ │ └── [4.0K] system
│ │ │ │ │ ├── [6.5K] EnsureParameterProviderConfigurationCorrect.java
│ │ │ │ │ └── [3.2K] PropertiesParameterProvider.java
│ │ │ │ ├── [4.0K] processors
│ │ │ │ │ └── [4.0K] tests
│ │ │ │ │ └── [4.0K] system
│ │ │ │ │ ├── [3.0K] ClassloaderIsolationWithServiceProperty.java
│ │ │ │ │ ├── [4.4K] ConcatenateFlowFiles.java
│ │ │ │ │ ├── [3.6K] ConcatenateRangeOfFlowFiles.java
│ │ │ │ │ ├── [3.6K] CountEvents.java
│ │ │ │ │ ├── [2.6K] CountFlowFiles.java
│ │ │ │ │ ├── [3.5K] CountPrimaryNodeChangeEvents.java
│ │ │ │ │ ├── [4.1K] DefaultedDynamicallyModifyClasspath.java
│ │ │ │ │ ├── [4.9K] DependOnProperties.java
│ │ │ │ │ ├── [1.5K] DoNotTransferFlowFile.java
│ │ │ │ │ ├── [2.8K] Duplicate.java
│ │ │ │ │ ├── [5.2K] DynamicallyModifyClasspath.java
│ │ │ │ │ ├── [6.6K] EnsureProcessorConfigurationCorrect.java
│ │ │ │ │ ├── [4.2K] EvaluatePropertiesWithDifferentELScopes.java
│ │ │ │ │ ├── [3.4K] FakeDynamicPropertiesProcessor.java
│ │ │ │ │ ├── [2.6K] FakeProcessor.java
│ │ │ │ │ ├── [4.2K] GenerateAndCountCallbacks.java
│ │ │ │ │ ├── [9.4K] GenerateFlowFile.java
│ │ │ │ │ ├── [4.0K] HoldInput.java
│ │ │ │ │ ├── [4.3K] IngestFile.java
│ │ │ │ │ ├── [3.1K] LoopFlowFile.java
│ │ │ │ │ ├── [3.7K] MigrateProperties.java
│ │ │ │ │ ├── [4.4K] PartitionText.java
│ │ │ │ │ ├── [1.8K] PassThrough.java
│ │ │ │ │ ├── [2.0K] PassThroughRequiresInstanceClassLoading.java
│ │ │ │ │ ├── [3.9K] ReOrderFlowFiles.java
│ │ │ │ │ ├── [3.1K] ReplaceWithFile.java
│ │ │ │ │ ├── [2.5K] ReverseContents.java
│ │ │ │ │ ├── [3.5K] RoundRobinFlowFiles.java
│ │ │ │ │ ├── [2.7K] SensitiveDynamicPropertiesProcessor.java
│ │ │ │ │ ├── [2.6K] SetAttribute.java
│ │ │ │ │ ├── [7.5K] Sleep.java
│ │ │ │ │ ├── [4.6K] SplitByLine.java
│ │ │ │ │ ├── [3.2K] SplitTextByLine.java
│ │ │ │ │ ├── [1.4K] TerminateFlowFile.java
│ │ │ │ │ ├── [3.0K] ThrowExceptionInFlowFileFilter.java
│ │ │ │ │ ├── [2.4K] ThrowProcessException.java
│ │ │ │ │ ├── [4.5K] TransferBatch.java
│ │ │ │ │ ├── [3.3K] UnzipFlowFile.java
│ │ │ │ │ ├── [3.3K] UpdateContent.java
│ │ │ │ │ ├── [2.3K] ValidateFileExists.java
│ │ │ │ │ ├── [4.0K] VerifyContents.java
│ │ │ │ │ ├── [4.2K] VerifyEvenThenOdd.java
│ │ │ │ │ ├── [5.1K] WriteFlowFileCountToFile.java
│ │ │ │ │ ├── [3.8K] WriteLifecycleEvents.java
│ │ │ │ │ ├── [3.9K] WriteToFile.java
│ │ │ │ │ └── [3.1K] YieldSource.java
│ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ ├── [6.3K] EnsureReportingTaskConfigurationCorrect.java
│ │ │ │ │ ├── [1.5K] MigrationReportingTask.java
│ │ │ │ │ ├── [1.4K] SensitiveDynamicPropertiesReportingTask.java
│ │ │ │ │ └── [4.7K] WriteToFileReportingTask.java
│ │ │ │ └── [4.0K] stateless
│ │ │ │ └── [4.0K] parameters
│ │ │ │ ├── [1.8K] InvalidParameterValueProvider.java
│ │ │ │ ├── [1.9K] NumericParameterValueProvider.java
│ │ │ │ └── [2.4K] ParameterValueProviderWithProperties.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ ├── [1.0K] org.apache.nifi.flowanalysis.FlowAnalysisRule
│ │ │ ├── [ 836] org.apache.nifi.flow.resource.ExternalResourceProvider
│ │ │ ├── [ 931] org.apache.nifi.parameter.ParameterProvider
│ │ │ ├── [3.5K] org.apache.nifi.processor.Processor
│ │ │ ├── [ 840] org.apache.nifi.registry.flow.FlowRegistryClient
│ │ │ ├── [1013] org.apache.nifi.reporting.ReportingTask
│ │ │ └── [ 989] org.apache.nifi.stateless.parameter.ParameterValueProvider
│ │ ├── [4.0K] nifi-system-test-extensions-nar
│ │ │ └── [2.3K] pom.xml
│ │ ├── [4.0K] nifi-system-test-extensions-services
│ │ │ ├── [2.0K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] cs
│ │ │ │ └── [4.0K] tests
│ │ │ │ └── [4.0K] system
│ │ │ │ ├── [2.0K] ClassloaderIsolationKeyProviderService.java
│ │ │ │ ├── [6.5K] EnsureControllerServiceConfigurationCorrect.java
│ │ │ │ ├── [1.0K] FakeControllerService1.java
│ │ │ │ ├── [3.4K] LifecycleFailureService.java
│ │ │ │ ├── [2.0K] MigrationService.java
│ │ │ │ ├── [4.1K] MockCSVReader.java
│ │ │ │ ├── [4.5K] MockCSVWriter.java
│ │ │ │ ├── [1.4K] SensitiveDynamicPropertiesService.java
│ │ │ │ ├── [2.8K] StandardCountService.java
│ │ │ │ └── [4.8K] StandardSleepService.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [1.3K] org.apache.nifi.controller.ControllerService
│ │ ├── [4.0K] nifi-system-test-extensions-services-api
│ │ │ ├── [1.6K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] cs
│ │ │ └── [4.0K] tests
│ │ │ └── [4.0K] system
│ │ │ ├── [ 977] BaseFakeService.java
│ │ │ ├── [ 977] CountService.java
│ │ │ ├── [ 990] KeyProviderService.java
│ │ │ └── [ 976] SleepService.java
│ │ ├── [4.0K] nifi-system-test-extensions-services-api-nar
│ │ │ └── [1.8K] pom.xml
│ │ ├── [4.0K] nifi-system-test-extensions-services-nar
│ │ │ └── [1.8K] pom.xml
│ │ └── [1.7K] pom.xml
│ ├── [4.0K] nifi-system-test-flow-action-reporter-bundle
│ │ ├── [4.0K] nifi-system-test-flow-action-reporter
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] action
│ │ │ │ └── [3.0K] SystemTestFlowActionReporter.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 833] org.apache.nifi.action.FlowActionReporter
│ │ ├── [4.0K] nifi-system-test-flow-action-reporter-nar
│ │ │ └── [1.6K] pom.xml
│ │ └── [1.5K] pom.xml
│ ├── [4.0K] nifi-system-test-nar-provider-bundles
│ │ ├── [4.0K] nifi-nar-provider-assembly
│ │ │ ├── [3.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] assembly
│ │ │ └── [1.3K] dependencies.xml
│ │ ├── [4.0K] nifi-nar-provider-processors
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] nar
│ │ │ │ └── [4.0K] provider
│ │ │ │ └── [3.7K] GetClassLoaderInfo.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 828] org.apache.nifi.processor.Processor
│ │ ├── [4.0K] nifi-nar-provider-processors-nar
│ │ │ └── [2.4K] pom.xml
│ │ ├── [4.0K] nifi-nar-provider-service
│ │ │ ├── [2.1K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] nar
│ │ │ │ └── [4.0K] provider
│ │ │ │ └── [2.2K] StandardClassLoaderInfoService.java
│ │ │ └── [4.0K] resources
│ │ │ └── [4.0K] META-INF
│ │ │ └── [4.0K] services
│ │ │ └── [ 840] org.apache.nifi.controller.ControllerService
│ │ ├── [4.0K] nifi-nar-provider-service-api
│ │ │ ├── [1.5K] pom.xml
│ │ │ └── [4.0K] src
│ │ │ └── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] nar
│ │ │ └── [4.0K] provider
│ │ │ └── [1.2K] ClassLoaderInfoService.java
│ │ ├── [4.0K] nifi-nar-provider-service-api-nar
│ │ │ └── [2.4K] pom.xml
│ │ ├── [4.0K] nifi-nar-provider-service-nar
│ │ │ └── [2.4K] pom.xml
│ │ └── [1.7K] pom.xml
│ ├── [4.0K] nifi-system-test-suite
│ │ ├── [ 16K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] test
│ │ ├── [4.0K] assembly
│ │ │ └── [6.2K] dependencies.xml
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] tests
│ │ │ └── [4.0K] system
│ │ │ ├── [4.0K] action
│ │ │ │ └── [2.7K] FlowActionReporterIT.java
│ │ │ ├── [5.2K] AggregateNiFiInstance.java
│ │ │ ├── [4.0K] classloaders
│ │ │ │ └── [8.1K] ClassloaderIsolationKeyIT.java
│ │ │ ├── [4.0K] clustering
│ │ │ │ ├── [2.5K] AutoResumeStateClusteredIT.java
│ │ │ │ ├── [ 45K] FlowSynchronizationIT.java
│ │ │ │ ├── [5.7K] JoinClusterAdjustStateIT.java
│ │ │ │ ├── [ 11K] JoinClusterWithDifferentFlowIT.java
│ │ │ │ ├── [2.1K] JoinClusterWithMissingConnectionNoDataIT.java
│ │ │ │ ├── [6.2K] JoinClusterWithMissingConnectionWithDataIT.java
│ │ │ │ ├── [4.7K] NodeRestartWithNewNodeIdIT.java
│ │ │ │ ├── [4.3K] OffloadIT.java
│ │ │ │ ├── [7.3K] PrimaryNodeChangeNotificationIT.java
│ │ │ │ ├── [3.8K] RestartWithDifferentPortIT.java
│ │ │ │ └── [1.8K] SimpleNodeRestartIT.java
│ │ │ ├── [4.0K] controllerservice
│ │ │ │ ├── [9.5K] ControllerServiceApiValidationIT.java
│ │ │ │ ├── [5.4K] ControllerServiceDynamicPropertiesIT.java
│ │ │ │ ├── [3.9K] ControllerServiceEnableDisableConflictIT.java
│ │ │ │ ├── [2.5K] ControllerServiceLifecycleIT.java
│ │ │ │ └── [4.4K] DependentControllerServiceIT.java
│ │ │ ├── [ 935] ExceptionalBooleanSupplier.java
│ │ │ ├── [4.0K] flowanalysisrule
│ │ │ │ └── [5.3K] FlowAnalysisRuleIT.java
│ │ │ ├── [6.2K] InstanceConfiguration.java
│ │ │ ├── [4.0K] loadbalance
│ │ │ │ └── [ 21K] LoadBalanceIT.java
│ │ │ ├── [4.0K] migration
│ │ │ │ └── [ 16K] PropertyMigrationIT.java
│ │ │ ├── [4.0K] nar
│ │ │ │ ├── [4.2K] NarProviderAndAutoLoaderIT.java
│ │ │ │ ├── [1.2K] NarUploadClusteredIT.java
│ │ │ │ ├── [8.8K] NarUploadPythonIT.java
│ │ │ │ ├── [ 11K] NarUploadStandaloneIT.java
│ │ │ │ └── [4.5K] NarUploadUtil.java
│ │ │ ├── [116K] NiFiClientUtil.java
│ │ │ ├── [8.7K] NiFiInstanceCache.java
│ │ │ ├── [1001] NiFiInstanceFactory.java
│ │ │ ├── [4.4K] NiFiInstance.java
│ │ │ ├── [1.2K] NiFiInstanceProvider.java
│ │ │ ├── [ 29K] NiFiSystemIT.java
│ │ │ ├── [6.6K] NiFiSystemKeyStoreProvider.java
│ │ │ ├── [4.0K] parameters
│ │ │ │ ├── [ 11K] ClusteredParameterContextIT.java
│ │ │ │ └── [ 67K] ParameterContextIT.java
│ │ │ ├── [4.0K] pg
│ │ │ │ ├── [6.7K] BatchFlowBetweenGroupsIT.java
│ │ │ │ ├── [ 25K] CopyPasteIT.java
│ │ │ │ ├── [4.8K] ReplaceProcessGroupIT.java
│ │ │ │ └── [ 15K] SingleFlowFileConcurrencyIT.java
│ │ │ ├── [4.0K] processor
│ │ │ │ ├── [5.9K] ClassloaderIsolationWithControllerServicePropertyIT.java
│ │ │ │ ├── [5.8K] DefaultedDynamicClassPathModificationIT.java
│ │ │ │ ├── [9.6K] DynamicClassPathModificationIT.java
│ │ │ │ ├── [2.7K] ExceptionInFlowFileFilterIT.java
│ │ │ │ ├── [5.3K] ProcessorDynamicPropertiesIT.java
│ │ │ │ ├── [ 20K] RetryIT.java
│ │ │ │ └── [2.4K] RunOnceIT.java
│ │ │ ├── [4.0K] provenance
│ │ │ │ ├── [1.1K] ClusteredGetLatestProvenanceEventsIT.java
│ │ │ │ ├── [1.1K] ClusteredReplayProvenanceIT.java
│ │ │ │ ├── [4.0K] GetLatestProvenanceEventsIT.java
│ │ │ │ ├── [ 12K] ProvenanceRepositoryIT.java
│ │ │ │ └── [3.9K] ReplayProvenanceIT.java
│ │ │ ├── [4.0K] python
│ │ │ │ ├── [4.8K] PythonNarIT.java
│ │ │ │ └── [ 14K] PythonProcessorIT.java
│ │ │ ├── [4.0K] registry
│ │ │ │ ├── [1.1K] ClusteredRegistryClientIT.java
│ │ │ │ └── [ 23K] RegistryClientIT.java
│ │ │ ├── [4.0K] reportingtask
│ │ │ │ └── [7.8K] ReportingTaskIT.java
│ │ │ ├── [4.0K] repositories
│ │ │ │ └── [ 10K] ContentAccessIT.java
│ │ │ ├── [4.0K] restart
│ │ │ │ └── [4.3K] FlowFileRestorationIT.java
│ │ │ ├── [4.0K] rpg
│ │ │ │ ├── [1.1K] ClusteredRemoteProcessGroupIT.java
│ │ │ │ └── [5.3K] RemoteProcessGroupIT.java
│ │ │ ├── [3.1K] SpawnedClusterNiFiInstanceFactory.java
│ │ │ ├── [ 17K] SpawnedStandaloneNiFiInstanceFactory.java
│ │ │ ├── [4.0K] stateless
│ │ │ │ ├── [7.3K] ClusteredStatelessFlowIT.java
│ │ │ │ └── [ 42K] StatelessBasicsIT.java
│ │ │ ├── [3.6K] TroubleshootingTestWatcher.java
│ │ │ ├── [4.0K] validation
│ │ │ │ └── [6.4K] DependentPropertyValidationIT.java
│ │ │ └── [4.0K] verification
│ │ │ ├── [2.7K] ClusteredVerifiableControllerServiceSystemIT.java
│ │ │ ├── [2.7K] ClusteredVerifiableFlowAnalysisRuleSystemIT.java
│ │ │ ├── [2.7K] ClusteredVerifiableParameterProviderSystemIT.java
│ │ │ ├── [2.6K] ClusteredVerifiableProcessorSystemIT.java
│ │ │ ├── [2.7K] ClusteredVerifiableReportingTaskSystemIT.java
│ │ │ ├── [ 11K] VerifiableControllerServiceSystemIT.java
│ │ │ ├── [8.5K] VerifiableFlowAnalysisRuleSystemIT.java
│ │ │ ├── [7.8K] VerifiableParameterProviderSystemIT.java
│ │ │ ├── [ 12K] VerifiableProcessorSystemIT.java
│ │ │ └── [9.3K] VerifiableReportingTaskSystemIT.java
│ │ └── [4.0K] resources
│ │ ├── [4.0K] conf
│ │ │ ├── [4.0K] clustered
│ │ │ │ ├── [4.0K] node1
│ │ │ │ │ ├── [1.0K] authorizers.xml
│ │ │ │ │ ├── [1.4K] bootstrap.conf
│ │ │ │ │ ├── [ 10K] logback.xml
│ │ │ │ │ ├── [ 11K] nifi.properties
│ │ │ │ │ ├── [1.6K] state-management.xml
│ │ │ │ │ └── [1.4K] zookeeper.properties
│ │ │ │ └── [4.0K] node2
│ │ │ │ ├── [1.0K] authorizers.xml
│ │ │ │ ├── [1.4K] bootstrap.conf
│ │ │ │ ├── [ 10K] logback.xml
│ │ │ │ ├── [ 11K] nifi.properties
│ │ │ │ └── [1.6K] state-management.xml
│ │ │ ├── [4.0K] default
│ │ │ │ ├── [1.0K] authorizers.xml
│ │ │ │ ├── [1.4K] bootstrap.conf
│ │ │ │ ├── [ 10K] logback.xml
│ │ │ │ ├── [ 11K] nifi.properties
│ │ │ │ ├── [1.6K] state-management.xml
│ │ │ │ └── [1.4K] zookeeper.properties
│ │ │ └── [4.0K] pythonic
│ │ │ ├── [1.0K] authorizers.xml
│ │ │ ├── [1.4K] bootstrap.conf
│ │ │ ├── [ 10K] logback.xml
│ │ │ ├── [ 11K] nifi.properties
│ │ │ ├── [1.6K] state-management.xml
│ │ │ └── [1.4K] zookeeper.properties
│ │ ├── [ 316] empty-and-small-text-files.zip
│ │ ├── [4.0K] flows
│ │ │ ├── [4.0K] mismatched-flows
│ │ │ │ ├── [4.2K] flow1.json.gz
│ │ │ │ └── [4.2K] flow2.json.gz
│ │ │ └── [4.0K] missing-connection
│ │ │ ├── [1.4K] with-connection.json.gz
│ │ │ └── [1.1K] without-connection.json.gz
│ │ ├── [4.0K] sample-assets
│ │ │ ├── [ 15] helloworld2.txt
│ │ │ └── [ 13] helloworld.txt
│ │ ├── [ 887] simplelogger.properties
│ │ └── [4.0K] versioned-flows
│ │ └── [4.0K] test-flows
│ │ ├── [4.0K] flow-with-invalid-connection
│ │ │ ├── [4.0K] 1
│ │ │ │ └── [ 11K] snapshot.json
│ │ │ └── [4.0K] 2
│ │ │ └── [5.1K] snapshot.json
│ │ └── [4.0K] port-moved-groups
│ │ ├── [4.0K] 1
│ │ │ └── [ 11K] snapshot.json
│ │ └── [4.0K] 2
│ │ └── [8.8K] snapshot.json
│ └── [1.8K] pom.xml
├── [4.0K] nifi-toolkit
│ ├── [4.0K] nifi-toolkit-api
│ │ └── [4.8K] pom.xml
│ ├── [4.0K] nifi-toolkit-assembly
│ │ ├── [4.0K] docker
│ │ │ ├── [1.8K] DockerBuild.sh
│ │ │ ├── [2.0K] Dockerfile
│ │ │ ├── [2.3K] Dockerfile.hub
│ │ │ ├── [ 808] DockerImage.txt
│ │ │ ├── [4.0K] sh
│ │ │ │ └── [1.3K] docker-entrypoint.sh
│ │ │ └── [4.0K] tests
│ │ │ └── [1.1K] exit-codes.sh
│ │ ├── [ 41K] LICENSE
│ │ ├── [6.3K] NOTICE
│ │ ├── [ 14K] pom.xml
│ │ └── [4.0K] src
│ │ └── [4.0K] main
│ │ ├── [4.0K] assembly
│ │ │ └── [2.8K] dependencies.xml
│ │ └── [4.0K] resources
│ │ ├── [4.0K] bin
│ │ │ ├── [2.0K] cli.bat
│ │ │ └── [3.4K] cli.sh
│ │ ├── [4.0K] classpath
│ │ │ └── [1.4K] overlay.properties
│ │ └── [4.0K] conf
│ │ ├── [1.3K] cli.properties.example
│ │ ├── [ 364] config-client.json
│ │ └── [ 262] config-server.json
│ ├── [4.0K] nifi-toolkit-cli
│ │ ├── [5.1K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ ├── [4.0K] java
│ │ │ │ └── [4.0K] org
│ │ │ │ └── [4.0K] apache
│ │ │ │ └── [4.0K] nifi
│ │ │ │ └── [4.0K] toolkit
│ │ │ │ └── [4.0K] cli
│ │ │ │ ├── [4.0K] api
│ │ │ │ │ ├── [ 902] AccessPolicyAction.java
│ │ │ │ │ ├── [1.1K] ClientFactory.java
│ │ │ │ │ ├── [1.0K] CommandException.java
│ │ │ │ │ ├── [1.3K] CommandGroup.java
│ │ │ │ │ ├── [2.2K] Command.java
│ │ │ │ │ ├── [1.3K] Context.java
│ │ │ │ │ ├── [1.1K] Referenceable.java
│ │ │ │ │ ├── [1.6K] ReferenceResolver.java
│ │ │ │ │ ├── [1.9K] ResolvedReference.java
│ │ │ │ │ ├── [1.0K] Result.java
│ │ │ │ │ ├── [ 895] ResultType.java
│ │ │ │ │ ├── [1.0K] SessionException.java
│ │ │ │ │ ├── [1.4K] Session.java
│ │ │ │ │ └── [1.3K] WritableResult.java
│ │ │ │ ├── [8.9K] CLICompleter.java
│ │ │ │ ├── [8.8K] CLIMain.java
│ │ │ │ └── [4.0K] impl
│ │ │ │ ├── [4.0K] client
│ │ │ │ │ ├── [ 18K] NiFiClientFactory.java
│ │ │ │ │ └── [ 14K] NiFiRegistryClientFactory.java
│ │ │ │ ├── [4.0K] command
│ │ │ │ │ ├── [3.4K] AbstractCommandGroup.java
│ │ │ │ │ ├── [8.4K] AbstractCommand.java
│ │ │ │ │ ├── [4.1K] AbstractPropertyCommand.java
│ │ │ │ │ ├── [2.7K] CommandFactory.java
│ │ │ │ │ ├── [ 14K] CommandOption.java
│ │ │ │ │ ├── [ 11K] CommandProcessor.java
│ │ │ │ │ ├── [4.0K] composite
│ │ │ │ │ │ ├── [6.4K] AbstractCompositeCommand.java
│ │ │ │ │ │ ├── [1.4K] DemoCommandGroup.java
│ │ │ │ │ │ └── [ 12K] QuickImport.java
│ │ │ │ │ ├── [4.0K] misc
│ │ │ │ │ │ ├── [1.8K] Exit.java
│ │ │ │ │ │ └── [1.8K] Help.java
│ │ │ │ │ ├── [4.0K] nifi
│ │ │ │ │ │ ├── [3.8K] AbstractNiFiActivateCommand.java
│ │ │ │ │ │ ├── [6.2K] AbstractNiFiCommand.java
│ │ │ │ │ │ ├── [4.0K] access
│ │ │ │ │ │ │ ├── [2.5K] GetAccessToken.java
│ │ │ │ │ │ │ ├── [4.2K] GetAccessTokenSpnego.java
│ │ │ │ │ │ │ └── [2.2K] LogoutAccessToken.java
│ │ │ │ │ │ ├── [4.0K] cs
│ │ │ │ │ │ │ ├── [3.4K] CreateControllerService.java
│ │ │ │ │ │ │ ├── [4.1K] DisableControllerServices.java
│ │ │ │ │ │ │ ├── [3.9K] EnableControllerServices.java
│ │ │ │ │ │ │ ├── [2.4K] GetControllerService.java
│ │ │ │ │ │ │ └── [2.2K] GetControllerServices.java
│ │ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ │ ├── [2.1K] ClusterSummary.java
│ │ │ │ │ │ │ ├── [3.3K] CreateFlowAnalysisRule.java
│ │ │ │ │ │ │ ├── [3.3K] CreateReportingTask.java
│ │ │ │ │ │ │ ├── [2.1K] CurrentUser.java
│ │ │ │ │ │ │ ├── [2.7K] DeleteFlowAnalysisRule.java
│ │ │ │ │ │ │ ├── [3.9K] DisableFlowAnalysisRules.java
│ │ │ │ │ │ │ ├── [3.9K] EnableFlowAnalysisRules.java
│ │ │ │ │ │ │ ├── [3.2K] ExportReportingTask.java
│ │ │ │ │ │ │ ├── [3.0K] ExportReportingTasks.java
│ │ │ │ │ │ │ ├── [2.2K] GetControllerConfiguration.java
│ │ │ │ │ │ │ ├── [2.5K] GetFlowAnalysisRule.java
│ │ │ │ │ │ │ ├── [2.2K] GetFlowAnalysisRules.java
│ │ │ │ │ │ │ ├── [2.5K] GetReportingTask.java
│ │ │ │ │ │ │ ├── [2.1K] GetReportingTasks.java
│ │ │ │ │ │ │ ├── [1.9K] GetRootId.java
│ │ │ │ │ │ │ ├── [3.4K] ImportReportingTasks.java
│ │ │ │ │ │ │ ├── [3.7K] StartReportingTasks.java
│ │ │ │ │ │ │ ├── [3.7K] StopReportingTasks.java
│ │ │ │ │ │ │ └── [3.6K] UpdateControllerConfiguration.java
│ │ │ │ │ │ ├── [4.0K] nar
│ │ │ │ │ │ │ ├── [2.4K] DeleteNar.java
│ │ │ │ │ │ │ ├── [2.5K] DownloadNar.java
│ │ │ │ │ │ │ ├── [2.5K] ListNarComponentTypes.java
│ │ │ │ │ │ │ ├── [2.1K] ListNars.java
│ │ │ │ │ │ │ └── [4.8K] UploadNar.java
│ │ │ │ │ │ ├── [ 14K] NiFiCommandGroup.java
│ │ │ │ │ │ ├── [4.0K] nodes
│ │ │ │ │ │ │ ├── [2.7K] ConnectNode.java
│ │ │ │ │ │ │ ├── [2.2K] DeleteNode.java
│ │ │ │ │ │ │ ├── [2.7K] DisconnectNode.java
│ │ │ │ │ │ │ ├── [2.3K] GetNode.java
│ │ │ │ │ │ │ ├── [2.1K] GetNodes.java
│ │ │ │ │ │ │ └── [2.7K] OffloadNode.java
│ │ │ │ │ │ ├── [4.0K] params
│ │ │ │ │ │ │ ├── [6.0K] AbstractUpdateParamContextCommand.java
│ │ │ │ │ │ │ ├── [5.3K] AddAssetReference.java
│ │ │ │ │ │ │ ├── [2.7K] CreateAsset.java
│ │ │ │ │ │ │ ├── [3.4K] CreateParamContext.java
│ │ │ │ │ │ │ ├── [4.1K] CreateParamProvider.java
│ │ │ │ │ │ │ ├── [2.4K] DeleteAsset.java
│ │ │ │ │ │ │ ├── [2.6K] DeleteParamContext.java
│ │ │ │ │ │ │ ├── [4.8K] DeleteParam.java
│ │ │ │ │ │ │ ├── [2.7K] DeleteParamProvider.java
│ │ │ │ │ │ │ ├── [5.8K] ExportParamContext.java
│ │ │ │ │ │ │ ├── [8.5K] FetchParams.java
│ │ │ │ │ │ │ ├── [2.7K] GetAsset.java
│ │ │ │ │ │ │ ├── [2.8K] GetParamContext.java
│ │ │ │ │ │ │ ├── [2.9K] GetParamProvider.java
│ │ │ │ │ │ │ ├── [4.4K] ImportParamContext.java
│ │ │ │ │ │ │ ├── [2.5K] ListAssets.java
│ │ │ │ │ │ │ ├── [2.2K] ListParamContexts.java
│ │ │ │ │ │ │ ├── [2.1K] ListParamProviders.java
│ │ │ │ │ │ │ ├── [6.7K] MergeParamContext.java
│ │ │ │ │ │ │ ├── [5.0K] RemoveAssetReference.java
│ │ │ │ │ │ │ ├── [4.5K] RemoveInheritedParamContexts.java
│ │ │ │ │ │ │ ├── [5.7K] SetInheritedParamContexts.java
│ │ │ │ │ │ │ ├── [5.8K] SetParam.java
│ │ │ │ │ │ │ └── [4.3K] SetParamProviderProperty.java
│ │ │ │ │ │ ├── [4.0K] pg
│ │ │ │ │ │ │ ├── [4.0K] cs
│ │ │ │ │ │ │ │ ├── [1.5K] ControllerServiceStateCounts.java
│ │ │ │ │ │ │ │ ├── [1.1K] ControllerServiceStates.java
│ │ │ │ │ │ │ │ └── [3.0K] ControllerServiceUtil.java
│ │ │ │ │ │ │ ├── [7.8K] PGChangeAllVersions.java
│ │ │ │ │ │ │ ├── [8.0K] PGChangeVersion.java
│ │ │ │ │ │ │ ├── [6.5K] PGConnect.java
│ │ │ │ │ │ │ ├── [3.6K] PGCreateControllerService.java
│ │ │ │ │ │ │ ├── [3.0K] PGCreate.java
│ │ │ │ │ │ │ ├── [2.6K] PGDelete.java
│ │ │ │ │ │ │ ├── [7.7K] PGDisableControllerServices.java
│ │ │ │ │ │ │ ├── [3.7K] PGEmptyQueues.java
│ │ │ │ │ │ │ ├── [9.9K] PGEnableControllerServices.java
│ │ │ │ │ │ │ ├── [2.8K] PGExport.java
│ │ │ │ │ │ │ ├── [3.7K] PGGetAllVersions.java
│ │ │ │ │ │ │ ├── [2.6K] PGGetControllerServices.java
│ │ │ │ │ │ │ ├── [3.2K] PGGetParamContext.java
│ │ │ │ │ │ │ ├── [2.6K] PGGetVersion.java
│ │ │ │ │ │ │ ├── [ 11K] PGImport.java
│ │ │ │ │ │ │ ├── [4.4K] PGList.java
│ │ │ │ │ │ │ ├── [5.6K] PGListProcessors.java
│ │ │ │ │ │ │ ├── [4.8K] PGReplace.java
│ │ │ │ │ │ │ ├── [3.3K] PGSetParamContext.java
│ │ │ │ │ │ │ ├── [2.6K] PGStart.java
│ │ │ │ │ │ │ ├── [2.3K] PGStatus.java
│ │ │ │ │ │ │ ├── [2.5K] PGStop.java
│ │ │ │ │ │ │ └── [2.6K] PGStopVersionControl.java
│ │ │ │ │ │ ├── [4.0K] policies
│ │ │ │ │ │ │ ├── [2.7K] GetAccessPolicy.java
│ │ │ │ │ │ │ └── [9.5K] UpdateAccessPolicy.java
│ │ │ │ │ │ ├── [4.0K] processors
│ │ │ │ │ │ │ ├── [7.5K] ChangeVersionProcessor.java
│ │ │ │ │ │ │ ├── [2.7K] ProcessorClearState.java
│ │ │ │ │ │ │ ├── [2.5K] ProcessorRunOnce.java
│ │ │ │ │ │ │ └── [2.5K] ProcessorStart.java
│ │ │ │ │ │ ├── [4.0K] registry
│ │ │ │ │ │ │ ├── [3.2K] CreateRegistryClient.java
│ │ │ │ │ │ │ ├── [3.1K] GetRegistryClientId.java
│ │ │ │ │ │ │ ├── [2.4K] ListBranches.java
│ │ │ │ │ │ │ ├── [2.6K] ListBuckets.java
│ │ │ │ │ │ │ ├── [2.7K] ListFlows.java
│ │ │ │ │ │ │ ├── [3.0K] ListFlowVersions.java
│ │ │ │ │ │ │ ├── [2.0K] ListRegistryClients.java
│ │ │ │ │ │ │ ├── [4.1K] SetRegistryClientProperty.java
│ │ │ │ │ │ │ └── [3.6K] UpdateRegistryClient.java
│ │ │ │ │ │ ├── [4.0K] reporting
│ │ │ │ │ │ │ └── [2.6K] DeleteReportingTask.java
│ │ │ │ │ │ └── [4.0K] tenants
│ │ │ │ │ │ ├── [3.5K] CreateUserGroup.java
│ │ │ │ │ │ ├── [2.5K] CreateUser.java
│ │ │ │ │ │ ├── [2.1K] ListUserGroups.java
│ │ │ │ │ │ ├── [2.0K] ListUsers.java
│ │ │ │ │ │ └── [4.5K] UpdateUserGroup.java
│ │ │ │ │ ├── [4.0K] registry
│ │ │ │ │ │ ├── [4.4K] AbstractNiFiRegistryCommand.java
│ │ │ │ │ │ ├── [4.0K] access
│ │ │ │ │ │ │ ├── [2.5K] GetAccessToken.java
│ │ │ │ │ │ │ ├── [4.3K] GetAccessTokenSpnego.java
│ │ │ │ │ │ │ └── [2.2K] LogoutAccessToken.java
│ │ │ │ │ │ ├── [4.0K] bucket
│ │ │ │ │ │ │ ├── [2.7K] CreateBucket.java
│ │ │ │ │ │ │ ├── [3.0K] DeleteBucket.java
│ │ │ │ │ │ │ ├── [1.9K] ListBuckets.java
│ │ │ │ │ │ │ └── [5.9K] UpdateBucketPolicy.java
│ │ │ │ │ │ ├── [4.0K] extension
│ │ │ │ │ │ │ ├── [3.0K] DownloadBundle.java
│ │ │ │ │ │ │ ├── [2.8K] GetBundleChecksum.java
│ │ │ │ │ │ │ ├── [2.7K] ListBundleArtifacts.java
│ │ │ │ │ │ │ ├── [2.6K] ListBundleGroups.java
│ │ │ │ │ │ │ ├── [3.0K] ListBundleVersions.java
│ │ │ │ │ │ │ ├── [4.8K] ListExtensions.java
│ │ │ │ │ │ │ ├── [2.1K] ListExtensionTags.java
│ │ │ │ │ │ │ ├── [4.0K] UploadBundle.java
│ │ │ │ │ │ │ └── [7.4K] UploadBundles.java
│ │ │ │ │ │ ├── [4.0K] flow
│ │ │ │ │ │ │ ├── [2.8K] CreateFlow.java
│ │ │ │ │ │ │ ├── [3.2K] DeleteFlow.java
│ │ │ │ │ │ │ ├── [2.9K] DiffFlowVersions.java
│ │ │ │ │ │ │ ├── [ 10K] ExportAllFlows.java
│ │ │ │ │ │ │ ├── [3.7K] ExportFlowVersion.java
│ │ │ │ │ │ │ ├── [ 17K] ImportAllFlows.java
│ │ │ │ │ │ │ ├── [5.3K] ImportFlowVersion.java
│ │ │ │ │ │ │ ├── [2.4K] ListFlows.java
│ │ │ │ │ │ │ ├── [2.6K] ListFlowVersions.java
│ │ │ │ │ │ │ ├── [5.7K] SyncFlowVersions.java
│ │ │ │ │ │ │ └── [5.4K] TransferFlowVersion.java
│ │ │ │ │ │ ├── [6.0K] NiFiRegistryCommandGroup.java
│ │ │ │ │ │ ├── [4.0K] policy
│ │ │ │ │ │ │ ├── [5.3K] CreateOrUpdateAccessPolicy.java
│ │ │ │ │ │ │ └── [2.6K] GetAccessPolicy.java
│ │ │ │ │ │ ├── [4.0K] tenant
│ │ │ │ │ │ │ ├── [2.1K] AbstractListTenants.java
│ │ │ │ │ │ │ ├── [2.9K] CreateUserGroup.java
│ │ │ │ │ │ │ ├── [2.4K] CreateUser.java
│ │ │ │ │ │ │ ├── [1.8K] ListUserGroups.java
│ │ │ │ │ │ │ ├── [1.7K] ListUsers.java
│ │ │ │ │ │ │ ├── [1.9K] TenantHelper.java
│ │ │ │ │ │ │ ├── [3.2K] UpdateUserGroup.java
│ │ │ │ │ │ │ └── [2.7K] UpdateUser.java
│ │ │ │ │ │ └── [4.0K] user
│ │ │ │ │ │ └── [2.1K] CurrentUser.java
│ │ │ │ │ └── [4.0K] session
│ │ │ │ │ ├── [1.7K] ClearSession.java
│ │ │ │ │ ├── [2.3K] GetVariable.java
│ │ │ │ │ ├── [2.0K] RemoveVariable.java
│ │ │ │ │ ├── [1.7K] SessionCommandGroup.java
│ │ │ │ │ ├── [2.2K] SetVariable.java
│ │ │ │ │ ├── [1.8K] ShowKeys.java
│ │ │ │ │ └── [2.0K] ShowSession.java
│ │ │ │ ├── [4.0K] context
│ │ │ │ │ └── [3.6K] StandardContext.java
│ │ │ │ ├── [4.0K] result
│ │ │ │ │ ├── [1.9K] AbstractWritableResult.java
│ │ │ │ │ ├── [4.0K] nifi
│ │ │ │ │ │ ├── [2.4K] AccessPolicyResult.java
│ │ │ │ │ │ ├── [2.8K] AssetsResult.java
│ │ │ │ │ │ ├── [1.5K] ChangeVersionResult.java
│ │ │ │ │ │ ├── [2.1K] ClusterSummaryEntityResult.java
│ │ │ │ │ │ ├── [1.9K] ControllerConfigurationResult.java
│ │ │ │ │ │ ├── [2.3K] ControllerServiceResult.java
│ │ │ │ │ │ ├── [3.3K] ControllerServicesResult.java
│ │ │ │ │ │ ├── [1.7K] CurrentUserEntityResult.java
│ │ │ │ │ │ ├── [1.6K] CurrentUserResult.java
│ │ │ │ │ │ ├── [2.3K] FlowAnalysisRuleResult.java
│ │ │ │ │ │ ├── [3.4K] FlowAnalysisRulesResult.java
│ │ │ │ │ │ ├── [3.9K] ImportReportingTasksResult.java
│ │ │ │ │ │ ├── [3.6K] NarComponentTypesResult.java
│ │ │ │ │ │ ├── [3.1K] NarSummariesEntityResult.java
│ │ │ │ │ │ ├── [2.7K] NarUploadResult.java
│ │ │ │ │ │ ├── [1.8K] NodeResult.java
│ │ │ │ │ │ ├── [2.6K] NodesResult.java
│ │ │ │ │ │ ├── [4.5K] ParamContextResult.java
│ │ │ │ │ │ ├── [5.6K] ParamContextsResult.java
│ │ │ │ │ │ ├── [4.7K] ParamProviderResult.java
│ │ │ │ │ │ ├── [2.9K] ParamProvidersResult.java
│ │ │ │ │ │ ├── [1.8K] ProcessGroupResult.java
│ │ │ │ │ │ ├── [4.4K] ProcessGroupsResult.java
│ │ │ │ │ │ ├── [4.5K] ProcessGroupsVersionChangeResult.java
│ │ │ │ │ │ ├── [2.1K] ProcessorResult.java
│ │ │ │ │ │ ├── [3.4K] ProcessorsResult.java
│ │ │ │ │ │ ├── [2.9K] RegistryBranchesResult.java
│ │ │ │ │ │ ├── [3.0K] RegistryBucketsResult.java
│ │ │ │ │ │ ├── [1.7K] RegistryClientIDResult.java
│ │ │ │ │ │ ├── [3.2K] RegistryClientsResult.java
│ │ │ │ │ │ ├── [3.0K] RegistryFlowsResult.java
│ │ │ │ │ │ ├── [3.8K] RegistryFlowVersionsResult.java
│ │ │ │ │ │ ├── [2.2K] ReportingTaskResult.java
│ │ │ │ │ │ ├── [3.4K] ReportingTasksResult.java
│ │ │ │ │ │ ├── [3.3K] UserGroupsResult.java
│ │ │ │ │ │ ├── [3.2K] UsersResult.java
│ │ │ │ │ │ ├── [2.9K] VersionControlInfoResult.java
│ │ │ │ │ │ └── [2.6K] VersionedReportingTaskSnapshotResult.java
│ │ │ │ │ ├── [1.1K] OkResult.java
│ │ │ │ │ ├── [4.0K] registry
│ │ │ │ │ │ ├── [2.2K] AccessPolicyResult.java
│ │ │ │ │ │ ├── [3.9K] BucketsResult.java
│ │ │ │ │ │ ├── [2.0K] BundleVersionResult.java
│ │ │ │ │ │ ├── [2.8K] ExtensionMetadataResult.java
│ │ │ │ │ │ ├── [3.0K] ExtensionRepoArtifactsResult.java
│ │ │ │ │ │ ├── [2.7K] ExtensionRepoGroupsResult.java
│ │ │ │ │ │ ├── [3.1K] ExtensionRepoVersionSummariesResult.java
│ │ │ │ │ │ ├── [3.1K] RegisteredFlowSnapshotMetadataResult.java
│ │ │ │ │ │ ├── [2.3K] TagCountResult.java
│ │ │ │ │ │ ├── [2.9K] UserGroupsResult.java
│ │ │ │ │ │ ├── [2.3K] UsersResult.java
│ │ │ │ │ │ ├── [3.6K] VersionedFlowDifferenceResult.java
│ │ │ │ │ │ ├── [3.9K] VersionedFlowSnapshotMetadataSetResult.java
│ │ │ │ │ │ ├── [2.5K] VersionedFlowSnapshotResult.java
│ │ │ │ │ │ ├── [3.8K] VersionedFlowSnapshotsResult.java
│ │ │ │ │ │ └── [4.3K] VersionedFlowsResult.java
│ │ │ │ │ ├── [1.6K] StringResult.java
│ │ │ │ │ ├── [ 880] Void.java
│ │ │ │ │ ├── [1.2K] VoidResult.java
│ │ │ │ │ └── [4.0K] writer
│ │ │ │ │ ├── [4.9K] DynamicTableWriter.java
│ │ │ │ │ ├── [1.9K] TableColumn.java
│ │ │ │ │ ├── [2.9K] Table.java
│ │ │ │ │ └── [1.2K] TableWriter.java
│ │ │ │ ├── [4.0K] session
│ │ │ │ │ ├── [2.6K] InMemorySession.java
│ │ │ │ │ ├── [3.8K] PersistentSession.java
│ │ │ │ │ └── [1.8K] SessionVariable.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [2.7K] JacksonUtils.java
│ │ │ └── [4.0K] resources
│ │ │ ├── [ 241] nifi-banner.txt
│ │ │ └── [ 255] nifi-registry-banner.txt
│ │ └── [4.0K] test
│ │ ├── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] toolkit
│ │ │ └── [4.0K] cli
│ │ │ ├── [4.0K] impl
│ │ │ │ ├── [4.0K] client
│ │ │ │ │ └── [4.2K] TestClientTimeout.java
│ │ │ │ ├── [4.0K] command
│ │ │ │ │ ├── [2.2K] CommandA.java
│ │ │ │ │ ├── [2.0K] CommandAResult.java
│ │ │ │ │ ├── [4.0K] registry
│ │ │ │ │ │ └── [4.0K] tenant
│ │ │ │ │ │ └── [5.2K] TestTenantHelper.java
│ │ │ │ │ └── [3.1K] TestCommandProcessor.java
│ │ │ │ └── [4.0K] result
│ │ │ │ ├── [3.0K] TestBucketsResult.java
│ │ │ │ ├── [3.7K] TestRegisteredFlowSnapshotMetadataResult.java
│ │ │ │ ├── [4.3K] TestRegistryClientResult.java
│ │ │ │ ├── [4.6K] TestVersionedFlowsResult.java
│ │ │ │ └── [4.0K] writer
│ │ │ │ └── [4.8K] TestDynamicTableWriter.java
│ │ │ ├── [2.6K] NiFiCLIMainRunner.java
│ │ │ └── [9.9K] TestCLICompleter.java
│ │ └── [4.0K] resources
│ │ └── [1.3K] test.properties
│ ├── [4.0K] nifi-toolkit-client
│ │ ├── [3.2K] pom.xml
│ │ └── [4.0K] src
│ │ ├── [4.0K] main
│ │ │ └── [4.0K] java
│ │ │ └── [4.0K] org
│ │ │ └── [4.0K] apache
│ │ │ └── [4.0K] nifi
│ │ │ └── [4.0K] toolkit
│ │ │ └── [4.0K] client
│ │ │ ├── [1.1K] AccessClient.java
│ │ │ ├── [2.9K] ConnectionClient.java
│ │ │ ├── [6.0K] ControllerClient.java
│ │ │ ├── [3.0K] ControllerServicesClient.java
│ │ │ ├── [1.0K] CountersClient.java
│ │ │ ├── [9.1K] FlowClient.java
│ │ │ ├── [4.0K] impl
│ │ │ │ ├── [5.7K] AbstractJerseyClient.java
│ │ │ │ ├── [4.7K] CRUDJerseyClient.java
│ │ │ │ ├── [3.4K] JerseyAccessClient.java
│ │ │ │ ├── [ 13K] JerseyConnectionClient.java
│ │ │ │ ├── [ 25K] JerseyControllerClient.java
│ │ │ │ ├── [ 12K] JerseyControllerServicesClient.java
│ │ │ │ ├── [1.8K] JerseyCountersClient.java
│ │ │ │ ├── [ 17K] JerseyFlowClient.java
│ │ │ │ ├── [3.4K] JerseyInputPortClient.java
│ │ │ │ ├── [ 12K] JerseyNiFiClient.java
│ │ │ │ ├── [3.4K] JerseyOutputPortClient.java
│ │ │ │ ├── [ 12K] JerseyParamContextClient.java
│ │ │ │ ├── [ 11K] JerseyParamProviderClient.java
│ │ │ │ ├── [3.6K] JerseyPoliciesClient.java
│ │ │ │ ├── [ 18K] JerseyProcessGroupClient.java
│ │ │ │ ├── [ 14K] JerseyProcessorClient.java
│ │ │ │ ├── [8.3K] JerseyProvenanceClient.java
│ │ │ │ ├── [6.1K] JerseyRemoteProcessGroupClient.java
│ │ │ │ ├── [9.0K] JerseyReportingTasksClient.java
│ │ │ │ ├── [2.7K] JerseySnippetClient.java
│ │ │ │ ├── [2.2K] JerseySystemDiagnosticsClient.java
│ │ │ │ ├── [5.0K] JerseyTenantsClient.java
│ │ │ │ ├── [9.0K] JerseyVersionsClient.java
│ │ │ │ └── [4.0K] request
│ │ │ │ ├── [2.1K] BasicAuthRequestConfig.java
│ │ │ │ ├── [1.6K] BearerTokenRequestConfig.java
│ │ │ │ ├── [4.4K] OIDCClientCredentialsRequestConfig.java
│ │ │ │ ├── [2.4K] ProxiedEntityRequestConfig.java
│ │ │ │ └── [4.0K] util
│ │ │ │ └── [2.9K] AccessToken.java
│ │ │ ├── [1.5K] InputPortClient.java
│ │ │ ├── [8.5K] NiFiClientConfig.java
│ │ │ ├── [1.1K] NiFiClientException.java
│ │ │ ├── [4.2K] NiFiClient.java
│ │ │ ├── [1.5K] OutputPortClient.java
│ │ │ ├── [2.8K] ParamContextClient.java
│ │ │ ├── [2.9K] ParamProviderClient.java
│ │ │ ├── [1.3K] PoliciesClient.java
│ │ │ ├── [4.8K] ProcessGroupBox.java
│ │ │ ├── [4.0K] ProcessGroupClient.java
│ │ │ ├── [3.6K] ProcessorClient.java
│ │ │ ├── [2.3K] ProvenanceClient.java
│ │ │ ├── [1.7K] RemoteProcessGroupClient.java
│ │ │ ├── [2.3K] ReportingTasksClient.java
│ │ │ ├── [1.0K] RequestConfig.java
│ │ │ ├── [1.3K] SnippetClient.java
│ │ │ ├── [1.1K] SystemDiagnosticsClient.java
│ │ │ ├── [1.6K] TenantsClient.java
│ │ │ └── [2.4K] VersionsClient.java
│ │ └── [4.0K] test
│ │ └── [4.0K] java
│ │ └── [4.0K] org
│ │ └── [4.0K] apache
│ │ └── [4.0K] nifi
│ │ └── [4.0K] toolkit
│ │ └── [4.0K] client
│ │ └── [3.4K] TestProcessGroupBox.java
│ └── [1.6K] pom.xml
├── [6.8K] NOTICE
├── [5.3K] pmd-ruleset.xml
├── [ 55K] pom.xml
├── [ 11K] README.md
└── [3.1K] SECURITY.md
8607 directories, 12916 files
备注
1. 建议优先通过来源进行访问。
2. 如果因为来源失效或无法访问,请发送邮箱到 f.jinxu#gmail.com 索取本地快照(把 # 换成 @)。
3. 神龙已为您对POC代码进行快照,为了长期维护,请考虑为本地POC付费,感谢您的支持。