-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added new endpoint for remotecomponent
- Loading branch information
1 parent
3c62539
commit d2dec8b
Showing
9 changed files
with
201 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,65 @@ | ||
|
||
:summaryTableId: onecx-help-svc | ||
[.configuration-legend] | ||
icon:lock[title=Fixed at build time] Configuration property fixed at build time - All other configuration properties are overridable at runtime | ||
[.configuration-reference.searchable, cols="80,.^10,.^10"] | ||
|=== | ||
|
||
h|[[onecx-help-svc_configuration]]link:#onecx-help-svc_configuration[Configuration property] | ||
|
||
h|[.header-title]##Configuration property## | ||
h|Type | ||
h|Default | ||
|
||
a| [[onecx-help-svc_onecx-help-default-enabled]]`link:#onecx-help-svc_onecx-help-default-enabled[onecx.help.default.enabled]` | ||
|
||
a| [[onecx-help-svc_onecx-help-default-enabled]] [.property-path]##`onecx.help.default.enabled`## | ||
|
||
[.description] | ||
-- | ||
Enable or disable default help | ||
|
||
|
||
ifdef::add-copy-button-to-env-var[] | ||
Environment variable: env_var_with_copy_button:+++ONECX_HELP_DEFAULT_ENABLED+++[] | ||
endif::add-copy-button-to-env-var[] | ||
ifndef::add-copy-button-to-env-var[] | ||
Environment variable: `+++ONECX_HELP_DEFAULT_ENABLED+++` | ||
endif::add-copy-button-to-env-var[] | ||
--|boolean | ||
-- | ||
|boolean | ||
|`false` | ||
|
||
|
||
a| [[onecx-help-svc_onecx-help-default-url]]`link:#onecx-help-svc_onecx-help-default-url[onecx.help.default.url]` | ||
|
||
a| [[onecx-help-svc_onecx-help-default-url]] [.property-path]##`onecx.help.default.url`## | ||
|
||
[.description] | ||
-- | ||
Default help URL | ||
|
||
|
||
ifdef::add-copy-button-to-env-var[] | ||
Environment variable: env_var_with_copy_button:+++ONECX_HELP_DEFAULT_URL+++[] | ||
endif::add-copy-button-to-env-var[] | ||
ifndef::add-copy-button-to-env-var[] | ||
Environment variable: `+++ONECX_HELP_DEFAULT_URL+++` | ||
endif::add-copy-button-to-env-var[] | ||
--|string | ||
-- | ||
|string | ||
|`https://github.com/onecx` | ||
|
||
|
||
a| [[onecx-help-svc_onecx-help-product-item-id]]`link:#onecx-help-svc_onecx-help-product-item-id[onecx.help.product-item-id]` | ||
|
||
a| [[onecx-help-svc_onecx-help-product-item-id]] [.property-path]##`onecx.help.product-item-id`## | ||
|
||
[.description] | ||
-- | ||
Default help URL | ||
|
||
|
||
ifdef::add-copy-button-to-env-var[] | ||
Environment variable: env_var_with_copy_button:+++ONECX_HELP_PRODUCT_ITEM_ID+++[] | ||
endif::add-copy-button-to-env-var[] | ||
ifndef::add-copy-button-to-env-var[] | ||
Environment variable: `+++ONECX_HELP_PRODUCT_ITEM_ID+++` | ||
endif::add-copy-button-to-env-var[] | ||
--|string | ||
-- | ||
|string | ||
|`PRODUCT_BASE_DOC_URL` | ||
|
||
|=== | ||
|=== | ||
|
||
|
||
:!summaryTableId: |
16 changes: 16 additions & 0 deletions
16
src/main/java/org/tkit/onecx/help/domain/criteria/HelpCurrentSearchCriteria.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package org.tkit.onecx.help.domain.criteria; | ||
|
||
import io.quarkus.runtime.annotations.RegisterForReflection; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
@RegisterForReflection | ||
public class HelpCurrentSearchCriteria { | ||
|
||
private String itemId; | ||
|
||
private String productName; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.