├── plugins ├── components │ ├── includes.ts │ ├── ui │ │ ├── less │ │ │ ├── pager.less │ │ │ ├── auto-dropdown.less │ │ │ ├── modal.less │ │ │ ├── popover.less │ │ │ ├── list.less │ │ │ ├── contained.less │ │ │ ├── clipboard.less │ │ │ └── editable-property.less │ │ ├── html │ │ │ ├── layoutUI.html │ │ │ ├── editor.html │ │ │ ├── toc.html │ │ │ ├── filter.html │ │ │ ├── pane.html │ │ │ ├── list.html │ │ │ ├── confirmDialog.html │ │ │ ├── tablePager.html │ │ │ └── multiItemConfirmActionDialog.html │ │ ├── ts │ │ │ ├── uiHelpers.ts │ │ │ ├── cardView.ts │ │ │ ├── developerPage.ts │ │ │ └── row.ts │ │ └── doc │ │ │ ├── developerPage1.md │ │ │ └── developerPage2.md │ ├── forms2 │ │ ├── html │ │ │ ├── form2Map.html │ │ │ ├── optionArray.html │ │ │ ├── radio-top-level.html │ │ │ ├── optionObject.html │ │ │ ├── optionConfigObject.html │ │ │ ├── radio-group-member.html │ │ │ ├── hidden.html │ │ │ ├── object.html │ │ │ ├── form-unwrapped.html │ │ │ ├── map.html │ │ │ ├── form-inline.html │ │ │ ├── form-standard.html │ │ │ ├── static-text.html │ │ │ ├── form-horizontal.html │ │ │ ├── select.html │ │ │ ├── checkbox.html │ │ │ ├── static-horizontal-text.html │ │ │ ├── standard-input.html │ │ │ ├── select-horizontal.html │ │ │ ├── checkbox-horizontal.html │ │ │ ├── standard-horizontal-input.html │ │ │ ├── array.html │ │ │ └── arrayItemModal.html │ │ ├── ts │ │ │ ├── forms2Plugin.ts │ │ │ └── combobox.ts │ │ └── less │ │ │ └── forms2.less │ ├── toastr │ │ └── less │ │ │ └── toastr.less │ ├── editor │ │ ├── html │ │ │ └── editor.html │ │ ├── less │ │ │ └── editor.less │ │ └── ts │ │ │ ├── editorGlobals.ts │ │ │ └── editorPlugin.ts │ ├── forms │ │ └── ts │ │ │ ├── formGlobals.ts │ │ │ ├── submitDirective.ts │ │ │ └── resetDirective.ts │ ├── datatable │ │ ├── less │ │ │ ├── datatable.less │ │ │ └── ng-grid.less │ │ └── ts │ │ │ └── datatablePlugin.ts │ └── ui-bootstrap │ │ ├── html │ │ └── message.html │ │ └── ts │ │ └── uiBootstrapPlugin.ts ├── osgi │ ├── less │ │ ├── bundles.less │ │ ├── configurations.less │ │ ├── pid.less │ │ └── packages.less │ ├── doc │ │ └── help.md │ └── ts │ │ ├── framework │ │ ├── framework.ts │ │ └── framework.module.ts │ │ ├── configuration │ │ ├── configuration-property.ts │ │ ├── configuration.ts │ │ └── configuration.module.ts │ │ ├── bundles │ │ ├── bundle.ts │ │ └── bundles.module.ts │ │ └── osgiTopLevel.ts ├── logs │ ├── less │ │ └── logs-preferences.less │ └── ts │ │ ├── logs.module.ts │ │ ├── logs-preferences │ │ ├── logs-preferences.config.ts │ │ ├── logs-preferences.module.ts │ │ └── logs-preferences.controller.ts │ │ └── logs │ │ ├── logs.module.ts │ │ └── logs.config.ts ├── activemq │ ├── less │ │ ├── preferences.less │ │ ├── browse.less │ │ └── tree.less │ ├── html │ │ ├── tree │ │ │ └── content.html │ │ ├── destinations.html │ │ └── destination │ │ │ └── deleteTopic.html │ └── ts │ │ ├── tree │ │ ├── tree.module.ts │ │ └── tree.component.ts │ │ ├── destination │ │ ├── destination.module.ts │ │ └── destination.component.ts │ │ └── activemq.component.ts ├── camel │ ├── less │ │ ├── camel-preferences.less │ │ ├── type-converters.less │ │ ├── routes.less │ │ ├── layout.less │ │ ├── send-message.less │ │ ├── browse.less │ │ ├── endpoints.less │ │ └── properties.less │ ├── html │ │ ├── tree │ │ │ └── content.html │ │ ├── propertiesRoute.html │ │ ├── propertiesEndpoint.html │ │ ├── propertiesComponent.html │ │ ├── propertiesDataFormat.html │ │ ├── source.html │ │ ├── deleteRouteWarningModal.html │ │ ├── deleteContextWarningModal.html │ │ ├── nodePropertiesView.html │ │ ├── createEndpointURL.html │ │ ├── nodePropertiesEdit.html │ │ └── createEndpoint.html │ ├── ts │ │ ├── type-converters │ │ │ ├── type-converter.ts │ │ │ ├── type-converters.component.ts │ │ │ ├── type-converters-statistics.ts │ │ │ └── type-converters.module.ts │ │ ├── debug │ │ │ ├── conditional-breakpoint.ts │ │ │ ├── debug.module.ts │ │ │ └── debug.service.ts │ │ ├── endpoints │ │ │ ├── endpoint.ts │ │ │ └── endpoints.module.ts │ │ ├── rest-services │ │ │ ├── rest-service.ts │ │ │ └── rest-services.module.ts │ │ ├── exchanges │ │ │ ├── exchanges.component.ts │ │ │ ├── exchanges.module.ts │ │ │ └── confirm-unblock-exchange.component.ts │ │ ├── tree │ │ │ ├── tree.module.ts │ │ │ └── tree.component.ts │ │ ├── profile │ │ │ └── profile.module.ts │ │ ├── properties │ │ │ ├── property.ts │ │ │ ├── property-list.component.ts │ │ │ └── properties.module.ts │ │ ├── contexts │ │ │ ├── context.ts │ │ │ └── contexts.module.ts │ │ ├── camel-tree.service.ts │ │ ├── routes │ │ │ ├── routes.module.ts │ │ │ └── route.ts │ │ ├── endpoints-statistics │ │ │ ├── endpoints-statistics.module.ts │ │ │ └── endpoints-statistics.service.ts │ │ ├── camel.component.ts │ │ └── camel-navigation.component.ts │ └── doc │ │ └── help.md ├── dagre.d.ts ├── spring-boot │ ├── info │ │ ├── info.component.less │ │ ├── info.module.ts │ │ └── info.service.ts │ ├── common │ │ └── endpoint-mbean.ts │ ├── loggers │ │ ├── loggers.less │ │ ├── logger.ts │ │ └── loggers.module.ts │ ├── health │ │ ├── health.ts │ │ ├── health.module.ts │ │ └── health.component.less │ ├── trace │ │ └── trace.module.ts │ ├── spring-boot.component.ts │ ├── doc │ │ └── help.md │ └── spring-boot.module.ts ├── karaf │ ├── doc │ │ └── help.md │ ├── less │ │ └── karaf.less │ ├── ts │ │ ├── features │ │ │ ├── feature-repository.ts │ │ │ ├── features.module.ts │ │ │ └── feature.ts │ │ ├── scr-components │ │ │ ├── scr-component.ts │ │ │ └── scr-components.module.ts │ │ └── navbar.ts │ └── html │ │ ├── feature.html │ │ ├── scr-component.html │ │ └── features.html ├── img │ └── icons │ │ ├── camel │ │ ├── camel.png │ │ ├── log24.png │ │ ├── step.gif │ │ ├── bean24.png │ │ ├── choice24.png │ │ ├── detour24.png │ │ ├── endoints.png │ │ ├── enrich24.png │ │ ├── filter24.png │ │ ├── flow24.png │ │ ├── node24.png │ │ ├── resume.gif │ │ ├── route24.png │ │ ├── split24.png │ │ ├── suspend.gif │ │ ├── breakpoint.png │ │ ├── channel24.png │ │ ├── endpoint24.png │ │ ├── generic24.png │ │ ├── marshal24.png │ │ ├── message24.png │ │ ├── pipeline24.png │ │ ├── process24.png │ │ ├── setBody24.png │ │ ├── wireTap24.png │ │ ├── aggregate24.png │ │ ├── camel_route.png │ │ ├── camel_tracing.png │ │ ├── controlBus24.png │ │ ├── endpoint_node.png │ │ ├── loadBalance24.png │ │ ├── messageBus24.png │ │ ├── messaging24.png │ │ ├── multicast24.png │ │ ├── normalizer24.png │ │ ├── pollEnrich24.png │ │ ├── processor24.png │ │ ├── resequence24.png │ │ ├── routingSlip24.png │ │ ├── smartProxy24.png │ │ ├── testMessage24.png │ │ ├── transform24.png │ │ ├── unmarshal24.png │ │ ├── channelPurger24.png │ │ ├── contentFilter24.png │ │ ├── convertBodyTo24.png │ │ ├── dynamicRouter24.png │ │ ├── endpointFile24.png │ │ ├── endpointQueue24.png │ │ ├── endpointTimer24.png │ │ ├── endpoint_folder.png │ │ ├── endpoints │ │ │ ├── SAP24.png │ │ │ ├── cxf24.png │ │ │ ├── ejb24.png │ │ │ ├── ftp24.png │ │ │ ├── jms24.png │ │ │ ├── log24.png │ │ │ ├── rss24.png │ │ │ ├── sql24.png │ │ │ ├── atom24.png │ │ │ ├── bean24.png │ │ │ ├── cxfrs24.png │ │ │ ├── file24.png │ │ │ ├── ftps24.png │ │ │ ├── imap24.png │ │ │ ├── imaps24.png │ │ │ ├── jdbc24.png │ │ │ ├── mqtt24.png │ │ │ ├── netty24.png │ │ │ ├── netty424.png │ │ │ ├── pop324.png │ │ │ ├── pop3s24.png │ │ │ ├── quartz24.png │ │ │ ├── sftp24.png │ │ │ ├── smtp24.png │ │ │ ├── smtps24.png │ │ │ ├── snmp24.png │ │ │ ├── timer24.png │ │ │ ├── xslt24.png │ │ │ ├── activemq24.png │ │ │ ├── facebook24.jpg │ │ │ ├── language24.png │ │ │ ├── linkedin24.png │ │ │ ├── quartz224.png │ │ │ ├── servlet24.png │ │ │ ├── twitter24.png │ │ │ ├── weather24.jpg │ │ │ ├── netty-http24.png │ │ │ ├── netty4-http24.png │ │ │ ├── salesForce24.png │ │ │ ├── SAPNetweaver24.jpg │ │ │ └── sap-netweaver24.png │ │ ├── eventMessage24.png │ │ ├── fileTransfer24.png │ │ ├── messageBroker24.png │ │ ├── messageStore24.png │ │ ├── pointToPoint24.png │ │ ├── recipientList24.png │ │ ├── requestReply24.png │ │ ├── returnAddress24.png │ │ ├── camel_context_icon.png │ │ ├── camel_route_folder.png │ │ ├── channelAdapter24.png │ │ ├── commandMessage24.png │ │ ├── component_folder.png │ │ ├── customDataFormat24.png │ │ ├── datatypeChannel24.png │ │ ├── documentMessage24.png │ │ ├── edit_camel_route.png │ │ ├── endpointDrools24.png │ │ ├── endpointFolder24.png │ │ ├── envelopeWrapper24.png │ │ ├── messageSelector24.png │ │ ├── messageSequence24.png │ │ ├── messagingAdapter24.png │ │ ├── messagingBridge24.png │ │ ├── messagingGateway24.png │ │ ├── pollingConsumer24.png │ │ ├── processManager24.png │ │ ├── sharedDatabase24.png │ │ ├── storeInLibrary24.png │ │ ├── competingConsumers24.png │ │ ├── contentBasedRouter24.png │ │ ├── deadLetterChannel24.png │ │ ├── endpointRepository24.png │ │ ├── idempotentConsumer24.png │ │ ├── messageDispatcher24.png │ │ ├── messageExpiration24.png │ │ ├── correlationIdentifier24.png │ │ ├── distributionAggregate24.png │ │ ├── durableSubscription24.png │ │ ├── eventDrivenConsumer24.png │ │ ├── guaranteedMessaging24.png │ │ ├── invalidMessageChannel24.png │ │ ├── transactionalClient24.png │ │ └── encapsulatedSynchronous24.png │ │ ├── osgi │ │ ├── bundle.png │ │ └── service.png │ │ ├── activemq │ │ ├── queue.png │ │ ├── topic.png │ │ ├── sender.gif │ │ ├── connector.png │ │ ├── listener.gif │ │ ├── queue_folder.png │ │ ├── topic_folder.png │ │ └── message_broker.png │ │ └── quartz │ │ └── quarz.png ├── jvm │ ├── less │ │ ├── connect.less │ │ ├── jolokia-preferences.less │ │ └── jvm.less │ ├── ts │ │ ├── connect │ │ │ ├── connection-test-result.ts │ │ │ ├── connection-url.filter.ts │ │ │ ├── connect-unreachable-modal.component.ts │ │ │ └── connect-delete-modal.component.ts │ │ ├── reset.ts │ │ ├── jolokia │ │ │ ├── jolokia.module.ts │ │ │ └── jolokia-params.factory.ts │ │ ├── header.ts │ │ ├── jvmGlobals.ts │ │ └── jvm.component.ts │ └── html │ │ ├── reset.html │ │ └── navbarHeaderExtension.html ├── jmx │ ├── less │ │ ├── dashboard.less │ │ ├── operations.less │ │ └── attributes.less │ ├── doc │ │ └── help.md │ ├── html │ │ ├── tree │ │ │ └── content.html │ │ ├── charts.html │ │ └── operations │ │ │ └── operations.html │ └── ts │ │ ├── tree │ │ ├── tree-event.ts │ │ ├── tree-header.component.ts │ │ └── tree.module.ts │ │ ├── common │ │ ├── common.module.ts │ │ └── header.component.ts │ │ ├── attributes │ │ └── attributes.module.ts │ │ ├── operations │ │ └── operations.module.ts │ │ ├── jmx.component.ts │ │ └── workspace.factory.ts ├── runtime │ ├── sysprops │ │ ├── sysprop.ts │ │ ├── sysprops.less │ │ ├── sysprops.module.ts │ │ └── sysprops.service.ts │ ├── metrics │ │ └── metrics.module.ts │ ├── doc │ │ └── help.md │ ├── threads │ │ ├── threads.component.less │ │ └── threads.module.ts │ ├── runtime.component.ts │ ├── runtime.service.ts │ └── runtime.module.ts ├── tree-utils.ts ├── integration.config.ts ├── quartz │ ├── jobs │ │ ├── jobs.module.ts │ │ ├── job.ts │ │ └── jobs-details-dialog.html │ ├── triggers │ │ ├── triggers.module.ts │ │ └── triggers-manual-dialog.html │ ├── scheduler │ │ ├── scheduler.module.ts │ │ └── scheduler.ts │ ├── tree │ │ ├── tree.module.ts │ │ └── tree.less │ ├── doc │ │ └── help.md │ └── quartz.module.ts ├── rbac │ └── models.ts ├── diagnostics │ ├── ts │ │ └── diagnostics.component.ts │ └── html │ │ └── flags.html ├── integration.module.ts └── pf-utils.ts ├── img ├── pfbg_576.jpg ├── pfbg_768.jpg ├── pfbg_992.jpg ├── pfbg_1200.jpg ├── pfbg_2000.jpg ├── pfbg_576@2x.jpg ├── pfbg_768@2x.jpg ├── pfbg_992@2x.jpg └── icons │ ├── camel │ ├── bean24.png │ ├── camel.png │ ├── flow24.png │ ├── log24.png │ ├── node24.png │ ├── resume.gif │ ├── step.gif │ ├── choice24.png │ ├── detour24.png │ ├── endoints.png │ ├── enrich24.png │ ├── filter24.png │ ├── route24.png │ ├── split24.png │ ├── suspend.gif │ ├── aggregate24.png │ ├── breakpoint.png │ ├── camel_route.png │ ├── channel24.png │ ├── endpoint24.png │ ├── generic24.png │ ├── marshal24.png │ ├── message24.png │ ├── messaging24.png │ ├── multicast24.png │ ├── pipeline24.png │ ├── process24.png │ ├── processor24.png │ ├── setBody24.png │ ├── transform24.png │ ├── unmarshal24.png │ ├── wireTap24.png │ ├── camel_tracing.png │ ├── controlBus24.png │ ├── endpoint_node.png │ ├── loadBalance24.png │ ├── messageBus24.png │ ├── normalizer24.png │ ├── pollEnrich24.png │ ├── resequence24.png │ ├── routingSlip24.png │ ├── smartProxy24.png │ ├── testMessage24.png │ ├── channelAdapter24.png │ ├── channelPurger24.png │ ├── commandMessage24.png │ ├── component_folder.png │ ├── contentFilter24.png │ ├── convertBodyTo24.png │ ├── dynamicRouter24.png │ ├── edit_camel_route.png │ ├── endpointDrools24.png │ ├── endpointFile24.png │ ├── endpointFolder24.png │ ├── endpointQueue24.png │ ├── endpointTimer24.png │ ├── endpoint_folder.png │ ├── endpoints │ │ ├── SAP24.png │ │ ├── atom24.png │ │ ├── bean24.png │ │ ├── cxf24.png │ │ ├── ejb24.png │ │ ├── file24.png │ │ ├── ftp24.png │ │ ├── ftps24.png │ │ ├── imap24.png │ │ ├── jdbc24.png │ │ ├── jms24.png │ │ ├── log24.png │ │ ├── mqtt24.png │ │ ├── pop324.png │ │ ├── rss24.png │ │ ├── sftp24.png │ │ ├── smtp24.png │ │ ├── snmp24.png │ │ ├── sql24.png │ │ ├── xslt24.png │ │ ├── cxfrs24.png │ │ ├── imaps24.png │ │ ├── netty24.png │ │ ├── netty424.png │ │ ├── pop3s24.png │ │ ├── quartz24.png │ │ ├── smtps24.png │ │ ├── timer24.png │ │ ├── activemq24.png │ │ ├── facebook24.jpg │ │ ├── language24.png │ │ ├── linkedin24.png │ │ ├── quartz224.png │ │ ├── servlet24.png │ │ ├── twitter24.png │ │ ├── weather24.jpg │ │ ├── netty-http24.png │ │ ├── netty4-http24.png │ │ ├── salesForce24.png │ │ ├── SAPNetweaver24.jpg │ │ └── sap-netweaver24.png │ ├── eventMessage24.png │ ├── fileTransfer24.png │ ├── messageBroker24.png │ ├── messageStore24.png │ ├── pointToPoint24.png │ ├── processManager24.png │ ├── recipientList24.png │ ├── requestReply24.png │ ├── returnAddress24.png │ ├── sharedDatabase24.png │ ├── storeInLibrary24.png │ ├── camel_context_icon.png │ ├── camel_route_folder.png │ ├── customDataFormat24.png │ ├── datatypeChannel24.png │ ├── documentMessage24.png │ ├── envelopeWrapper24.png │ ├── messageSelector24.png │ ├── messageSequence24.png │ ├── messagingAdapter24.png │ ├── messagingBridge24.png │ ├── messagingGateway24.png │ ├── pollingConsumer24.png │ ├── competingConsumers24.png │ ├── contentBasedRouter24.png │ ├── deadLetterChannel24.png │ ├── durableSubscription24.png │ ├── endpointRepository24.png │ ├── eventDrivenConsumer24.png │ ├── guaranteedMessaging24.png │ ├── idempotentConsumer24.png │ ├── messageDispatcher24.png │ ├── messageExpiration24.png │ ├── transactionalClient24.png │ ├── correlationIdentifier24.png │ ├── distributionAggregate24.png │ ├── invalidMessageChannel24.png │ └── encapsulatedSynchronous24.png │ ├── osgi │ ├── bundle.png │ └── service.png │ ├── quartz │ └── quarz.png │ └── activemq │ ├── queue.png │ ├── topic.png │ ├── listener.gif │ ├── sender.gif │ ├── connector.png │ ├── queue_folder.png │ ├── topic_folder.png │ └── message_broker.png ├── vendor └── apache-camel │ └── .mvn │ └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .editorconfig ├── .gitignore ├── hawtconfig.json └── tsconfig.json /plugins/components/includes.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/components/ui/less/pager.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/components/ui/html/layoutUI.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /plugins/components/forms2/html/form2Map.html: -------------------------------------------------------------------------------- 1 |{{control.description}}
4 | 5 |{{control.description}}
5 |{{control.description}}
7 |{{ message }}
6 |{{control.description}}
5 | 6 |{{control.description}}
5 || Key | 4 |Value | 5 | 6 | 7 |
|---|---|
| {{ key }} | 9 |{{ $ctrl.modalBodyScope.dataMap[key] }} | 10 |
{{control.description}}
6 |{{control.description}}
8 |{{control.description}}
6 |Loading...
2 | 3 |8 | Clear all saved connection settings stored in your browser's local storage. 9 |
10 |11 | 12 |
13 |You are about to delete this Camel route.
9 |This operation cannot be undone so please be careful.
10 |You are about to delete this Camel Context.
9 |This operation cannot be undone so please be careful.
10 |{{description}}
10 |{{$ctrl.objectName}}
22 |2 |
Remove the topic completely.
10 | 13 | 14 |You are about to delete the {{$ctrl.selectedName()}} topic.
21 |This operation cannot be undone so please be careful.
22 |This Jolokia endpoint is unreachable. Please check the connection details and try again.
16 |You are about to delete this connection.
17 |3 | This MBean has no JMX operations. 4 |
5 |7 | This MBean supports the following JMX operations. Expand an item in the list to invoke that operation. 8 |
9 || VM Flag | 7 |Origin | 8 |Value | 9 |
|---|---|---|
| {{flag.name}} | 14 |{{flag.origin}} | 15 |
16 |
17 | {{flag.value}}
18 |
19 |
20 |
21 |
22 | |
23 |
You are about to unblock the selected thread.
17 |This operation cannot be undone so please be careful.
18 |Loading...
6 | 7 |