forked from community/product-iots-community
Compare commits
36 Commits
Author | SHA1 | Date |
---|---|---|
Lasantha Dharmakeerthi | 7c43a2f608 | 3 months ago |
Lasantha Dharmakeerthi | 130bd68340 | 3 months ago |
tcdlpds | 7bd1e39b0d | 3 months ago |
tcdlpds | 409b5126b4 | 3 months ago |
tcdlpds | 66e3f11f48 | 3 months ago |
Pahansith Gunathilake | 814c0d83f5 | 5 months ago |
Dhanush Thameera | 8e9c991a1e | 5 months ago |
builder | 26210b216a | 5 months ago |
builder | 10576259db | 5 months ago |
Charitha Goonetilleke | 1245597f0d | 5 months ago |
Thameera | af8213aae0 | 5 months ago |
builder | 5585699e0a | 9 months ago |
builder | 8f04d1ef5d | 9 months ago |
Navod Zoysa | eb8537e908 | 9 months ago |
Dhanush Thameera | 90803d34b5 | 9 months ago |
Navod Zoysa | f57f92f7f0 | 11 months ago |
Dhanush Thameera | 3cd2e044c8 | 11 months ago |
builder | 1093356427 | 11 months ago |
builder | 8375197f28 | 11 months ago |
Navod Zoysa | e57df7572c | 11 months ago |
Dhanush Thameera | 61a179f70c | 11 months ago |
Navod Zoysa | 1d45d03d5a | 11 months ago |
Dhanush Thameera | 629186c295 | 11 months ago |
builder | 7446b1ab6b | 11 months ago |
builder | ae0d6bb7fe | 11 months ago |
Pahansith Gunathilake | 5aacb6ecaf | 11 months ago |
Dhanush Thameera | 7ddf7eadf2 | 11 months ago |
Pahansith Gunathilake | 6f3787a41c | 12 months ago |
builder | b25aff81c2 | 1 year ago |
builder | 8efea95751 | 1 year ago |
Pahansith Gunathilake | 90ec3b2ef4 | 1 year ago |
Thameera | 45073c2462 | 1 year ago |
Amalka Subasinghe | 897df05df3 | 1 year ago |
Amalka Subasinghe | 23d0ce0612 | 1 year ago |
Amalka Subasinghe | e021082d35 | 1 year ago |
Amalka Subasinghe | f7c95e8532 | 1 year ago |
@ -1,173 +0,0 @@
|
||||
<!--
|
||||
~ Copyright (c) 2018 - 2023, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||
~
|
||||
~ Entgra (Pvt) Ltd. 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.
|
||||
-->
|
||||
|
||||
<outputEventAdaptersConfig xmlns:svns="http://org.wso2.securevault/configuration">
|
||||
|
||||
<adapterConfig type="wso2event">
|
||||
<property key="default.thrift.tcp.url">tcp://localhost:7612</property>
|
||||
<property key="default.thrift.ssl.url">ssl://localhost:7712</property>
|
||||
<property key="default.binary.tcp.url">tcp://localhost:9612</property>
|
||||
<property key="default.binary.ssl.url">ssl://localhost:9712</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="rdbms">
|
||||
<property key="string">VARCHAR(255)</property>
|
||||
<property key="double">DOUBLE</property>
|
||||
<property key="integer">INT</property>
|
||||
<property key="long">BIGINT</property>
|
||||
<property key="float">FLOAT</property>
|
||||
<property key="boolean">BOOL</property>
|
||||
<property key="createTable">CREATE TABLE $TABLE_NAME ($COLUMN_TYPES)</property>
|
||||
<property key="insertDataToTable">INSERT INTO $TABLE_NAME ($COLUMNS) VALUES ($VALUES)</property>
|
||||
<property key="isTableExist">SELECT * FROM $TABLE_NAME limit 1</property>
|
||||
<property key="updateTableRow">UPDATE $TABLE_NAME SET $COLUMN_VALUES WHERE $CONDITION</property>
|
||||
<property key="comma">,</property>
|
||||
<property key="questionMark">?</property>
|
||||
<property key="equal">=</property>
|
||||
<property key="and">AND</property>
|
||||
<property key="selectAllColumnsDataTypeInTable">SELECT COLUMN_NAME, DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '$TABLE_NAME'</property>
|
||||
<property key="selectFromTable">SELECT $COLUMNS FROM $TABLE_NAME</property>
|
||||
<property key="oracle.string">varchar2(255)</property>
|
||||
<property key="oracle.long">CLOB</property>
|
||||
<property key="oracle.double">BINARY_DOUBLE</property>
|
||||
<property key="oracle.isTableExist">SELECT * FROM $TABLE_NAME WHERE ROWNUM = 1</property>
|
||||
<property key="oracle.selectAllColumnsDataTypeInTable">SELECT COLUMN_NAME, DATA_TYPE FROM USER_TAB_COLS WHERE TABLE_NAME = '$TABLE_NAME'</property>
|
||||
<property key="mssql.string">varchar2(255)</property>
|
||||
<property key="mssql.isTableExist">SELECT TOP 1 * FROM $TABLE_NAME</property>
|
||||
<property key="mssql.selectAllColumnsDataTypeInTable">SELECT COLUMN_NAME, DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = '$TABLE_NAME'</property>
|
||||
<property key="h2.integer">varchar2(255)</property>
|
||||
<property key="h2.long">REAL</property>
|
||||
<property key="h2.selectAllColumnsDataTypeInTable">SHOW COLUMNS FROM $TABLE_NAME</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="http">
|
||||
<!-- Thread Pool Related Properties -->
|
||||
<property key="minThread">8</property>
|
||||
<property key="maxThread">100</property>
|
||||
<property key="keepAliveTimeInMillis">20000</property>
|
||||
<property key="jobQueueSize">10000</property>
|
||||
<!-- HTTP Client Pool Related Properties -->
|
||||
<property key="defaultMaxConnectionsPerHost">50</property>
|
||||
<property key="maxTotalConnections">1000</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="jms">
|
||||
<!-- Thread Pool Related Properties -->
|
||||
<property key="minThread">{{output_adapter.jms.min_thread}}</property>
|
||||
<property key="maxThread">{{output_adapter.jms.max_thread}}</property>
|
||||
<property key="keepAliveTimeInMillis">{{output_adapter.jms.keep_alive_time}}</property>
|
||||
<property key="jobQueueSize">{{output_adapter.jms.job_queue_size}}</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="mqtt">
|
||||
<!-- Thread Pool Related Properties -->
|
||||
<property key="minThread">8</property>
|
||||
<property key="maxThread">100</property>
|
||||
<property key="keepAliveTimeInMillis">20000</property>
|
||||
<property key="jobQueueSize">10000</property>
|
||||
<property key="connectionKeepAliveInterval">60</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="kafka">
|
||||
<!-- Thread Pool Related Properties -->
|
||||
<property key="minThread">8</property>
|
||||
<property key="maxThread">100</property>
|
||||
<property key="keepAliveTimeInMillis">20000</property>
|
||||
<property key="jobQueueSize">10000</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="email">
|
||||
<!-- Comment mail.smtp.user and mail.smtp.password properties to support connecting SMTP servers which use trust
|
||||
based authentication rather username/password authentication -->
|
||||
<property key="mail.smtp.from">{{output_adapter.email.from_address}}</property>
|
||||
<property key="mail.smtp.user">{{output_adapter.email.username}}</property>
|
||||
<property key="mail.smtp.password">{{output_adapter.email.password}}</property>
|
||||
<property key="mail.smtp.host">{{output_adapter.email.hostname}}</property>
|
||||
<property key="mail.smtp.port">{{output_adapter.email.port}}</property>
|
||||
<property key="mail.smtp.starttls.enable">{{output_adapter.email.enable_start_tls}}</property>
|
||||
<property key="mail.smtp.auth">{{output_adapter.email.enable_authentication}}</property>
|
||||
<property key="mail.smtp.signature">{{output_adapter.email.signature}}</property>
|
||||
<property key="mail.smtp.replyTo">{{output_adapter.email.reply_to}}</property>
|
||||
{% if output_adapter.email.custom_properties is defined %}
|
||||
<!-- Custom Properties -->
|
||||
{% for property_name,property_value in output_adapter.email.custom_properties.items() %}
|
||||
<property key="{{property_name}}">{{property_value}}</property>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
<!-- Thread Pool Related Properties -->
|
||||
<property key="minThread">8</property>
|
||||
<property key="maxThread">100</property>
|
||||
<property key="keepAliveTimeInMillis">20000</property>
|
||||
<property key="jobQueueSize">10000</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="ui">
|
||||
<property key="eventQueueSize">30</property>
|
||||
<!-- Thread Pool Related Properties -->
|
||||
<property key="minThread">8</property>
|
||||
<property key="maxThread">100</property>
|
||||
<property key="keepAliveTimeInMillis">20000</property>
|
||||
<property key="jobQueueSize">10000</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="websocket-local">
|
||||
<!-- Thread Pool Related Properties -->
|
||||
<property key="minThread">8</property>
|
||||
<property key="maxThread">100</property>
|
||||
<property key="keepAliveTimeInMillis">20000</property>
|
||||
<property key="jobQueueSize">10000</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="websocket">
|
||||
<!-- Thread Pool Related Properties -->
|
||||
<property key="minThread">8</property>
|
||||
<property key="maxThread">100</property>
|
||||
<property key="keepAliveTimeInMillis">20000</property>
|
||||
<property key="jobQueueSize">10000</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="soap">
|
||||
<!-- Thread Pool Related Properties -->
|
||||
<property key="minThread">8</property>
|
||||
<property key="maxThread">100</property>
|
||||
<property key="keepAliveTimeInMillis">20000</property>
|
||||
<property key="jobQueueSize">10000</property>
|
||||
<!-- Axis2 Client Connection Related Properties -->
|
||||
<property key="axis2ClientConnectionTimeout">10000</property>
|
||||
<property key="reuseHTTPClient">true</property>
|
||||
<property key="autoReleaseConnection">true</property>
|
||||
<property key="maxConnectionsPerHost">50</property>
|
||||
</adapterConfig>
|
||||
|
||||
<adapterConfig type="oauth-mqtt">
|
||||
<!-- Thread Pool Related Properties -->
|
||||
<property key="minThread">8</property>
|
||||
<property key="maxThread">100</property>
|
||||
<property key="keepAliveTimeInMillis">20000</property>
|
||||
<property key="jobQueueSize">10000</property>
|
||||
<property key="connectionKeepAliveInterval">60</property>
|
||||
<property key="dcrUrl">https://${iot.keymanager.host}:${iot.keymanager.https.port}/client-registration/v0.17/register</property>
|
||||
<property key="tokenUrl">https://${iot.gateway.host}:${iot.gateway.https.port}/token</property>
|
||||
<property key="url">tcp://${mqtt.broker.host}:${mqtt.broker.port}</property>
|
||||
<property key="username">admin</property>
|
||||
<property key="password">admin</property>
|
||||
<property key="qos">2</property>
|
||||
<property key="clearSession">true</property>
|
||||
</adapterConfig>
|
||||
|
||||
</outputEventAdaptersConfig>
|
Loading…
Reference in new issue