Skip to content

Commit

Permalink
'Init'
Browse files Browse the repository at this point in the history
  • Loading branch information
fharenheit committed Jan 11, 2023
1 parent 03c555d commit d5df37d
Show file tree
Hide file tree
Showing 869 changed files with 173,737 additions and 11 deletions.
20 changes: 9 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
# Compiled class file
*.class

# Log file
*.log

# BlueJ files
*.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

# exclude jar for gradle wrapper
!gradle/wrapper/*.jar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

# build files
**/target
target
.gradle
build
23 changes: 23 additions & 0 deletions .swagger-codegen-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Swagger Codegen Ignore
# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
736 changes: 736 additions & 0 deletions README.md

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions docs/AboutDTO.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

# AboutDTO

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**title** | **String** | The title to be used on the page and in the about dialog. | [optional]
**version** | **String** | The version of this NiFi. | [optional]
**uri** | **String** | The URI for the NiFi. | [optional]
**contentViewerUrl** | **String** | The URL for the content viewer if configured. | [optional]
**timezone** | **String** | The timezone of the NiFi instance. | [optional]
**buildTag** | **String** | Build tag | [optional]
**buildRevision** | **String** | Build revision or commit hash | [optional]
**buildBranch** | **String** | Build branch | [optional]
**buildTimestamp** | **String** | Build timestamp | [optional]



10 changes: 10 additions & 0 deletions docs/AboutEntity.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

# AboutEntity

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**about** | [**AboutDTO**](AboutDTO.md) | | [optional]



Loading

0 comments on commit d5df37d

Please sign in to comment.