This is an automated email from the ASF dual-hosted git repository.
dan-s1 pushed a change to branch NIFI-15999
in repository https://gitbox.apache.org/repos/asf/nifi-api.git
discard 6ffdc3c NIFI-15999 Removed unused argLine property.
discard 7c06996 NIFI-15999 Changed strategy of using agent to allow for
running tests in IDE without the warning message.
discard 04b305f NIFI-15999 Added Mockito as an agent to thereby not have
Mockito self-attach to enable the inline-mock-maker.
add 97ed123 NIFI-16033 Add AGENTS.md and SECURITY.md for security-model
discoverability (#97)
add 53c7236 NIFI-16038: Added setValueReference/setValueReferences
methods to ConnectorMigrationContext (#99)
add ef1d975 NIFI-16045: Initial API for Processor / Connector Backlog
(#98)
add 9d6c8ba NIFI-16070: Add nifi-api support for migrateProperties to
Connectors. (#102)
add b377b75 NIFI-16063 Added PropertyProtectionType for Secrets used in
Connector Properties (#101)
add 8cd308b NIFI-16048 Added Synchronization Interval property for Flow
Registry Clients (#100)
add 00f6973 NIFI-16022 Fixed StandardResourceReferenceFactory
disambiguation for File path and block comments (#96)
add 50eb1d1 NIFI-16004 Updated Maven version to build with from 3.9.12 to
3.9.16 to match the version used by the Maven wrapper (#93)
add 6157647 NIFI-15999 Added Mockito as an agent to thereby not have
Mockito self-attach to enable the inline-mock-maker.
add 0a4a157 NIFI-15999 Changed strategy of using agent to allow for
running tests in IDE without the warning message.
add 7a804df NIFI-15999 Removed unused argLine property.
add 6b048a0 NIFI-15999 Renamed id and added suggesteed comments.
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (6ffdc3c)
\
N -- N -- N refs/heads/NIFI-15999 (6b048a0)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.mvn/wrapper/maven-wrapper.properties | 2 +-
AGENTS.md | 15 +
README.md | 2 +-
SECURITY.md | 36 ++
pom.xml | 4 +-
.../java/org/apache/nifi/components/Backlog.java | 437 +++++++++++++++++++++
.../nifi/components/BacklogReportingException.java | 53 +++
.../connector/BacklogReportingConnector.java | 102 +++++
.../nifi/components/connector/Connector.java | 31 +-
...rValueType.java => PropertyProtectionType.java} | 20 +-
.../apache/nifi/components/connector/Secret.java | 11 +
.../connector/components/ConnectionFacade.java | 14 +
.../connector/components/ProcessorFacade.java | 38 ++
.../connector/components/QueueSnapshot.java | 68 ++++
.../migration/ConnectorMigrationContext.java | 30 ++
.../resource/StandardResourceReferenceFactory.java | 2 +-
.../migration/ConnectorPropertyConfiguration.java | 80 ++++
.../ConnectorStepPropertyConfiguration.java | 153 ++++++++
.../nifi/processor/BacklogReportingProcessor.java | 97 +++++
.../registry/flow/AbstractFlowRegistryClient.java | 18 +
.../org/apache/nifi/components/TestBacklog.java | 144 +++++++
.../TestStandardResourceReferenceFactory.java | 40 +-
22 files changed, 1372 insertions(+), 25 deletions(-)
create mode 100644 AGENTS.md
create mode 100644 SECURITY.md
create mode 100644 src/main/java/org/apache/nifi/components/Backlog.java
create mode 100644
src/main/java/org/apache/nifi/components/BacklogReportingException.java
create mode 100644
src/main/java/org/apache/nifi/components/connector/BacklogReportingConnector.java
copy
src/main/java/org/apache/nifi/components/connector/{ConnectorValueType.java =>
PropertyProtectionType.java} (63%)
create mode 100644
src/main/java/org/apache/nifi/components/connector/components/QueueSnapshot.java
create mode 100644
src/main/java/org/apache/nifi/migration/ConnectorPropertyConfiguration.java
create mode 100644
src/main/java/org/apache/nifi/migration/ConnectorStepPropertyConfiguration.java
create mode 100644
src/main/java/org/apache/nifi/processor/BacklogReportingProcessor.java
create mode 100644 src/test/java/org/apache/nifi/components/TestBacklog.java