From 9e72eb3bc3366145f90d4f893ac0588b23892cd3 Mon Sep 17 00:00:00 2001 From: Megala Date: Tue, 6 Dec 2016 17:18:20 +0530 Subject: [PATCH 0001/1075] Adding siddhi extension and analytics for android-agent --- pom.xml | 90 +++++++++++++++ .../json/getPropertyFunctionExtension.java | 108 ++++++++++++++++++ src/main/resources/json.siddhiext | 19 +++ .../json/getPropertyFunctionTestCase.java | 88 ++++++++++++++ .../json/test/util/SiddhiTestHelper.java | 32 ++++++ src/test/resources/log4j.properties | 36 ++++++ 6 files changed, 373 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java create mode 100644 src/main/resources/json.siddhiext create mode 100644 src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java create mode 100644 src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java create mode 100644 src/test/resources/log4j.properties diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..b14a66967 --- /dev/null +++ b/pom.xml @@ -0,0 +1,90 @@ + + + + + + + org.wso2.carbon.devicemgt-plugins + siddhi-extensions + 3.0.3-SNAPSHOT + ../pom.xml + + + 4.0.0 + org.wso2.extension.siddhi.execution.json + bundle + WSO2 Siddhi Execution Extension - Json + http://wso2.org + + + + org.wso2.siddhi + siddhi-core + + + org.wso2.siddhi + siddhi-query-api + + + log4j + log4j + + + org.json.wso2 + json + + + junit + junit + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${wso2.maven.compiler.source} + ${wso2.maven.compiler.target} + + + + org.apache.felix + maven-bundle-plugin + true + + + ${project.artifactId} + ${project.artifactId} + + org.wso2.extension.siddhi.execution.json, + org.wso2.extension.siddhi.execution.json.* + + + org.json, + org.wso2.siddhi.core.*, + org.wso2.siddhi.query.api.*, + + + + + + + \ No newline at end of file diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java new file mode 100644 index 000000000..78c873a55 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java @@ -0,0 +1,108 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.execution.json; + +import org.json.JSONObject; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +/** + * getProperty(json , propertyName) + * Returns the vale of the property from the given json json + * Accept Type(s): (STRING, STRING) + * Return Type(s): (STRING|INT|DOUBLE|FLOAT|OBJECT) + */ +public class getPropertyFunctionExtension extends FunctionExecutor { + + Attribute.Type returnType = Attribute.Type.STRING; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 2) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to json:getProperty() function," + " required 2, but found " + + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument of json:getProperty() function, " + "required " + + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[0].getReturnType() + .toString()); + } + if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument of json:getProperty() function, " + "required " + + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[1].getReturnType() + .toString()); + } + } + + @Override + protected Object execute(Object[] data) { + if (data[0] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. First argument cannot be null"); + } + if (data[1] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. Second argument cannot be null"); + } + String jsonString = (String) data[0]; + String property = (String) data[1]; + + JSONObject jsonObject = new JSONObject(jsonString); + Object value = jsonObject.get(property).toString(); + return value; + } + + @Override + protected Object execute(Object data) { + return null; //Since the getProperty function takes in 2 parameters, this method does not get called. Hence,not implemented. + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} + + diff --git a/src/main/resources/json.siddhiext b/src/main/resources/json.siddhiext new file mode 100644 index 000000000..f1886dd63 --- /dev/null +++ b/src/main/resources/json.siddhiext @@ -0,0 +1,19 @@ +# +# Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# +# WSO2 Inc. 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. +# + +getProperty=org.wso2.extension.siddhi.execution.json.getPropertyFunctionExtension diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java new file mode 100644 index 000000000..7bc66478c --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java @@ -0,0 +1,88 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.execution.json; + +import junit.framework.Assert; +import org.apache.log4j.Logger; +import org.junit.Before; +import org.junit.Test; +import org.wso2.siddhi.core.ExecutionPlanRuntime; +import org.wso2.siddhi.core.SiddhiManager; +import org.wso2.siddhi.core.event.Event; +import org.wso2.siddhi.core.query.output.callback.QueryCallback; +import org.wso2.siddhi.core.stream.input.InputHandler; +import org.wso2.siddhi.core.util.EventPrinter; +import org.wso2.extension.siddhi.execution.json.test.util.SiddhiTestHelper; + +import java.util.concurrent.atomic.AtomicInteger; + +public class getPropertyFunctionTestCase { + static final Logger log = Logger.getLogger(getPropertyFunctionTestCase.class); + private AtomicInteger count = new AtomicInteger(0); + private volatile boolean eventArrived; + + @Before + public void init() { + count.set(0); + eventArrived = false; + } + + @Test + public void testGetPropertyFunctionExtension() throws InterruptedException { + log.info("getPropertyFunctionExtension TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + String inStreamDefinition = "define stream inputStream (payload string, id string, volume long);"; + String query = ("@info(name = 'query1') from inputStream select id, json:getProperty(payload, 'latitude') " + + "as latitude insert into outputStream;"); + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + + executionPlanRuntime.addCallback("query1", new QueryCallback() { + @Override + public void receive(long timeStamp, Event[] inEvents, Event[] removeEvents) { + EventPrinter.print(timeStamp, inEvents, removeEvents); + for (Event event : inEvents) { + count.incrementAndGet(); + if (count.get() == 1) { + Assert.assertEquals("1.5", event.getData(1)); + eventArrived = true; + } + if (count.get() == 2) { + Assert.assertEquals("67.5", event.getData(1)); + eventArrived = true; + } + if (count.get() == 3) { + Assert.assertEquals("7.5", event.getData(1)); + eventArrived = true; + } + } + } + }); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + inputHandler.send(new Object[]{"{'latitude' : 1.5, 'longitude' : 78.5}","IBM",100l}); + inputHandler.send(new Object[]{"{'latitude' : 67.5, 'longitude' : 34.9}","WSO2", 200l}); + inputHandler.send(new Object[]{"{'latitude' : 7.5, 'longitude' : 44.9}", "XYZ", 200l}); + SiddhiTestHelper.waitForEvents(100, 3, count, 60000); + Assert.assertEquals(3, count.get()); + Assert.assertTrue(eventArrived); + executionPlanRuntime.shutdown(); + } +} diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java b/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java new file mode 100644 index 000000000..9cfd6c307 --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.execution.json.test.util; + +import java.util.concurrent.atomic.AtomicInteger; + +public class SiddhiTestHelper { + public static void waitForEvents(long sleepTime, int expectedCount, AtomicInteger actualCount, long timeout) throws InterruptedException { + long currentWaitTime = 0; + long startTime = System.currentTimeMillis(); + while ((actualCount.get() < expectedCount) && (currentWaitTime <= timeout)) { + Thread.sleep(sleepTime); + currentWaitTime = System.currentTimeMillis() - startTime; + } + } +} diff --git a/src/test/resources/log4j.properties b/src/test/resources/log4j.properties new file mode 100644 index 000000000..96c79e944 --- /dev/null +++ b/src/test/resources/log4j.properties @@ -0,0 +1,36 @@ +# +# Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# +# WSO2 Inc. 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. +# + + +# For the general syntax of property based configuration files see the +# documenation of org.apache.log4j.PropertyConfigurator. + +# The root category uses the appender called A1. Since no priority is +# specified, the root category assumes the default priority for root +# which is DEBUG in log4j. The root category is the only category that +# has a default priority. All other categories need not be assigned a +# priority in which case they inherit their priority from the +# hierarchy. + +#log4j.rootLogger=DEBUG, stdout +log4j.rootLogger=INFO, stdout + +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%m%n +#log4j.appender.stdout.layout.ConversionPattern=[%t] %-5p %c %x - %m%n From 77c860e83851b93091d4a2ebc6c19e8dd4173e8d Mon Sep 17 00:00:00 2001 From: Megala Date: Tue, 6 Dec 2016 17:18:20 +0530 Subject: [PATCH 0002/1075] Adding siddhi extension and analytics for android-agent --- pom.xml | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..5c572f2c2 --- /dev/null +++ b/pom.xml @@ -0,0 +1,76 @@ + + + + 4.0.0 + + + org.wso2.carbon.devicemgt-plugins + extensions-feature + 3.0.3-SNAPSHOT + ../pom.xml + + + org.wso2.extension.siddhi.execution.json.feature + pom + 3.0.3-SNAPSHOT + WSO2 Siddhi Execution Extension - Json Feature + http://wso2.org + This feature contains Siddhi extension feature for changing a json string to individual properties. + + + + org.wso2.carbon.devicemgt-plugins + org.wso2.extension.siddhi.execution.json + + + + + + + org.wso2.maven + carbon-p2-plugin + ${carbon.p2.plugin.version} + + + p2-feature-generation + package + + p2-feature-gen + + + org.wso2.extension.siddhi.execution.json + ../../etc/feature.properties + + + org.wso2.carbon.p2.category.type:server + org.eclipse.equinox.p2.type.group:true + + + + + org.wso2.carbon.devicemgt-plugins:org.wso2.extension.siddhi.execution.json:${carbon.devicemgt.plugins.version} + + org.json.wso2:json:${commons-json.version} + + + + + + + + \ No newline at end of file From 7717ac137f31798ca09391f9b1df700f33eef9b2 Mon Sep 17 00:00:00 2001 From: Megala Date: Wed, 7 Dec 2016 15:29:32 +0530 Subject: [PATCH 0003/1075] Fixing bundle loading problem --- pom.xml | 1 + .../execution/json/getPropertyFunctionExtension.java | 12 ++++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index b14a66967..b1671cc44 100644 --- a/pom.xml +++ b/pom.xml @@ -47,6 +47,7 @@ org.json.wso2 json + ${analytics.json.version} junit diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java index 78c873a55..8f68577a6 100644 --- a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java +++ b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java @@ -18,6 +18,7 @@ package org.wso2.extension.siddhi.execution.json; +import org.json.JSONException; import org.json.JSONObject; import org.wso2.siddhi.core.config.ExecutionPlanContext; import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; @@ -68,10 +69,13 @@ public class getPropertyFunctionExtension extends FunctionExecutor { } String jsonString = (String) data[0]; String property = (String) data[1]; - - JSONObject jsonObject = new JSONObject(jsonString); - Object value = jsonObject.get(property).toString(); - return value; + JSONObject jsonObject = null; + try { + jsonObject = new JSONObject(jsonString); + return jsonObject.get(property).toString(); + } catch (JSONException e) { + throw new ExecutionPlanRuntimeException("Cannot parse JSON String in json:getPeroperty() function. " + e); + } } @Override From 3c43f6ea005e15529b5465b4e1a74480ad9fe290 Mon Sep 17 00:00:00 2001 From: Megala Date: Wed, 7 Dec 2016 15:29:32 +0530 Subject: [PATCH 0004/1075] Fixing bundle loading problem --- pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5c572f2c2..09380ecf4 100644 --- a/pom.xml +++ b/pom.xml @@ -65,7 +65,6 @@ org.wso2.carbon.devicemgt-plugins:org.wso2.extension.siddhi.execution.json:${carbon.devicemgt.plugins.version} - org.json.wso2:json:${commons-json.version} From 572aa24c5fab9bfde1efabeb45ba77c9ae8ed4b3 Mon Sep 17 00:00:00 2001 From: Harshan Liyanage Date: Thu, 8 Dec 2016 16:40:18 +0530 Subject: [PATCH 0005/1075] Resolved conflicts --- pom.xml | 91 ++++++++++++++ .../json/getPropertyFunctionExtension.java | 112 ++++++++++++++++++ src/main/resources/json.siddhiext | 19 +++ .../json/getPropertyFunctionTestCase.java | 88 ++++++++++++++ .../json/test/util/SiddhiTestHelper.java | 32 +++++ src/test/resources/log4j.properties | 36 ++++++ 6 files changed, 378 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java create mode 100644 src/main/resources/json.siddhiext create mode 100644 src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java create mode 100644 src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java create mode 100644 src/test/resources/log4j.properties diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..b1671cc44 --- /dev/null +++ b/pom.xml @@ -0,0 +1,91 @@ + + + + + + + org.wso2.carbon.devicemgt-plugins + siddhi-extensions + 3.0.3-SNAPSHOT + ../pom.xml + + + 4.0.0 + org.wso2.extension.siddhi.execution.json + bundle + WSO2 Siddhi Execution Extension - Json + http://wso2.org + + + + org.wso2.siddhi + siddhi-core + + + org.wso2.siddhi + siddhi-query-api + + + log4j + log4j + + + org.json.wso2 + json + ${analytics.json.version} + + + junit + junit + test + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${wso2.maven.compiler.source} + ${wso2.maven.compiler.target} + + + + org.apache.felix + maven-bundle-plugin + true + + + ${project.artifactId} + ${project.artifactId} + + org.wso2.extension.siddhi.execution.json, + org.wso2.extension.siddhi.execution.json.* + + + org.json, + org.wso2.siddhi.core.*, + org.wso2.siddhi.query.api.*, + + + + + + + \ No newline at end of file diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java new file mode 100644 index 000000000..8f68577a6 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java @@ -0,0 +1,112 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.execution.json; + +import org.json.JSONException; +import org.json.JSONObject; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +/** + * getProperty(json , propertyName) + * Returns the vale of the property from the given json json + * Accept Type(s): (STRING, STRING) + * Return Type(s): (STRING|INT|DOUBLE|FLOAT|OBJECT) + */ +public class getPropertyFunctionExtension extends FunctionExecutor { + + Attribute.Type returnType = Attribute.Type.STRING; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 2) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to json:getProperty() function," + " required 2, but found " + + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument of json:getProperty() function, " + "required " + + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[0].getReturnType() + .toString()); + } + if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument of json:getProperty() function, " + "required " + + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[1].getReturnType() + .toString()); + } + } + + @Override + protected Object execute(Object[] data) { + if (data[0] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. First argument cannot be null"); + } + if (data[1] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. Second argument cannot be null"); + } + String jsonString = (String) data[0]; + String property = (String) data[1]; + JSONObject jsonObject = null; + try { + jsonObject = new JSONObject(jsonString); + return jsonObject.get(property).toString(); + } catch (JSONException e) { + throw new ExecutionPlanRuntimeException("Cannot parse JSON String in json:getPeroperty() function. " + e); + } + } + + @Override + protected Object execute(Object data) { + return null; //Since the getProperty function takes in 2 parameters, this method does not get called. Hence,not implemented. + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} + + diff --git a/src/main/resources/json.siddhiext b/src/main/resources/json.siddhiext new file mode 100644 index 000000000..f1886dd63 --- /dev/null +++ b/src/main/resources/json.siddhiext @@ -0,0 +1,19 @@ +# +# Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# +# WSO2 Inc. 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. +# + +getProperty=org.wso2.extension.siddhi.execution.json.getPropertyFunctionExtension diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java new file mode 100644 index 000000000..7bc66478c --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java @@ -0,0 +1,88 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.execution.json; + +import junit.framework.Assert; +import org.apache.log4j.Logger; +import org.junit.Before; +import org.junit.Test; +import org.wso2.siddhi.core.ExecutionPlanRuntime; +import org.wso2.siddhi.core.SiddhiManager; +import org.wso2.siddhi.core.event.Event; +import org.wso2.siddhi.core.query.output.callback.QueryCallback; +import org.wso2.siddhi.core.stream.input.InputHandler; +import org.wso2.siddhi.core.util.EventPrinter; +import org.wso2.extension.siddhi.execution.json.test.util.SiddhiTestHelper; + +import java.util.concurrent.atomic.AtomicInteger; + +public class getPropertyFunctionTestCase { + static final Logger log = Logger.getLogger(getPropertyFunctionTestCase.class); + private AtomicInteger count = new AtomicInteger(0); + private volatile boolean eventArrived; + + @Before + public void init() { + count.set(0); + eventArrived = false; + } + + @Test + public void testGetPropertyFunctionExtension() throws InterruptedException { + log.info("getPropertyFunctionExtension TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + String inStreamDefinition = "define stream inputStream (payload string, id string, volume long);"; + String query = ("@info(name = 'query1') from inputStream select id, json:getProperty(payload, 'latitude') " + + "as latitude insert into outputStream;"); + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + + executionPlanRuntime.addCallback("query1", new QueryCallback() { + @Override + public void receive(long timeStamp, Event[] inEvents, Event[] removeEvents) { + EventPrinter.print(timeStamp, inEvents, removeEvents); + for (Event event : inEvents) { + count.incrementAndGet(); + if (count.get() == 1) { + Assert.assertEquals("1.5", event.getData(1)); + eventArrived = true; + } + if (count.get() == 2) { + Assert.assertEquals("67.5", event.getData(1)); + eventArrived = true; + } + if (count.get() == 3) { + Assert.assertEquals("7.5", event.getData(1)); + eventArrived = true; + } + } + } + }); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + inputHandler.send(new Object[]{"{'latitude' : 1.5, 'longitude' : 78.5}","IBM",100l}); + inputHandler.send(new Object[]{"{'latitude' : 67.5, 'longitude' : 34.9}","WSO2", 200l}); + inputHandler.send(new Object[]{"{'latitude' : 7.5, 'longitude' : 44.9}", "XYZ", 200l}); + SiddhiTestHelper.waitForEvents(100, 3, count, 60000); + Assert.assertEquals(3, count.get()); + Assert.assertTrue(eventArrived); + executionPlanRuntime.shutdown(); + } +} diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java b/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java new file mode 100644 index 000000000..9cfd6c307 --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.execution.json.test.util; + +import java.util.concurrent.atomic.AtomicInteger; + +public class SiddhiTestHelper { + public static void waitForEvents(long sleepTime, int expectedCount, AtomicInteger actualCount, long timeout) throws InterruptedException { + long currentWaitTime = 0; + long startTime = System.currentTimeMillis(); + while ((actualCount.get() < expectedCount) && (currentWaitTime <= timeout)) { + Thread.sleep(sleepTime); + currentWaitTime = System.currentTimeMillis() - startTime; + } + } +} diff --git a/src/test/resources/log4j.properties b/src/test/resources/log4j.properties new file mode 100644 index 000000000..96c79e944 --- /dev/null +++ b/src/test/resources/log4j.properties @@ -0,0 +1,36 @@ +# +# Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# +# WSO2 Inc. 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. +# + + +# For the general syntax of property based configuration files see the +# documenation of org.apache.log4j.PropertyConfigurator. + +# The root category uses the appender called A1. Since no priority is +# specified, the root category assumes the default priority for root +# which is DEBUG in log4j. The root category is the only category that +# has a default priority. All other categories need not be assigned a +# priority in which case they inherit their priority from the +# hierarchy. + +#log4j.rootLogger=DEBUG, stdout +log4j.rootLogger=INFO, stdout + +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%m%n +#log4j.appender.stdout.layout.ConversionPattern=[%t] %-5p %c %x - %m%n From a5f8fd6274565b8727c9d13e02d5a789ffa88933 Mon Sep 17 00:00:00 2001 From: Harshan Liyanage Date: Thu, 8 Dec 2016 16:40:18 +0530 Subject: [PATCH 0006/1075] Resolved conflicts --- pom.xml | 75 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..09380ecf4 --- /dev/null +++ b/pom.xml @@ -0,0 +1,75 @@ + + + + 4.0.0 + + + org.wso2.carbon.devicemgt-plugins + extensions-feature + 3.0.3-SNAPSHOT + ../pom.xml + + + org.wso2.extension.siddhi.execution.json.feature + pom + 3.0.3-SNAPSHOT + WSO2 Siddhi Execution Extension - Json Feature + http://wso2.org + This feature contains Siddhi extension feature for changing a json string to individual properties. + + + + org.wso2.carbon.devicemgt-plugins + org.wso2.extension.siddhi.execution.json + + + + + + + org.wso2.maven + carbon-p2-plugin + ${carbon.p2.plugin.version} + + + p2-feature-generation + package + + p2-feature-gen + + + org.wso2.extension.siddhi.execution.json + ../../etc/feature.properties + + + org.wso2.carbon.p2.category.type:server + org.eclipse.equinox.p2.type.group:true + + + + + org.wso2.carbon.devicemgt-plugins:org.wso2.extension.siddhi.execution.json:${carbon.devicemgt.plugins.version} + + + + + + + + + \ No newline at end of file From 0668bb45f6ebee73c08452f9438f3f896cd0c15e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Dec 2016 05:43:17 +0000 Subject: [PATCH 0007/1075] [maven-release-plugin] prepare release v3.0.3 --- pom.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index b1671cc44..961d729f7 100644 --- a/pom.xml +++ b/pom.xml @@ -15,13 +15,12 @@ ~ limitations under the License. --> - + org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.3-SNAPSHOT + 3.0.3 ../pom.xml From dcdaa2037b2a5a281db9941f82162b3c3f98137c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Dec 2016 05:43:17 +0000 Subject: [PATCH 0008/1075] [maven-release-plugin] prepare release v3.0.3 --- pom.xml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 09380ecf4..8743dc336 100644 --- a/pom.xml +++ b/pom.xml @@ -14,20 +14,19 @@ ~ See the License for the specific language governing permissions and ~ limitations under the License. --> - + 4.0.0 org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.3-SNAPSHOT + 3.0.3 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.3-SNAPSHOT + 3.0.3 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 562fc0cffff9aea17eacb541d00cb7b2c2d2be62 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Dec 2016 05:46:04 +0000 Subject: [PATCH 0009/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 961d729f7..818342bfa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.3 + 3.0.4-SNAPSHOT ../pom.xml From 2e0458f8f09662fe2c5d6a792620297622840e92 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Dec 2016 05:46:04 +0000 Subject: [PATCH 0010/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8743dc336..a421b01e7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.3 + 3.0.4-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.3 + 3.0.4-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7be4504048d938472d5694d5c8db719d714e2a9e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Dec 2016 03:13:35 +0000 Subject: [PATCH 0011/1075] [maven-release-plugin] prepare release v3.0.4 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 818342bfa..a043cf605 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.4-SNAPSHOT + 3.0.4 ../pom.xml From f13269cb351de886774b4de7c25c3cf1db610587 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Dec 2016 03:13:35 +0000 Subject: [PATCH 0012/1075] [maven-release-plugin] prepare release v3.0.4 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a421b01e7..012348a0c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.4-SNAPSHOT + 3.0.4 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.4-SNAPSHOT + 3.0.4 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 023e389ec84e21d31db8063c0f8423c97b709e6b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Dec 2016 03:15:18 +0000 Subject: [PATCH 0013/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a043cf605..fa7056957 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.4 + 3.0.5-SNAPSHOT ../pom.xml From 16cb5b0d4eeec75202414b352e63f668fcd93713 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Dec 2016 03:15:18 +0000 Subject: [PATCH 0014/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 012348a0c..8f146842d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.4 + 3.0.5-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.4 + 3.0.5-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 77cfaac0b64e41d80eda909878df5c2ac21528e3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 7 Jan 2017 11:22:33 +0000 Subject: [PATCH 0015/1075] [maven-release-plugin] prepare release v3.0.5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fa7056957..fb1a879fd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.5-SNAPSHOT + 3.0.5 ../pom.xml From cade8d038b58b81cfb430a45d91aaa1b40727c06 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 7 Jan 2017 11:22:33 +0000 Subject: [PATCH 0016/1075] [maven-release-plugin] prepare release v3.0.5 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8f146842d..ffa4d006a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.5-SNAPSHOT + 3.0.5 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.5-SNAPSHOT + 3.0.5 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2472a1e56e52ffe0ebbfdc43e5ce4b6359ce4043 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 7 Jan 2017 11:25:51 +0000 Subject: [PATCH 0017/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fb1a879fd..d1f5e612b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.5 + 3.0.6-SNAPSHOT ../pom.xml From 5f878f2500f1d5f0891a3f728a84f70e1e2a83f0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 7 Jan 2017 11:25:51 +0000 Subject: [PATCH 0018/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ffa4d006a..775815ffd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.5 + 3.0.6-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.5 + 3.0.6-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9fb126ccb6c5b9176e3b199b7caa2a9346962a29 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 14 Jan 2017 12:17:46 +0000 Subject: [PATCH 0019/1075] [maven-release-plugin] prepare release v3.0.6 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d1f5e612b..206a6b230 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.6-SNAPSHOT + 3.0.6 ../pom.xml From 6c3320fed7dd8f97e293ec71f9faf0cfd9b7cc28 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 14 Jan 2017 12:17:46 +0000 Subject: [PATCH 0020/1075] [maven-release-plugin] prepare release v3.0.6 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 775815ffd..2c766f09f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.6-SNAPSHOT + 3.0.6 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.6-SNAPSHOT + 3.0.6 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c96bd20b2f66741af4d848413991643b452d6933 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 14 Jan 2017 12:22:40 +0000 Subject: [PATCH 0021/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 206a6b230..5a7409be9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.6 + 3.0.7-SNAPSHOT ../pom.xml From ee2d45d58ee6bd85a222d67ac839d1418ef9da89 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 14 Jan 2017 12:22:40 +0000 Subject: [PATCH 0022/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2c766f09f..381d529b6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.6 + 3.0.7-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.6 + 3.0.7-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 204e511a8f1b3a1901405b36b12af086d293315a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 02:03:09 +0000 Subject: [PATCH 0023/1075] [maven-release-plugin] prepare release v3.0.7 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5a7409be9..37adb4e17 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.7-SNAPSHOT + 3.0.7 ../pom.xml From 344d4f0d96cedebdc09f0cc49d5c33f247b8769f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 02:03:09 +0000 Subject: [PATCH 0024/1075] [maven-release-plugin] prepare release v3.0.7 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 381d529b6..880e5f1d0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.7-SNAPSHOT + 3.0.7 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.7-SNAPSHOT + 3.0.7 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 17829fa70ecc7c6f6f5443156c4b92770229823d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 02:04:54 +0000 Subject: [PATCH 0025/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 37adb4e17..6184b9d30 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.7 + 3.0.8-SNAPSHOT ../pom.xml From 6741064f698c7b6a562c67b8dc820da739c89cfe Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 02:04:54 +0000 Subject: [PATCH 0026/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 880e5f1d0..1ff980609 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.7 + 3.0.8-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.7 + 3.0.8-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8abd6de2659320bf2fcad854cbf955982370fa22 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 13:31:44 +0000 Subject: [PATCH 0027/1075] [maven-release-plugin] prepare release v3.0.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6184b9d30..468391c95 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.8-SNAPSHOT + 3.0.8 ../pom.xml From cf59f34af8067a8ad2fbe5dbf9d4dd76b3603cf3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 13:31:44 +0000 Subject: [PATCH 0028/1075] [maven-release-plugin] prepare release v3.0.8 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1ff980609..0607dfee7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.8-SNAPSHOT + 3.0.8 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.8-SNAPSHOT + 3.0.8 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 5a2403eadaf7b4520cd35975615ad7886cdbc059 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 13:36:50 +0000 Subject: [PATCH 0029/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 468391c95..13f96e631 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.8 + 3.0.9-SNAPSHOT ../pom.xml From cf08865e8bc78e893c024e1651eddf34469cd007 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 20 Jan 2017 13:36:50 +0000 Subject: [PATCH 0030/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0607dfee7..0d4a90652 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.8 + 3.0.9-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.8 + 3.0.9-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a491fcb92bab1b5cde40f693a10e4f1ff926dddd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 30 Jan 2017 18:07:24 +0530 Subject: [PATCH 0031/1075] [WSO2 Release] [Jenkins #2500] [Release 3.0.9] prepare release v3.0.9 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 13f96e631..9004d3591 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.9-SNAPSHOT + 3.0.9 ../pom.xml From 0806c8570ea41ef8d0c87f08e7bf9303805e9583 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 30 Jan 2017 18:07:24 +0530 Subject: [PATCH 0032/1075] [WSO2 Release] [Jenkins #2500] [Release 3.0.9] prepare release v3.0.9 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0d4a90652..eb0cee3ad 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.9-SNAPSHOT + 3.0.9 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.9-SNAPSHOT + 3.0.9 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 4bb988ddbbe9e73b9f2543f9b762168ae6f86c34 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 30 Jan 2017 18:07:35 +0530 Subject: [PATCH 0033/1075] [WSO2 Release] [Jenkins #2500] [Release 3.0.9] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9004d3591..1d1ba2ca6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.9 + 3.0.10-SNAPSHOT ../pom.xml From 972cd5295c52398f71221022ff06362b71562ff9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 30 Jan 2017 18:07:35 +0530 Subject: [PATCH 0034/1075] [WSO2 Release] [Jenkins #2500] [Release 3.0.9] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eb0cee3ad..eccfbf530 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.9 + 3.0.10-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.9 + 3.0.10-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 00e1ef7a14f56f5b50e3c78ef7570f8282a325e2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Jan 2017 12:58:45 +0530 Subject: [PATCH 0035/1075] [maven-release-plugin] prepare release v3.0.10 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1d1ba2ca6..1e8799fd9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.10-SNAPSHOT + 3.0.10 ../pom.xml From b2d1ba171e4bf2645d40c86dc6aa744f643cecb3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Jan 2017 12:58:45 +0530 Subject: [PATCH 0036/1075] [maven-release-plugin] prepare release v3.0.10 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eccfbf530..945d93d5b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.10-SNAPSHOT + 3.0.10 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.10-SNAPSHOT + 3.0.10 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0c4c10255e6ef38ccc51c53361a50b9b02e85f54 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Jan 2017 12:58:56 +0530 Subject: [PATCH 0037/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1e8799fd9..9122e5db2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.10 + 3.0.11-SNAPSHOT ../pom.xml From 0977dc51653dd06102a4878af2470a0831dae79d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Jan 2017 12:58:56 +0530 Subject: [PATCH 0038/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 945d93d5b..1eec6b355 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.10 + 3.0.11-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.10 + 3.0.11-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fac25ebdc752ed3634ab4aa41617b052006605fa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Feb 2017 16:05:58 +0530 Subject: [PATCH 0039/1075] [WSO2 Release] [Jenkins #2510] [Release 3.0.11] prepare release v3.0.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9122e5db2..027827397 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.11-SNAPSHOT + 3.0.11 ../pom.xml From 9b08d4d920e8b7aafa32ba5d55dcb7265d8f0078 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Feb 2017 16:05:58 +0530 Subject: [PATCH 0040/1075] [WSO2 Release] [Jenkins #2510] [Release 3.0.11] prepare release v3.0.11 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1eec6b355..21c92b2aa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.11-SNAPSHOT + 3.0.11 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.11-SNAPSHOT + 3.0.11 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9ee49ab3950c89d31a67eb82fdf4aba0ebc315f4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Feb 2017 16:06:06 +0530 Subject: [PATCH 0041/1075] [WSO2 Release] [Jenkins #2510] [Release 3.0.11] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 027827397..c90a2dabb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.11 + 3.0.12-SNAPSHOT ../pom.xml From f7d517b450a2b34d4ee77f71aad49cce6dcc23e8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Feb 2017 16:06:06 +0530 Subject: [PATCH 0042/1075] [WSO2 Release] [Jenkins #2510] [Release 3.0.11] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 21c92b2aa..b1623498e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.11 + 3.0.12-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.11 + 3.0.12-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 201f6fd754e223baedb6305d432591f46e42d348 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Mar 2017 17:43:10 +0530 Subject: [PATCH 0043/1075] [WSO2 Release] [Jenkins #2576] [Release 3.0.12] prepare release v3.0.12 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c90a2dabb..8beb67973 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.12-SNAPSHOT + 3.0.12 ../pom.xml From dfe6d5b9bb7045a8aab82dec368d1434af61b8f2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Mar 2017 17:43:10 +0530 Subject: [PATCH 0044/1075] [WSO2 Release] [Jenkins #2576] [Release 3.0.12] prepare release v3.0.12 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b1623498e..8bf9d21b8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.12-SNAPSHOT + 3.0.12 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.12-SNAPSHOT + 3.0.12 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d0feef699900df63c30885788529eeeef089f0fb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Mar 2017 17:43:20 +0530 Subject: [PATCH 0045/1075] [WSO2 Release] [Jenkins #2576] [Release 3.0.12] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8beb67973..f7f0d3bf1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.12 + 3.0.13-SNAPSHOT ../pom.xml From 316c8ed1197cc0158348460d853ed2e96825fcce Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Mar 2017 17:43:20 +0530 Subject: [PATCH 0046/1075] [WSO2 Release] [Jenkins #2576] [Release 3.0.12] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8bf9d21b8..31647e4ac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.12 + 3.0.13-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.12 + 3.0.13-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 917325866708e525c39c4de23698d204d87465b8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 14 Mar 2017 16:48:11 +0530 Subject: [PATCH 0047/1075] [WSO2 Release] [Jenkins #2581] [Release 3.0.13] prepare release v3.0.13 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f7f0d3bf1..54486d713 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.13-SNAPSHOT + 3.0.13 ../pom.xml From 32f4796c36c38d4aed2c3462309228df184550b7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 14 Mar 2017 16:48:11 +0530 Subject: [PATCH 0048/1075] [WSO2 Release] [Jenkins #2581] [Release 3.0.13] prepare release v3.0.13 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 31647e4ac..fabf17564 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.13-SNAPSHOT + 3.0.13 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.13-SNAPSHOT + 3.0.13 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8547e102a0491ce2a85508d7a5163495773f40fc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 14 Mar 2017 16:48:21 +0530 Subject: [PATCH 0049/1075] [WSO2 Release] [Jenkins #2581] [Release 3.0.13] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 54486d713..2052d39bc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.13 + 3.0.14-SNAPSHOT ../pom.xml From 98031f3e1e7b7766cce33c2983207216493b0439 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 14 Mar 2017 16:48:21 +0530 Subject: [PATCH 0050/1075] [WSO2 Release] [Jenkins #2581] [Release 3.0.13] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fabf17564..65c2b16e9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.13 + 3.0.14-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.13 + 3.0.14-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 531dd86a67be528646fab80fd7aa3fa3b5f60e14 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 15 Mar 2017 18:08:26 +0530 Subject: [PATCH 0051/1075] [WSO2 Release] [Jenkins #2584] [Release 3.0.14] prepare release v3.0.14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2052d39bc..dd5eca8f7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.14-SNAPSHOT + 3.0.14 ../pom.xml From f7fe012b2c62c144317a255675986878ae8f1160 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 15 Mar 2017 18:08:26 +0530 Subject: [PATCH 0052/1075] [WSO2 Release] [Jenkins #2584] [Release 3.0.14] prepare release v3.0.14 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 65c2b16e9..dd90fe6c6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.14-SNAPSHOT + 3.0.14 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.14-SNAPSHOT + 3.0.14 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e8d595a12dc452c0e35f93962d7d447ffa60f2d5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 15 Mar 2017 18:08:34 +0530 Subject: [PATCH 0053/1075] [WSO2 Release] [Jenkins #2584] [Release 3.0.14] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dd5eca8f7..1defbead7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.14 + 3.0.15-SNAPSHOT ../pom.xml From 08cdca551b45d426d069e0a073a0e5eeb7dc6846 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 15 Mar 2017 18:08:34 +0530 Subject: [PATCH 0054/1075] [WSO2 Release] [Jenkins #2584] [Release 3.0.14] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dd90fe6c6..7488d3c1e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.14 + 3.0.15-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.14 + 3.0.15-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 75d26f8fb5d4da12c6b9b8c3ba0319792b2f4c9c Mon Sep 17 00:00:00 2001 From: megala21 Date: Thu, 16 Mar 2017 21:42:44 +0530 Subject: [PATCH 0055/1075] Updating json version --- pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1defbead7..dcd8f428a 100644 --- a/pom.xml +++ b/pom.xml @@ -46,7 +46,6 @@ org.json.wso2 json - ${analytics.json.version} junit From bb2ff5f18bdc8189a0578d442ed9302be8fd14ca Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 21 Mar 2017 20:11:33 +0530 Subject: [PATCH 0056/1075] [WSO2 Release] [Jenkins #2593] [Release 3.0.15] prepare release v3.0.15 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dcd8f428a..28ecd9b82 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.15-SNAPSHOT + 3.0.15 ../pom.xml From 85beed577a5fc0001bee6623b28cc9ad12fd299d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 21 Mar 2017 20:11:33 +0530 Subject: [PATCH 0057/1075] [WSO2 Release] [Jenkins #2593] [Release 3.0.15] prepare release v3.0.15 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7488d3c1e..4d32fd1cc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.15-SNAPSHOT + 3.0.15 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.15-SNAPSHOT + 3.0.15 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 96f543c3117377abb02857785dc5412a81514c18 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 21 Mar 2017 20:11:47 +0530 Subject: [PATCH 0058/1075] [WSO2 Release] [Jenkins #2593] [Release 3.0.15] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 28ecd9b82..02d53e7ff 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.15 + 3.0.16-SNAPSHOT ../pom.xml From 2896ab97af38c11e39d35436d19b5d2b1917cd58 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 21 Mar 2017 20:11:47 +0530 Subject: [PATCH 0059/1075] [WSO2 Release] [Jenkins #2593] [Release 3.0.15] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4d32fd1cc..360b486ee 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.15 + 3.0.16-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.15 + 3.0.16-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 657e99b95771d44bd01fc6d774b04f6bde9dc8de Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Mar 2017 15:53:34 +0530 Subject: [PATCH 0060/1075] [WSO2 Release] [Jenkins #2596] [Release 3.0.16] prepare release v3.0.16 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 02d53e7ff..2857e32b4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.16-SNAPSHOT + 3.0.16 ../pom.xml From 71a0e65b45e49b6c8b4a986e06de3cdbe9f74ec7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Mar 2017 15:53:34 +0530 Subject: [PATCH 0061/1075] [WSO2 Release] [Jenkins #2596] [Release 3.0.16] prepare release v3.0.16 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 360b486ee..bc85240b1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.16-SNAPSHOT + 3.0.16 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.16-SNAPSHOT + 3.0.16 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 919dbcf847f5c7cc71bd1ec81905f62f45dbd5c2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Mar 2017 15:53:43 +0530 Subject: [PATCH 0062/1075] [WSO2 Release] [Jenkins #2596] [Release 3.0.16] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2857e32b4..43b757681 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.16 + 3.0.17-SNAPSHOT ../pom.xml From 8103b1ecffa64377381bd234b0f9c31f684ba5da Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Mar 2017 15:53:43 +0530 Subject: [PATCH 0063/1075] [WSO2 Release] [Jenkins #2596] [Release 3.0.16] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index bc85240b1..09668acec 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.16 + 3.0.17-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.16 + 3.0.17-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1f8f7a51398ca62a4cc3492e5630cd7b8211a0e3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Mar 2017 13:14:05 +0530 Subject: [PATCH 0064/1075] [WSO2 Release] [Jenkins #2602] [Release 3.0.17] prepare release v3.0.17 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 43b757681..f885f9ff7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.17-SNAPSHOT + 3.0.17 ../pom.xml From eaf0b6f3e72e7e0ad8d6b80651bb9275a1053ec6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Mar 2017 13:14:05 +0530 Subject: [PATCH 0065/1075] [WSO2 Release] [Jenkins #2602] [Release 3.0.17] prepare release v3.0.17 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 09668acec..87c9b5108 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.17-SNAPSHOT + 3.0.17 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.17-SNAPSHOT + 3.0.17 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From cd48ca4c58449e69c2ac446d9a2ea4f5f712cb11 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Mar 2017 13:14:16 +0530 Subject: [PATCH 0066/1075] [WSO2 Release] [Jenkins #2602] [Release 3.0.17] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f885f9ff7..963eb6d89 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.17 + 3.0.18-SNAPSHOT ../pom.xml From 9229638103e10d3a6b49d359d3988c80e4d04afa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Mar 2017 13:14:16 +0530 Subject: [PATCH 0067/1075] [WSO2 Release] [Jenkins #2602] [Release 3.0.17] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 87c9b5108..cc311d410 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.17 + 3.0.18-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.17 + 3.0.18-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d7c32760ebf65252f2dbeaaffa785d695aaac9e6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 24 Mar 2017 15:45:32 +0530 Subject: [PATCH 0068/1075] [WSO2 Release] [Jenkins #2605] [Release 3.0.18] prepare release v3.0.18 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 963eb6d89..a019aec98 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.18-SNAPSHOT + 3.0.18 ../pom.xml From 8c5cb2d7997b9fef54cb17204d464084f7b1702a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 24 Mar 2017 15:45:32 +0530 Subject: [PATCH 0069/1075] [WSO2 Release] [Jenkins #2605] [Release 3.0.18] prepare release v3.0.18 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cc311d410..0106d8e9d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.18-SNAPSHOT + 3.0.18 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.18-SNAPSHOT + 3.0.18 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f068800bf62beaa43ef2fb9ae1ad89652e4fcf50 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 24 Mar 2017 15:45:48 +0530 Subject: [PATCH 0070/1075] [WSO2 Release] [Jenkins #2605] [Release 3.0.18] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a019aec98..b317199f9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.18 + 3.0.19-SNAPSHOT ../pom.xml From e0a6e505252695616b0950ac227eda8055c836cd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 24 Mar 2017 15:45:48 +0530 Subject: [PATCH 0071/1075] [WSO2 Release] [Jenkins #2605] [Release 3.0.18] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0106d8e9d..ae7389d1f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.18 + 3.0.19-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.18 + 3.0.19-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ee6737f30e2914ebe80563223247212297ab87b4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 11:13:18 +0530 Subject: [PATCH 0072/1075] [WSO2 Release] [Jenkins #2612] [Release 3.0.19] prepare release v3.0.19 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b317199f9..83f82b632 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.19-SNAPSHOT + 3.0.19 ../pom.xml From b146d8373e1e215a77a31fbccd1689d3405df65a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 11:13:18 +0530 Subject: [PATCH 0073/1075] [WSO2 Release] [Jenkins #2612] [Release 3.0.19] prepare release v3.0.19 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ae7389d1f..48bf62904 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.19-SNAPSHOT + 3.0.19 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.19-SNAPSHOT + 3.0.19 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e3663862b1de4a3716a7c23e971f0217bd432c24 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 11:13:40 +0530 Subject: [PATCH 0074/1075] [WSO2 Release] [Jenkins #2612] [Release 3.0.19] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 83f82b632..c3a6b7423 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.19 + 3.0.20-SNAPSHOT ../pom.xml From f80800ca3a871324b5a70f784ec7ad6b80822770 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 11:13:40 +0530 Subject: [PATCH 0075/1075] [WSO2 Release] [Jenkins #2612] [Release 3.0.19] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 48bf62904..e163c92cd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.19 + 3.0.20-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.19 + 3.0.20-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8b41c4ae145678c12056fe2dd30052001a7e9ece Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 15:22:46 +0530 Subject: [PATCH 0076/1075] [WSO2 Release] [Jenkins #2614] [Release 3.0.20] prepare release v3.0.20 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c3a6b7423..cc7fe7ce5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.20-SNAPSHOT + 3.0.20 ../pom.xml From 0bb6862fb0efdc0034e41586481e3021d43e23a2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 15:22:46 +0530 Subject: [PATCH 0077/1075] [WSO2 Release] [Jenkins #2614] [Release 3.0.20] prepare release v3.0.20 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e163c92cd..7026dcb1f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.20-SNAPSHOT + 3.0.20 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.20-SNAPSHOT + 3.0.20 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From eb3a7611fac18223a3ab3c5b4962812a85622ad6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 15:23:01 +0530 Subject: [PATCH 0078/1075] [WSO2 Release] [Jenkins #2614] [Release 3.0.20] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cc7fe7ce5..853ace287 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.20 + 3.0.21-SNAPSHOT ../pom.xml From 7de0975c3edb2cfcb9843d1343ca946b88bc1650 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Mar 2017 15:23:01 +0530 Subject: [PATCH 0079/1075] [WSO2 Release] [Jenkins #2614] [Release 3.0.20] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7026dcb1f..3d9ddab75 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.20 + 3.0.21-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.20 + 3.0.21-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e7883615c9f6dce1a91125fcee4267e79e444810 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Mar 2017 10:31:12 +0530 Subject: [PATCH 0080/1075] [WSO2 Release] [Jenkins #2617] [Release 3.0.21] prepare release v3.0.21 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 853ace287..8ccf7b580 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.21-SNAPSHOT + 3.0.21 ../pom.xml From 25a01fe83a09bca4af350d3883599f04b704055a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Mar 2017 10:31:12 +0530 Subject: [PATCH 0081/1075] [WSO2 Release] [Jenkins #2617] [Release 3.0.21] prepare release v3.0.21 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3d9ddab75..4dc255679 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.21-SNAPSHOT + 3.0.21 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.21-SNAPSHOT + 3.0.21 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 17d6903d19d4832232f68ee8a5ea8bad67c106c8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Mar 2017 10:31:28 +0530 Subject: [PATCH 0082/1075] [WSO2 Release] [Jenkins #2617] [Release 3.0.21] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8ccf7b580..bd0556e10 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.21 + 3.0.22-SNAPSHOT ../pom.xml From a196ba507c438394404b177ba3ab4664d473d5d1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Mar 2017 10:31:28 +0530 Subject: [PATCH 0083/1075] [WSO2 Release] [Jenkins #2617] [Release 3.0.21] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4dc255679..f6e246476 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.21 + 3.0.22-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.21 + 3.0.22-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ccee5ec95ebbfdb3bd86fabcb5b408fcbd345c5d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Apr 2017 14:56:13 +0530 Subject: [PATCH 0084/1075] [WSO2 Release] [Jenkins #2627] [Release 3.0.22] prepare release v3.0.22 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd0556e10..20132ebc5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.22-SNAPSHOT + 3.0.22 ../pom.xml From 0c146cca23f0b3398831471a5586761c867a7c57 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Apr 2017 14:56:13 +0530 Subject: [PATCH 0085/1075] [WSO2 Release] [Jenkins #2627] [Release 3.0.22] prepare release v3.0.22 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f6e246476..883575b05 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.22-SNAPSHOT + 3.0.22 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.22-SNAPSHOT + 3.0.22 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1e4d338d1620afebc63db32cd33369bba8c4f8bb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Apr 2017 14:56:29 +0530 Subject: [PATCH 0086/1075] [WSO2 Release] [Jenkins #2627] [Release 3.0.22] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 20132ebc5..38474b32e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.22 + 3.0.23-SNAPSHOT ../pom.xml From 0986e26a5a79eeb7d86baccd0c108693c6e87ab8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Apr 2017 14:56:29 +0530 Subject: [PATCH 0087/1075] [WSO2 Release] [Jenkins #2627] [Release 3.0.22] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 883575b05..4a821ed55 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.22 + 3.0.23-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.22 + 3.0.23-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c91d8824d1c4784f655da7ea577f9ebaef2eb352 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Apr 2017 10:32:45 +0530 Subject: [PATCH 0088/1075] [WSO2 Release] [Jenkins #2640] [Release 3.0.23] prepare release v3.0.23 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 38474b32e..189db5ba4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.23-SNAPSHOT + 3.0.23 ../pom.xml From cac073330276556edddc8d1ba7284ed57bbf63ca Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Apr 2017 10:32:45 +0530 Subject: [PATCH 0089/1075] [WSO2 Release] [Jenkins #2640] [Release 3.0.23] prepare release v3.0.23 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4a821ed55..4f47582a4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.23-SNAPSHOT + 3.0.23 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.23-SNAPSHOT + 3.0.23 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f5d26cb956aff427b2cec655a199f3c1dd42bdb3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Apr 2017 10:33:01 +0530 Subject: [PATCH 0090/1075] [WSO2 Release] [Jenkins #2640] [Release 3.0.23] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 189db5ba4..a171d8f32 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.23 + 3.0.24-SNAPSHOT ../pom.xml From ee84be8c64db0a911d1f19f4fb6c92fc46f52626 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Apr 2017 10:33:01 +0530 Subject: [PATCH 0091/1075] [WSO2 Release] [Jenkins #2640] [Release 3.0.23] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4f47582a4..e0df33ea8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.23 + 3.0.24-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.23 + 3.0.24-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 176f6253a603c74fca4c6f6596d1e5197da8d40b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Apr 2017 16:28:35 +0530 Subject: [PATCH 0092/1075] [WSO2 Release] [Jenkins #2645] [Release 3.0.24] prepare release v3.0.24 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a171d8f32..8065bad17 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.24-SNAPSHOT + 3.0.24 ../pom.xml From 7d2015206d48ac35f66801aee7f83eecc6dbf8f7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Apr 2017 16:28:35 +0530 Subject: [PATCH 0093/1075] [WSO2 Release] [Jenkins #2645] [Release 3.0.24] prepare release v3.0.24 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e0df33ea8..6ba0f990e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.24-SNAPSHOT + 3.0.24 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.24-SNAPSHOT + 3.0.24 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a54ba775c52cef455359d9c9670d81d4f2b32fc6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Apr 2017 16:28:48 +0530 Subject: [PATCH 0094/1075] [WSO2 Release] [Jenkins #2645] [Release 3.0.24] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8065bad17..d70dcb735 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.24 + 3.0.25-SNAPSHOT ../pom.xml From 37d4a01b52be86e4330c13bd947c029a2bba4a9e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Apr 2017 16:28:48 +0530 Subject: [PATCH 0095/1075] [WSO2 Release] [Jenkins #2645] [Release 3.0.24] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6ba0f990e..3ca8607c0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.24 + 3.0.25-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.24 + 3.0.25-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e767b9eb977c414682f81db54514f4d2d98eea9a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 24 Apr 2017 17:57:03 +0530 Subject: [PATCH 0096/1075] [WSO2 Release] [Jenkins #2650] [Release 3.0.25] prepare release v3.0.25 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d70dcb735..3865e788e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.25-SNAPSHOT + 3.0.25 ../pom.xml From 38642f8e32283a01a24aa4a44c64171ab9014242 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 24 Apr 2017 17:57:03 +0530 Subject: [PATCH 0097/1075] [WSO2 Release] [Jenkins #2650] [Release 3.0.25] prepare release v3.0.25 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3ca8607c0..1b7817326 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.25-SNAPSHOT + 3.0.25 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.25-SNAPSHOT + 3.0.25 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 37218f796f3f8a6b23fde697b935bda42c921daf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 24 Apr 2017 17:57:19 +0530 Subject: [PATCH 0098/1075] [WSO2 Release] [Jenkins #2650] [Release 3.0.25] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3865e788e..3236a6dc3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.25 + 3.0.26-SNAPSHOT ../pom.xml From 9dd71d869b5e478293545149c0fd49f9eb2994f9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 24 Apr 2017 17:57:19 +0530 Subject: [PATCH 0099/1075] [WSO2 Release] [Jenkins #2650] [Release 3.0.25] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1b7817326..eb295d2a8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.25 + 3.0.26-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.25 + 3.0.26-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b5d88986bded16ad5c6702a897b96528ceea8674 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 11:47:01 +0530 Subject: [PATCH 0100/1075] [WSO2 Release] [Jenkins #2653] [Release 3.0.26] prepare release v3.0.26 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3236a6dc3..543ea2c5e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.26-SNAPSHOT + 3.0.26 ../pom.xml From e5ea5ed386ed90f384117ff872b1fa426ddc6ba5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 11:47:01 +0530 Subject: [PATCH 0101/1075] [WSO2 Release] [Jenkins #2653] [Release 3.0.26] prepare release v3.0.26 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eb295d2a8..dbe2bf2ea 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.26-SNAPSHOT + 3.0.26 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.26-SNAPSHOT + 3.0.26 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c598259fde3f57d4238ae1928a7a59f7ab82d6e0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 11:47:30 +0530 Subject: [PATCH 0102/1075] [WSO2 Release] [Jenkins #2653] [Release 3.0.26] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 543ea2c5e..d13b07457 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.26 + 3.0.27-SNAPSHOT ../pom.xml From c08e069f9dbbe841bad9a32b4d41223be187698a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 11:47:30 +0530 Subject: [PATCH 0103/1075] [WSO2 Release] [Jenkins #2653] [Release 3.0.26] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dbe2bf2ea..be90407cf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.26 + 3.0.27-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.26 + 3.0.27-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 97a7f9ae13bf5b2fb713499d11b78ce5c5e39f99 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 13:13:43 +0530 Subject: [PATCH 0104/1075] [WSO2 Release] [Jenkins #2654] [Release 3.0.27] prepare release v3.0.27 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d13b07457..61107f057 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.27-SNAPSHOT + 3.0.27 ../pom.xml From 2d7bc73983224e37dfb47217cd7f0f9541a23ab5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 13:13:43 +0530 Subject: [PATCH 0105/1075] [WSO2 Release] [Jenkins #2654] [Release 3.0.27] prepare release v3.0.27 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index be90407cf..d34738efd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.27-SNAPSHOT + 3.0.27 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.27-SNAPSHOT + 3.0.27 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a6e959bc92d7509f6ca1bb3e4c3e8e19963da44e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 13:14:01 +0530 Subject: [PATCH 0106/1075] [WSO2 Release] [Jenkins #2654] [Release 3.0.27] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 61107f057..fd8ac4329 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.27 + 3.0.28-SNAPSHOT ../pom.xml From e275bf96ae67f2b9a7fd572f8d5b805cc3eb9c18 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Apr 2017 13:14:01 +0530 Subject: [PATCH 0107/1075] [WSO2 Release] [Jenkins #2654] [Release 3.0.27] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d34738efd..b4566e56e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.27 + 3.0.28-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.27 + 3.0.28-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e48303171bc4fec600e8ea8861b1a21d0ada98d5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 08:38:35 +0530 Subject: [PATCH 0108/1075] [WSO2 Release] [Jenkins #2659] [Release 3.0.28] prepare release v3.0.28 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fd8ac4329..e0a98eb89 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.28-SNAPSHOT + 3.0.28 ../pom.xml From 2419185fa0bbbab9c05f8ab9a542cb00cacd80c4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 08:38:35 +0530 Subject: [PATCH 0109/1075] [WSO2 Release] [Jenkins #2659] [Release 3.0.28] prepare release v3.0.28 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b4566e56e..d797c280f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.28-SNAPSHOT + 3.0.28 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.28-SNAPSHOT + 3.0.28 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 69c9f3f0932a408a1d1d48853ced291a12d858c0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 08:38:44 +0530 Subject: [PATCH 0110/1075] [WSO2 Release] [Jenkins #2659] [Release 3.0.28] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e0a98eb89..7edf75a80 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.28 + 3.0.29-SNAPSHOT ../pom.xml From 45dadf0ff1871291fbdc3034cdbfb215c311870e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 08:38:44 +0530 Subject: [PATCH 0111/1075] [WSO2 Release] [Jenkins #2659] [Release 3.0.28] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d797c280f..4e5bff11f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.28 + 3.0.29-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.28 + 3.0.29-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 974bc8edb9d815b742420a38395141d57b325b36 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 10:32:49 +0530 Subject: [PATCH 0112/1075] [WSO2 Release] [Jenkins #2661] [Release 3.0.29] prepare release v3.0.29 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7edf75a80..5445fedfa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.29-SNAPSHOT + 3.0.29 ../pom.xml From f2d729030a85d148043a130c3e81a10d78951012 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 10:32:49 +0530 Subject: [PATCH 0113/1075] [WSO2 Release] [Jenkins #2661] [Release 3.0.29] prepare release v3.0.29 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4e5bff11f..26de5d6a9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.29-SNAPSHOT + 3.0.29 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.29-SNAPSHOT + 3.0.29 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 901feab641bb80ea9cc2fa51266f1bad0bd75243 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 10:33:09 +0530 Subject: [PATCH 0114/1075] [WSO2 Release] [Jenkins #2661] [Release 3.0.29] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5445fedfa..0882019d1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.29 + 3.0.30-SNAPSHOT ../pom.xml From 9a334b118fe0c4287cd0d753890d51468904a292 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 28 Apr 2017 10:33:09 +0530 Subject: [PATCH 0115/1075] [WSO2 Release] [Jenkins #2661] [Release 3.0.29] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 26de5d6a9..07a1faff4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.29 + 3.0.30-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.29 + 3.0.30-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9bcfdc3b705e8eb87b16e9f37215e7f8b32fbfab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 1 May 2017 19:56:48 +0530 Subject: [PATCH 0116/1075] [WSO2 Release] [Jenkins #2666] [Release 3.0.30] prepare release v3.0.30 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0882019d1..0afcab3e7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.30-SNAPSHOT + 3.0.30 ../pom.xml From c680fa49c16faf0eafbe6e06e82b12724ca80720 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 1 May 2017 19:56:48 +0530 Subject: [PATCH 0117/1075] [WSO2 Release] [Jenkins #2666] [Release 3.0.30] prepare release v3.0.30 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 07a1faff4..d1af36d9c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.30-SNAPSHOT + 3.0.30 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.30-SNAPSHOT + 3.0.30 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e9d58bae6864222a96f88a225304eb60af6fd6ee Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 1 May 2017 19:57:06 +0530 Subject: [PATCH 0118/1075] [WSO2 Release] [Jenkins #2666] [Release 3.0.30] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0afcab3e7..233d4f871 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.30 + 3.0.31-SNAPSHOT ../pom.xml From 41bc498997cf4107eab9ec2317f08b402e5fea19 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 1 May 2017 19:57:06 +0530 Subject: [PATCH 0119/1075] [WSO2 Release] [Jenkins #2666] [Release 3.0.30] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d1af36d9c..9331fd614 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.30 + 3.0.31-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.30 + 3.0.31-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1c97ddf30fbe8e748218f5e5b8724f20f5c31451 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 2 May 2017 20:47:39 +0530 Subject: [PATCH 0120/1075] [WSO2 Release] [Jenkins #2670] [Release 3.0.31] prepare release v3.0.31 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 233d4f871..96f984a97 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.31-SNAPSHOT + 3.0.31 ../pom.xml From e17adec4b526dc55aabc367f73fcb1c4e69fd7fb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 2 May 2017 20:47:39 +0530 Subject: [PATCH 0121/1075] [WSO2 Release] [Jenkins #2670] [Release 3.0.31] prepare release v3.0.31 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9331fd614..64a08623c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.31-SNAPSHOT + 3.0.31 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.31-SNAPSHOT + 3.0.31 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e255cca04b906a99b400d31862eb49730d473c5f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 2 May 2017 20:47:53 +0530 Subject: [PATCH 0122/1075] [WSO2 Release] [Jenkins #2670] [Release 3.0.31] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 96f984a97..6532746fe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.31 + 3.0.32-SNAPSHOT ../pom.xml From 174cdd25fecd018b0882d3c4d6aba5baad2fb115 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 2 May 2017 20:47:53 +0530 Subject: [PATCH 0123/1075] [WSO2 Release] [Jenkins #2670] [Release 3.0.31] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 64a08623c..eaa289242 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.31 + 3.0.32-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.31 + 3.0.32-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From aa4c8ee3e43aa98ca828be5c47b26abb0ffb5b74 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 12:44:22 +0530 Subject: [PATCH 0124/1075] [maven-release-plugin] prepare release v3.0.32 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6532746fe..fbae00f51 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.32-SNAPSHOT + 3.0.32 ../pom.xml From 5abbadcc1ab39610c9eba17170e789e7c3304916 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 12:44:22 +0530 Subject: [PATCH 0125/1075] [maven-release-plugin] prepare release v3.0.32 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eaa289242..011865328 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.32-SNAPSHOT + 3.0.32 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.32-SNAPSHOT + 3.0.32 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b8b91ea1d2ea14ab6b31bf4ae123c46c1e5b2c2a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 12:44:37 +0530 Subject: [PATCH 0126/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fbae00f51..5389b49e4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.32 + 3.0.33-SNAPSHOT ../pom.xml From 22ab166a714bf40ff6aff6ea241271c2fc174b57 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 12:44:37 +0530 Subject: [PATCH 0127/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 011865328..586395247 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.32 + 3.0.33-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.32 + 3.0.33-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ea1349cd075921e67d064c30bf6072bd76effcd1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 18:04:39 +0530 Subject: [PATCH 0128/1075] [WSO2 Release] [Jenkins #2693] [Release 3.0.33] prepare release v3.0.33 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5389b49e4..fa5b12fe9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.33-SNAPSHOT + 3.0.33 ../pom.xml From f849d9cca1db4a03fbeeedd0792cdb3ffa56f7da Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 18:04:39 +0530 Subject: [PATCH 0129/1075] [WSO2 Release] [Jenkins #2693] [Release 3.0.33] prepare release v3.0.33 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 586395247..1fce7adfa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.33-SNAPSHOT + 3.0.33 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.33-SNAPSHOT + 3.0.33 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ac3a87167b7f3534b67d0fe0992a6c65de233a25 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 18:04:55 +0530 Subject: [PATCH 0130/1075] [WSO2 Release] [Jenkins #2693] [Release 3.0.33] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fa5b12fe9..afe157e51 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.33 + 3.0.34-SNAPSHOT ../pom.xml From ead6b80aa41d45fcab03315319d06c0619302029 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 May 2017 18:04:55 +0530 Subject: [PATCH 0131/1075] [WSO2 Release] [Jenkins #2693] [Release 3.0.33] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1fce7adfa..0188ca962 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.33 + 3.0.34-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.33 + 3.0.34-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 4b8e61e394870b181d1f10d50c1ed70ec628a286 Mon Sep 17 00:00:00 2001 From: ayyoob Date: Wed, 10 May 2017 23:10:44 +0530 Subject: [PATCH 0132/1075] fixed issues related to analytics feature installation to DAS-3.1.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index afe157e51..780b1bc86 100644 --- a/pom.xml +++ b/pom.xml @@ -77,7 +77,7 @@ org.wso2.extension.siddhi.execution.json.* - org.json, + org.json;version="${orbit.version.json.range}", org.wso2.siddhi.core.*, org.wso2.siddhi.query.api.*, From f83e123843cdaa838ae9e30962367d0855ef5764 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 May 2017 13:04:42 +0530 Subject: [PATCH 0133/1075] [WSO2 Release] [Jenkins #2700] [Release 3.0.34] prepare release v3.0.34 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 780b1bc86..1d001f441 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.34-SNAPSHOT + 3.0.34 ../pom.xml From bfba6c2d05eba22e4e99867610d84991aa0892cd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 May 2017 13:04:42 +0530 Subject: [PATCH 0134/1075] [WSO2 Release] [Jenkins #2700] [Release 3.0.34] prepare release v3.0.34 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0188ca962..ac07719b0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.34-SNAPSHOT + 3.0.34 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.34-SNAPSHOT + 3.0.34 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 4ebed665ae969b168b8db5ca6eccf2686aea5e58 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 May 2017 13:04:58 +0530 Subject: [PATCH 0135/1075] [WSO2 Release] [Jenkins #2700] [Release 3.0.34] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1d001f441..c58b30ded 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.34 + 3.0.35-SNAPSHOT ../pom.xml From 8b8df525f7553144268994bcbcbffbc541baea05 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 May 2017 13:04:58 +0530 Subject: [PATCH 0136/1075] [WSO2 Release] [Jenkins #2700] [Release 3.0.34] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ac07719b0..bf423b8fe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.34 + 3.0.35-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.34 + 3.0.35-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 08e417090f826ed556fa2d1cdd260377035aa59d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 16 May 2017 14:24:33 +0530 Subject: [PATCH 0137/1075] [WSO2 Release] [Jenkins #2720] [Release 3.0.35] prepare release v3.0.35 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c58b30ded..10d0644e8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.35-SNAPSHOT + 3.0.35 ../pom.xml From a84b47b11814d81c665c607d7f1a07166600786b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 16 May 2017 14:24:33 +0530 Subject: [PATCH 0138/1075] [WSO2 Release] [Jenkins #2720] [Release 3.0.35] prepare release v3.0.35 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index bf423b8fe..eece7fc34 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.35-SNAPSHOT + 3.0.35 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.35-SNAPSHOT + 3.0.35 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b1c950b370b2052eff394f369a90897f5798d8a1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 16 May 2017 14:24:47 +0530 Subject: [PATCH 0139/1075] [WSO2 Release] [Jenkins #2720] [Release 3.0.35] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 10d0644e8..b5eb3ace9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.35 + 3.0.36-SNAPSHOT ../pom.xml From 5d6d7da3f97c8255ae2123ff6bb4ee75e52f8c27 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 16 May 2017 14:24:47 +0530 Subject: [PATCH 0140/1075] [WSO2 Release] [Jenkins #2720] [Release 3.0.35] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eece7fc34..422cf57e8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.35 + 3.0.36-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.35 + 3.0.36-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a08d0258006ea2f0824ba19ecaee3d11cc6c13aa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 17 May 2017 16:51:01 +0530 Subject: [PATCH 0141/1075] [WSO2 Release] [Jenkins #2723] [Release 3.0.36] prepare release v3.0.36 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b5eb3ace9..1ef9360b3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.36-SNAPSHOT + 3.0.36 ../pom.xml From 82093ccfb88cfe7600d00e1b045ad6e2f195d3e2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 17 May 2017 16:51:01 +0530 Subject: [PATCH 0142/1075] [WSO2 Release] [Jenkins #2723] [Release 3.0.36] prepare release v3.0.36 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 422cf57e8..08267cf45 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.36-SNAPSHOT + 3.0.36 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.36-SNAPSHOT + 3.0.36 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1e36d88fe8ad04da2758804794e4f0c48823ad35 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 17 May 2017 16:51:16 +0530 Subject: [PATCH 0143/1075] [WSO2 Release] [Jenkins #2723] [Release 3.0.36] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1ef9360b3..f8945c007 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.36 + 3.0.37-SNAPSHOT ../pom.xml From a25543f59cd4d6dec25c82c3b673527429b7b844 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 17 May 2017 16:51:16 +0530 Subject: [PATCH 0144/1075] [WSO2 Release] [Jenkins #2723] [Release 3.0.36] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 08267cf45..d3e9cabd3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.36 + 3.0.37-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.36 + 3.0.37-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From bc3f51af428dd8620cff83d7bc3101ddc1202f02 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 30 May 2017 11:07:36 +0530 Subject: [PATCH 0145/1075] [WSO2 Release] [Jenkins #2741] [Release 3.0.37] prepare release v3.0.37 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f8945c007..ce41aff6f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.37-SNAPSHOT + 3.0.37 ../pom.xml From fa9246a4727961c84cdc621e3a57ce6282edb9e5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 30 May 2017 11:07:36 +0530 Subject: [PATCH 0146/1075] [WSO2 Release] [Jenkins #2741] [Release 3.0.37] prepare release v3.0.37 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d3e9cabd3..b7cceb9cc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.37-SNAPSHOT + 3.0.37 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.37-SNAPSHOT + 3.0.37 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a1a9a150b4036d5fd00cf70a3a81410db6766aa5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 30 May 2017 11:07:50 +0530 Subject: [PATCH 0147/1075] [WSO2 Release] [Jenkins #2741] [Release 3.0.37] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ce41aff6f..38ec41cd3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.37 + 3.0.38-SNAPSHOT ../pom.xml From 5dcf501b7cb5ecce9a5b4e9a3e73884eefd78f77 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 30 May 2017 11:07:50 +0530 Subject: [PATCH 0148/1075] [WSO2 Release] [Jenkins #2741] [Release 3.0.37] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b7cceb9cc..77a578dfa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.37 + 3.0.38-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.37 + 3.0.38-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c20cf75fc3871c6820f943d2d2540f3f2501a5a4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 2 Jun 2017 21:21:27 +0530 Subject: [PATCH 0149/1075] [WSO2 Release] [Jenkins #2747] [Release 3.0.38] prepare release v3.0.38 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 38ec41cd3..5be192c47 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.38-SNAPSHOT + 3.0.38 ../pom.xml From a92a09dc2a2900d4f3cb928998e877c4f33e0326 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 2 Jun 2017 21:21:27 +0530 Subject: [PATCH 0150/1075] [WSO2 Release] [Jenkins #2747] [Release 3.0.38] prepare release v3.0.38 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 77a578dfa..3415bec96 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.38-SNAPSHOT + 3.0.38 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.38-SNAPSHOT + 3.0.38 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 6f1b70236085efbf5034b2bb4d7832c3f7dcbbe2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 2 Jun 2017 21:21:42 +0530 Subject: [PATCH 0151/1075] [WSO2 Release] [Jenkins #2747] [Release 3.0.38] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5be192c47..d53e684f8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.38 + 3.0.39-SNAPSHOT ../pom.xml From 6dec0b4db780c2b7e1a9a39c2f293f663a1b46f7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 2 Jun 2017 21:21:42 +0530 Subject: [PATCH 0152/1075] [WSO2 Release] [Jenkins #2747] [Release 3.0.38] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3415bec96..4468d9a64 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.38 + 3.0.39-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.38 + 3.0.39-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d90d59a04ae745a647300f73e6786055465f9231 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Jun 2017 12:16:26 +0530 Subject: [PATCH 0153/1075] [WSO2 Release] [Jenkins #2753] [Release 3.0.39] prepare release v3.0.39 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d53e684f8..b4ca96eac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.39-SNAPSHOT + 3.0.39 ../pom.xml From 06829ac68c5cc7bc1ccb1b389819e345ddb415c8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Jun 2017 12:16:26 +0530 Subject: [PATCH 0154/1075] [WSO2 Release] [Jenkins #2753] [Release 3.0.39] prepare release v3.0.39 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4468d9a64..246f3e4c2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.39-SNAPSHOT + 3.0.39 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.39-SNAPSHOT + 3.0.39 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ca93b567e178179ae7b814fee7489f876985a99c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Jun 2017 12:16:40 +0530 Subject: [PATCH 0155/1075] [WSO2 Release] [Jenkins #2753] [Release 3.0.39] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b4ca96eac..d370c7f43 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.39 + 3.0.40-SNAPSHOT ../pom.xml From f294140d89a9343e2e5ed43b04f43ed180cac7f6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Jun 2017 12:16:40 +0530 Subject: [PATCH 0156/1075] [WSO2 Release] [Jenkins #2753] [Release 3.0.39] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 246f3e4c2..1932e35ff 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.39 + 3.0.40-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.39 + 3.0.40-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 44df0fd4d05028f9d171754af35655000899c982 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 7 Jun 2017 22:49:26 +0530 Subject: [PATCH 0157/1075] [WSO2 Release] [Jenkins #2756] [Release 3.0.40] prepare release v3.0.40 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d370c7f43..31cfb2721 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.40-SNAPSHOT + 3.0.40 ../pom.xml From 7862a391e47c6bf2faf7ce7718a30fc3dda70f68 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 7 Jun 2017 22:49:26 +0530 Subject: [PATCH 0158/1075] [WSO2 Release] [Jenkins #2756] [Release 3.0.40] prepare release v3.0.40 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1932e35ff..91a6f8554 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.40-SNAPSHOT + 3.0.40 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.40-SNAPSHOT + 3.0.40 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 6b99e37d035cf547615a2a6e9ddc42c5dffd54a3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 7 Jun 2017 22:49:40 +0530 Subject: [PATCH 0159/1075] [WSO2 Release] [Jenkins #2756] [Release 3.0.40] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 31cfb2721..a1a06fa2e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.40 + 3.0.41-SNAPSHOT ../pom.xml From 7288a3eca4356beae16c97b0d59739f3aa959b5c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 7 Jun 2017 22:49:40 +0530 Subject: [PATCH 0160/1075] [WSO2 Release] [Jenkins #2756] [Release 3.0.40] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 91a6f8554..7b1072e51 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.40 + 3.0.41-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.40 + 3.0.41-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c3cc8042b1f306f936c1522a96cfafc4d7252e0d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Jun 2017 13:55:28 +0530 Subject: [PATCH 0161/1075] [WSO2 Release] [Jenkins #2760] [Release 3.0.41] prepare release v3.0.41 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a1a06fa2e..fdc9acba2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.41-SNAPSHOT + 3.0.41 ../pom.xml From 312a78350a4d408d4698bec87b27d794f7d7248c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Jun 2017 13:55:28 +0530 Subject: [PATCH 0162/1075] [WSO2 Release] [Jenkins #2760] [Release 3.0.41] prepare release v3.0.41 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7b1072e51..1b15f7553 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.41-SNAPSHOT + 3.0.41 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.41-SNAPSHOT + 3.0.41 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 6fb3c40afc2b1978b1291bc86d160e3c0b47e8dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Jun 2017 13:55:42 +0530 Subject: [PATCH 0163/1075] [WSO2 Release] [Jenkins #2760] [Release 3.0.41] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fdc9acba2..95b0d2180 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.41 + 3.0.42-SNAPSHOT ../pom.xml From 7724931b83028793c368570f6c5cef474dda4ccc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 9 Jun 2017 13:55:42 +0530 Subject: [PATCH 0164/1075] [WSO2 Release] [Jenkins #2760] [Release 3.0.41] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1b15f7553..309d60e0d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.41 + 3.0.42-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.41 + 3.0.42-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 32b08e73208a3c526ad29801fe155a95fedcb80e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Jun 2017 16:20:03 +0530 Subject: [PATCH 0165/1075] [WSO2 Release] [Jenkins #2766] [Release 3.0.42] prepare release v3.0.42 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 95b0d2180..b421dfec1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.42-SNAPSHOT + 3.0.42 ../pom.xml From 072eabd476546faa787e10acba10c1d9b162fb9a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Jun 2017 16:20:03 +0530 Subject: [PATCH 0166/1075] [WSO2 Release] [Jenkins #2766] [Release 3.0.42] prepare release v3.0.42 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 309d60e0d..73e6de562 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.42-SNAPSHOT + 3.0.42 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.42-SNAPSHOT + 3.0.42 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From cdc4ebd83affcf85bacd4f5bf6addf264d3c67be Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Jun 2017 16:20:24 +0530 Subject: [PATCH 0167/1075] [WSO2 Release] [Jenkins #2766] [Release 3.0.42] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b421dfec1..731ff47a6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.42 + 3.0.43-SNAPSHOT ../pom.xml From a4f6e75b38bbe0b3cab4bedb6f064c00dca0a0ea Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Jun 2017 16:20:24 +0530 Subject: [PATCH 0168/1075] [WSO2 Release] [Jenkins #2766] [Release 3.0.42] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 73e6de562..7d67a68fd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.42 + 3.0.43-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.42 + 3.0.43-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ca9c701be22da6dd9af33f72e363325b6222ed0f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 15:32:32 +0530 Subject: [PATCH 0169/1075] [WSO2 Release] [Jenkins #2773] [Release 4.0.0] prepare release v4.0.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 731ff47a6..1353d82a4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 3.0.43-SNAPSHOT + 4.0.0 ../pom.xml From 2765b619437e2b96de7ecae9e50ec68a69d7692a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 15:32:32 +0530 Subject: [PATCH 0170/1075] [WSO2 Release] [Jenkins #2773] [Release 4.0.0] prepare release v4.0.0 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7d67a68fd..96192d3e2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 3.0.43-SNAPSHOT + 4.0.0 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 3.0.43-SNAPSHOT + 4.0.0 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From aded7094039770c0a92c5e7d09cf1e11608e122e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 15:32:45 +0530 Subject: [PATCH 0171/1075] [WSO2 Release] [Jenkins #2773] [Release 4.0.0] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1353d82a4..b5e4a2b09 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.0 + 4.0.1-SNAPSHOT ../pom.xml From e04c341c3fda97543e45e749070c92a169010efe Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 15:32:45 +0530 Subject: [PATCH 0172/1075] [WSO2 Release] [Jenkins #2773] [Release 4.0.0] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 96192d3e2..4eca9ecda 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.0 + 4.0.1-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.0 + 4.0.1-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From be4ffe36aa0c001d1f8d2b532d17449465695094 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 16:37:06 +0530 Subject: [PATCH 0173/1075] [WSO2 Release] [Jenkins #2774] [Release 4.0.1] prepare release v4.0.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b5e4a2b09..346cf4369 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.1-SNAPSHOT + 4.0.1 ../pom.xml From 3e4734d5a1f2094a6e7b34760873b03a2bff26dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 16:37:06 +0530 Subject: [PATCH 0174/1075] [WSO2 Release] [Jenkins #2774] [Release 4.0.1] prepare release v4.0.1 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4eca9ecda..70140b42d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.1-SNAPSHOT + 4.0.1 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.1-SNAPSHOT + 4.0.1 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f072933cbf8d5ae8818999c0455ea6f3371a84cd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 16:37:19 +0530 Subject: [PATCH 0175/1075] [WSO2 Release] [Jenkins #2774] [Release 4.0.1] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 346cf4369..b39806435 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.1 + 4.0.2-SNAPSHOT ../pom.xml From b972efddff0a7df0be3754c3e1935268a30f010f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Jun 2017 16:37:19 +0530 Subject: [PATCH 0176/1075] [WSO2 Release] [Jenkins #2774] [Release 4.0.1] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 70140b42d..5e26dea25 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.1 + 4.0.2-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.1 + 4.0.2-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 540abee7e30a7048bbc6d6d9ff8111a06bc6b0e2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 19 Jun 2017 16:39:28 +0530 Subject: [PATCH 0177/1075] [WSO2 Release] [Jenkins #2781] [Release 4.0.2] prepare release v4.0.2 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b39806435..737dded14 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.2-SNAPSHOT + 4.0.2 ../pom.xml From b976a427c39aa01f6c4eca3e11c56a31998725e8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 19 Jun 2017 16:39:28 +0530 Subject: [PATCH 0178/1075] [WSO2 Release] [Jenkins #2781] [Release 4.0.2] prepare release v4.0.2 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5e26dea25..32a5f0872 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.2-SNAPSHOT + 4.0.2 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.2-SNAPSHOT + 4.0.2 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 86a9d4751dd7b5d82a5fa37cf271858d9465c1f7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 19 Jun 2017 16:39:43 +0530 Subject: [PATCH 0179/1075] [WSO2 Release] [Jenkins #2781] [Release 4.0.2] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 737dded14..a24bf82ab 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.2 + 4.0.3-SNAPSHOT ../pom.xml From 26a3f47d1f9008977aa9e3eb1d5f64456dbc9a63 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 19 Jun 2017 16:39:43 +0530 Subject: [PATCH 0180/1075] [WSO2 Release] [Jenkins #2781] [Release 4.0.2] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 32a5f0872..42bfef225 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.2 + 4.0.3-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.2 + 4.0.3-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2ad1eed27f93a59653f5b8409b71875ed7e676cc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 15:49:25 +0530 Subject: [PATCH 0181/1075] [WSO2 Release] [Jenkins #2784] [Release 4.0.3] prepare release v4.0.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a24bf82ab..e3e27a704 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.3-SNAPSHOT + 4.0.3 ../pom.xml From 31e1689b6539301024710885c8dbcdadf949ba98 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 15:49:25 +0530 Subject: [PATCH 0182/1075] [WSO2 Release] [Jenkins #2784] [Release 4.0.3] prepare release v4.0.3 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 42bfef225..1e0131082 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.3-SNAPSHOT + 4.0.3 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.3-SNAPSHOT + 4.0.3 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f326d1bfea2516e306902940caf5d25a6a8bb4bf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 15:49:39 +0530 Subject: [PATCH 0183/1075] [WSO2 Release] [Jenkins #2784] [Release 4.0.3] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e3e27a704..452f95632 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.3 + 4.0.4-SNAPSHOT ../pom.xml From 44d9d8d50cd064bb8f481c533cf1223188266aeb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 15:49:39 +0530 Subject: [PATCH 0184/1075] [WSO2 Release] [Jenkins #2784] [Release 4.0.3] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1e0131082..7a1294533 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.3 + 4.0.4-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.3 + 4.0.4-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 870792adf1bb48d8b8cfe1e251d6d58d9c73d7a8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 18:18:59 +0530 Subject: [PATCH 0185/1075] [WSO2 Release] [Jenkins #2785] [Release 4.0.4] prepare release v4.0.4 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 452f95632..b4ed4c22d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.4-SNAPSHOT + 4.0.4 ../pom.xml From 815cd5e0e6efb633d079b764e63efd436154ada7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 18:18:59 +0530 Subject: [PATCH 0186/1075] [WSO2 Release] [Jenkins #2785] [Release 4.0.4] prepare release v4.0.4 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7a1294533..027d8da5b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.4-SNAPSHOT + 4.0.4 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.4-SNAPSHOT + 4.0.4 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b3f77e90936f538469c834529f40d8b0358a37ba Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 18:19:13 +0530 Subject: [PATCH 0187/1075] [WSO2 Release] [Jenkins #2785] [Release 4.0.4] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b4ed4c22d..6429bada7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.4 + 4.0.5-SNAPSHOT ../pom.xml From 2ca8266f899a902a7dfd783496d99eb5930b3ad0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 20 Jun 2017 18:19:13 +0530 Subject: [PATCH 0188/1075] [WSO2 Release] [Jenkins #2785] [Release 4.0.4] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 027d8da5b..eb65c6650 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.4 + 4.0.5-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.4 + 4.0.5-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 6e8e060422f8c9e9fd8e1ddc3933cfb5499141ce Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Jun 2017 21:03:24 +0530 Subject: [PATCH 0189/1075] [WSO2 Release] [Jenkins #2792] [Release 4.0.5] prepare release v4.0.5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6429bada7..2ba7d3f6b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.5-SNAPSHOT + 4.0.5 ../pom.xml From 3404e2532451900f1bc16bcdea76ecc7f7084639 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Jun 2017 21:03:24 +0530 Subject: [PATCH 0190/1075] [WSO2 Release] [Jenkins #2792] [Release 4.0.5] prepare release v4.0.5 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eb65c6650..2422be525 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.5-SNAPSHOT + 4.0.5 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.5-SNAPSHOT + 4.0.5 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 83230219d7595fe101e3e274949891a6224663df Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Jun 2017 21:03:37 +0530 Subject: [PATCH 0191/1075] [WSO2 Release] [Jenkins #2792] [Release 4.0.5] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2ba7d3f6b..0d8d747cd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.5 + 4.0.6-SNAPSHOT ../pom.xml From c7ce18ef65025964a908dc498e21bfa6c0c65ab6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Jun 2017 21:03:37 +0530 Subject: [PATCH 0192/1075] [WSO2 Release] [Jenkins #2792] [Release 4.0.5] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2422be525..5e05c66df 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.5 + 4.0.6-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.5 + 4.0.6-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f5ac48100fb4f5a5e64f9fb36d83fe1867e8f58c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 08:14:07 +0530 Subject: [PATCH 0193/1075] [WSO2 Release] [Jenkins #2794] [Release 4.0.6] prepare release v4.0.6 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0d8d747cd..a24b95f66 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.6-SNAPSHOT + 4.0.6 ../pom.xml From c9f50362b66fa3314f0049bcc22b04107c669f93 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 08:14:07 +0530 Subject: [PATCH 0194/1075] [WSO2 Release] [Jenkins #2794] [Release 4.0.6] prepare release v4.0.6 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5e05c66df..5a96a053d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.6-SNAPSHOT + 4.0.6 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.6-SNAPSHOT + 4.0.6 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 75696a538afa9d0115aed8898354c9dc5eee5e04 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 08:14:21 +0530 Subject: [PATCH 0195/1075] [WSO2 Release] [Jenkins #2794] [Release 4.0.6] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a24b95f66..5b9d7f671 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.6 + 4.0.7-SNAPSHOT ../pom.xml From 0e4179f2d4e6fff811cc25e88b8bfa0023269623 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 08:14:21 +0530 Subject: [PATCH 0196/1075] [WSO2 Release] [Jenkins #2794] [Release 4.0.6] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5a96a053d..5105af2d6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.6 + 4.0.7-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.6 + 4.0.7-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 144d06e551c3c90554fabfb1a0a94bd72a257811 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 17:54:43 +0530 Subject: [PATCH 0197/1075] [WSO2 Release] [Jenkins #2796] [Release 4.0.7] prepare release v4.0.7 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5b9d7f671..35385ba41 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.7-SNAPSHOT + 4.0.7 ../pom.xml From a33739bb5e91aeb4f61f0e9f6efa4a3fe154bd77 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 17:54:43 +0530 Subject: [PATCH 0198/1075] [WSO2 Release] [Jenkins #2796] [Release 4.0.7] prepare release v4.0.7 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5105af2d6..c3f24b33e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.7-SNAPSHOT + 4.0.7 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.7-SNAPSHOT + 4.0.7 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 35f8c7c5b3b1a7a0ae96391cf36c60ffeeae2291 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 17:54:56 +0530 Subject: [PATCH 0199/1075] [WSO2 Release] [Jenkins #2796] [Release 4.0.7] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 35385ba41..fbcc42788 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.7 + 4.0.8-SNAPSHOT ../pom.xml From 6e2b42f6e99558ac120a66f8121519abeea05f0e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 17:54:56 +0530 Subject: [PATCH 0200/1075] [WSO2 Release] [Jenkins #2796] [Release 4.0.7] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c3f24b33e..9c9979549 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.7 + 4.0.8-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.7 + 4.0.8-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 602482a05c17b2c6943f62b41a1d22911727b507 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 21:01:42 +0530 Subject: [PATCH 0201/1075] [maven-release-plugin]prepare release v4.0.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fbcc42788..9418020df 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.8-SNAPSHOT + 4.0.8 ../pom.xml From c47dc1a3277edb0f402688b3310acaddc1800f5d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 21:01:42 +0530 Subject: [PATCH 0202/1075] [maven-release-plugin]prepare release v4.0.8 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9c9979549..2d037a3c7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.8-SNAPSHOT + 4.0.8 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.8-SNAPSHOT + 4.0.8 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c34b334127b7765a95792cf4f8cc1a39cb0147ff Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 21:01:55 +0530 Subject: [PATCH 0203/1075] [maven-release-plugin]prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9418020df..7b5fb4776 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.8 + 4.0.9-SNAPSHOT ../pom.xml From 8d4d3c681b5ce107f2028991f1ee4e291aea2863 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 23 Jun 2017 21:01:55 +0530 Subject: [PATCH 0204/1075] [maven-release-plugin]prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2d037a3c7..da801f34f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.8 + 4.0.9-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.8 + 4.0.9-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2c5504f05403d6b3f95d2b5aaf47039d9084ff51 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 16:11:35 +0530 Subject: [PATCH 0205/1075] [WSO2 Release] [Jenkins #2805] [Release 4.0.9] prepare release v4.0.9 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7b5fb4776..b7f7d2c24 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.9-SNAPSHOT + 4.0.9 ../pom.xml From 6299aa2e7b6f3be45e785a31187618f10632a6be Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 16:11:35 +0530 Subject: [PATCH 0206/1075] [WSO2 Release] [Jenkins #2805] [Release 4.0.9] prepare release v4.0.9 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index da801f34f..851f822e8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.9-SNAPSHOT + 4.0.9 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.9-SNAPSHOT + 4.0.9 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From df805b113de0c882ef7a61d302ab217c6d76713c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 16:11:49 +0530 Subject: [PATCH 0207/1075] [WSO2 Release] [Jenkins #2805] [Release 4.0.9] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b7f7d2c24..657854e09 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.9 + 4.0.10-SNAPSHOT ../pom.xml From 8615c6900b754e5f80e9bcfda5458991e70a1efb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 16:11:49 +0530 Subject: [PATCH 0208/1075] [WSO2 Release] [Jenkins #2805] [Release 4.0.9] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 851f822e8..b54f8b0aa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.9 + 4.0.10-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.9 + 4.0.10-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 4d9c8bfa50f9dc1df081f2273b2f8cc75240dbf6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 18:27:54 +0530 Subject: [PATCH 0209/1075] [WSO2 Release] [Jenkins #2807] [Release 4.0.10] prepare release v4.0.10 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 657854e09..6172bbe65 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.10-SNAPSHOT + 4.0.10 ../pom.xml From 98a01c335da7e692850ba2647cabf2e46cf14c04 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 18:27:54 +0530 Subject: [PATCH 0210/1075] [WSO2 Release] [Jenkins #2807] [Release 4.0.10] prepare release v4.0.10 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b54f8b0aa..d5e7f053a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.10-SNAPSHOT + 4.0.10 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.10-SNAPSHOT + 4.0.10 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ad4059cc6f0301c0a557fb5fe660be7b75d0eefd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 18:28:08 +0530 Subject: [PATCH 0211/1075] [WSO2 Release] [Jenkins #2807] [Release 4.0.10] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6172bbe65..19f429102 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.10 + 4.0.11-SNAPSHOT ../pom.xml From 8c57848a93b0c125dc26d4b184cdbc83dd113b69 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 27 Jun 2017 18:28:08 +0530 Subject: [PATCH 0212/1075] [WSO2 Release] [Jenkins #2807] [Release 4.0.10] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d5e7f053a..5018a8053 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.10 + 4.0.11-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.10 + 4.0.11-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 66f284f8f35ae4256930c5dd3683cb72962da2c9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 14:24:40 +0530 Subject: [PATCH 0213/1075] [WSO2 Release] [Jenkins #2810] [Release 4.0.11] prepare release v4.0.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 19f429102..1786e4155 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.11-SNAPSHOT + 4.0.11 ../pom.xml From e383a50bf08ae5fabc30249b42053a1b9b110b4c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 14:24:40 +0530 Subject: [PATCH 0214/1075] [WSO2 Release] [Jenkins #2810] [Release 4.0.11] prepare release v4.0.11 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5018a8053..083c8a8af 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.11-SNAPSHOT + 4.0.11 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.11-SNAPSHOT + 4.0.11 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 908ffe89401155834b2db66472459e024df4bb97 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 14:24:55 +0530 Subject: [PATCH 0215/1075] [WSO2 Release] [Jenkins #2810] [Release 4.0.11] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1786e4155..830305096 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.11 + 4.0.12-SNAPSHOT ../pom.xml From 6b247fa4a6f12aca80ebd82409e4a534a2f7baab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 14:24:55 +0530 Subject: [PATCH 0216/1075] [WSO2 Release] [Jenkins #2810] [Release 4.0.11] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 083c8a8af..3c91c60f0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.11 + 4.0.12-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.11 + 4.0.12-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f59de19c1aa69fcc887d69187eccba89ad5ff447 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 15:45:56 +0530 Subject: [PATCH 0217/1075] [WSO2 Release] [Jenkins #2812] [Release 4.0.12] prepare release v4.0.12 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 830305096..45752d8a4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.12-SNAPSHOT + 4.0.12 ../pom.xml From 2077347c8a8268b6a09423000093e01f28e4db69 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 15:45:56 +0530 Subject: [PATCH 0218/1075] [WSO2 Release] [Jenkins #2812] [Release 4.0.12] prepare release v4.0.12 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3c91c60f0..4837f7b22 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.12-SNAPSHOT + 4.0.12 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.12-SNAPSHOT + 4.0.12 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7f9d2c5506da5046f78b7a2c55aea7350e9528d4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 15:46:09 +0530 Subject: [PATCH 0219/1075] [WSO2 Release] [Jenkins #2812] [Release 4.0.12] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 45752d8a4..7d5b02ec6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.12 + 4.0.13-SNAPSHOT ../pom.xml From c7339b586d87e2fd88991a7efee1a317a73e6c72 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Jun 2017 15:46:09 +0530 Subject: [PATCH 0220/1075] [WSO2 Release] [Jenkins #2812] [Release 4.0.12] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4837f7b22..b0acb8154 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.12 + 4.0.13-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.12 + 4.0.13-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ac53bd38e88a3b3f47b4ad9ea4b3d173222b9b06 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 29 Jun 2017 09:50:39 +0530 Subject: [PATCH 0221/1075] [WSO2 Release] [Jenkins #2814] [Release 4.0.13] prepare release v4.0.13 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7d5b02ec6..bd8d85cc9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.13-SNAPSHOT + 4.0.13 ../pom.xml From 691d3282db8b0358841980f0f3c73e81c288876d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 29 Jun 2017 09:50:39 +0530 Subject: [PATCH 0222/1075] [WSO2 Release] [Jenkins #2814] [Release 4.0.13] prepare release v4.0.13 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b0acb8154..4021345bc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.13-SNAPSHOT + 4.0.13 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.13-SNAPSHOT + 4.0.13 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 33e16c577b2273c484972c4f5921b50ced6360ec Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 29 Jun 2017 09:50:53 +0530 Subject: [PATCH 0223/1075] [WSO2 Release] [Jenkins #2814] [Release 4.0.13] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd8d85cc9..f26e20edb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.13 + 4.0.14-SNAPSHOT ../pom.xml From 4bb4fa0b6733410495334af78e93ee883424e755 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 29 Jun 2017 09:50:53 +0530 Subject: [PATCH 0224/1075] [WSO2 Release] [Jenkins #2814] [Release 4.0.13] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4021345bc..a3f593cc9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.13 + 4.0.14-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.13 + 4.0.14-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 38c360cb0784d55df7f1a475012cd57b17bfeb80 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 14:35:26 +0530 Subject: [PATCH 0225/1075] [WSO2 Release] [Jenkins #2817] [Release 4.0.14] prepare release v4.0.14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f26e20edb..0e84e57ab 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.14-SNAPSHOT + 4.0.14 ../pom.xml From a7eebb97cf4f9b931d6a1a0bc20ec41e1d8c1a3f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 14:35:26 +0530 Subject: [PATCH 0226/1075] [WSO2 Release] [Jenkins #2817] [Release 4.0.14] prepare release v4.0.14 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a3f593cc9..d0ec563d9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.14-SNAPSHOT + 4.0.14 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.14-SNAPSHOT + 4.0.14 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 3066b25ea8afd2929bf8f5499726e6bc7bb136ad Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 14:35:40 +0530 Subject: [PATCH 0227/1075] [WSO2 Release] [Jenkins #2817] [Release 4.0.14] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0e84e57ab..7dcb984b2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.14 + 4.0.15-SNAPSHOT ../pom.xml From cbb73e4c457931077f3bef7fc0e9d4fd4b9acb09 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 14:35:40 +0530 Subject: [PATCH 0228/1075] [WSO2 Release] [Jenkins #2817] [Release 4.0.14] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d0ec563d9..66e8dcd42 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.14 + 4.0.15-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.14 + 4.0.15-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c5548b471e234850f56a50331f7d39222e961304 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 20:40:12 +0530 Subject: [PATCH 0229/1075] [WSO2 Release] [Jenkins #2819] [Release 4.0.15] prepare release v4.0.15 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7dcb984b2..3dbba1658 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.15-SNAPSHOT + 4.0.15 ../pom.xml From cb3b91ff7f27b78a81a367f58df335c06c616684 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 20:40:12 +0530 Subject: [PATCH 0230/1075] [WSO2 Release] [Jenkins #2819] [Release 4.0.15] prepare release v4.0.15 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 66e8dcd42..82435c13d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.15-SNAPSHOT + 4.0.15 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.15-SNAPSHOT + 4.0.15 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 54090ebf09a052ddf704e465a84473ec89c8c364 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 20:40:26 +0530 Subject: [PATCH 0231/1075] [WSO2 Release] [Jenkins #2819] [Release 4.0.15] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3dbba1658..f358e612a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.15 + 4.0.16-SNAPSHOT ../pom.xml From 2a1abd7aa03f083a09d61a541e1821f9f54edfeb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 30 Jun 2017 20:40:26 +0530 Subject: [PATCH 0232/1075] [WSO2 Release] [Jenkins #2819] [Release 4.0.15] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 82435c13d..219e5c232 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.15 + 4.0.16-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.15 + 4.0.16-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0dc11428575b09811f34fd6c5499c4c4da39e705 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 1 Jul 2017 11:59:26 +0530 Subject: [PATCH 0233/1075] [WSO2 Release] [Jenkins #2821] [Release 4.0.16] prepare release v4.0.16 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f358e612a..2fd99edde 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.16-SNAPSHOT + 4.0.16 ../pom.xml From d30acb47b4d30f29c7911e24a723e965471630a8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 1 Jul 2017 11:59:26 +0530 Subject: [PATCH 0234/1075] [WSO2 Release] [Jenkins #2821] [Release 4.0.16] prepare release v4.0.16 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 219e5c232..fb0c1409b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.16-SNAPSHOT + 4.0.16 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.16-SNAPSHOT + 4.0.16 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7f4edb245ee6b8fd163649f1f24dd230dbeacf4a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 1 Jul 2017 11:59:40 +0530 Subject: [PATCH 0235/1075] [WSO2 Release] [Jenkins #2821] [Release 4.0.16] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2fd99edde..a1ab145c1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.16 + 4.0.17-SNAPSHOT ../pom.xml From ad059d21dd73534cee699030d48511e1ccb2a27a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 1 Jul 2017 11:59:40 +0530 Subject: [PATCH 0236/1075] [WSO2 Release] [Jenkins #2821] [Release 4.0.16] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fb0c1409b..b0cd76ac0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.16 + 4.0.17-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.16 + 4.0.17-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9c374eceb3ad6e080f7c9696a61273e05e125176 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 4 Jul 2017 16:36:57 +0530 Subject: [PATCH 0237/1075] [WSO2 Release] [Jenkins #2827] [Release 4.0.17] prepare release v4.0.17 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a1ab145c1..1a9cc6903 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.17-SNAPSHOT + 4.0.17 ../pom.xml From 6aea272af048ad8c5e88ecaf53d33fa133f7d7c2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 4 Jul 2017 16:36:57 +0530 Subject: [PATCH 0238/1075] [WSO2 Release] [Jenkins #2827] [Release 4.0.17] prepare release v4.0.17 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b0cd76ac0..c62240ca2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.17-SNAPSHOT + 4.0.17 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.17-SNAPSHOT + 4.0.17 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 23f4367d5853deeefdfdf4efe86d8dcadded1d50 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 4 Jul 2017 16:37:12 +0530 Subject: [PATCH 0239/1075] [WSO2 Release] [Jenkins #2827] [Release 4.0.17] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1a9cc6903..9e25d0374 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.17 + 4.0.18-SNAPSHOT ../pom.xml From 3e6180c725d254fc4df91870603f5d79e0302eb8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 4 Jul 2017 16:37:12 +0530 Subject: [PATCH 0240/1075] [WSO2 Release] [Jenkins #2827] [Release 4.0.17] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c62240ca2..1facf4612 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.17 + 4.0.18-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.17 + 4.0.18-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 923cdf75b3d197dc6643f108e0a9c503ebfd5a23 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 15:33:09 +0530 Subject: [PATCH 0241/1075] [WSO2 Release] [Jenkins #2830] [Release 4.0.18] prepare release v4.0.18 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e25d0374..b490bd358 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.18-SNAPSHOT + 4.0.18 ../pom.xml From ba61c4773b659e3ca5b02977dc9e7b1d56cded82 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 15:33:09 +0530 Subject: [PATCH 0242/1075] [WSO2 Release] [Jenkins #2830] [Release 4.0.18] prepare release v4.0.18 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1facf4612..7603712dd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.18-SNAPSHOT + 4.0.18 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.18-SNAPSHOT + 4.0.18 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 3ccbecbe889ef1b45aef2c84817876504d31397f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 15:33:23 +0530 Subject: [PATCH 0243/1075] [WSO2 Release] [Jenkins #2830] [Release 4.0.18] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b490bd358..105cb77d0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.18 + 4.0.19-SNAPSHOT ../pom.xml From 8b954218a9240af3718b77ed6268b330f79e42da Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 15:33:23 +0530 Subject: [PATCH 0244/1075] [WSO2 Release] [Jenkins #2830] [Release 4.0.18] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7603712dd..79d160c4f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.18 + 4.0.19-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.18 + 4.0.19-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f6b88cadfb466daad8e703fa883aaac1d3f90899 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 23:48:12 +0530 Subject: [PATCH 0245/1075] [WSO2 Release] [Jenkins #2832] [Release 4.0.19] prepare release v4.0.19 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 105cb77d0..cf368776e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.19-SNAPSHOT + 4.0.19 ../pom.xml From a115e1e1bde3344a40a23410aec772291e169278 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 23:48:12 +0530 Subject: [PATCH 0246/1075] [WSO2 Release] [Jenkins #2832] [Release 4.0.19] prepare release v4.0.19 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 79d160c4f..79498deb1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.19-SNAPSHOT + 4.0.19 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.19-SNAPSHOT + 4.0.19 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ef7bae42c5a3fa3aaf5a3e593d6962d2b6958687 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 23:48:26 +0530 Subject: [PATCH 0247/1075] [WSO2 Release] [Jenkins #2832] [Release 4.0.19] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cf368776e..0196fce29 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.19 + 4.0.20-SNAPSHOT ../pom.xml From ad79213907cedaa317100006b03121f68b1c76b8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 5 Jul 2017 23:48:26 +0530 Subject: [PATCH 0248/1075] [WSO2 Release] [Jenkins #2832] [Release 4.0.19] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 79498deb1..496f6708c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.19 + 4.0.20-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.19 + 4.0.20-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 913e751a6b52f038f67e09717681b0cb028be2dd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 15:27:41 +0530 Subject: [PATCH 0249/1075] [WSO2 Release] [Jenkins #2835] [Release 4.0.20] prepare release v4.0.20 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0196fce29..8420e83cc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.20-SNAPSHOT + 4.0.20 ../pom.xml From 05cc6fa77561e88bb1bb01a62f08548cc2e56cf9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 15:27:41 +0530 Subject: [PATCH 0250/1075] [WSO2 Release] [Jenkins #2835] [Release 4.0.20] prepare release v4.0.20 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 496f6708c..b370ba279 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.20-SNAPSHOT + 4.0.20 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.20-SNAPSHOT + 4.0.20 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8f6ba7b355d8cebcd0a9bf806527184ee2f05462 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 15:27:54 +0530 Subject: [PATCH 0251/1075] [WSO2 Release] [Jenkins #2835] [Release 4.0.20] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8420e83cc..6b01cc779 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.20 + 4.0.21-SNAPSHOT ../pom.xml From 0692b39b2e670b2e236f31d3867205268f98a3cf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 15:27:54 +0530 Subject: [PATCH 0252/1075] [WSO2 Release] [Jenkins #2835] [Release 4.0.20] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b370ba279..b02fa607c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.20 + 4.0.21-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.20 + 4.0.21-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 5d4cc811e01b5476700a61d7ef5802e0ff77deae Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 16:55:07 +0530 Subject: [PATCH 0253/1075] [WSO2 Release] [Jenkins #2836] [Release 4.0.21] prepare release v4.0.21 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6b01cc779..0b303cd93 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.21-SNAPSHOT + 4.0.21 ../pom.xml From 0629e42b9a2adbb1995ba4273429b7d52d34cfdb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 16:55:07 +0530 Subject: [PATCH 0254/1075] [WSO2 Release] [Jenkins #2836] [Release 4.0.21] prepare release v4.0.21 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b02fa607c..fc6f0ca52 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.21-SNAPSHOT + 4.0.21 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.21-SNAPSHOT + 4.0.21 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 68a6fce70f3b95c690ae707e6a2ab1a6ad443368 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 16:55:21 +0530 Subject: [PATCH 0255/1075] [WSO2 Release] [Jenkins #2836] [Release 4.0.21] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0b303cd93..c4bb9a167 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.21 + 4.0.22-SNAPSHOT ../pom.xml From e2eef5dd1e22171fda22f3c9fc4374d41e59fc43 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 6 Jul 2017 16:55:21 +0530 Subject: [PATCH 0256/1075] [WSO2 Release] [Jenkins #2836] [Release 4.0.21] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fc6f0ca52..bdad82bd8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.21 + 4.0.22-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.21 + 4.0.22-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 5a991ec128bb099bb4ddbdfafb4e404093ae9652 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 00:11:59 +0530 Subject: [PATCH 0257/1075] [WSO2 Release] [Jenkins #2838] [Release 4.0.22] prepare release v4.0.22 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c4bb9a167..69118dd68 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.22-SNAPSHOT + 4.0.22 ../pom.xml From d0701bd27d69ce5f79de092588d5a23e1137fc59 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 00:11:59 +0530 Subject: [PATCH 0258/1075] [WSO2 Release] [Jenkins #2838] [Release 4.0.22] prepare release v4.0.22 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index bdad82bd8..f2af2ae4a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.22-SNAPSHOT + 4.0.22 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.22-SNAPSHOT + 4.0.22 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 3f2ae9a805ec078ee7bfadd52434a158ac083d46 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 00:12:14 +0530 Subject: [PATCH 0259/1075] [WSO2 Release] [Jenkins #2838] [Release 4.0.22] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 69118dd68..54acb6f4a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.22 + 4.0.23-SNAPSHOT ../pom.xml From 911d1cae335600b897e65674db4dd1d9c5002324 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 00:12:14 +0530 Subject: [PATCH 0260/1075] [WSO2 Release] [Jenkins #2838] [Release 4.0.22] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f2af2ae4a..8037cf08d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.22 + 4.0.23-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.22 + 4.0.23-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From cd637d90677485db419d7e631003a5b9b603e9cf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 19:04:36 +0530 Subject: [PATCH 0261/1075] [WSO2 Release] [Jenkins #2840] [Release 4.0.23] prepare release v4.0.23 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 54acb6f4a..7c6398692 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.23-SNAPSHOT + 4.0.23 ../pom.xml From 8d93b064f879139ff0c042aeae8b1f4de5dd5346 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 19:04:36 +0530 Subject: [PATCH 0262/1075] [WSO2 Release] [Jenkins #2840] [Release 4.0.23] prepare release v4.0.23 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8037cf08d..ff0b19c07 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.23-SNAPSHOT + 4.0.23 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.23-SNAPSHOT + 4.0.23 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 175ca8bc67793641f42c796dd7746b3d5e290ef4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 19:04:50 +0530 Subject: [PATCH 0263/1075] [WSO2 Release] [Jenkins #2840] [Release 4.0.23] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7c6398692..100f316c4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.23 + 4.0.24-SNAPSHOT ../pom.xml From 47a190dc2b9c2f62a364bd15197d7ef0c285c66e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 7 Jul 2017 19:04:50 +0530 Subject: [PATCH 0264/1075] [WSO2 Release] [Jenkins #2840] [Release 4.0.23] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ff0b19c07..653a39634 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.23 + 4.0.24-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.23 + 4.0.24-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8b84abd5f28353f565bcd376bbc5cabdbcc8cfcd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 8 Jul 2017 05:45:47 +0530 Subject: [PATCH 0265/1075] [maven-release-plugin]prepare release v4.0.24 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 100f316c4..60faca684 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.24-SNAPSHOT + 4.0.24 ../pom.xml From 7c2e988efab2594e6752adffa9ee325faa20d336 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 8 Jul 2017 05:45:47 +0530 Subject: [PATCH 0266/1075] [maven-release-plugin]prepare release v4.0.24 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 653a39634..26f25ed12 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.24-SNAPSHOT + 4.0.24 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.24-SNAPSHOT + 4.0.24 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ad05a33e924da6bf42108b534fcfcfcf21a0cf81 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 8 Jul 2017 05:46:01 +0530 Subject: [PATCH 0267/1075] [maven-release-plugin]prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 60faca684..24fe59ae1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.24 + 4.0.25-SNAPSHOT ../pom.xml From 1db393c8a605af2dfaa0a9b40398b9f46077f351 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 8 Jul 2017 05:46:01 +0530 Subject: [PATCH 0268/1075] [maven-release-plugin]prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 26f25ed12..31041e2be 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.24 + 4.0.25-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.24 + 4.0.25-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 89cc68f09b2e7adec9343be3437f4104eb5eb59b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 9 Jul 2017 09:19:11 +0530 Subject: [PATCH 0269/1075] [WSO2 Release] [Jenkins #2845] [Release 4.0.25] prepare release v4.0.25 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 24fe59ae1..6bcb49d1f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.25-SNAPSHOT + 4.0.25 ../pom.xml From af80bb6da9204adbd3afb897192102210ce804f3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 9 Jul 2017 09:19:11 +0530 Subject: [PATCH 0270/1075] [WSO2 Release] [Jenkins #2845] [Release 4.0.25] prepare release v4.0.25 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 31041e2be..9c0cbd513 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.25-SNAPSHOT + 4.0.25 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.25-SNAPSHOT + 4.0.25 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d2df189466b841247d3669c602c0f90c1585c248 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 9 Jul 2017 09:19:25 +0530 Subject: [PATCH 0271/1075] [WSO2 Release] [Jenkins #2845] [Release 4.0.25] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6bcb49d1f..f1e632922 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.25 + 4.0.26-SNAPSHOT ../pom.xml From 829a184671eaf5368e957d225fc508a662b8ce89 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 9 Jul 2017 09:19:25 +0530 Subject: [PATCH 0272/1075] [WSO2 Release] [Jenkins #2845] [Release 4.0.25] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9c0cbd513..803ba656f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.25 + 4.0.26-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.25 + 4.0.26-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1dfe58f88b56a63df1269c7b86dc86178dc74ade Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 10 Jul 2017 18:00:32 +0530 Subject: [PATCH 0273/1075] [WSO2 Release] [Jenkins #2848] [Release 4.0.26] prepare release v4.0.26 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f1e632922..4b4e0d99b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.26-SNAPSHOT + 4.0.26 ../pom.xml From 255a606c4af56d30d183e8ef131003a8491c8eaa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 10 Jul 2017 18:00:32 +0530 Subject: [PATCH 0274/1075] [WSO2 Release] [Jenkins #2848] [Release 4.0.26] prepare release v4.0.26 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 803ba656f..deaab91a6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.26-SNAPSHOT + 4.0.26 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.26-SNAPSHOT + 4.0.26 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e71f7be686ef131b53b3105e5cb60e74b7f4118e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 10 Jul 2017 18:00:45 +0530 Subject: [PATCH 0275/1075] [WSO2 Release] [Jenkins #2848] [Release 4.0.26] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b4e0d99b..bf34e88c1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.26 + 4.0.27-SNAPSHOT ../pom.xml From 4a295fa787ec654ed0c22f6738e07948a2b95e41 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 10 Jul 2017 18:00:45 +0530 Subject: [PATCH 0276/1075] [WSO2 Release] [Jenkins #2848] [Release 4.0.26] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index deaab91a6..584134651 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.26 + 4.0.27-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.26 + 4.0.27-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d7706cec894d986e52dcdacd0a377641b6cf3666 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 14:42:36 +0530 Subject: [PATCH 0277/1075] [WSO2 Release] [Jenkins #2851] [Release 4.0.27] prepare release v4.0.27 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bf34e88c1..3a6389ba8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.27-SNAPSHOT + 4.0.27 ../pom.xml From 65d438b99c8bf26b0cdfb2bb9eb12afca98a88af Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 14:42:36 +0530 Subject: [PATCH 0278/1075] [WSO2 Release] [Jenkins #2851] [Release 4.0.27] prepare release v4.0.27 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 584134651..2ad77db46 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.27-SNAPSHOT + 4.0.27 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.27-SNAPSHOT + 4.0.27 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 4dc53b81e160e6492bc7d91a0a60a1a9e4a68d1e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 14:42:52 +0530 Subject: [PATCH 0279/1075] [WSO2 Release] [Jenkins #2851] [Release 4.0.27] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3a6389ba8..d0ce4fb23 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.27 + 4.0.28-SNAPSHOT ../pom.xml From 220abe17a3ad38c55b7b764a1e491b2f9fa5ba0e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 14:42:52 +0530 Subject: [PATCH 0280/1075] [WSO2 Release] [Jenkins #2851] [Release 4.0.27] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2ad77db46..3ff9e04e5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.27 + 4.0.28-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.27 + 4.0.28-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b84599ef1e838acebeea64bf80d4bac62e13e3e9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 18:39:18 +0530 Subject: [PATCH 0281/1075] [WSO2 Release] [Jenkins #2853] [Release 4.0.28] prepare release v4.0.28 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d0ce4fb23..2551cd12a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.28-SNAPSHOT + 4.0.28 ../pom.xml From b38445b667d88f3abe9dcd182a389ce6af34500d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 18:39:18 +0530 Subject: [PATCH 0282/1075] [WSO2 Release] [Jenkins #2853] [Release 4.0.28] prepare release v4.0.28 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3ff9e04e5..cf6e7c262 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.28-SNAPSHOT + 4.0.28 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.28-SNAPSHOT + 4.0.28 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 37832143d65a9f6be3f5c9ad42fa7b0c584f0856 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 18:39:32 +0530 Subject: [PATCH 0283/1075] [WSO2 Release] [Jenkins #2853] [Release 4.0.28] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2551cd12a..ee463c842 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.28 + 4.0.29-SNAPSHOT ../pom.xml From 8d27ad3a1e8608e64407213e58574b69e06bc0d8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 11 Jul 2017 18:39:32 +0530 Subject: [PATCH 0284/1075] [WSO2 Release] [Jenkins #2853] [Release 4.0.28] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cf6e7c262..cbcc8be87 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.28 + 4.0.29-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.28 + 4.0.29-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 4c44507947972e862922747a584161d328107d5e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 13 Jul 2017 16:26:00 +0530 Subject: [PATCH 0285/1075] [WSO2 Release] [Jenkins #2857] [Release 4.0.29] prepare release v4.0.29 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ee463c842..2a5bb44bc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.29-SNAPSHOT + 4.0.29 ../pom.xml From 53a95bca66717b43a8923936c7cd45743ea12537 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 13 Jul 2017 16:26:00 +0530 Subject: [PATCH 0286/1075] [WSO2 Release] [Jenkins #2857] [Release 4.0.29] prepare release v4.0.29 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cbcc8be87..2646e2f67 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.29-SNAPSHOT + 4.0.29 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.29-SNAPSHOT + 4.0.29 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 5e789ef785fad0df9ad1f10e1d8fac9da40ec3a8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 13 Jul 2017 16:26:14 +0530 Subject: [PATCH 0287/1075] [WSO2 Release] [Jenkins #2857] [Release 4.0.29] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2a5bb44bc..4d058ee6e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.29 + 4.0.30-SNAPSHOT ../pom.xml From 8605de779f0b55cc3fa8d89d2751bbe4c0e8307d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 13 Jul 2017 16:26:14 +0530 Subject: [PATCH 0288/1075] [WSO2 Release] [Jenkins #2857] [Release 4.0.29] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2646e2f67..42756736d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.29 + 4.0.30-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.29 + 4.0.30-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9ecdf0ef4b1a43690690c85252ea2aadf8a57a36 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 14 Jul 2017 13:10:02 +0530 Subject: [PATCH 0289/1075] [WSO2 Release] [Jenkins #2860] [Release 4.0.30] prepare release v4.0.30 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4d058ee6e..f8250dd1e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.30-SNAPSHOT + 4.0.30 ../pom.xml From f732647b846e717d325c503cdbbef2c378f9c238 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 14 Jul 2017 13:10:02 +0530 Subject: [PATCH 0290/1075] [WSO2 Release] [Jenkins #2860] [Release 4.0.30] prepare release v4.0.30 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 42756736d..b3a8d4801 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.30-SNAPSHOT + 4.0.30 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.30-SNAPSHOT + 4.0.30 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c2977b6c2eb15bb89e94507bb5399a399324cf7e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 14 Jul 2017 13:10:16 +0530 Subject: [PATCH 0291/1075] [WSO2 Release] [Jenkins #2860] [Release 4.0.30] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f8250dd1e..f7b997f79 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.30 + 4.0.31-SNAPSHOT ../pom.xml From 24be7d273dc5d3bd4280902630be1e307491b212 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 14 Jul 2017 13:10:16 +0530 Subject: [PATCH 0292/1075] [WSO2 Release] [Jenkins #2860] [Release 4.0.30] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b3a8d4801..28990bb9e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.30 + 4.0.31-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.30 + 4.0.31-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 31e7545634e8e8b1d994edb4ff39c5fc3d109cbc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 15 Jul 2017 13:12:21 +0530 Subject: [PATCH 0293/1075] [WSO2 Release] [Jenkins #2862] [Release 4.0.31] prepare release v4.0.31 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f7b997f79..c204b9a52 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.31-SNAPSHOT + 4.0.31 ../pom.xml From d3bb5cbaeac6c735a0d17ce3810ae2d25307e5b3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 15 Jul 2017 13:12:21 +0530 Subject: [PATCH 0294/1075] [WSO2 Release] [Jenkins #2862] [Release 4.0.31] prepare release v4.0.31 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 28990bb9e..d9e249d9a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.31-SNAPSHOT + 4.0.31 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.31-SNAPSHOT + 4.0.31 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 143c76968355614d6604edcc2ccbde6fef94c10b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 15 Jul 2017 13:12:35 +0530 Subject: [PATCH 0295/1075] [WSO2 Release] [Jenkins #2862] [Release 4.0.31] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c204b9a52..4bcdbaa53 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.31 + 4.0.32-SNAPSHOT ../pom.xml From e7bd9529800324baff0399cc02b35b2bbf6feddd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 15 Jul 2017 13:12:35 +0530 Subject: [PATCH 0296/1075] [WSO2 Release] [Jenkins #2862] [Release 4.0.31] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d9e249d9a..0730aa667 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.31 + 4.0.32-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.31 + 4.0.32-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 592cf7fe25e9c964116568bfae56d402201a4ff2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 11:36:25 +0530 Subject: [PATCH 0297/1075] [WSO2 Release] [Jenkins #2864] [Release 4.0.32] prepare release v4.0.32 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4bcdbaa53..64fccde2c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.32-SNAPSHOT + 4.0.32 ../pom.xml From b4e24ee57f90651a7b68874892ca406648317f90 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 11:36:25 +0530 Subject: [PATCH 0298/1075] [WSO2 Release] [Jenkins #2864] [Release 4.0.32] prepare release v4.0.32 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0730aa667..be624ef5d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.32-SNAPSHOT + 4.0.32 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.32-SNAPSHOT + 4.0.32 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7f3f15c5de3d93fa5b32ce980855e67904352840 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 11:36:38 +0530 Subject: [PATCH 0299/1075] [WSO2 Release] [Jenkins #2864] [Release 4.0.32] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 64fccde2c..1a75f1817 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.32 + 4.0.33-SNAPSHOT ../pom.xml From 7f58f486a528a796f98e1a74c17dee3f990fbeb9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 11:36:38 +0530 Subject: [PATCH 0300/1075] [WSO2 Release] [Jenkins #2864] [Release 4.0.32] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index be624ef5d..989d75395 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.32 + 4.0.33-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.32 + 4.0.33-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 96d39edb106efe16ed6784243725020c82bfd043 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 22:01:31 +0530 Subject: [PATCH 0301/1075] [WSO2 Release] [Jenkins #2866] [Release 4.0.33] prepare release v4.0.33 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1a75f1817..eecb185c0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.33-SNAPSHOT + 4.0.33 ../pom.xml From e97e7fe26e230fdae154999af9714a04f411717b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 22:01:31 +0530 Subject: [PATCH 0302/1075] [WSO2 Release] [Jenkins #2866] [Release 4.0.33] prepare release v4.0.33 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 989d75395..81136d8d3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.33-SNAPSHOT + 4.0.33 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.33-SNAPSHOT + 4.0.33 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 548797901b54616b44f3db1d3d8b8690e912861e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 22:01:45 +0530 Subject: [PATCH 0303/1075] [WSO2 Release] [Jenkins #2866] [Release 4.0.33] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index eecb185c0..d76fd910b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.33 + 4.0.34-SNAPSHOT ../pom.xml From 156f8a2d419876fbba4ba7f66206236e710a5304 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 16 Jul 2017 22:01:45 +0530 Subject: [PATCH 0304/1075] [WSO2 Release] [Jenkins #2866] [Release 4.0.33] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 81136d8d3..f2f93b611 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.33 + 4.0.34-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.33 + 4.0.34-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2f7b5cdece618e2f2608a96b4235f00144f6f040 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 17 Jul 2017 00:02:15 +0530 Subject: [PATCH 0305/1075] [WSO2 Release] [Jenkins #2868] [Release 4.0.34] prepare release v4.0.34 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d76fd910b..1c39e0fab 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.34-SNAPSHOT + 4.0.34 ../pom.xml From 4ca3ed1abdd7630799e16490a77cef580b38c85b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 17 Jul 2017 00:02:15 +0530 Subject: [PATCH 0306/1075] [WSO2 Release] [Jenkins #2868] [Release 4.0.34] prepare release v4.0.34 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f2f93b611..8672a4f2a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.34-SNAPSHOT + 4.0.34 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.34-SNAPSHOT + 4.0.34 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c6c2847b9d8f2aae78b9e076b1b606f2e92f8428 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 17 Jul 2017 00:02:28 +0530 Subject: [PATCH 0307/1075] [WSO2 Release] [Jenkins #2868] [Release 4.0.34] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1c39e0fab..497a12044 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.34 + 4.0.35-SNAPSHOT ../pom.xml From b059279dcf7f478d87d07240002d7c48ac5003ce Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 17 Jul 2017 00:02:28 +0530 Subject: [PATCH 0308/1075] [WSO2 Release] [Jenkins #2868] [Release 4.0.34] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8672a4f2a..48a23b106 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.34 + 4.0.35-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.34 + 4.0.35-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d69c71c0924af8e6e2ec4002164a2f8643ffbd5e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 19 Jul 2017 14:02:04 +0000 Subject: [PATCH 0309/1075] [WSO2 Release] [Jenkins #2875] [Release 4.0.35] prepare release v4.0.35 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 497a12044..ac5f56afc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.35-SNAPSHOT + 4.0.35 ../pom.xml From 9c1f57f33a454924a9d9e679d7b5d649c0145492 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 19 Jul 2017 14:02:04 +0000 Subject: [PATCH 0310/1075] [WSO2 Release] [Jenkins #2875] [Release 4.0.35] prepare release v4.0.35 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 48a23b106..3722400fa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.35-SNAPSHOT + 4.0.35 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.35-SNAPSHOT + 4.0.35 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7c6a8172913e635cac444b1912f6d0171f194402 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 19 Jul 2017 14:02:17 +0000 Subject: [PATCH 0311/1075] [WSO2 Release] [Jenkins #2875] [Release 4.0.35] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ac5f56afc..d3b8e30cd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.35 + 4.0.36-SNAPSHOT ../pom.xml From 627be4d8d3f26c8202c5d3daee9dd698b194c3cb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 19 Jul 2017 14:02:17 +0000 Subject: [PATCH 0312/1075] [WSO2 Release] [Jenkins #2875] [Release 4.0.35] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3722400fa..21439100f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.35 + 4.0.36-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.35 + 4.0.36-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a711ac75a90295e65f0c6aa8989536040dd1fca9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 18:54:51 +0530 Subject: [PATCH 0313/1075] [WSO2 Release] [Jenkins #2879] [Release 4.0.36] prepare release v4.0.36 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d3b8e30cd..f5df478b5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.36-SNAPSHOT + 4.0.36 ../pom.xml From 9c166c032b97dca709f76bc272c88690b367b609 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 18:54:51 +0530 Subject: [PATCH 0314/1075] [WSO2 Release] [Jenkins #2879] [Release 4.0.36] prepare release v4.0.36 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 21439100f..1f213ad12 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.36-SNAPSHOT + 4.0.36 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.36-SNAPSHOT + 4.0.36 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 410f9e744f92010f865bead091bf8efd130b8a97 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 18:55:02 +0530 Subject: [PATCH 0315/1075] [WSO2 Release] [Jenkins #2879] [Release 4.0.36] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f5df478b5..9805ec1e5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.36 + 4.0.37-SNAPSHOT ../pom.xml From a21b43a9586488515e2dd6a0ca995b68873bf129 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 18:55:02 +0530 Subject: [PATCH 0316/1075] [WSO2 Release] [Jenkins #2879] [Release 4.0.36] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1f213ad12..f7e4614bd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.36 + 4.0.37-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.36 + 4.0.37-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2c0a2697bd3a8c3589311d4719450b6bb719433f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 20:42:11 +0530 Subject: [PATCH 0317/1075] [WSO2 Release] [Jenkins #2880] [Release 4.0.37] prepare release v4.0.37 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9805ec1e5..0c4e90684 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.37-SNAPSHOT + 4.0.37 ../pom.xml From 339905f81664f46aaba76d9037a331ca9753d032 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 20:42:11 +0530 Subject: [PATCH 0318/1075] [WSO2 Release] [Jenkins #2880] [Release 4.0.37] prepare release v4.0.37 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f7e4614bd..f195b41d3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.37-SNAPSHOT + 4.0.37 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.37-SNAPSHOT + 4.0.37 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1ff3c3bb2950cbdc21cef9f0ba9e98c3787ad07d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 20:42:25 +0530 Subject: [PATCH 0319/1075] [WSO2 Release] [Jenkins #2880] [Release 4.0.37] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0c4e90684..aca67f7a7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.37 + 4.0.38-SNAPSHOT ../pom.xml From e254ce795c29d00d2da82a72bc96faf91801e851 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 20 Jul 2017 20:42:25 +0530 Subject: [PATCH 0320/1075] [WSO2 Release] [Jenkins #2880] [Release 4.0.37] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f195b41d3..6e8916e9c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.37 + 4.0.38-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.37 + 4.0.38-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 72486cab1dd838617f11112271213cae40e16853 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Jul 2017 14:27:57 +0530 Subject: [PATCH 0321/1075] [WSO2 Release] [Jenkins #2883] [Release 4.0.38] prepare release v4.0.38 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aca67f7a7..cbe335f30 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.38-SNAPSHOT + 4.0.38 ../pom.xml From 5ade14ff72f01052467c0a0a5f491a3175f8073e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Jul 2017 14:27:57 +0530 Subject: [PATCH 0322/1075] [WSO2 Release] [Jenkins #2883] [Release 4.0.38] prepare release v4.0.38 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6e8916e9c..665eaa0c8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.38-SNAPSHOT + 4.0.38 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.38-SNAPSHOT + 4.0.38 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 25edbb1ce9746d0282a8b897b88a6f5972706210 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Jul 2017 14:28:06 +0530 Subject: [PATCH 0323/1075] [WSO2 Release] [Jenkins #2883] [Release 4.0.38] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cbe335f30..32bbe933b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.38 + 4.0.39-SNAPSHOT ../pom.xml From ca8c8f506474ab018408ca5764b345bebcab759d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 21 Jul 2017 14:28:06 +0530 Subject: [PATCH 0324/1075] [WSO2 Release] [Jenkins #2883] [Release 4.0.38] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 665eaa0c8..6c0969849 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.38 + 4.0.39-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.38 + 4.0.39-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 07ec91048f61564236342a4a72749b47d919b784 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 23 Jul 2017 21:18:37 +0530 Subject: [PATCH 0325/1075] [WSO2 Release] [Jenkins #2887] [Release 4.0.39] prepare release v4.0.39 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 32bbe933b..2fd04b991 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.39-SNAPSHOT + 4.0.39 ../pom.xml From 7bc310643afff3fe20c27f1265a4b0262f587da6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 23 Jul 2017 21:18:37 +0530 Subject: [PATCH 0326/1075] [WSO2 Release] [Jenkins #2887] [Release 4.0.39] prepare release v4.0.39 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6c0969849..5c7f40a7d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.39-SNAPSHOT + 4.0.39 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.39-SNAPSHOT + 4.0.39 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fa5fd47f9cd732932881cdc2c4ef11ae1d3d315d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 23 Jul 2017 21:18:50 +0530 Subject: [PATCH 0327/1075] [WSO2 Release] [Jenkins #2887] [Release 4.0.39] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2fd04b991..c69724252 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.39 + 4.0.40-SNAPSHOT ../pom.xml From 27191146b1334fa4277e202de9f135ae7564ecc7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 23 Jul 2017 21:18:50 +0530 Subject: [PATCH 0328/1075] [WSO2 Release] [Jenkins #2887] [Release 4.0.39] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5c7f40a7d..32e28afbb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.39 + 4.0.40-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.39 + 4.0.40-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 223e97b300ef688dbe822c968cb3b70ab695484a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Jul 2017 21:12:16 +0530 Subject: [PATCH 0329/1075] [WSO2 Release] [Jenkins #2891] [Release 4.0.40] prepare release v4.0.40 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c69724252..2b4d862d2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.40-SNAPSHOT + 4.0.40 ../pom.xml From 462001341026b421b26dc379fb4118903539f0a7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Jul 2017 21:12:16 +0530 Subject: [PATCH 0330/1075] [WSO2 Release] [Jenkins #2891] [Release 4.0.40] prepare release v4.0.40 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 32e28afbb..87c83895b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.40-SNAPSHOT + 4.0.40 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.40-SNAPSHOT + 4.0.40 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b2e3ad0716202cfb5286defa76280ee27a81aff7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Jul 2017 21:12:31 +0530 Subject: [PATCH 0331/1075] [WSO2 Release] [Jenkins #2891] [Release 4.0.40] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2b4d862d2..c4386fce1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.40 + 4.0.41-SNAPSHOT ../pom.xml From 92062673c155edfdb0d7a7325f4de9a1c968d9ad Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 25 Jul 2017 21:12:31 +0530 Subject: [PATCH 0332/1075] [WSO2 Release] [Jenkins #2891] [Release 4.0.40] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 87c83895b..2872010b0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.40 + 4.0.41-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.40 + 4.0.41-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2666c752a6230c4d5fa7c6e7e02763ac6b411154 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 26 Jul 2017 21:10:47 +0530 Subject: [PATCH 0333/1075] [maven-release-plugin]prepare release v4.0.41 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c4386fce1..10706cdae 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.41-SNAPSHOT + 4.0.41 ../pom.xml From 5b8f856f4cc9b62e7b326f8cf5761800a6925687 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 26 Jul 2017 21:10:47 +0530 Subject: [PATCH 0334/1075] [maven-release-plugin]prepare release v4.0.41 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2872010b0..b07b67916 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.41-SNAPSHOT + 4.0.41 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.41-SNAPSHOT + 4.0.41 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 23a2ec6fb289a22e7dd1a99a6c1030a3f04c2802 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 26 Jul 2017 21:11:04 +0530 Subject: [PATCH 0335/1075] [maven-release-plugin]prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 10706cdae..0c838e93b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.41 + 4.0.42-SNAPSHOT ../pom.xml From 2f841d93fd631d2c481f102cd8a7b3976a06b84b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 26 Jul 2017 21:11:04 +0530 Subject: [PATCH 0336/1075] [maven-release-plugin]prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b07b67916..2664b8e0d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.41 + 4.0.42-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.41 + 4.0.42-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1cae2638f10dab200fda09a5c75e01af939a389a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 08:50:39 +0000 Subject: [PATCH 0337/1075] [WSO2 Release] [Jenkins #2903] [Release 4.0.42] prepare release v4.0.42 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0c838e93b..11b4f908c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.42-SNAPSHOT + 4.0.42 ../pom.xml From c70ae83059768f39341d209fe6ea4c5dc6d37d4c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 08:50:39 +0000 Subject: [PATCH 0338/1075] [WSO2 Release] [Jenkins #2903] [Release 4.0.42] prepare release v4.0.42 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2664b8e0d..1e60a521e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.42-SNAPSHOT + 4.0.42 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.42-SNAPSHOT + 4.0.42 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 860c42c7386d6a983c9b089d0d19ace60d8bf643 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 08:50:53 +0000 Subject: [PATCH 0339/1075] [WSO2 Release] [Jenkins #2903] [Release 4.0.42] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 11b4f908c..b6da3bc59 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.42 + 4.0.43-SNAPSHOT ../pom.xml From 8571914a271f37ca89e22573a889175aa0c2ef2a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 08:50:53 +0000 Subject: [PATCH 0340/1075] [WSO2 Release] [Jenkins #2903] [Release 4.0.42] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1e60a521e..8c35c5375 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.42 + 4.0.43-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.42 + 4.0.43-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 53a26bf6b4e83ff1e571ca6310a55d45a8165d12 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 15:07:35 +0000 Subject: [PATCH 0341/1075] [WSO2 Release] [Jenkins #2906] [Release 4.0.43] prepare release v4.0.43 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b6da3bc59..a2b5386b4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.43-SNAPSHOT + 4.0.43 ../pom.xml From acf18f1a5930f29d062c4ab222bf999fa0088ef8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 15:07:35 +0000 Subject: [PATCH 0342/1075] [WSO2 Release] [Jenkins #2906] [Release 4.0.43] prepare release v4.0.43 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8c35c5375..e6d99ed0f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.43-SNAPSHOT + 4.0.43 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.43-SNAPSHOT + 4.0.43 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b34a0ba9c95da40260aa12f515c0c591eae954d5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 15:07:49 +0000 Subject: [PATCH 0343/1075] [WSO2 Release] [Jenkins #2906] [Release 4.0.43] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a2b5386b4..c00e6b776 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.43 + 4.0.44-SNAPSHOT ../pom.xml From 7327d1c46ed05935defbd6958884632f358c352c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 31 Jul 2017 15:07:49 +0000 Subject: [PATCH 0344/1075] [WSO2 Release] [Jenkins #2906] [Release 4.0.43] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e6d99ed0f..b48ad4761 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.43 + 4.0.44-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.43 + 4.0.44-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c6c5534f314ccf11bb47d5f32ce8a4cc3d4f898d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 1 Aug 2017 17:30:44 +0530 Subject: [PATCH 0345/1075] [WSO2 Release] [Jenkins #2909] [Release 4.0.44] prepare release v4.0.44 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c00e6b776..71f8d0afb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.44-SNAPSHOT + 4.0.44 ../pom.xml From 9f4dc50a33d78662dfce48c5663e012f1b2c98f2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 1 Aug 2017 17:30:44 +0530 Subject: [PATCH 0346/1075] [WSO2 Release] [Jenkins #2909] [Release 4.0.44] prepare release v4.0.44 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b48ad4761..bcbcc714a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.44-SNAPSHOT + 4.0.44 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.44-SNAPSHOT + 4.0.44 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0892d77b08d952b8880c4d7204a67992ec894811 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 1 Aug 2017 17:30:59 +0530 Subject: [PATCH 0347/1075] [WSO2 Release] [Jenkins #2909] [Release 4.0.44] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 71f8d0afb..385f836e0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.44 + 4.0.45-SNAPSHOT ../pom.xml From a7ba4cd6740dae408690b19831930f84aab3ee8d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 1 Aug 2017 17:30:59 +0530 Subject: [PATCH 0348/1075] [WSO2 Release] [Jenkins #2909] [Release 4.0.44] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index bcbcc714a..f9fd7531b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.44 + 4.0.45-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.44 + 4.0.45-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b1ca6e74c583f1d482823c1408a2798ca0181408 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 13:30:46 +0530 Subject: [PATCH 0349/1075] [WSO2 Release] [Jenkins #2912] [Release 4.0.45] prepare release v4.0.45 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 385f836e0..ea1113455 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.45-SNAPSHOT + 4.0.45 ../pom.xml From c22a0c0e69576f9796a5ad52bc4690f1872ecba8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 13:30:46 +0530 Subject: [PATCH 0350/1075] [WSO2 Release] [Jenkins #2912] [Release 4.0.45] prepare release v4.0.45 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f9fd7531b..d5bbea518 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.45-SNAPSHOT + 4.0.45 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.45-SNAPSHOT + 4.0.45 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From cc1f13b0d1cbff872fb44e744d2cd10c0ffff1fb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 13:30:56 +0530 Subject: [PATCH 0351/1075] [WSO2 Release] [Jenkins #2912] [Release 4.0.45] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ea1113455..9f13815ce 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.45 + 4.0.46-SNAPSHOT ../pom.xml From 6ca66527718ba36732f8c8707e7e75c8c086156b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 13:30:56 +0530 Subject: [PATCH 0352/1075] [WSO2 Release] [Jenkins #2912] [Release 4.0.45] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d5bbea518..7efcf5244 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.45 + 4.0.46-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.45 + 4.0.46-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 3ca7e6b5d8d8613d85290b390f26b525b79458cf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 15:26:25 +0530 Subject: [PATCH 0353/1075] [WSO2 Release] [Jenkins #2913] [Release 4.0.46] prepare release v4.0.46 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9f13815ce..96ea5ff6f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.46-SNAPSHOT + 4.0.46 ../pom.xml From 338b276ef97dac5d4e5b152eb4f3aa07fed99815 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 15:26:25 +0530 Subject: [PATCH 0354/1075] [WSO2 Release] [Jenkins #2913] [Release 4.0.46] prepare release v4.0.46 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7efcf5244..f47a47af0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.46-SNAPSHOT + 4.0.46 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.46-SNAPSHOT + 4.0.46 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 53a106d18a6db9575d93cf4bf19847c77c555db0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 15:26:35 +0530 Subject: [PATCH 0355/1075] [WSO2 Release] [Jenkins #2913] [Release 4.0.46] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 96ea5ff6f..b1f2097a5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.46 + 4.0.47-SNAPSHOT ../pom.xml From 76c40ed83822d6456f011ade8556fae7e8020206 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 15:26:35 +0530 Subject: [PATCH 0356/1075] [WSO2 Release] [Jenkins #2913] [Release 4.0.46] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f47a47af0..dbf2a26d2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.46 + 4.0.47-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.46 + 4.0.47-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fc1273d9f6f9912952cffb33fc4d449d254572bc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 17:48:43 +0000 Subject: [PATCH 0357/1075] [WSO2 Release] [Jenkins #2915] [Release 4.0.47] prepare release v4.0.47 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1f2097a5..72f6e2ca3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.47-SNAPSHOT + 4.0.47 ../pom.xml From da22a3db30e7f0acfff607e6038b0891e99428f2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 17:48:43 +0000 Subject: [PATCH 0358/1075] [WSO2 Release] [Jenkins #2915] [Release 4.0.47] prepare release v4.0.47 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dbf2a26d2..2d6533f65 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.47-SNAPSHOT + 4.0.47 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.47-SNAPSHOT + 4.0.47 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fe3bdb34e80c76976076cc828137d6ec22d50559 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 17:50:09 +0000 Subject: [PATCH 0359/1075] [WSO2 Release] [Jenkins #2915] [Release 4.0.47] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 72f6e2ca3..a55b4756c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.47 + 4.0.48-SNAPSHOT ../pom.xml From 555b1267a086ce90da7f266a46fda8130f2fc5b1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 2 Aug 2017 17:50:09 +0000 Subject: [PATCH 0360/1075] [WSO2 Release] [Jenkins #2915] [Release 4.0.47] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2d6533f65..750df6e3b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.47 + 4.0.48-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.47 + 4.0.48-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 572c4405b782c5a1d66e7ef1a7e526de6d97bcf4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 3 Aug 2017 15:36:36 +0000 Subject: [PATCH 0361/1075] [WSO2 Release] [Jenkins #2918] [Release 4.0.48] prepare release v4.0.48 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a55b4756c..9e0b92744 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.48-SNAPSHOT + 4.0.48 ../pom.xml From 9c81e8917eb643288d08d270667c88513f0c5b56 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 3 Aug 2017 15:36:36 +0000 Subject: [PATCH 0362/1075] [WSO2 Release] [Jenkins #2918] [Release 4.0.48] prepare release v4.0.48 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 750df6e3b..3ac5db34e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.48-SNAPSHOT + 4.0.48 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.48-SNAPSHOT + 4.0.48 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e8cfbd06fc5ab3927559c50cb9a531d4a1910fd0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 3 Aug 2017 15:36:55 +0000 Subject: [PATCH 0363/1075] [WSO2 Release] [Jenkins #2918] [Release 4.0.48] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e0b92744..fc937de75 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.48 + 4.0.49-SNAPSHOT ../pom.xml From ec5f9d80b60acea995af26832195193047a5036b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 3 Aug 2017 15:36:55 +0000 Subject: [PATCH 0364/1075] [WSO2 Release] [Jenkins #2918] [Release 4.0.48] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3ac5db34e..730de7aef 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.48 + 4.0.49-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.48 + 4.0.49-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 5806ec519e8b0ff7e493c5ebd2c15bf01d1a7ce8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 5 Aug 2017 09:31:35 +0000 Subject: [PATCH 0365/1075] [WSO2 Release] [Jenkins #2922] [Release 4.0.49] prepare release v4.0.49 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fc937de75..aeb9575a8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.49-SNAPSHOT + 4.0.49 ../pom.xml From ca362448988f73a1e51b32a3224343d31d36d10d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 5 Aug 2017 09:31:35 +0000 Subject: [PATCH 0366/1075] [WSO2 Release] [Jenkins #2922] [Release 4.0.49] prepare release v4.0.49 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 730de7aef..16140e1a8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.49-SNAPSHOT + 4.0.49 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.49-SNAPSHOT + 4.0.49 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e7dc0a60dd8fdaf567244df521ba36f66363aa9c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 5 Aug 2017 09:31:52 +0000 Subject: [PATCH 0367/1075] [WSO2 Release] [Jenkins #2922] [Release 4.0.49] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aeb9575a8..484ad1ba1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.49 + 4.0.50-SNAPSHOT ../pom.xml From 2f1a5e12c8d810209af19c72b05b3f5421c21f0d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 5 Aug 2017 09:31:52 +0000 Subject: [PATCH 0368/1075] [WSO2 Release] [Jenkins #2922] [Release 4.0.49] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 16140e1a8..9111c835a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.49 + 4.0.50-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.49 + 4.0.50-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8311fd8c74bee580d6e9fccef556dd2deae32ded Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 7 Aug 2017 17:33:47 +0000 Subject: [PATCH 0369/1075] [WSO2 Release] [Jenkins #2926] [Release 4.0.50] prepare release v4.0.50 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 484ad1ba1..ecba4e11f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.50-SNAPSHOT + 4.0.50 ../pom.xml From 19e2a87479302473eb40f8bf4fa4cacdc3ad95a2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 7 Aug 2017 17:33:47 +0000 Subject: [PATCH 0370/1075] [WSO2 Release] [Jenkins #2926] [Release 4.0.50] prepare release v4.0.50 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9111c835a..299209417 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.50-SNAPSHOT + 4.0.50 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.50-SNAPSHOT + 4.0.50 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8f456f764c5c51ffcf168c0d765abf27c6b8118d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 7 Aug 2017 17:35:11 +0000 Subject: [PATCH 0371/1075] [WSO2 Release] [Jenkins #2926] [Release 4.0.50] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ecba4e11f..0adc4a7cd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.50 + 4.0.51-SNAPSHOT ../pom.xml From 176f6b49b4acabd01b906ac4f7d96fbf1ffdf79a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 7 Aug 2017 17:35:11 +0000 Subject: [PATCH 0372/1075] [WSO2 Release] [Jenkins #2926] [Release 4.0.50] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 299209417..9aff7e504 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.50 + 4.0.51-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.50 + 4.0.51-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From dd06715487e75546bf7e7197baa372e700f84b00 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 00:28:17 +0530 Subject: [PATCH 0373/1075] [WSO2 Release] [Jenkins #2927] [Release 4.0.51] prepare release v4.0.51 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0adc4a7cd..9f5ad2cf3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.51-SNAPSHOT + 4.0.51 ../pom.xml From 0b1294225498cb4d53e1f599d799b5541f7b47cd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 00:28:17 +0530 Subject: [PATCH 0374/1075] [WSO2 Release] [Jenkins #2927] [Release 4.0.51] prepare release v4.0.51 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9aff7e504..ecd54ce88 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.51-SNAPSHOT + 4.0.51 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.51-SNAPSHOT + 4.0.51 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2c6df46e28750bfc36a70d530c38a841d487b685 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 00:28:33 +0530 Subject: [PATCH 0375/1075] [WSO2 Release] [Jenkins #2927] [Release 4.0.51] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9f5ad2cf3..ebc4d5e8f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.51 + 4.0.52-SNAPSHOT ../pom.xml From 36a21d8d51a628b0e51c77d2547bf7cd95995241 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 00:28:33 +0530 Subject: [PATCH 0376/1075] [WSO2 Release] [Jenkins #2927] [Release 4.0.51] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ecd54ce88..39552b48f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.51 + 4.0.52-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.51 + 4.0.52-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f6afb8af1abeebba6dbe2e1516bf3607f3d5c459 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 04:00:46 +0530 Subject: [PATCH 0377/1075] [WSO2 Release] [Jenkins #2928] [Release 4.0.52] prepare release v4.0.52 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ebc4d5e8f..0fbd3f146 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.52-SNAPSHOT + 4.0.52 ../pom.xml From 38b9168c2bc3b86e71a50eb0cf967dc4a5c45207 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 04:00:46 +0530 Subject: [PATCH 0378/1075] [WSO2 Release] [Jenkins #2928] [Release 4.0.52] prepare release v4.0.52 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 39552b48f..372415b4b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.52-SNAPSHOT + 4.0.52 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.52-SNAPSHOT + 4.0.52 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0082cece1ae9c6b2ea0ed8d278ea47a1ff1615c0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 04:00:56 +0530 Subject: [PATCH 0379/1075] [WSO2 Release] [Jenkins #2928] [Release 4.0.52] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0fbd3f146..2017a19a1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.52 + 4.0.53-SNAPSHOT ../pom.xml From 0fbb669a7a2d0816e0a4a6104c1c702a6f5eadfb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 8 Aug 2017 04:00:56 +0530 Subject: [PATCH 0380/1075] [WSO2 Release] [Jenkins #2928] [Release 4.0.52] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 372415b4b..751563998 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.52 + 4.0.53-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.52 + 4.0.53-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f496da5d1445aa7f5b4e1db16415d52b3d9ccf49 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 9 Aug 2017 11:45:00 +0530 Subject: [PATCH 0381/1075] [WSO2 Release] [Jenkins #2935] [Release 4.0.53] prepare release v4.0.53 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2017a19a1..2212552ce 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.53-SNAPSHOT + 4.0.53 ../pom.xml From a18b305fbfd7e87009fc6613372599660e963c89 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 9 Aug 2017 11:45:00 +0530 Subject: [PATCH 0382/1075] [WSO2 Release] [Jenkins #2935] [Release 4.0.53] prepare release v4.0.53 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 751563998..cee8f6e89 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.53-SNAPSHOT + 4.0.53 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.53-SNAPSHOT + 4.0.53 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0165a3dd5ec2aa408f866c497b1072cc862aaa35 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 9 Aug 2017 11:45:11 +0530 Subject: [PATCH 0383/1075] [WSO2 Release] [Jenkins #2935] [Release 4.0.53] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2212552ce..faa6be9e8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.53 + 4.0.54-SNAPSHOT ../pom.xml From 3af74e182d8cae1c300a97091a5b378a68e49d41 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 9 Aug 2017 11:45:11 +0530 Subject: [PATCH 0384/1075] [WSO2 Release] [Jenkins #2935] [Release 4.0.53] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cee8f6e89..36ffef991 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.53 + 4.0.54-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.53 + 4.0.54-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 96fd7f6020cdf785e45383fcb33196386844ba23 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 10 Aug 2017 14:14:47 +0000 Subject: [PATCH 0385/1075] [maven-release-plugin]prepare release v4.0.54 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index faa6be9e8..a43bee63e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.54-SNAPSHOT + 4.0.54 ../pom.xml From 92e0ee76ccbb14c2ddd922de5d02f5df316b7efd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 10 Aug 2017 14:14:47 +0000 Subject: [PATCH 0386/1075] [maven-release-plugin]prepare release v4.0.54 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 36ffef991..92ac31ae3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.54-SNAPSHOT + 4.0.54 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.54-SNAPSHOT + 4.0.54 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 5c19678a4318967e0b774c2ddd77e25a8d53f927 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 10 Aug 2017 14:15:04 +0000 Subject: [PATCH 0387/1075] [maven-release-plugin]prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a43bee63e..5c3bd49e2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.54 + 4.0.55-SNAPSHOT ../pom.xml From 94496f275dcf37e443d3ecf10225cb2831bc5b6f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 10 Aug 2017 14:15:04 +0000 Subject: [PATCH 0388/1075] [maven-release-plugin]prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 92ac31ae3..6de510774 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.54 + 4.0.55-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.54 + 4.0.55-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 90e3bb7969112b1d80923a15406592904de18859 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 11 Aug 2017 07:51:08 +0000 Subject: [PATCH 0389/1075] [WSO2 Release] [Jenkins #2943] [Release 4.0.55] prepare release v4.0.55 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5c3bd49e2..810f2967e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.55-SNAPSHOT + 4.0.55 ../pom.xml From 34736b00ed157428fa477a7555b737fef8bc9311 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 11 Aug 2017 07:51:08 +0000 Subject: [PATCH 0390/1075] [WSO2 Release] [Jenkins #2943] [Release 4.0.55] prepare release v4.0.55 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6de510774..d81f84a73 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.55-SNAPSHOT + 4.0.55 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.55-SNAPSHOT + 4.0.55 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a419c0c88e1f7908cf7ab43d50617c73610b5d4b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 11 Aug 2017 07:51:22 +0000 Subject: [PATCH 0391/1075] [WSO2 Release] [Jenkins #2943] [Release 4.0.55] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 810f2967e..b0b9269f6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.55 + 4.0.56-SNAPSHOT ../pom.xml From 7bda621af75fb94eb9a6a0f5fc55e44366ad0f11 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 11 Aug 2017 07:51:22 +0000 Subject: [PATCH 0392/1075] [WSO2 Release] [Jenkins #2943] [Release 4.0.55] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d81f84a73..3d88c79c7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.55 + 4.0.56-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.55 + 4.0.56-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fa2f14e129df401b1e82bb6d24f2bcb8a7367aa6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 05:35:35 +0000 Subject: [PATCH 0393/1075] [WSO2 Release] [Jenkins #2956] [Release 4.0.56] prepare release v4.0.56 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b0b9269f6..0c0bdf4f9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.56-SNAPSHOT + 4.0.56 ../pom.xml From 6974e5d3b0cefd5aaf5693805383004ed5afd56a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 05:35:35 +0000 Subject: [PATCH 0394/1075] [WSO2 Release] [Jenkins #2956] [Release 4.0.56] prepare release v4.0.56 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3d88c79c7..2695ea028 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.56-SNAPSHOT + 4.0.56 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.56-SNAPSHOT + 4.0.56 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 4e6b7baa8da9f0535003ea757658c856ead6f6af Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 05:35:49 +0000 Subject: [PATCH 0395/1075] [WSO2 Release] [Jenkins #2956] [Release 4.0.56] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0c0bdf4f9..2beb80293 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.56 + 4.0.57-SNAPSHOT ../pom.xml From cb923bd4ea228cf3331d0033fcf17f500c6c828f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 05:35:49 +0000 Subject: [PATCH 0396/1075] [WSO2 Release] [Jenkins #2956] [Release 4.0.56] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2695ea028..b90d15488 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.56 + 4.0.57-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.56 + 4.0.57-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 61c7113f19bab234fcac317d0e0fcecad5755113 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 11:32:54 +0000 Subject: [PATCH 0397/1075] [WSO2 Release] [Jenkins #2958] [Release 4.0.57] prepare release v4.0.57 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2beb80293..9f00298c6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.57-SNAPSHOT + 4.0.57 ../pom.xml From 6ea2fcb13cb03b5aacd9ed30158b6c7a826ba75b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 11:32:54 +0000 Subject: [PATCH 0398/1075] [WSO2 Release] [Jenkins #2958] [Release 4.0.57] prepare release v4.0.57 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b90d15488..714645d97 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.57-SNAPSHOT + 4.0.57 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.57-SNAPSHOT + 4.0.57 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 3e8030bec45f644b9b63225420f54ce078b169ec Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 11:33:09 +0000 Subject: [PATCH 0399/1075] [WSO2 Release] [Jenkins #2958] [Release 4.0.57] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9f00298c6..7e520d8aa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.57 + 4.0.58-SNAPSHOT ../pom.xml From f1bbec6126eadc94d6cbb068ef61cd8c3c993fe9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 11:33:09 +0000 Subject: [PATCH 0400/1075] [WSO2 Release] [Jenkins #2958] [Release 4.0.57] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 714645d97..18e4f1b65 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.57 + 4.0.58-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.57 + 4.0.58-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0323388db116001dc7950785a284b0176cc78c36 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 18:38:19 +0000 Subject: [PATCH 0401/1075] [WSO2 Release] [Jenkins #2960] [Release 4.0.58] prepare release v4.0.58 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7e520d8aa..aec0b5b42 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.58-SNAPSHOT + 4.0.58 ../pom.xml From c52ca1148e8bebcd7cc6b2c293cbbb8412b4e156 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 18:38:19 +0000 Subject: [PATCH 0402/1075] [WSO2 Release] [Jenkins #2960] [Release 4.0.58] prepare release v4.0.58 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 18e4f1b65..05f8fd87a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.58-SNAPSHOT + 4.0.58 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.58-SNAPSHOT + 4.0.58 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 34b7957fc539a6c0d20ce2b61706f9f072fda6e9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 18:38:33 +0000 Subject: [PATCH 0403/1075] [WSO2 Release] [Jenkins #2960] [Release 4.0.58] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aec0b5b42..5e3131ca5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.58 + 4.0.59-SNAPSHOT ../pom.xml From c8c05f7ef74fa372ae0bac81b7f0e8a6b8b8fbff Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 22 Aug 2017 18:38:33 +0000 Subject: [PATCH 0404/1075] [WSO2 Release] [Jenkins #2960] [Release 4.0.58] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 05f8fd87a..42ccf588a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.58 + 4.0.59-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.58 + 4.0.59-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From cf2f115d0fd03a5b1b6ddfb5334e58d309708a67 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 23 Aug 2017 12:12:47 +0000 Subject: [PATCH 0405/1075] [WSO2 Release] [Jenkins #2963] [Release 4.0.59] prepare release v4.0.59 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5e3131ca5..175b658a6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.59-SNAPSHOT + 4.0.59 ../pom.xml From 4ecdbc87523745e9ff5795d27a2b872b9edd5517 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 23 Aug 2017 12:12:47 +0000 Subject: [PATCH 0406/1075] [WSO2 Release] [Jenkins #2963] [Release 4.0.59] prepare release v4.0.59 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 42ccf588a..bce9016d6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.59-SNAPSHOT + 4.0.59 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.59-SNAPSHOT + 4.0.59 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f4ff3dc277d146fe21d606ae509a7ccd8bce1401 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 23 Aug 2017 12:13:02 +0000 Subject: [PATCH 0407/1075] [WSO2 Release] [Jenkins #2963] [Release 4.0.59] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 175b658a6..d85e19665 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.59 + 4.0.60-SNAPSHOT ../pom.xml From 283be615da0b3a8d34134336c9943c5243558187 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 23 Aug 2017 12:13:02 +0000 Subject: [PATCH 0408/1075] [WSO2 Release] [Jenkins #2963] [Release 4.0.59] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index bce9016d6..9b9fd865c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.59 + 4.0.60-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.59 + 4.0.60-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 445a059725ce4b7fdeed1f990f63c950bd7009b9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 24 Aug 2017 10:04:52 +0000 Subject: [PATCH 0409/1075] [WSO2 Release] [Jenkins #2966] [Release 4.0.60] prepare release v4.0.60 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d85e19665..e6879ab26 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.60-SNAPSHOT + 4.0.60 ../pom.xml From 932d25dc4f8a70356a04301eba2af8844808490d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 24 Aug 2017 10:04:52 +0000 Subject: [PATCH 0410/1075] [WSO2 Release] [Jenkins #2966] [Release 4.0.60] prepare release v4.0.60 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9b9fd865c..00517d2d8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.60-SNAPSHOT + 4.0.60 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.60-SNAPSHOT + 4.0.60 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0ba2ef5201018dec14ec23ab2b2e002d3a343dbf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 24 Aug 2017 10:05:06 +0000 Subject: [PATCH 0411/1075] [WSO2 Release] [Jenkins #2966] [Release 4.0.60] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e6879ab26..ed7b70ca3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.60 + 4.0.61-SNAPSHOT ../pom.xml From e22aadcc98fc3d455eca91a8af5f28175ce9a530 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 24 Aug 2017 10:05:06 +0000 Subject: [PATCH 0412/1075] [WSO2 Release] [Jenkins #2966] [Release 4.0.60] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 00517d2d8..0bb0e6e4f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.60 + 4.0.61-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.60 + 4.0.61-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 4e6d05aa124331ba7f12cf26840a12713a833b82 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 28 Aug 2017 08:56:42 +0000 Subject: [PATCH 0413/1075] [WSO2 Release] [Jenkins #2972] [Release 4.0.61] prepare release v4.0.61 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ed7b70ca3..393398bd5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.61-SNAPSHOT + 4.0.61 ../pom.xml From 8e704ccc0d8cf2fa8af73d27ec1864d1e7efbbad Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 28 Aug 2017 08:56:42 +0000 Subject: [PATCH 0414/1075] [WSO2 Release] [Jenkins #2972] [Release 4.0.61] prepare release v4.0.61 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0bb0e6e4f..2882946df 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.61-SNAPSHOT + 4.0.61 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.61-SNAPSHOT + 4.0.61 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f236a65be2a0cb7a721a89b5f0d510dafe2cf98a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 28 Aug 2017 08:56:56 +0000 Subject: [PATCH 0415/1075] [WSO2 Release] [Jenkins #2972] [Release 4.0.61] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 393398bd5..aa3c3c20c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.61 + 4.0.62-SNAPSHOT ../pom.xml From 59073e353efbae8e6936b7c9abe78e7ec935308f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 28 Aug 2017 08:56:56 +0000 Subject: [PATCH 0416/1075] [WSO2 Release] [Jenkins #2972] [Release 4.0.61] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2882946df..cbfe83aff 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.61 + 4.0.62-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.61 + 4.0.62-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 6fde4205afd5ee443e5d2080c36b99f45d059c9a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 07:17:03 +0000 Subject: [PATCH 0417/1075] [WSO2 Release] [Jenkins #2975] [Release 4.0.62] prepare release v4.0.62 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aa3c3c20c..2148b44fe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.62-SNAPSHOT + 4.0.62 ../pom.xml From ba415b3f87d6c5b738fed34687d78844cbde0ab1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 07:17:03 +0000 Subject: [PATCH 0418/1075] [WSO2 Release] [Jenkins #2975] [Release 4.0.62] prepare release v4.0.62 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cbfe83aff..e98a0c631 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.62-SNAPSHOT + 4.0.62 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.62-SNAPSHOT + 4.0.62 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0a0d9f589dd8550f59c0497ee16647769aa0abd4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 07:17:18 +0000 Subject: [PATCH 0419/1075] [WSO2 Release] [Jenkins #2975] [Release 4.0.62] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2148b44fe..a80de69d0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.62 + 4.0.63-SNAPSHOT ../pom.xml From 42d6fbe0e55c7c4cbaad1eb5d882cd383c4472c4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 07:17:18 +0000 Subject: [PATCH 0420/1075] [WSO2 Release] [Jenkins #2975] [Release 4.0.62] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e98a0c631..f5b6e6b56 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.62 + 4.0.63-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.62 + 4.0.63-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0bc6d10278f89efd519babe6b63d3dbbf893fb3c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 09:22:17 +0000 Subject: [PATCH 0421/1075] [WSO2 Release] [Jenkins #2977] [Release 4.0.63] prepare release v4.0.63 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a80de69d0..d3b9331f3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.63-SNAPSHOT + 4.0.63 ../pom.xml From ae2c3e552b80313652fc13eb351405b665d62ee6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 09:22:17 +0000 Subject: [PATCH 0422/1075] [WSO2 Release] [Jenkins #2977] [Release 4.0.63] prepare release v4.0.63 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f5b6e6b56..285c87577 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.63-SNAPSHOT + 4.0.63 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.63-SNAPSHOT + 4.0.63 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 544c27f3592c532b55cc3c73f424f320cbfea9eb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 09:22:33 +0000 Subject: [PATCH 0423/1075] [WSO2 Release] [Jenkins #2977] [Release 4.0.63] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d3b9331f3..57842d70f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.63 + 4.0.64-SNAPSHOT ../pom.xml From a2de285bd06862eea3ab2cf8b99620680f9b16a1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 09:22:33 +0000 Subject: [PATCH 0424/1075] [WSO2 Release] [Jenkins #2977] [Release 4.0.63] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 285c87577..7a5a69884 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.63 + 4.0.64-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.63 + 4.0.64-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 6e214a4b2981ff8ffb81b3d3f315a7cdf2530c16 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 10:42:31 +0000 Subject: [PATCH 0425/1075] [WSO2 Release] [Jenkins #2979] [Release 4.0.64] prepare release v4.0.64 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57842d70f..57cd108af 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.64-SNAPSHOT + 4.0.64 ../pom.xml From ddaaba9a4013bbb37088505614c2d0f44d476be3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 10:42:31 +0000 Subject: [PATCH 0426/1075] [WSO2 Release] [Jenkins #2979] [Release 4.0.64] prepare release v4.0.64 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7a5a69884..6b82df942 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.64-SNAPSHOT + 4.0.64 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.64-SNAPSHOT + 4.0.64 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b1f0d77feae69f0db75584f94ee9df6dff1a4de0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 10:42:45 +0000 Subject: [PATCH 0427/1075] [WSO2 Release] [Jenkins #2979] [Release 4.0.64] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57cd108af..f3e63efe0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.64 + 4.0.65-SNAPSHOT ../pom.xml From eb63555c7a8986c65f8db35e5020a86b645861b9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 29 Aug 2017 10:42:45 +0000 Subject: [PATCH 0428/1075] [WSO2 Release] [Jenkins #2979] [Release 4.0.64] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6b82df942..c78492fa7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.64 + 4.0.65-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.64 + 4.0.65-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 02d3fd77a5a94c5d3329872204ccaba54c5175dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 30 Aug 2017 06:07:01 +0000 Subject: [PATCH 0429/1075] [WSO2 Release] [Jenkins #2982] [Release 4.0.65] prepare release v4.0.65 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f3e63efe0..bdad94eac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.65-SNAPSHOT + 4.0.65 ../pom.xml From 8a15d3bfebdf69ede290696b3fe3100e91b159e2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 30 Aug 2017 06:07:01 +0000 Subject: [PATCH 0430/1075] [WSO2 Release] [Jenkins #2982] [Release 4.0.65] prepare release v4.0.65 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c78492fa7..f3ed3a274 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.65-SNAPSHOT + 4.0.65 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.65-SNAPSHOT + 4.0.65 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 77b5a2f8d97e6b00cf728f5caf910c6a4e9f5451 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 30 Aug 2017 06:07:16 +0000 Subject: [PATCH 0431/1075] [WSO2 Release] [Jenkins #2982] [Release 4.0.65] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bdad94eac..c4b340d67 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.65 + 4.0.66-SNAPSHOT ../pom.xml From 9bf794cb50b2fa58a537823cf015994158ad38ec Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 30 Aug 2017 06:07:16 +0000 Subject: [PATCH 0432/1075] [WSO2 Release] [Jenkins #2982] [Release 4.0.65] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f3ed3a274..c4be4ba66 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.65 + 4.0.66-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.65 + 4.0.66-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 991f85b6e991eee33491944e84f9699b29081ae2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 08:49:32 +0000 Subject: [PATCH 0433/1075] [WSO2 Release] [Jenkins #2985] [Release 4.0.66] prepare release v4.0.66 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c4b340d67..5e373800b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.66-SNAPSHOT + 4.0.66 ../pom.xml From 1d4b3001297873964c38e10032ac06b022a18bdf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 08:49:32 +0000 Subject: [PATCH 0434/1075] [WSO2 Release] [Jenkins #2985] [Release 4.0.66] prepare release v4.0.66 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c4be4ba66..7a2c05b9e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.66-SNAPSHOT + 4.0.66 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.66-SNAPSHOT + 4.0.66 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7702dc329faba164fe196f59591410c9dba5cf00 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 08:49:50 +0000 Subject: [PATCH 0435/1075] [WSO2 Release] [Jenkins #2985] [Release 4.0.66] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5e373800b..75ac10238 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.66 + 4.0.67-SNAPSHOT ../pom.xml From 54fd8fc5c8790b7b993246d1bd3c21587ad84f64 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 08:49:50 +0000 Subject: [PATCH 0436/1075] [WSO2 Release] [Jenkins #2985] [Release 4.0.66] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7a2c05b9e..e31765d45 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.66 + 4.0.67-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.66 + 4.0.67-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f1ba1d69f2b4eae386212a3eec8f89488faf4548 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:06:54 +0000 Subject: [PATCH 0437/1075] [WSO2 Release] [Jenkins #2986] [Release 4.0.67] prepare release v4.0.67 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 75ac10238..9e96b3367 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.67-SNAPSHOT + 4.0.67 ../pom.xml From 49a26cc5e7dd7faee38ad7d034b18610c8c5ed94 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:06:54 +0000 Subject: [PATCH 0438/1075] [WSO2 Release] [Jenkins #2986] [Release 4.0.67] prepare release v4.0.67 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e31765d45..0c2666a0d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.67-SNAPSHOT + 4.0.67 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.67-SNAPSHOT + 4.0.67 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8826c3f1bba775915defd49aebfda65d99f6098d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:07:07 +0000 Subject: [PATCH 0439/1075] [WSO2 Release] [Jenkins #2986] [Release 4.0.67] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e96b3367..0852495f1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.67 + 4.0.68-SNAPSHOT ../pom.xml From 939dc62fdcef604d45811bb7c6aa886c3a4246bd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:07:07 +0000 Subject: [PATCH 0440/1075] [WSO2 Release] [Jenkins #2986] [Release 4.0.67] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0c2666a0d..29ec5cac5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.67 + 4.0.68-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.67 + 4.0.68-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1135fb797f222747a9a8124f52ecb04e4d4ebbca Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:44:11 +0000 Subject: [PATCH 0441/1075] [WSO2 Release] [Jenkins #2987] [Release 4.0.68] prepare release v4.0.68 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0852495f1..e2e7e94dc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.68-SNAPSHOT + 4.0.68 ../pom.xml From 7200f04098549e75b77216933973948cb7666d06 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:44:11 +0000 Subject: [PATCH 0442/1075] [WSO2 Release] [Jenkins #2987] [Release 4.0.68] prepare release v4.0.68 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 29ec5cac5..52026f2fa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.68-SNAPSHOT + 4.0.68 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.68-SNAPSHOT + 4.0.68 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fb806db44c71bcff5d7359dfe6332be233f87e8c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:44:25 +0000 Subject: [PATCH 0443/1075] [WSO2 Release] [Jenkins #2987] [Release 4.0.68] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e2e7e94dc..2e9f7daa2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.68 + 4.0.69-SNAPSHOT ../pom.xml From b448de83e5b3592ea6d5a904398d977d1d30bf88 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 10:44:25 +0000 Subject: [PATCH 0444/1075] [WSO2 Release] [Jenkins #2987] [Release 4.0.68] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 52026f2fa..3784cc81a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.68 + 4.0.69-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.68 + 4.0.69-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7be84ba266ad4e975748ec792d50d6fec6bfc861 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 11:28:36 +0000 Subject: [PATCH 0445/1075] [WSO2 Release] [Jenkins #2988] [Release 4.0.69] prepare release v4.0.69 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2e9f7daa2..aefa40bb2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.69-SNAPSHOT + 4.0.69 ../pom.xml From 1285fa15e102e68ad9e558982d1e1e4e6b23fbdb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 11:28:36 +0000 Subject: [PATCH 0446/1075] [WSO2 Release] [Jenkins #2988] [Release 4.0.69] prepare release v4.0.69 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3784cc81a..f0ad681ed 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.69-SNAPSHOT + 4.0.69 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.69-SNAPSHOT + 4.0.69 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 6512c8fe7797f1d318c9c610e28e51a8b1ce2eaa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 11:28:49 +0000 Subject: [PATCH 0447/1075] [WSO2 Release] [Jenkins #2988] [Release 4.0.69] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aefa40bb2..8e5818b09 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.69 + 4.0.70-SNAPSHOT ../pom.xml From b7fccd79af7ac725f89b082c60dea2d45853d3d2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 11:28:49 +0000 Subject: [PATCH 0448/1075] [WSO2 Release] [Jenkins #2988] [Release 4.0.69] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f0ad681ed..e9d03a5f0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.69 + 4.0.70-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.69 + 4.0.70-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b13451b6f18880464f5028e081b46be46a45c594 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:01:02 +0000 Subject: [PATCH 0449/1075] [WSO2 Release] [Jenkins #2989] [Release 4.0.70] prepare release v4.0.70 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e5818b09..f1bdd6754 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.70-SNAPSHOT + 4.0.70 ../pom.xml From b589cb9eb41630cf9da4444319afa7a3851f533b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:01:02 +0000 Subject: [PATCH 0450/1075] [WSO2 Release] [Jenkins #2989] [Release 4.0.70] prepare release v4.0.70 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e9d03a5f0..19f2a2ece 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.70-SNAPSHOT + 4.0.70 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.70-SNAPSHOT + 4.0.70 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e9f171356e45aed36cb455b83ac16686c798ae9b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:01:15 +0000 Subject: [PATCH 0451/1075] [WSO2 Release] [Jenkins #2989] [Release 4.0.70] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f1bdd6754..f483971a2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.70 + 4.0.71-SNAPSHOT ../pom.xml From 9532116e46cc8cea6a62dc41002541aa7e78dcd6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:01:15 +0000 Subject: [PATCH 0452/1075] [WSO2 Release] [Jenkins #2989] [Release 4.0.70] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 19f2a2ece..777a80fb2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.70 + 4.0.71-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.70 + 4.0.71-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ba839cc5d1e6435952d0ec867c5fb7810d63cbfe Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:38:10 +0000 Subject: [PATCH 0453/1075] [WSO2 Release] [Jenkins #2990] [Release 4.0.71] prepare release v4.0.71 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f483971a2..3f595b7de 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.71-SNAPSHOT + 4.0.71 ../pom.xml From e7a7607b01a69feebcd1721c2a0ec736d89c07b5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:38:10 +0000 Subject: [PATCH 0454/1075] [WSO2 Release] [Jenkins #2990] [Release 4.0.71] prepare release v4.0.71 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 777a80fb2..1cb801891 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.71-SNAPSHOT + 4.0.71 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.71-SNAPSHOT + 4.0.71 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 36d54d6085925398ad1a2381275859f65dc1b198 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:38:23 +0000 Subject: [PATCH 0455/1075] [WSO2 Release] [Jenkins #2990] [Release 4.0.71] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3f595b7de..bee42787c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.71 + 4.0.72-SNAPSHOT ../pom.xml From 49f880d481b3eda83b128bd1a217d6c4f68502d3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 31 Aug 2017 13:38:23 +0000 Subject: [PATCH 0456/1075] [WSO2 Release] [Jenkins #2990] [Release 4.0.71] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1cb801891..91da9d7f0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.71 + 4.0.72-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.71 + 4.0.72-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8e0626244729b426828bc1c54fff0e5c7a6c33b5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 1 Sep 2017 08:00:57 +0000 Subject: [PATCH 0457/1075] [WSO2 Release] [Jenkins #2993] [Release 4.0.72] prepare release v4.0.72 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bee42787c..6121761e4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.72-SNAPSHOT + 4.0.72 ../pom.xml From 55c28255788441d5876719e008f99532966c31e3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 1 Sep 2017 08:00:57 +0000 Subject: [PATCH 0458/1075] [WSO2 Release] [Jenkins #2993] [Release 4.0.72] prepare release v4.0.72 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 91da9d7f0..cfad562c2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.72-SNAPSHOT + 4.0.72 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.72-SNAPSHOT + 4.0.72 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 22b6cff989f4601e14864261e97df6d4cc690965 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 1 Sep 2017 08:01:13 +0000 Subject: [PATCH 0459/1075] [WSO2 Release] [Jenkins #2993] [Release 4.0.72] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6121761e4..be39c4842 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.72 + 4.0.73-SNAPSHOT ../pom.xml From 704ee688e6d072df2d5325bd37b2c4c5412f3fdb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 1 Sep 2017 08:01:13 +0000 Subject: [PATCH 0460/1075] [WSO2 Release] [Jenkins #2993] [Release 4.0.72] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cfad562c2..3d98d7c58 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.72 + 4.0.73-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.72 + 4.0.73-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f2c0146be4eaaf8fe449573711affc71e5460174 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 12:21:19 +0000 Subject: [PATCH 0461/1075] [WSO2 Release] [Jenkins #3001] [Release 4.0.73] prepare release v4.0.73 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index be39c4842..847751b3d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.73-SNAPSHOT + 4.0.73 ../pom.xml From 6c73e8209016ed5ae7f8c96d6dff41dc2bac6f93 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 12:21:19 +0000 Subject: [PATCH 0462/1075] [WSO2 Release] [Jenkins #3001] [Release 4.0.73] prepare release v4.0.73 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3d98d7c58..1ee77c82e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.73-SNAPSHOT + 4.0.73 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.73-SNAPSHOT + 4.0.73 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b773845d83fd22f93601b9ca4718ab26d03e068e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 12:21:32 +0000 Subject: [PATCH 0463/1075] [WSO2 Release] [Jenkins #3001] [Release 4.0.73] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 847751b3d..79bfa79dd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.73 + 4.0.74-SNAPSHOT ../pom.xml From a5db4cf3e869428431e2e60d66f206656c2816ab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 12:21:32 +0000 Subject: [PATCH 0464/1075] [WSO2 Release] [Jenkins #3001] [Release 4.0.73] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1ee77c82e..1888575e8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.73 + 4.0.74-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.73 + 4.0.74-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 401cb5b5ea24cee8f8213f59d37ee7424481de21 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 13:01:27 +0000 Subject: [PATCH 0465/1075] [WSO2 Release] [Jenkins #3002] [Release 4.0.74] prepare release v4.0.74 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 79bfa79dd..8e1ee30e9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.74-SNAPSHOT + 4.0.74 ../pom.xml From 7aeadc5d516542008646f22ee2c8866d73265f5c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 13:01:27 +0000 Subject: [PATCH 0466/1075] [WSO2 Release] [Jenkins #3002] [Release 4.0.74] prepare release v4.0.74 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1888575e8..4057858c8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.74-SNAPSHOT + 4.0.74 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.74-SNAPSHOT + 4.0.74 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 79c0a2bca264a3b77c53d3cf318a8a224d951e36 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 13:01:41 +0000 Subject: [PATCH 0467/1075] [WSO2 Release] [Jenkins #3002] [Release 4.0.74] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e1ee30e9..fa57713b5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.74 + 4.0.75-SNAPSHOT ../pom.xml From 6c469f84d7c9c034792fb0050b147e394085f1cc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 7 Sep 2017 13:01:41 +0000 Subject: [PATCH 0468/1075] [WSO2 Release] [Jenkins #3002] [Release 4.0.74] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4057858c8..fa02e3d98 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.74 + 4.0.75-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.74 + 4.0.75-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From eb0c0b32832a726f8c9dd983936e1f6997a46b14 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 11:01:36 +0000 Subject: [PATCH 0469/1075] [WSO2 Release] [Jenkins #3005] [Release 4.0.75] prepare release v4.0.75 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fa57713b5..b3e110193 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.75-SNAPSHOT + 4.0.75 ../pom.xml From 2ae870b121e2d1b8cfc235c46645312ade34ec8d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 11:01:36 +0000 Subject: [PATCH 0470/1075] [WSO2 Release] [Jenkins #3005] [Release 4.0.75] prepare release v4.0.75 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fa02e3d98..dcf6a7ede 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.75-SNAPSHOT + 4.0.75 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.75-SNAPSHOT + 4.0.75 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9d3fa4531089a42683b368982510ef4374a909f8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 11:01:50 +0000 Subject: [PATCH 0471/1075] [WSO2 Release] [Jenkins #3005] [Release 4.0.75] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b3e110193..45db8339a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.75 + 4.0.76-SNAPSHOT ../pom.xml From f1ba6e9917033b4c112f9ebd2f5b21ebbe0ee591 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 11:01:50 +0000 Subject: [PATCH 0472/1075] [WSO2 Release] [Jenkins #3005] [Release 4.0.75] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dcf6a7ede..2b23da792 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.75 + 4.0.76-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.75 + 4.0.76-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c3ef6f2884a885e59beb75403612ad6c4f56d514 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 12:38:16 +0000 Subject: [PATCH 0473/1075] [WSO2 Release] [Jenkins #3007] [Release 4.0.76] prepare release v4.0.76 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 45db8339a..b06ddbefb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.76-SNAPSHOT + 4.0.76 ../pom.xml From 1b780d55c914a33e6fa7943e1f3f9d698dabd23d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 12:38:16 +0000 Subject: [PATCH 0474/1075] [WSO2 Release] [Jenkins #3007] [Release 4.0.76] prepare release v4.0.76 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2b23da792..dd5545fe5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.76-SNAPSHOT + 4.0.76 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.76-SNAPSHOT + 4.0.76 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 513b81d6f138e5a47330c4e3fae524fe0d835d58 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 12:38:30 +0000 Subject: [PATCH 0475/1075] [WSO2 Release] [Jenkins #3007] [Release 4.0.76] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b06ddbefb..5b7a85670 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.76 + 4.0.77-SNAPSHOT ../pom.xml From fe4f786285bdc487d63a08c0f45e52452a49ad40 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 8 Sep 2017 12:38:30 +0000 Subject: [PATCH 0476/1075] [WSO2 Release] [Jenkins #3007] [Release 4.0.76] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dd5545fe5..d6f9203b9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.76 + 4.0.77-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.76 + 4.0.77-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 3480efb016dc1a5f655b66f2fd3cfce2c0b06639 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 11 Sep 2017 09:16:54 +0000 Subject: [PATCH 0477/1075] [WSO2 Release] [Jenkins #3009] [Release 4.0.77] prepare release v4.0.77 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5b7a85670..7d0bb6848 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.77-SNAPSHOT + 4.0.77 ../pom.xml From 086cddf10ea67944b13cd562f16a76e9a22228e1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 11 Sep 2017 09:16:54 +0000 Subject: [PATCH 0478/1075] [WSO2 Release] [Jenkins #3009] [Release 4.0.77] prepare release v4.0.77 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d6f9203b9..be6003333 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.77-SNAPSHOT + 4.0.77 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.77-SNAPSHOT + 4.0.77 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7d8827e928b408e3d43e33dadcaa0a895202de98 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 11 Sep 2017 09:17:08 +0000 Subject: [PATCH 0479/1075] [WSO2 Release] [Jenkins #3009] [Release 4.0.77] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7d0bb6848..05dba7660 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.77 + 4.0.78-SNAPSHOT ../pom.xml From 403ac523d53652f8b19f4f88f4e94af2b4db9914 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 11 Sep 2017 09:17:08 +0000 Subject: [PATCH 0480/1075] [WSO2 Release] [Jenkins #3009] [Release 4.0.77] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index be6003333..35d59bb8e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.77 + 4.0.78-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.77 + 4.0.78-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 144c07030d0bc002134163bb417fd1daaffe9a86 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 07:20:51 +0000 Subject: [PATCH 0481/1075] [WSO2 Release] [Jenkins #3011] [Release 4.0.78] prepare release v4.0.78 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 05dba7660..37c6db31c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.78-SNAPSHOT + 4.0.78 ../pom.xml From 119da6a8e33b4ad19979e01f573f8b18684568ba Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 07:20:51 +0000 Subject: [PATCH 0482/1075] [WSO2 Release] [Jenkins #3011] [Release 4.0.78] prepare release v4.0.78 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 35d59bb8e..e49b9a91e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.78-SNAPSHOT + 4.0.78 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.78-SNAPSHOT + 4.0.78 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 45ab538ad679c8858bbf54413f5187e4be40a53c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 07:21:05 +0000 Subject: [PATCH 0483/1075] [WSO2 Release] [Jenkins #3011] [Release 4.0.78] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 37c6db31c..b1777618f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.78 + 4.0.79-SNAPSHOT ../pom.xml From 4de92a5b26c1a1a2fd2eb80f254ce2d291096901 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 07:21:05 +0000 Subject: [PATCH 0484/1075] [WSO2 Release] [Jenkins #3011] [Release 4.0.78] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e49b9a91e..7336a22e4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.78 + 4.0.79-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.78 + 4.0.79-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 6791ea1d42bd89b05094e3338f74c71bc3b04d84 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 10:24:29 +0000 Subject: [PATCH 0485/1075] [WSO2 Release] [Jenkins #3013] [Release 4.0.79] prepare release v4.0.79 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1777618f..4a9c52537 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.79-SNAPSHOT + 4.0.79 ../pom.xml From a36e23192c98da6745047d1f06ece6a493e780d9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 10:24:29 +0000 Subject: [PATCH 0486/1075] [WSO2 Release] [Jenkins #3013] [Release 4.0.79] prepare release v4.0.79 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7336a22e4..f22f1ce0d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.79-SNAPSHOT + 4.0.79 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.79-SNAPSHOT + 4.0.79 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ac18d54b5496d84a7e833f1f79b7b6f43d5bc9ff Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 10:24:44 +0000 Subject: [PATCH 0487/1075] [WSO2 Release] [Jenkins #3013] [Release 4.0.79] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4a9c52537..099663c8d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.79 + 4.0.80-SNAPSHOT ../pom.xml From 93a7f15ce78f1fc13b4df8bc57fa79bce46dff5a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Sep 2017 10:24:44 +0000 Subject: [PATCH 0488/1075] [WSO2 Release] [Jenkins #3013] [Release 4.0.79] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f22f1ce0d..7d836bb43 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.79 + 4.0.80-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.79 + 4.0.80-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0a6a237217b2c1b169e7de7211b5d00c90c16e08 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Sep 2017 12:19:50 +0000 Subject: [PATCH 0489/1075] [WSO2 Release] [Jenkins #3015] [Release 4.0.80] prepare release v4.0.80 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 099663c8d..5a154c099 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.80-SNAPSHOT + 4.0.80 ../pom.xml From ede6f143e7c130269184213f339b830f620a0c70 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Sep 2017 12:19:50 +0000 Subject: [PATCH 0490/1075] [WSO2 Release] [Jenkins #3015] [Release 4.0.80] prepare release v4.0.80 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7d836bb43..2d17f8bfe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.80-SNAPSHOT + 4.0.80 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.80-SNAPSHOT + 4.0.80 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 3e0acd9925acb9407d4a52e2ad89722df3c537b4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Sep 2017 12:20:04 +0000 Subject: [PATCH 0491/1075] [WSO2 Release] [Jenkins #3015] [Release 4.0.80] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5a154c099..ade0fd038 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.80 + 4.0.81-SNAPSHOT ../pom.xml From 7e2936011b70ce3a893614d8050c33c909453d57 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Sep 2017 12:20:04 +0000 Subject: [PATCH 0492/1075] [WSO2 Release] [Jenkins #3015] [Release 4.0.80] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2d17f8bfe..a4da49725 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.80 + 4.0.81-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.80 + 4.0.81-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 22419d9ea77629ce7eb66015e5fcb306847d9db4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 19 Sep 2017 09:00:19 +0000 Subject: [PATCH 0493/1075] [WSO2 Release] [Jenkins #3017] [Release 4.0.81] prepare release v4.0.81 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ade0fd038..e7f2af5ec 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.81-SNAPSHOT + 4.0.81 ../pom.xml From a7ec9a3b3ebc602613aff9a4fa89976f5cb84880 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 19 Sep 2017 09:00:19 +0000 Subject: [PATCH 0494/1075] [WSO2 Release] [Jenkins #3017] [Release 4.0.81] prepare release v4.0.81 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a4da49725..83807499c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.81-SNAPSHOT + 4.0.81 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.81-SNAPSHOT + 4.0.81 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7e025ba0eb4e155cef59481f37c8b2ac635008d4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 19 Sep 2017 09:00:33 +0000 Subject: [PATCH 0495/1075] [WSO2 Release] [Jenkins #3017] [Release 4.0.81] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e7f2af5ec..cb926020f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.81 + 4.0.82-SNAPSHOT ../pom.xml From 7987411f1d0e084579d9e31a8ad37567049c2c99 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 19 Sep 2017 09:00:33 +0000 Subject: [PATCH 0496/1075] [WSO2 Release] [Jenkins #3017] [Release 4.0.81] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 83807499c..0d2079638 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.81 + 4.0.82-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.81 + 4.0.82-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9de553b4d753aa3e9c69eb4e705217a0566e19c6 Mon Sep 17 00:00:00 2001 From: Ace Date: Thu, 21 Sep 2017 12:00:26 +0530 Subject: [PATCH 0497/1075] correcting pom versions and bumping APIM dependency --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ade0fd038..cb926020f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.81-SNAPSHOT + 4.0.82-SNAPSHOT ../pom.xml From 34f4121158d8b3cd977159c800e44bb4c26f2b90 Mon Sep 17 00:00:00 2001 From: Ace Date: Thu, 21 Sep 2017 12:00:26 +0530 Subject: [PATCH 0498/1075] correcting pom versions and bumping APIM dependency --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a4da49725..0d2079638 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.81-SNAPSHOT + 4.0.82-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.81-SNAPSHOT + 4.0.82-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a7b16e78a8203a50187fd9c4142f9add387aafac Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 21 Sep 2017 10:51:08 +0000 Subject: [PATCH 0499/1075] [WSO2 Release] [Jenkins #3019] [Release 4.0.82] prepare release v4.0.82 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cb926020f..9f90719b8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.82-SNAPSHOT + 4.0.82 ../pom.xml From 26c57ab82feefd4a78ce03e19132d9f73bed3592 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 21 Sep 2017 10:51:08 +0000 Subject: [PATCH 0500/1075] [WSO2 Release] [Jenkins #3019] [Release 4.0.82] prepare release v4.0.82 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0d2079638..22dd9b83d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.82-SNAPSHOT + 4.0.82 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.82-SNAPSHOT + 4.0.82 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From cc4a27a8cf0b30e4b073c904451a3cfe5fd3459f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 21 Sep 2017 10:51:23 +0000 Subject: [PATCH 0501/1075] [WSO2 Release] [Jenkins #3019] [Release 4.0.82] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9f90719b8..6093f41f6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.82 + 4.0.83-SNAPSHOT ../pom.xml From 9d02a27e3bd4b679c1186aa00e77557cbdf2fefd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 21 Sep 2017 10:51:23 +0000 Subject: [PATCH 0502/1075] [WSO2 Release] [Jenkins #3019] [Release 4.0.82] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 22dd9b83d..2ba6d3fd0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.82 + 4.0.83-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.82 + 4.0.83-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8efa3faaf5c1c222b6d38ba6447cc32fe5bd7391 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 22 Sep 2017 06:11:46 +0000 Subject: [PATCH 0503/1075] [WSO2 Release] [Jenkins #3021] [Release 4.0.83] prepare release v4.0.83 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6093f41f6..02e42674c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.83-SNAPSHOT + 4.0.83 ../pom.xml From 8e2a3d21555a6b3b15ab551d93208dee06240897 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 22 Sep 2017 06:11:46 +0000 Subject: [PATCH 0504/1075] [WSO2 Release] [Jenkins #3021] [Release 4.0.83] prepare release v4.0.83 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2ba6d3fd0..bb1d0be41 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.83-SNAPSHOT + 4.0.83 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.83-SNAPSHOT + 4.0.83 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 80081392f4eadac1c9b599621c626e0e4b004828 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 22 Sep 2017 06:11:59 +0000 Subject: [PATCH 0505/1075] [WSO2 Release] [Jenkins #3021] [Release 4.0.83] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 02e42674c..831d061d1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.83 + 4.0.84-SNAPSHOT ../pom.xml From f3b59a297b01aec95fcd3bc066b8942864ef7a0d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 22 Sep 2017 06:11:59 +0000 Subject: [PATCH 0506/1075] [WSO2 Release] [Jenkins #3021] [Release 4.0.83] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index bb1d0be41..8cb3ff91c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.83 + 4.0.84-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.83 + 4.0.84-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9c1fcd27d100235715c190b68c889756ccc173a2 Mon Sep 17 00:00:00 2001 From: megala21 Date: Mon, 25 Sep 2017 00:41:01 +0530 Subject: [PATCH 0507/1075] Adding jacoco plugins for unit coverage --- pom.xml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pom.xml b/pom.xml index 831d061d1..70e1bfbea 100644 --- a/pom.xml +++ b/pom.xml @@ -84,6 +84,32 @@ + + org.jacoco + jacoco-maven-plugin + + ${basedir}/target/coverage-reports/jacoco-unit.exec + + + + jacoco-initialize + + prepare-agent + + + + jacoco-site + test + + report + + + ${basedir}/target/coverage-reports/jacoco-unit.exec + ${basedir}/target/coverage-reports/site + + + + \ No newline at end of file From 20686bde1b248d4ea3c12bb93038544b9384bb6a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 25 Sep 2017 04:01:32 +0000 Subject: [PATCH 0508/1075] [WSO2 Release] [Jenkins #3023] [Release 4.0.84] prepare release v4.0.84 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 70e1bfbea..0d771038b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.84-SNAPSHOT + 4.0.84 ../pom.xml From c70e27acceaf2c56e6929bc47f85e60dd8dc0cfd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 25 Sep 2017 04:01:32 +0000 Subject: [PATCH 0509/1075] [WSO2 Release] [Jenkins #3023] [Release 4.0.84] prepare release v4.0.84 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8cb3ff91c..63c6d492f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.84-SNAPSHOT + 4.0.84 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.84-SNAPSHOT + 4.0.84 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 35c5bad8713c8eef3cd25d9894c5719e04b422d9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 25 Sep 2017 04:01:48 +0000 Subject: [PATCH 0510/1075] [WSO2 Release] [Jenkins #3023] [Release 4.0.84] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0d771038b..eaf3f3d3c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.84 + 4.0.85-SNAPSHOT ../pom.xml From da751ca2c5d16de88e115765a8a6db41e206da64 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 25 Sep 2017 04:01:48 +0000 Subject: [PATCH 0511/1075] [WSO2 Release] [Jenkins #3023] [Release 4.0.84] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 63c6d492f..d4ac8c454 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.84 + 4.0.85-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.84 + 4.0.85-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From af639983322ca26b2bdc5aa7e797c143f9f058f8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 26 Sep 2017 05:11:14 +0000 Subject: [PATCH 0512/1075] [WSO2 Release] [Jenkins #3025] [Release 4.0.85] prepare release v4.0.85 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index eaf3f3d3c..418cea316 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.85-SNAPSHOT + 4.0.85 ../pom.xml From 80e95c01a303573d6c5a5f4e1905e76a5092ac1a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 26 Sep 2017 05:11:14 +0000 Subject: [PATCH 0513/1075] [WSO2 Release] [Jenkins #3025] [Release 4.0.85] prepare release v4.0.85 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d4ac8c454..9d153a7ca 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.85-SNAPSHOT + 4.0.85 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.85-SNAPSHOT + 4.0.85 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e612dce51af23cf08fec2f23cde3f6608f1f4e81 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 26 Sep 2017 05:11:29 +0000 Subject: [PATCH 0514/1075] [WSO2 Release] [Jenkins #3025] [Release 4.0.85] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 418cea316..5d7bd795e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.85 + 4.0.86-SNAPSHOT ../pom.xml From 1344053b13c4e54d938ae6ce0ca0928d7b3e5456 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 26 Sep 2017 05:11:29 +0000 Subject: [PATCH 0515/1075] [WSO2 Release] [Jenkins #3025] [Release 4.0.85] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9d153a7ca..ac04703cc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.85 + 4.0.86-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.85 + 4.0.86-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 3448ec5b0bc09d0f1cb489f755ac1855f346490f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 29 Sep 2017 12:53:25 +0000 Subject: [PATCH 0516/1075] [WSO2 Release] [Jenkins #3028] [Release 4.0.86] prepare release v4.0.86 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5d7bd795e..3e8258c0d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.86-SNAPSHOT + 4.0.86 ../pom.xml From 612e44ce040599e6ca9410b6d378216b8bf30f29 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 29 Sep 2017 12:53:25 +0000 Subject: [PATCH 0517/1075] [WSO2 Release] [Jenkins #3028] [Release 4.0.86] prepare release v4.0.86 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ac04703cc..b70074f9f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.86-SNAPSHOT + 4.0.86 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.86-SNAPSHOT + 4.0.86 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b3a2746dcd52c7518fa50bf32aeb5a1945750ae7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 29 Sep 2017 12:53:39 +0000 Subject: [PATCH 0518/1075] [WSO2 Release] [Jenkins #3028] [Release 4.0.86] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3e8258c0d..d6a7302b6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.86 + 4.0.87-SNAPSHOT ../pom.xml From 55ffe02785825d4317f021a4cb501216c25af140 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 29 Sep 2017 12:53:39 +0000 Subject: [PATCH 0519/1075] [WSO2 Release] [Jenkins #3028] [Release 4.0.86] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b70074f9f..b64229b72 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.86 + 4.0.87-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.86 + 4.0.87-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 841abffd7894f5e2461095c04060ff58669813ec Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 4 Oct 2017 13:14:58 +0530 Subject: [PATCH 0520/1075] [WSO2 Release] [Jenkins #3032] [Release 4.0.87] prepare release v4.0.87 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d6a7302b6..55267b607 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.87-SNAPSHOT + 4.0.87 ../pom.xml From f4ed5a2c48e11de664558f3cfe969aa8fd15b35a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 4 Oct 2017 13:14:58 +0530 Subject: [PATCH 0521/1075] [WSO2 Release] [Jenkins #3032] [Release 4.0.87] prepare release v4.0.87 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b64229b72..2f1b8ebc9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.87-SNAPSHOT + 4.0.87 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.87-SNAPSHOT + 4.0.87 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d06a6d509dde9ca6c031b7c982b899eac2e89eb1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 4 Oct 2017 13:15:15 +0530 Subject: [PATCH 0522/1075] [WSO2 Release] [Jenkins #3032] [Release 4.0.87] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 55267b607..587458e90 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.87 + 4.0.88-SNAPSHOT ../pom.xml From 1aca2f48f1aee3d3c531704c0654d2ba8eb2b835 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 4 Oct 2017 13:15:15 +0530 Subject: [PATCH 0523/1075] [WSO2 Release] [Jenkins #3032] [Release 4.0.87] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2f1b8ebc9..61fd4c9de 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.87 + 4.0.88-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.87 + 4.0.88-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 24798f7c95cf1f74e73d13afc2290ec93e479939 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 13 Oct 2017 15:54:28 +0000 Subject: [PATCH 0524/1075] [WSO2 Release] [Jenkins #3035] [Release 4.0.88] prepare release v4.0.88 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 587458e90..2333f92d2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.88-SNAPSHOT + 4.0.88 ../pom.xml From d9d9a10dfd6105e4f2a4aeb161227bcb13a129f9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 13 Oct 2017 15:54:28 +0000 Subject: [PATCH 0525/1075] [WSO2 Release] [Jenkins #3035] [Release 4.0.88] prepare release v4.0.88 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 61fd4c9de..a36c8e502 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.88-SNAPSHOT + 4.0.88 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.88-SNAPSHOT + 4.0.88 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fdfe130814a7928995c059e88331a6ba1bd7b6ba Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 13 Oct 2017 15:54:42 +0000 Subject: [PATCH 0526/1075] [WSO2 Release] [Jenkins #3035] [Release 4.0.88] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2333f92d2..5254a0eff 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.88 + 4.0.89-SNAPSHOT ../pom.xml From 1af50fd4ef026177e7d82e27133391e7f52bc753 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 13 Oct 2017 15:54:42 +0000 Subject: [PATCH 0527/1075] [WSO2 Release] [Jenkins #3035] [Release 4.0.88] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a36c8e502..1947a2788 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.88 + 4.0.89-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.88 + 4.0.89-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0a87c9c8c0c2dd441a60a6a97103b4c5d86bd372 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 09:34:54 +0000 Subject: [PATCH 0528/1075] [WSO2 Release] [Jenkins #3037] [Release 4.0.89] prepare release v4.0.89 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5254a0eff..7a41a7b68 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.89-SNAPSHOT + 4.0.89 ../pom.xml From a771188d7d02a0ef58774bb976b2d84a296eaacb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 09:34:54 +0000 Subject: [PATCH 0529/1075] [WSO2 Release] [Jenkins #3037] [Release 4.0.89] prepare release v4.0.89 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1947a2788..d48f97975 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.89-SNAPSHOT + 4.0.89 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.89-SNAPSHOT + 4.0.89 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 77065bf0fe41198df31f4c905e5cc6c9d39caecb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 09:35:08 +0000 Subject: [PATCH 0530/1075] [WSO2 Release] [Jenkins #3037] [Release 4.0.89] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7a41a7b68..d903504cc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.89 + 4.0.90-SNAPSHOT ../pom.xml From 18617fb8839c0885e00ff251116dc3448e867701 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 09:35:08 +0000 Subject: [PATCH 0531/1075] [WSO2 Release] [Jenkins #3037] [Release 4.0.89] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d48f97975..9bcd6e9f6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.89 + 4.0.90-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.89 + 4.0.90-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 601c4ea0f9f87a359f4d3ca6d1d790011be8ceab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 11:36:51 +0000 Subject: [PATCH 0532/1075] [WSO2 Release] [Jenkins #3039] [Release 4.0.90] prepare release v4.0.90 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d903504cc..b204a4f51 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.90-SNAPSHOT + 4.0.90 ../pom.xml From b9185f8bd234b903ab2afe60807d78ca42ac5a6d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 11:36:51 +0000 Subject: [PATCH 0533/1075] [WSO2 Release] [Jenkins #3039] [Release 4.0.90] prepare release v4.0.90 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9bcd6e9f6..3ee8cf827 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.90-SNAPSHOT + 4.0.90 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.90-SNAPSHOT + 4.0.90 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d085b78dcf5d9b05b89f1ffa45ac039c25f1c5dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 11:37:05 +0000 Subject: [PATCH 0534/1075] [WSO2 Release] [Jenkins #3039] [Release 4.0.90] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b204a4f51..bcbed75df 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.90 + 4.0.91-SNAPSHOT ../pom.xml From a4014f60e74f0ac669a3cf319a373ad55fc300df Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 18 Oct 2017 11:37:05 +0000 Subject: [PATCH 0535/1075] [WSO2 Release] [Jenkins #3039] [Release 4.0.90] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3ee8cf827..661993c1a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.90 + 4.0.91-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.90 + 4.0.91-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1ccae434cfadc35d38e5e5a99db4d7af970ce167 Mon Sep 17 00:00:00 2001 From: Menaka Jayawardena Date: Tue, 24 Oct 2017 10:41:55 +0530 Subject: [PATCH 0536/1075] Code formatting and refactoring for device-mgt-plugins siddhi extension. --- ...java => GetPropertyFunctionExtension.java} | 27 ++++++++++--------- src/main/resources/json.siddhiext | 2 +- .../json/getPropertyFunctionTestCase.java | 2 +- 3 files changed, 17 insertions(+), 14 deletions(-) rename src/main/java/org/wso2/extension/siddhi/execution/json/{getPropertyFunctionExtension.java => GetPropertyFunctionExtension.java} (82%) diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java b/src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java similarity index 82% rename from src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java rename to src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java index 8f68577a6..6bb8ddd72 100644 --- a/src/main/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionExtension.java +++ b/src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java @@ -33,9 +33,9 @@ import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; * Accept Type(s): (STRING, STRING) * Return Type(s): (STRING|INT|DOUBLE|FLOAT|OBJECT) */ -public class getPropertyFunctionExtension extends FunctionExecutor { +public class GetPropertyFunctionExtension extends FunctionExecutor { - Attribute.Type returnType = Attribute.Type.STRING; + private Attribute.Type returnType = Attribute.Type.STRING; @Override protected void init(ExpressionExecutor[] attributeExpressionExecutors, @@ -47,32 +47,34 @@ public class getPropertyFunctionExtension extends FunctionExecutor { } if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { throw new ExecutionPlanValidationException( - "Invalid parameter type found for the first argument of json:getProperty() function, " + "required " + "Invalid parameter type found for the first argument of json:getProperty() function, required " + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[0].getReturnType() .toString()); } if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { throw new ExecutionPlanValidationException( - "Invalid parameter type found for the second argument of json:getProperty() function, " + "required " - + Attribute.Type.STRING + ", but found " + attributeExpressionExecutors[1].getReturnType() - .toString()); + "Invalid parameter type found for the second argument of json:getProperty() function, required " + + Attribute.Type.STRING + ", but found " + + attributeExpressionExecutors[1].getReturnType().toString()); } } @Override protected Object execute(Object[] data) { if (data[0] == null) { - throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. First argument cannot be null"); + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function." + + " First argument cannot be null"); } if (data[1] == null) { - throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. Second argument cannot be null"); + throw new ExecutionPlanRuntimeException("Invalid input given to json:getProperty() function. " + + "Second argument cannot be null"); } String jsonString = (String) data[0]; String property = (String) data[1]; - JSONObject jsonObject = null; + Object jsonObject; try { - jsonObject = new JSONObject(jsonString); - return jsonObject.get(property).toString(); + jsonObject = new JSONObject(jsonString).get(property); + return jsonObject == null ? null : jsonObject.toString(); } catch (JSONException e) { throw new ExecutionPlanRuntimeException("Cannot parse JSON String in json:getPeroperty() function. " + e); } @@ -80,7 +82,8 @@ public class getPropertyFunctionExtension extends FunctionExecutor { @Override protected Object execute(Object data) { - return null; //Since the getProperty function takes in 2 parameters, this method does not get called. Hence,not implemented. + return null; //Since the getProperty function takes in 2 parameters, this method does not get called. + // Hence,not implemented. } @Override diff --git a/src/main/resources/json.siddhiext b/src/main/resources/json.siddhiext index f1886dd63..f2a86a7eb 100644 --- a/src/main/resources/json.siddhiext +++ b/src/main/resources/json.siddhiext @@ -16,4 +16,4 @@ # under the License. # -getProperty=org.wso2.extension.siddhi.execution.json.getPropertyFunctionExtension +getProperty=org.wso2.extension.siddhi.execution.json.GetPropertyFunctionExtension diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java index 7bc66478c..c1c49f788 100644 --- a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java @@ -45,7 +45,7 @@ public class getPropertyFunctionTestCase { @Test public void testGetPropertyFunctionExtension() throws InterruptedException { - log.info("getPropertyFunctionExtension TestCase"); + log.info("GetPropertyFunctionExtension TestCase"); SiddhiManager siddhiManager = new SiddhiManager(); String inStreamDefinition = "define stream inputStream (payload string, id string, volume long);"; From 30c4d8128a10300ead0a2e38058e8e5cb0d5570b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Oct 2017 07:46:26 +0000 Subject: [PATCH 0537/1075] [WSO2 Release] [Jenkins #3049] [Release 4.0.91] prepare release v4.0.91 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bcbed75df..48cb32830 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.91-SNAPSHOT + 4.0.91 ../pom.xml From e7064b2913b78e63204c4cd59acb010e2528d5d2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Oct 2017 07:46:26 +0000 Subject: [PATCH 0538/1075] [WSO2 Release] [Jenkins #3049] [Release 4.0.91] prepare release v4.0.91 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 661993c1a..4b5c059f2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.91-SNAPSHOT + 4.0.91 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.91-SNAPSHOT + 4.0.91 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 61f8a53660024b2e0352733d38c203a015f2f331 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Oct 2017 07:46:40 +0000 Subject: [PATCH 0539/1075] [WSO2 Release] [Jenkins #3049] [Release 4.0.91] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 48cb32830..cbb14b984 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.91 + 4.0.92-SNAPSHOT ../pom.xml From 07d5d84073f0f55a6ba839f36ebc673d70b7b1f3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 31 Oct 2017 07:46:40 +0000 Subject: [PATCH 0540/1075] [WSO2 Release] [Jenkins #3049] [Release 4.0.91] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4b5c059f2..0a635c89f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.91 + 4.0.92-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.91 + 4.0.92-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9eb96b8e56559d52cd69818afe51e614e35f0420 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Nov 2017 11:56:35 +0000 Subject: [PATCH 0541/1075] [WSO2 Release] [Jenkins #3051] [Release 4.0.92] prepare release v4.0.92 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cbb14b984..f6a341838 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.92-SNAPSHOT + 4.0.92 ../pom.xml From 8e87293b804403380e35bc7a53d3fc50ff195025 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Nov 2017 11:56:35 +0000 Subject: [PATCH 0542/1075] [WSO2 Release] [Jenkins #3051] [Release 4.0.92] prepare release v4.0.92 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0a635c89f..906588d68 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.92-SNAPSHOT + 4.0.92 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.92-SNAPSHOT + 4.0.92 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ded85a9a11ffe4ec5636c6a9370df54bc0b5c4fd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Nov 2017 11:56:51 +0000 Subject: [PATCH 0543/1075] [WSO2 Release] [Jenkins #3051] [Release 4.0.92] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f6a341838..57fa74dd6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.92 + 4.0.93-SNAPSHOT ../pom.xml From 965cd1b64bbcf2a717a138ea6ce621ae09621e02 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 2 Nov 2017 11:56:51 +0000 Subject: [PATCH 0544/1075] [WSO2 Release] [Jenkins #3051] [Release 4.0.92] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 906588d68..19f015aac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.92 + 4.0.93-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.92 + 4.0.93-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2300cf796f9ae271c0df3b077abbae57ed954f5b Mon Sep 17 00:00:00 2001 From: charitha Date: Thu, 16 Nov 2017 21:10:28 +0530 Subject: [PATCH 0545/1075] Add siddhi extensions to reflect get methods in device management core service --- pom.xml | 153 +++ .../GetDevicesOfStatusFunctionExecutor.java | 132 ++ .../GetDevicesOfUserFunctionExecutor.java | 143 ++ .../HasDevicesOfStatusFunctionExecutor.java | 134 ++ .../HasDevicesOfUserFunctionExecutor.java | 147 ++ .../device/IsEnrolledFunctionExecutor.java | 122 ++ .../device/IsInGroupFunctionExecutor.java | 131 ++ .../siddhi/device/utils/DeviceUtils.java | 67 + src/main/resources/device.siddhiext | 24 + .../device/BaseDeviceManagementTest.java | 132 ++ .../siddhi/device/ExtensionTestCase.java | 281 ++++ .../device/test/util/DataSourceConfig.java | 76 + .../device/test/util/SiddhiTestHelper.java | 33 + .../device/test/util/TestDataHolder.java | 127 ++ .../util/TestDeviceManagementService.java | 111 ++ .../device/test/util/TestDeviceManager.java | 129 ++ .../siddhi/device/test/util/TestUtils.java | 92 ++ .../resources/carbon-home/dbscripts/h2.sql | 429 ++++++ .../repository/conf/axis2/axis2.xml | 723 ++++++++++ .../repository/conf/axis2/axis2_client.xml | 300 ++++ .../repository/conf/axis2/tenant-axis2.xml | 285 ++++ .../carbon-home/repository/conf/carbon.xml | 656 +++++++++ .../repository/conf/cdm-config.xml | 96 ++ .../conf/datasources/master-datasources.xml | 68 + .../conf/etc/bundle-config/README.txt | 12 + .../carboncontext-osgi-services.properties | 3 + .../repository/conf/etc/config-validation.xml | 37 + .../carbon-home/repository/conf/etc/jmx.xml | 32 + .../repository/conf/etc/launch.ini | 258 ++++ .../conf/etc/logging-bridge.properties | 65 + .../repository/conf/etc/mime.mappings | 27 + .../repository/conf/etc/mime.types | 734 ++++++++++ .../repository/conf/etc/osgi-debug.options | 95 ++ .../repository/conf/log4j.properties | 165 +++ .../carbon-home/repository/conf/registry.xml | 106 ++ .../conf/security/authenticators.xml | 73 + .../conf/tomcat/carbon/META-INF/context.xml | 31 + .../conf/tomcat/carbon/WEB-INF/web.xml | 61 + .../conf/tomcat/catalina-server.xml | 97 ++ .../repository/conf/tomcat/tomcat-users.xml | 16 + .../repository/conf/tomcat/web.xml | 1220 +++++++++++++++++ .../carbon-home/repository/conf/user-mgt.xml | 380 +++++ .../config/datasource/data-source-config.xml | 25 + src/test/resources/log4j.properties | 36 + src/test/resources/sql/h2.sql | 531 +++++++ src/test/resources/testng.xml | 31 + .../user-test/user-mgt-registry-test.xml | 101 ++ 47 files changed, 8727 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/IsInGroupFunctionExecutor.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java create mode 100644 src/main/resources/device.siddhiext create mode 100644 src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java create mode 100644 src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java create mode 100644 src/test/java/org/wso2/extension/siddhi/device/test/util/DataSourceConfig.java create mode 100644 src/test/java/org/wso2/extension/siddhi/device/test/util/SiddhiTestHelper.java create mode 100644 src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java create mode 100644 src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java create mode 100644 src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java create mode 100644 src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java create mode 100644 src/test/resources/carbon-home/dbscripts/h2.sql create mode 100644 src/test/resources/carbon-home/repository/conf/axis2/axis2.xml create mode 100644 src/test/resources/carbon-home/repository/conf/axis2/axis2_client.xml create mode 100644 src/test/resources/carbon-home/repository/conf/axis2/tenant-axis2.xml create mode 100644 src/test/resources/carbon-home/repository/conf/carbon.xml create mode 100644 src/test/resources/carbon-home/repository/conf/cdm-config.xml create mode 100644 src/test/resources/carbon-home/repository/conf/datasources/master-datasources.xml create mode 100644 src/test/resources/carbon-home/repository/conf/etc/bundle-config/README.txt create mode 100644 src/test/resources/carbon-home/repository/conf/etc/carboncontext-osgi-services.properties create mode 100644 src/test/resources/carbon-home/repository/conf/etc/config-validation.xml create mode 100644 src/test/resources/carbon-home/repository/conf/etc/jmx.xml create mode 100644 src/test/resources/carbon-home/repository/conf/etc/launch.ini create mode 100644 src/test/resources/carbon-home/repository/conf/etc/logging-bridge.properties create mode 100755 src/test/resources/carbon-home/repository/conf/etc/mime.mappings create mode 100644 src/test/resources/carbon-home/repository/conf/etc/mime.types create mode 100644 src/test/resources/carbon-home/repository/conf/etc/osgi-debug.options create mode 100644 src/test/resources/carbon-home/repository/conf/log4j.properties create mode 100644 src/test/resources/carbon-home/repository/conf/registry.xml create mode 100644 src/test/resources/carbon-home/repository/conf/security/authenticators.xml create mode 100644 src/test/resources/carbon-home/repository/conf/tomcat/carbon/META-INF/context.xml create mode 100644 src/test/resources/carbon-home/repository/conf/tomcat/carbon/WEB-INF/web.xml create mode 100644 src/test/resources/carbon-home/repository/conf/tomcat/catalina-server.xml create mode 100644 src/test/resources/carbon-home/repository/conf/tomcat/tomcat-users.xml create mode 100644 src/test/resources/carbon-home/repository/conf/tomcat/web.xml create mode 100644 src/test/resources/carbon-home/repository/conf/user-mgt.xml create mode 100644 src/test/resources/config/datasource/data-source-config.xml create mode 100644 src/test/resources/log4j.properties create mode 100644 src/test/resources/sql/h2.sql create mode 100644 src/test/resources/testng.xml create mode 100644 src/test/resources/user-test/user-mgt-registry-test.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..996094ec1 --- /dev/null +++ b/pom.xml @@ -0,0 +1,153 @@ + + + + + + + org.wso2.carbon.devicemgt-plugins + siddhi-extensions + 4.0.91-SNAPSHOT + ../pom.xml + + + 4.0.0 + org.wso2.extension.siddhi.device + bundle + WSO2 Siddhi Execution Extension - Device management Core functionality as Siddhi extension + http://wso2.org + + + + org.wso2.carbon.devicemgt + org.wso2.carbon.device.mgt.core + + + org.wso2.carbon.devicemgt + org.wso2.carbon.device.mgt.common + + + org.wso2.siddhi + siddhi-core + + + org.wso2.siddhi + siddhi-query-api + + + log4j + log4j + + + org.json.wso2 + json + + + com.h2database.wso2 + h2-database-engine + test + + + org.testng + testng + test + + + org.wso2.carbon + org.wso2.carbon.queuing + test + + + org.wso2.carbon + org.wso2.carbon.ndatasource.core + test + + + commons-dbcp.wso2 + commons-dbcp + test + + + commons-pool.wso2 + commons-pool + test + + + org.wso2.carbon + javax.cache.wso2 + test + + + commons-logging + commons-logging-api + RELEASE + + + asm + asm + RELEASE + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${wso2.maven.compiler.source} + ${wso2.maven.compiler.target} + + + + org.apache.felix + maven-bundle-plugin + true + + + ${project.artifactId} + ${project.artifactId} + + org.wso2.extension.siddhi.device, + org.wso2.extension.siddhi.device.* + + + org.json;version="${orbit.version.json.range}", + org.wso2.siddhi.core.*, + org.wso2.siddhi.query.api.*, + org.wso2.carbon.device.mgt.core.*, + org.wso2.carbon.device.mgt.common.*, + org.apache.commons.logging, + org.wso2.carbon.context + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + + file:src/test/resources/log4j.properties + + + src/test/resources/testng.xml + + + + + + \ No newline at end of file diff --git a/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java b/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java new file mode 100644 index 000000000..032021890 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java @@ -0,0 +1,132 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.json.JSONArray; +import org.wso2.carbon.device.mgt.common.Device; +import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.EnrolmentInfo; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; +import org.wso2.extension.siddhi.device.utils.DeviceUtils; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +import java.util.List; + +/** + * getDevicesOfStatus(status [, deviceType]) + * Returns devices with specified status + * Accept Type(s): (STRING, STRING) + * Return Type(s): (STRING) + */ +public class GetDevicesOfStatusFunctionExecutor extends FunctionExecutor { + + private static Log log = LogFactory.getLog(GetDevicesOfStatusFunctionExecutor.class); + private Attribute.Type returnType = Attribute.Type.STRING; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 1 && attributeExpressionExecutors.length != 2) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to device:getDevicesOfStatus() function, required 2 but found " + + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument (status) of device:getDevicesOfStatus() " + + "function, required " + Attribute.Type.STRING + " as status, but found " + + attributeExpressionExecutors[0].getReturnType().toString()); + } + if (attributeExpressionExecutors.length == 2 + && attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument (device type) of device:getDevicesOfStatus() " + + "function, required " + Attribute.Type.STRING + " as device type, but found " + + attributeExpressionExecutors[1].getReturnType().toString()); + } + } + + @Override + protected Object execute(Object[] data) { + if (data[0] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:getDevicesOfStatus() function. " + + "First argument cannot be null"); + } + if (data.length == 2 && data[1] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:getDevicesOfStatus() function. " + + "Second argument cannot be null"); + } + String status = (String) data[0]; + String deviceType = null; + if (data.length == 2) { + deviceType = (String) data[1]; + } + + JSONArray deviceIds = new JSONArray(); + try { + DeviceManagementProviderService deviceManagementProviderService = DeviceUtils.getDeviceManagementProviderService(); + List devices = deviceManagementProviderService.getDevicesByStatus(EnrolmentInfo.Status.valueOf(status), false); + for (Device device : devices) { + if (deviceType == null || deviceType.equalsIgnoreCase(device.getType())) { + deviceIds.put(device.getDeviceIdentifier()); + } + } + } catch (DeviceManagementException e) { + log.error("Error occurred while getting devices with status " + status, e); + } + return deviceIds.toString(); + } + + @Override + protected Object execute(Object data) { + return execute(new Object[]{data}); + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java b/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java new file mode 100644 index 000000000..27a82530e --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java @@ -0,0 +1,143 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.json.JSONArray; +import org.wso2.carbon.device.mgt.common.Device; +import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; +import org.wso2.extension.siddhi.device.utils.DeviceUtils; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +import java.util.List; + +/** + * getDevicesOfUser(user , deviceType [, status]) + * Returns list of ids of devices belongs to a user + * Accept Type(s): (STRING, STRING, STRING) + * Return Type(s): (STRING) + */ +public class GetDevicesOfUserFunctionExecutor extends FunctionExecutor { + + private static Log log = LogFactory.getLog(GetDevicesOfUserFunctionExecutor.class); + private Attribute.Type returnType = Attribute.Type.STRING; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 2 && attributeExpressionExecutors.length != 3) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to device:getDevicesOfUser() function, minimum 2, or 3 with " + + "optional. but found " + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument (user) of device:getDevicesOfUser() " + + "function, required " + Attribute.Type.STRING + " as user, but found " + + attributeExpressionExecutors[0].getReturnType().toString()); + } + if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument (device type) of device:getDevicesOfUser() " + + "function, required " + Attribute.Type.STRING + " as device type, but found " + + attributeExpressionExecutors[1].getReturnType().toString()); + } + if (attributeExpressionExecutors.length == 3 + && attributeExpressionExecutors[2].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid optional parameter type found for the third argument (status) of " + + "device:getDevicesOfUser() function, required " + Attribute.Type.STRING + " as status, but found " + + attributeExpressionExecutors[2].getReturnType().toString()); + } + } + + @Override + protected Object execute(Object[] data) { + if (data[0] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:getDevicesOfUser() function. " + + "First argument cannot be null"); + } + if (data[1] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:getDevicesOfUser() function. " + + "Second argument cannot be null"); + } + if (data.length == 3 && data[2] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:getDevicesOfUser() function. " + + "Third argument cannot be null"); + } + String user = (String) data[0]; + String deviceType = (String) data[1]; + String status = null; + if (data.length == 3) { + status = (String) data[2]; + } + + JSONArray deviceIds = new JSONArray(); + try { + DeviceManagementProviderService deviceManagementProviderService = DeviceUtils.getDeviceManagementProviderService(); + List devices = deviceManagementProviderService.getDevicesOfUser(user, deviceType, false); + for (Device device : devices) { + if (status == null || status.equalsIgnoreCase(device.getEnrolmentInfo().getStatus().toString())) { + deviceIds.put(device.getDeviceIdentifier()); + } + } + } catch (DeviceManagementException e) { + log.error("Error occurred while getting " + deviceType + " devices of user " + user + + ", with status " + status, e); + } + return deviceIds.toString(); + } + + @Override + protected Object execute(Object data) { + return null; //Since the getDevicesOfUser function takes in 2 or 3 parameters, this method does not get called. Hence,not implemented. + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java b/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java new file mode 100644 index 000000000..944394a1b --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java @@ -0,0 +1,134 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.device.mgt.common.Device; +import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.EnrolmentInfo; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; +import org.wso2.extension.siddhi.device.utils.DeviceUtils; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +import java.util.List; + +/** + * hasDevicesOfStatus(status [, deviceType]) + * Returns true if there are devices with specified status + * Accept Type(s): (STRING, STRING) + * Return Type(s): (BOOL) + */ +public class HasDevicesOfStatusFunctionExecutor extends FunctionExecutor { + + private static Log log = LogFactory.getLog(HasDevicesOfStatusFunctionExecutor.class); + private Attribute.Type returnType = Attribute.Type.BOOL; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 1 && attributeExpressionExecutors.length != 2) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to device:hasDevicesOfStatus() function, required 2 but found " + + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument (status) of device:hasDevicesOfStatus() " + + "function, required " + Attribute.Type.STRING + " as status, but found " + + attributeExpressionExecutors[0].getReturnType().toString()); + } + if (attributeExpressionExecutors.length == 2 + && attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument (device type) of device:hasDevicesOfStatus() " + + "function, required " + Attribute.Type.STRING + " as device type, but found " + + attributeExpressionExecutors[1].getReturnType().toString()); + } + } + + @Override + protected Object execute(Object[] data) { + if (data[0] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:hasDevicesOfStatus() function. " + + "First argument cannot be null"); + } + if (data.length == 2 && data[1] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:hasDevicesOfStatus() function. " + + "Second argument cannot be null"); + } + String status = (String) data[0]; + String deviceType = null; + if (data.length == 2) { + deviceType = (String) data[1]; + } + try { + DeviceManagementProviderService deviceManagementProviderService = DeviceUtils.getDeviceManagementProviderService(); + List devices = deviceManagementProviderService.getDevicesByStatus(EnrolmentInfo.Status.valueOf(status), false); + if (deviceType == null) { + return !devices.isEmpty(); + } else { + for (Device device : devices) { + if (deviceType.equalsIgnoreCase(device.getType())) { + return true; + } + } + return false; + } + } catch (DeviceManagementException e) { + log.error("Error occurred while getting devices with status " + status, e); + } + return false; + } + + @Override + protected Object execute(Object data) { + return execute(new Object[]{data}); + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java b/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java new file mode 100644 index 000000000..ffb72c7f6 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java @@ -0,0 +1,147 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.json.JSONArray; +import org.wso2.carbon.device.mgt.common.Device; +import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; +import org.wso2.extension.siddhi.device.utils.DeviceUtils; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +import java.util.List; + +/** + * hasDevicesOfUser(user , deviceType [, status]) + * Returns true if there are devices belonging to user + * Accept Type(s): (STRING, STRING, STRING) + * Return Type(s): (BOOL) + */ +public class HasDevicesOfUserFunctionExecutor extends FunctionExecutor { + + private static Log log = LogFactory.getLog(HasDevicesOfUserFunctionExecutor.class); + private Attribute.Type returnType = Attribute.Type.BOOL; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 2 && attributeExpressionExecutors.length != 3) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to device:getDevicesOfUser() function, minimum 2, or 3 with " + + "optional. but found " + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument (user) of device:getDevicesOfUser() " + + "function, required " + Attribute.Type.STRING + " as user, but found " + + attributeExpressionExecutors[0].getReturnType().toString()); + } + if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument (device type) of device:getDevicesOfUser() " + + "function, required " + Attribute.Type.STRING + " as device type, but found " + + attributeExpressionExecutors[1].getReturnType().toString()); + } + if (attributeExpressionExecutors.length == 3 + && attributeExpressionExecutors[2].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid optional parameter type found for the third argument (status) of " + + "device:getDevicesOfUser() function, required " + Attribute.Type.STRING + " as status, but found " + + attributeExpressionExecutors[2].getReturnType().toString()); + } + } + + @Override + protected Object execute(Object[] data) { + if (data[0] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:getDevicesOfUser() function. " + + "First argument cannot be null"); + } + if (data[1] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:getDevicesOfUser() function. " + + "Second argument cannot be null"); + } + if (data.length == 3 && data[2] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:getDevicesOfUser() function. " + + "Third argument cannot be null"); + } + String user = (String) data[0]; + String deviceType = (String) data[1]; + String status = null; + if (data.length == 3) { + status = (String) data[2]; + } + + try { + DeviceManagementProviderService deviceManagementProviderService = DeviceUtils.getDeviceManagementProviderService(); + List devices = deviceManagementProviderService.getDevicesOfUser(user, deviceType, false); + if (status == null) { + return !devices.isEmpty(); + } else { + for (Device device : devices) { + if (status.equalsIgnoreCase(device.getEnrolmentInfo().getStatus().toString())) { + return true; + } + } + return false; + } + } catch (DeviceManagementException e) { + log.error("Error occurred while getting " + deviceType + " devices of user " + user + + ", with status " + status, e); + } + return false; + } + + @Override + protected Object execute(Object data) { + return null; //Since the getDevicesOfUser function takes in 2 or 3 parameters, this method does not get called. Hence,not implemented. + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java b/src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java new file mode 100644 index 000000000..f1893e33a --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java @@ -0,0 +1,122 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.device.mgt.common.DeviceIdentifier; +import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.group.mgt.GroupManagementException; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; +import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService; +import org.wso2.extension.siddhi.device.utils.DeviceUtils; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +/** + * isEnrolled(deviceId, deviceType) + * Returns true if device enrolled. + * Accept Type(s): (STRING, STRING) + * Return Type(s): (BOOL) + */ +public class IsEnrolledFunctionExecutor extends FunctionExecutor { + + private static Log log = LogFactory.getLog(IsEnrolledFunctionExecutor.class); + private Attribute.Type returnType = Attribute.Type.BOOL; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 2) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to device:isEnrolled() function, required 2, but found " + + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType()!= Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument (deviceId) of device:isEnrolled() " + + "function, required " + Attribute.Type.STRING + ", but found " + + attributeExpressionExecutors[0].getReturnType().toString()); + } + if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument (deviceType) of device:isEnrolled() " + + "function, required " + Attribute.Type.STRING + ", but found " + + attributeExpressionExecutors[1].getReturnType().toString()); + } + } + + @Override + protected Object execute(Object[] data) { + if (data[0] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:isEnrolled() function. " + + "First argument cannot be null"); + } + if (data[1] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:isEnrolled() function. " + + "Second argument cannot be null"); + } + + String deviceId = (String) data[0]; + String deviceType = (String) data[1]; + + DeviceIdentifier deviceIdentifier = new DeviceIdentifier(deviceId, deviceType); + try { + DeviceManagementProviderService deviceManagementService = DeviceUtils.getDeviceManagementProviderService(); + return deviceManagementService.isEnrolled(deviceIdentifier); + } catch (DeviceManagementException e) { + log.error("Error occurred while checking device is enrolled.", e); + } + return false; + } + + @Override + protected Object execute(Object data) { + return null; //Since the getDevicesOfUser function takes in 2 parameters, this method does not get called. Hence,not implemented. + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/IsInGroupFunctionExecutor.java b/src/main/java/org/wso2/extension/siddhi/device/IsInGroupFunctionExecutor.java new file mode 100644 index 000000000..56b52ef95 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/IsInGroupFunctionExecutor.java @@ -0,0 +1,131 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.device.mgt.common.DeviceIdentifier; +import org.wso2.carbon.device.mgt.common.group.mgt.GroupManagementException; +import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService; +import org.wso2.extension.siddhi.device.utils.DeviceUtils; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + + +/** + * isInGroup(groupId, deviceId, deviceType) + * Returns true if device belongs to group, otherwise false. + * Accept Type(s): (INTEGER, STRING, STRING) + * Return Type(s): (BOOL) + */ +public class IsInGroupFunctionExecutor extends FunctionExecutor { + + private static Log log = LogFactory.getLog(IsInGroupFunctionExecutor.class); + private Attribute.Type returnType = Attribute.Type.BOOL; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 3) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to device:isInGroup() function, required 3, but found " + + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType()!= Attribute.Type.INT) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument (group id) of device:isInGroup() " + + "function, required " + Attribute.Type.INT + ", but found " + + attributeExpressionExecutors[0].getReturnType().toString()); + } + if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument (device id) of device:isInGroup() " + + "function, required " + Attribute.Type.STRING + ", but found " + + attributeExpressionExecutors[1].getReturnType().toString()); + } + if (attributeExpressionExecutors[2].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the third argument (device type) of device:isInGroup() " + + "function, required " + Attribute.Type.STRING + ", but found " + + attributeExpressionExecutors[2].getReturnType().toString()); + } + } + + @Override + protected Object execute(Object[] data) { + if (data[0] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:isInGroup() function. " + + "First argument cannot be null"); + } + if (data[1] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:isInGroup() function. " + + "Second argument cannot be null"); + } + if (data[2] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:isInGroup() function. " + + "Third argument cannot be null"); + } + Integer groupId = (Integer) data[0]; + String deviceId = (String) data[1]; + String deviceType = (String) data[2]; + + DeviceIdentifier deviceIdentifier = new DeviceIdentifier(deviceId, deviceType); + GroupManagementProviderService groupManagementService = DeviceUtils.getGroupManagementProviderService(); + try { + return groupManagementService.isDeviceMappedToGroup(groupId, deviceIdentifier); + } catch (GroupManagementException e) { + log.error("Error occurred while checking device is belonging to group.", e); + } + return false; + } + + @Override + protected Object execute(Object data) { + return null; //Since the isInGroup function takes in 3 parameters, this method does not get called. Hence,not implemented. + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java b/src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java new file mode 100644 index 000000000..897e026c6 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java @@ -0,0 +1,67 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ +package org.wso2.extension.siddhi.device.utils; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.context.PrivilegedCarbonContext; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; +import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService; + +/** + * This class holds utility methods to retrieve data. + */ +public class DeviceUtils { + + private static Log log = LogFactory.getLog(DeviceUtils.class); + private static DeviceManagementProviderService deviceManagementProviderService; + private static GroupManagementProviderService groupManagementProviderService; + + private DeviceUtils(){ + } + + public static DeviceManagementProviderService getDeviceManagementProviderService() { + if (deviceManagementProviderService != null) { + return deviceManagementProviderService; + } + PrivilegedCarbonContext ctx = PrivilegedCarbonContext.getThreadLocalCarbonContext(); + deviceManagementProviderService = + (DeviceManagementProviderService) ctx.getOSGiService(DeviceManagementProviderService.class, null); + if (deviceManagementProviderService == null) { + String msg = "Device Management service has not initialized."; + log.error(msg); + throw new IllegalStateException(msg); + } + return deviceManagementProviderService; + } + + public static GroupManagementProviderService getGroupManagementProviderService() { + if (groupManagementProviderService != null) { + return groupManagementProviderService; + } + PrivilegedCarbonContext ctx = PrivilegedCarbonContext.getThreadLocalCarbonContext(); + groupManagementProviderService = + (GroupManagementProviderService) ctx.getOSGiService(GroupManagementProviderService.class, null); + if (groupManagementProviderService == null) { + String msg = "Group Management service has not initialized."; + log.error(msg); + throw new IllegalStateException(msg); + } + return groupManagementProviderService; + } +} diff --git a/src/main/resources/device.siddhiext b/src/main/resources/device.siddhiext new file mode 100644 index 000000000..84dd50b95 --- /dev/null +++ b/src/main/resources/device.siddhiext @@ -0,0 +1,24 @@ +# +# Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# +# WSO2 Inc. 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. +# + +isInGroup=org.wso2.extension.siddhi.device.IsInGroupFunctionExecutor +getDevicesOfUser=org.wso2.extension.siddhi.device.GetDevicesOfUserFunctionExecutor +hasDevicesOfUser=org.wso2.extension.siddhi.device.HasDevicesOfUserFunctionExecutor +getDevicesOfStatus=org.wso2.extension.siddhi.device.GetDevicesOfStatusFunctionExecutor +hasDevicesOfStatus=org.wso2.extension.siddhi.device.HasDevicesOfStatusFunctionExecutor +isEnrolled=org.wso2.extension.siddhi.device.IsEnrolledFunctionExecutor diff --git a/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java b/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java new file mode 100644 index 000000000..ce6130c06 --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java @@ -0,0 +1,132 @@ +/* + * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + * + */ +package org.wso2.extension.siddhi.device; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.apache.tomcat.jdbc.pool.PoolProperties; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.BeforeSuite; +import org.w3c.dom.Document; +import org.wso2.carbon.base.MultitenantConstants; +import org.wso2.carbon.context.PrivilegedCarbonContext; +import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory; +import org.wso2.carbon.device.mgt.core.dao.GroupManagementDAOFactory; +import org.wso2.carbon.device.mgt.core.notification.mgt.dao.NotificationManagementDAOFactory; +import org.wso2.carbon.device.mgt.core.operation.mgt.dao.OperationManagementDAOFactory; +import org.wso2.carbon.device.mgt.core.util.DeviceManagerUtil; +import org.wso2.extension.siddhi.device.test.util.DataSourceConfig; +import org.wso2.extension.siddhi.device.test.util.TestUtils; + +import javax.sql.DataSource; +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Unmarshaller; +import java.io.File; +import java.sql.Connection; +import java.sql.Statement; + +public abstract class BaseDeviceManagementTest { + + private DataSource dataSource; + private static final Log log = LogFactory.getLog(BaseDeviceManagementTest.class); + + @BeforeSuite + public void setupDataSource() throws Exception { + this.initDataSource(); + this.initSQLScript(); + this.initializeCarbonContext(); + } + + protected void initDataSource() throws Exception { + this.dataSource = this.getDataSource(this.readDataSourceConfig()); + DeviceManagementDAOFactory.init(dataSource); + GroupManagementDAOFactory.init(dataSource); + OperationManagementDAOFactory.init(dataSource); + NotificationManagementDAOFactory.init(dataSource); + } + + @BeforeClass + public abstract void init() throws Exception; + + private DataSource getDataSource(DataSourceConfig config) { + PoolProperties properties = new PoolProperties(); + properties.setUrl(config.getUrl()); + properties.setDriverClassName(config.getDriverClassName()); + properties.setUsername(config.getUser()); + properties.setPassword(config.getPassword()); + return new org.apache.tomcat.jdbc.pool.DataSource(properties); + } + + private void initializeCarbonContext() { + + if (System.getProperty("carbon.home") == null) { + File file = new File("src/test/resources/carbon-home"); + if (file.exists()) { + System.setProperty("carbon.home", file.getAbsolutePath()); + } + file = new File("../resources/carbon-home"); + if (file.exists()) { + System.setProperty("carbon.home", file.getAbsolutePath()); + } + file = new File("../../resources/carbon-home"); + if (file.exists()) { + System.setProperty("carbon.home", file.getAbsolutePath()); + } + file = new File("../../../resources/carbon-home"); + if (file.exists()) { + System.setProperty("carbon.home", file.getAbsolutePath()); + } + } + + PrivilegedCarbonContext.getThreadLocalCarbonContext().setTenantDomain(MultitenantConstants + .SUPER_TENANT_DOMAIN_NAME); + PrivilegedCarbonContext.getThreadLocalCarbonContext().setTenantId(MultitenantConstants.SUPER_TENANT_ID); + } + + private DataSourceConfig readDataSourceConfig() throws DeviceManagementException { + try { + File file = new File("src/test/resources/config/datasource/data-source-config.xml"); + Document doc = DeviceManagerUtil.convertToDocument(file); + JAXBContext testDBContext = JAXBContext.newInstance(DataSourceConfig.class); + Unmarshaller unmarshaller = testDBContext.createUnmarshaller(); + return (DataSourceConfig) unmarshaller.unmarshal(doc); + } catch (JAXBException e) { + throw new DeviceManagementException("Error occurred while reading data source configuration", e); + } + } + + private void initSQLScript() throws Exception { + Connection conn = null; + Statement stmt = null; + try { + conn = this.getDataSource().getConnection(); + stmt = conn.createStatement(); + stmt.executeUpdate("RUNSCRIPT FROM './src/test/resources/sql/h2.sql'"); + } finally { + TestUtils.cleanupResources(conn, stmt, null); + } + } + + protected DataSource getDataSource() { + return dataSource; + } + +} diff --git a/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java b/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java new file mode 100644 index 000000000..801b9e93a --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java @@ -0,0 +1,281 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device; + +import org.apache.log4j.Logger; +import org.testng.Assert; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.Test; +import org.wso2.carbon.device.mgt.common.Device; +import org.wso2.carbon.device.mgt.common.DeviceIdentifier; +import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.DeviceNotFoundException; +import org.wso2.carbon.device.mgt.common.group.mgt.DeviceGroup; +import org.wso2.carbon.device.mgt.common.group.mgt.GroupAlreadyExistException; +import org.wso2.carbon.device.mgt.common.group.mgt.GroupManagementException; +import org.wso2.carbon.device.mgt.core.authorization.DeviceAccessAuthorizationServiceImpl; +import org.wso2.carbon.device.mgt.core.config.DeviceConfigurationManager; +import org.wso2.carbon.device.mgt.core.config.cache.DeviceCacheConfiguration; +import org.wso2.carbon.device.mgt.core.internal.DeviceManagementDataHolder; +import org.wso2.carbon.device.mgt.core.internal.DeviceManagementServiceComponent; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderServiceImpl; +import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService; +import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderServiceImpl; +import org.wso2.carbon.registry.core.config.RegistryContext; +import org.wso2.carbon.registry.core.exceptions.RegistryException; +import org.wso2.carbon.registry.core.internal.RegistryDataHolder; +import org.wso2.carbon.registry.core.jdbc.realm.InMemoryRealmService; +import org.wso2.carbon.registry.core.service.RegistryService; +import org.wso2.carbon.user.core.UserStoreException; +import org.wso2.carbon.user.core.service.RealmService; +import org.wso2.carbon.utils.multitenancy.MultitenantConstants; +import org.wso2.extension.siddhi.device.test.util.SiddhiTestHelper; +import org.wso2.extension.siddhi.device.test.util.TestDataHolder; +import org.wso2.extension.siddhi.device.test.util.TestDeviceManagementService; +import org.wso2.extension.siddhi.device.test.util.TestUtils; +import org.wso2.extension.siddhi.device.utils.DeviceUtils; +import org.wso2.siddhi.core.ExecutionPlanRuntime; +import org.wso2.siddhi.core.SiddhiManager; +import org.wso2.siddhi.core.event.Event; +import org.wso2.siddhi.core.query.output.callback.QueryCallback; +import org.wso2.siddhi.core.stream.input.InputHandler; +import org.wso2.siddhi.core.util.EventPrinter; + +import java.io.InputStream; +import java.lang.reflect.Field; +import java.util.List; +import java.util.concurrent.atomic.AtomicInteger; + +import static org.wso2.carbon.device.mgt.common.group.mgt.DeviceGroupConstants.Permissions.DEFAULT_ADMIN_PERMISSIONS; +import static org.wso2.carbon.device.mgt.common.group.mgt.DeviceGroupConstants.Roles.DEFAULT_ADMIN_ROLE; + +public class ExtensionTestCase extends BaseDeviceManagementTest { + private static final Logger log = Logger.getLogger(ExtensionTestCase.class); + + private AtomicInteger count = new AtomicInteger(0); + private volatile boolean eventArrived; + private GroupManagementProviderService groupManagementProviderService; + private DeviceManagementProviderService deviceManagementProviderService; + private static String DEVICE_TYPE = "Test"; + + private QueryCallback queryCallback = new QueryCallback() { + @Override + public void receive(long timeStamp, Event[] inEvents, Event[] removeEvents) { + EventPrinter.print(timeStamp, inEvents, removeEvents); + for (Event event : inEvents) { + count.incrementAndGet(); + eventArrived = true; + } + } + }; + + @BeforeClass + @Override + public void init() throws Exception { + log.info("Initializing"); + groupManagementProviderService = new GroupManagementProviderServiceImpl(); + deviceManagementProviderService = new DeviceManagementProviderServiceImpl(); + + DeviceManagementServiceComponent.notifyStartupListeners(); + DeviceManagementDataHolder.getInstance().setDeviceManagementProvider(deviceManagementProviderService); + DeviceManagementDataHolder.getInstance().setRegistryService(getRegistryService()); + DeviceManagementDataHolder.getInstance().setDeviceAccessAuthorizationService(new DeviceAccessAuthorizationServiceImpl()); + DeviceManagementDataHolder.getInstance().setGroupManagementProviderService(groupManagementProviderService); + DeviceManagementDataHolder.getInstance().setDeviceTaskManagerService(null); + deviceManagementProviderService.registerDeviceType( + new TestDeviceManagementService(DEVICE_TYPE, MultitenantConstants.SUPER_TENANT_DOMAIN_NAME)); + + Field deviceManagementProviderServiceField = DeviceUtils.class.getDeclaredField("deviceManagementProviderService"); + deviceManagementProviderServiceField.setAccessible(true); + deviceManagementProviderServiceField.set(null, deviceManagementProviderService); + + Field groupManagementProviderServiceField = DeviceUtils.class.getDeclaredField("groupManagementProviderService"); + groupManagementProviderServiceField.setAccessible(true); + groupManagementProviderServiceField.set(null, groupManagementProviderService); + } + + private RegistryService getRegistryService() throws RegistryException, UserStoreException, + DeviceManagementException { + RealmService realmService = new InMemoryRealmService(); + RegistryDataHolder.getInstance().setRealmService(realmService); + DeviceManagementDataHolder.getInstance().setRealmService(realmService); + realmService.getTenantManager().getSuperTenantDomain(); + DeviceConfigurationManager.getInstance().initConfig(); + + InputStream is = this.getClass().getClassLoader().getResourceAsStream("carbon-home/repository/conf/registry.xml"); + RegistryContext context = RegistryContext.getBaseInstance(is, realmService); + context.setSetup(true); + return context.getEmbeddedRegistryService(); + } + + @Test + public void createGroup() throws GroupManagementException, GroupAlreadyExistException { + groupManagementProviderService.createGroup(TestUtils.createDeviceGroup1(), DEFAULT_ADMIN_ROLE, DEFAULT_ADMIN_PERMISSIONS); + groupManagementProviderService.createGroup(TestUtils.createDeviceGroup2(), DEFAULT_ADMIN_ROLE, DEFAULT_ADMIN_PERMISSIONS); + } + + @Test + public void enrollDevice() { + Device device = TestDataHolder.generateDummyDeviceData(DEVICE_TYPE); + try { + boolean enrollmentStatus = deviceManagementProviderService.enrollDevice(device); + Assert.assertTrue(enrollmentStatus); + } catch (DeviceManagementException e) { + String msg = "Error Occurred while enrolling device"; + Assert.fail(msg, e); + } + } + + @Test(dependsOnMethods = {"createGroup", "enrollDevice"}) + public void addDevices() throws GroupManagementException, DeviceNotFoundException { + DeviceCacheConfiguration configuration = new DeviceCacheConfiguration(); + configuration.setEnabled(false); + + DeviceConfigurationManager.getInstance().getDeviceManagementConfig().setDeviceCacheConfiguration(configuration); + List list = TestUtils.getDeviceIdentifiersList(DEVICE_TYPE); + DeviceGroup deviceGroup = groupManagementProviderService.getGroup(TestUtils.createDeviceGroup1().getName()); + Assert.assertNotNull(deviceGroup); + groupManagementProviderService.addDevices(deviceGroup.getGroupId(), list); + } + + @Test(dependsOnMethods = {"addDevices"}) + public void testIsInGroupExtension() throws InterruptedException, GroupManagementException { + log.info("IsInGroup TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + count.set(0); + eventArrived = false; + + String inStreamDefinition = "define stream inputStream (groupId int, deviceId string, deviceType string);"; + String query = ("@info(name = 'query1') from inputStream[device:isInGroup(groupId, deviceId, deviceType)] " + + "select deviceId insert into outputStream;"); + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + executionPlanRuntime.addCallback("query1", queryCallback); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + DeviceIdentifier deviceIdentifier = TestUtils.getDeviceIdentifiersList(DEVICE_TYPE).get(0); + inputHandler.send(new Object[]{groupManagementProviderService.getGroup( + TestUtils.createDeviceGroup1().getName()).getGroupId(), deviceIdentifier.getId(), deviceIdentifier.getType()}); + inputHandler.send(new Object[]{groupManagementProviderService.getGroup( + TestUtils.createDeviceGroup2().getName()).getGroupId(), deviceIdentifier.getId(), deviceIdentifier.getType()}); + SiddhiTestHelper.waitForEvents(100, 1, count, 10000); + Assert.assertTrue(eventArrived); + Assert.assertEquals(1, count.get()); + executionPlanRuntime.shutdown(); + } + + @Test(dependsOnMethods = {"testIsInGroupExtension"}) + public void testGetDevicesOfUserFunctionExecutor() throws InterruptedException, GroupManagementException { + log.info("GetDevicesOfUser without status TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + count.set(0); + eventArrived = false; + + String inStreamDefinition = "define stream inputStream (user string, deviceType string);"; + String query = ("@info(name = 'query1') from inputStream[device:hasDevicesOfUser(user, deviceType)] " + + "select device:getDevicesOfUser(user, deviceType) as devices insert into outputStream;"); + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + executionPlanRuntime.addCallback("query1", queryCallback); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + Device device = TestDataHolder.generateDummyDeviceData(DEVICE_TYPE); + inputHandler.send(new Object[]{device.getEnrolmentInfo().getOwner(), device.getType()}); + SiddhiTestHelper.waitForEvents(100, 1, count, 10000); + Assert.assertTrue(eventArrived); + Assert.assertEquals(1, count.get()); + executionPlanRuntime.shutdown(); + } + + @Test(dependsOnMethods = {"testGetDevicesOfUserFunctionExecutor"}) + public void testGetDevicesOfUserWithStatusFunctionExecutor() throws InterruptedException, GroupManagementException { + log.info("GetDevicesOfUser with status TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + count.set(0); + eventArrived = false; + + String inStreamDefinition = "define stream inputStream (user string, deviceType string, status string);"; + String query = ("@info(name = 'query1') from inputStream[device:hasDevicesOfUser(user, deviceType, status)] " + + "select device:getDevicesOfUser(user, deviceType, status) as devices insert into outputStream;"); + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + executionPlanRuntime.addCallback("query1", queryCallback); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + Device device = TestDataHolder.generateDummyDeviceData(DEVICE_TYPE); + inputHandler.send(new Object[]{device.getEnrolmentInfo().getOwner(), device.getType(), + device.getEnrolmentInfo().getStatus().toString()}); + SiddhiTestHelper.waitForEvents(100, 1, count, 10000); + Assert.assertTrue(eventArrived); + Assert.assertEquals(1, count.get()); + executionPlanRuntime.shutdown(); + } + + @Test(dependsOnMethods = {"testGetDevicesOfUserWithStatusFunctionExecutor"}) + public void testGetDevicesOfStatusFunctionExecutor() throws InterruptedException, GroupManagementException { + log.info("GetDevicesOfStatus without deviceType TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + count.set(0); + eventArrived = false; + + String inStreamDefinition = "define stream inputStream (status string);"; + String query = ("@info(name = 'query1') from inputStream[device:hasDevicesOfStatus(status)] " + + "select device:getDevicesOfStatus(status) as devices insert into outputStream;"); + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + executionPlanRuntime.addCallback("query1", queryCallback); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + Device device = TestDataHolder.generateDummyDeviceData(DEVICE_TYPE); + inputHandler.send(new Object[]{device.getEnrolmentInfo().getStatus().toString()}); + SiddhiTestHelper.waitForEvents(100, 1, count, 10000); + Assert.assertTrue(eventArrived); + Assert.assertEquals(1, count.get()); + executionPlanRuntime.shutdown(); + } + + @Test(dependsOnMethods = {"testGetDevicesOfStatusFunctionExecutor"}) + public void testGetDevicesOfStatusWithTypeFunctionExecutor() throws InterruptedException, GroupManagementException { + log.info("GetDevicesOfStatus with deviceType TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + count.set(0); + eventArrived = false; + + String inStreamDefinition = "define stream inputStream (status string, deviceType string);"; + String query = ("@info(name = 'query1') from inputStream[device:hasDevicesOfStatus(status, deviceType)] " + + "select device:getDevicesOfStatus(status, deviceType) as devices insert into outputStream;"); + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + executionPlanRuntime.addCallback("query1", queryCallback); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + Device device = TestDataHolder.generateDummyDeviceData(DEVICE_TYPE); + inputHandler.send(new Object[]{device.getEnrolmentInfo().getStatus().toString(), device.getType()}); + SiddhiTestHelper.waitForEvents(100, 1, count, 10000); + Assert.assertTrue(eventArrived); + Assert.assertEquals(1, count.get()); + executionPlanRuntime.shutdown(); + } +} diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/DataSourceConfig.java b/src/test/java/org/wso2/extension/siddhi/device/test/util/DataSourceConfig.java new file mode 100644 index 000000000..f787d9b22 --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/device/test/util/DataSourceConfig.java @@ -0,0 +1,76 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ +package org.wso2.extension.siddhi.device.test.util; + +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; + +@XmlRootElement(name = "DataSourceConfig") +public class DataSourceConfig { + + private String url; + private String driverClassName; + private String user; + private String password; + + @Override public String toString() { + return "DataSourceConfig[" + + " Url ='" + url + '\'' + + ", DriverClassName ='" + driverClassName + '\'' + + ", UserName ='" + user + '\'' + + ", Password ='" + password + '\'' + + "]"; + } + + @XmlElement(name = "Url", nillable = false) + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + @XmlElement(name = "DriverClassName", nillable = false) + public String getDriverClassName() { + return driverClassName; + } + + public void setDriverClassName(String driverClassName) { + this.driverClassName = driverClassName; + } + + @XmlElement(name = "User", nillable = false) + public String getUser() { + return user; + } + + public void setUser(String user) { + this.user = user; + } + + @XmlElement(name = "Password", nillable = false) + public String getPassword() { + return password; + } + + public void setPassword(String password) { + this.password = password; + } + +} diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/SiddhiTestHelper.java b/src/test/java/org/wso2/extension/siddhi/device/test/util/SiddhiTestHelper.java new file mode 100644 index 000000000..820cbf154 --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/device/test/util/SiddhiTestHelper.java @@ -0,0 +1,33 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.test.util; + +import java.util.concurrent.atomic.AtomicInteger; + +public class SiddhiTestHelper { + public static void waitForEvents(long sleepTime, int expectedCount, AtomicInteger actualCount, long timeout) + throws InterruptedException { + long currentWaitTime = 0; + long startTime = System.currentTimeMillis(); + while ((actualCount.get() < expectedCount) && (currentWaitTime <= timeout)) { + Thread.sleep(sleepTime); + currentWaitTime = System.currentTimeMillis() - startTime; + } + } +} diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java new file mode 100644 index 000000000..6c2fe832f --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java @@ -0,0 +1,127 @@ +/* +* Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +* +* Licensed 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. +*/ +package org.wso2.extension.siddhi.device.test.util; + +import org.wso2.carbon.device.mgt.common.Device; +import org.wso2.carbon.device.mgt.common.DeviceIdentifier; +import org.wso2.carbon.device.mgt.common.EnrolmentInfo; +import org.wso2.carbon.device.mgt.common.app.mgt.Application; +import org.wso2.carbon.device.mgt.common.group.mgt.DeviceGroup; +import org.wso2.carbon.device.mgt.common.notification.mgt.Notification; +import org.wso2.carbon.device.mgt.core.dto.DeviceType; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; +import java.util.Properties; + +public class TestDataHolder { + + public final static String TEST_DEVICE_TYPE = "Test"; + public final static Integer SUPER_TENANT_ID = -1234; + public final static String SUPER_TENANT_DOMAIN = "carbon.super"; + public final static String initialDeviceIdentifier = "12345"; + public final static String OWNER = "admin"; + public static Device initialTestDevice; + public static DeviceType initialTestDeviceType; + + public static Device generateDummyDeviceData(String deviceType) { + Device device = new Device(); + EnrolmentInfo enrolmentInfo = new EnrolmentInfo(); + enrolmentInfo.setDateOfEnrolment(new Date().getTime()); + enrolmentInfo.setDateOfLastUpdate(new Date().getTime()); + enrolmentInfo.setOwner(OWNER); + enrolmentInfo.setOwnership(EnrolmentInfo.OwnerShip.BYOD); + enrolmentInfo.setStatus(EnrolmentInfo.Status.ACTIVE); + device.setEnrolmentInfo(enrolmentInfo); + device.setDescription("Test Description"); + device.setDeviceIdentifier(initialDeviceIdentifier); + device.setType(deviceType); + return device; + } + + public static Notification getNotification(int notificationId, String status, String deviceId, + String description, String deviceName, int operationId, + String deviceType) { + Notification notification = new Notification(); + notification.setNotificationId(notificationId); + notification.setStatus(status); + notification.setDeviceIdentifier(deviceId); + notification.setDescription(description); + notification.setDeviceName(deviceName); + notification.setOperationId(operationId); + notification.setDeviceType(deviceType); + return notification; + } + + public static Device generateDummyDeviceData(String deviceIdentifier, String deviceType, + EnrolmentInfo enrolmentInfo) { + Device device = new Device(); + device.setEnrolmentInfo(enrolmentInfo); + device.setDescription("Test Description"); + device.setDeviceIdentifier(deviceIdentifier); + device.setType(deviceType); + return device; + } + + public static List generateDummyDeviceData(List deviceIds) { + List devices = new ArrayList<>(); + for (DeviceIdentifier deviceId : deviceIds) { + Device device = new Device(); + EnrolmentInfo enrolmentInfo = new EnrolmentInfo(); + enrolmentInfo.setDateOfEnrolment(new Date().getTime()); + enrolmentInfo.setDateOfLastUpdate(new Date().getTime()); + enrolmentInfo.setOwner(OWNER); + enrolmentInfo.setOwnership(EnrolmentInfo.OwnerShip.BYOD); + enrolmentInfo.setStatus(EnrolmentInfo.Status.CREATED); + device.setEnrolmentInfo(enrolmentInfo); + device.setDescription("Test Description"); + device.setDeviceIdentifier(deviceId.getId()); + device.setType(deviceId.getType()); + devices.add(device); + } + return devices; + } + + public static DeviceType generateDeviceTypeData(String devTypeName) { + DeviceType deviceType = new DeviceType(); + deviceType.setName(devTypeName); + return deviceType; + } + + public static Application generateApplicationDummyData(String appIdentifier) { + Application application = new Application(); + Properties properties = new Properties(); + properties.setProperty("test1", "testVal"); + application.setName("SimpleCalculator"); + application.setCategory("TestCategory"); + application.setApplicationIdentifier(appIdentifier); + application.setType("TestType"); + application.setVersion("1.0.0"); + application.setImageUrl("http://test.org/image/"); + application.setLocationUrl("http://test.org/location/"); + application.setAppProperties(properties); + return application; + } + + public static DeviceGroup generateDummyGroupData() { + DeviceGroup deviceGroup = new DeviceGroup(); + deviceGroup.setName("Test device group"); + deviceGroup.setDescription("Test description"); + deviceGroup.setOwner(OWNER); + return deviceGroup; + } +} diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java new file mode 100644 index 000000000..f1631b747 --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java @@ -0,0 +1,111 @@ +/* + * Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ +package org.wso2.extension.siddhi.device.test.util; + +import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.DeviceManager; +import org.wso2.carbon.device.mgt.common.DeviceStatusTaskPluginConfig; +import org.wso2.carbon.device.mgt.common.InitialOperationConfig; +import org.wso2.carbon.device.mgt.common.MonitoringOperation; +import org.wso2.carbon.device.mgt.common.OperationMonitoringTaskConfig; +import org.wso2.carbon.device.mgt.common.ProvisioningConfig; +import org.wso2.carbon.device.mgt.common.app.mgt.ApplicationManager; +import org.wso2.carbon.device.mgt.common.policy.mgt.PolicyMonitoringManager; +import org.wso2.carbon.device.mgt.common.pull.notification.PullNotificationSubscriber; +import org.wso2.carbon.device.mgt.common.push.notification.PushNotificationConfig; +import org.wso2.carbon.device.mgt.common.spi.DeviceManagementService; + +import java.util.ArrayList; +import java.util.List; + +public class TestDeviceManagementService implements DeviceManagementService { + + private String providerType; + private String tenantDomain; + + public TestDeviceManagementService(String deviceType, String tenantDomain) { + providerType = deviceType; + this.tenantDomain = tenantDomain; + } + + @Override + public String getType() { + return providerType; + } + + @Override + public OperationMonitoringTaskConfig getOperationMonitoringConfig() { + OperationMonitoringTaskConfig taskConfig = new OperationMonitoringTaskConfig(); + taskConfig.setEnabled(true); + taskConfig.setFrequency(3000); + List monitoringOperations = new ArrayList<>(); + for (int i = 0; i < 5; i++) { + MonitoringOperation monitoringOperation = new MonitoringOperation(); + monitoringOperation.setTaskName("OPERATION-" + i); + monitoringOperation.setRecurrentTimes(i); + monitoringOperations.add(monitoringOperation); + } + taskConfig.setMonitoringOperation(monitoringOperations); + return taskConfig; + } + + @Override + public void init() throws DeviceManagementException { + + } + + @Override + public DeviceManager getDeviceManager() { + return new TestDeviceManager(); + } + + @Override + public ApplicationManager getApplicationManager() { + return null; + } + + @Override + public ProvisioningConfig getProvisioningConfig() { + return new ProvisioningConfig(tenantDomain, false); + } + + @Override + public PushNotificationConfig getPushNotificationConfig() { + return null; + } + + @Override + public PolicyMonitoringManager getPolicyMonitoringManager() { + return null; + } + + @Override + public InitialOperationConfig getInitialOperationConfig() { + return null; + } + + @Override + public PullNotificationSubscriber getPullNotificationSubscriber() { + return null; + } + + @Override + public DeviceStatusTaskPluginConfig getDeviceStatusTaskPluginConfig() { + return null; + } +} diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java new file mode 100644 index 000000000..7a152b9a3 --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java @@ -0,0 +1,129 @@ +/* +* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +* +* Licensed 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. +*/ +package org.wso2.extension.siddhi.device.test.util; + +import org.wso2.carbon.device.mgt.common.Device; +import org.wso2.carbon.device.mgt.common.DeviceIdentifier; +import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.DeviceManager; +import org.wso2.carbon.device.mgt.common.EnrolmentInfo; +import org.wso2.carbon.device.mgt.common.FeatureManager; +import org.wso2.carbon.device.mgt.common.configuration.mgt.PlatformConfiguration; +import org.wso2.carbon.device.mgt.common.license.mgt.License; +import org.wso2.carbon.device.mgt.common.license.mgt.LicenseManagementException; + +import java.util.List; + +public class TestDeviceManager implements DeviceManager { + + public TestDeviceManager() { + + } + + @Override + public FeatureManager getFeatureManager() { + return null; + } + + @Override + public boolean saveConfiguration(PlatformConfiguration configuration) + throws DeviceManagementException { + return false; + } + + @Override public PlatformConfiguration getConfiguration() throws DeviceManagementException { + return null; + } + + @Override + public boolean enrollDevice(Device device) throws DeviceManagementException { + return true; + } + + @Override + public boolean modifyEnrollment(Device device) throws DeviceManagementException { + return true; + } + + @Override + public boolean disenrollDevice(DeviceIdentifier deviceId) throws DeviceManagementException { + return true; + } + + @Override + public boolean isEnrolled(DeviceIdentifier deviceId) throws DeviceManagementException { + return true; + } + + @Override + public boolean isActive(DeviceIdentifier deviceId) throws DeviceManagementException { + return true; + } + + @Override + public boolean setActive(DeviceIdentifier deviceId, boolean status) throws DeviceManagementException { + return false; + } + + @Override + public List getAllDevices() throws DeviceManagementException { + return null; + } + + @Override + public Device getDevice(DeviceIdentifier deviceId) throws DeviceManagementException { + return null; + } + + @Override + public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device) + throws DeviceManagementException { + return false; + } + + @Override + public boolean setOwnership(DeviceIdentifier deviceId, String ownershipType) + throws DeviceManagementException { + return false; + } + + @Override + public boolean isClaimable(DeviceIdentifier deviceId) throws DeviceManagementException { + return false; + } + + @Override + public boolean setStatus(DeviceIdentifier deviceId, String currentOwner, EnrolmentInfo.Status status) + throws DeviceManagementException { + return false; + } + + @Override + public License getLicense(String languageCode) throws LicenseManagementException { + return null; + } + + @Override + public void addLicense(License license) throws LicenseManagementException { + + } + + @Override + public boolean requireDeviceAuthorization() { + return false; + } + +} diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java new file mode 100644 index 000000000..20ed04dae --- /dev/null +++ b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java @@ -0,0 +1,92 @@ +/* + * Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ +package org.wso2.extension.siddhi.device.test.util; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.device.mgt.common.Device; +import org.wso2.carbon.device.mgt.common.DeviceIdentifier; +import org.wso2.carbon.device.mgt.common.GroupPaginationRequest; +import org.wso2.carbon.device.mgt.common.group.mgt.DeviceGroup; + +import java.sql.Connection; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.sql.Statement; +import java.util.ArrayList; +import java.util.List; + +public class TestUtils { + + private static final Log log = LogFactory.getLog(TestUtils.class); + + public static void cleanupResources(Connection conn, Statement stmt, ResultSet rs) { + if (rs != null) { + try { + rs.close(); + } catch (SQLException e) { + log.warn("Error occurred while closing result set", e); + } + } + if (stmt != null) { + try { + stmt.close(); + } catch (SQLException e) { + log.warn("Error occurred while closing prepared statement", e); + } + } + if (conn != null) { + try { + conn.close(); + } catch (SQLException e) { + log.warn("Error occurred while closing database connection", e); + } + } + } + + + public static DeviceGroup createDeviceGroup1(){ + DeviceGroup group = new DeviceGroup(); + group.setName("TEST_GROUP_01"); + group.setDescription("TEST_GROUP_01 - Description"); + group.setOwner("admin"); + return group; + } + + + public static DeviceGroup createDeviceGroup2(){ + DeviceGroup group = new DeviceGroup(); + group.setName("TEST_GROUP_02"); + group.setDescription("TEST_GROUP_02 - Description"); + group.setOwner("admin"); + return group; + } + + public static List getDeviceIdentifiersList(String deviceType){ + + Device device = TestDataHolder.generateDummyDeviceData(deviceType); + DeviceIdentifier identifier = new DeviceIdentifier(); + identifier.setId(device.getDeviceIdentifier()); + identifier.setType(deviceType); + + List list = new ArrayList<>(); + list.add(identifier); + + return list; + } +} diff --git a/src/test/resources/carbon-home/dbscripts/h2.sql b/src/test/resources/carbon-home/dbscripts/h2.sql new file mode 100644 index 000000000..f6b31c78d --- /dev/null +++ b/src/test/resources/carbon-home/dbscripts/h2.sql @@ -0,0 +1,429 @@ +CREATE TABLE IF NOT EXISTS REG_CLUSTER_LOCK ( + REG_LOCK_NAME VARCHAR (20), + REG_LOCK_STATUS VARCHAR (20), + REG_LOCKED_TIME TIMESTAMP, + REG_TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (REG_LOCK_NAME) +); + +CREATE TABLE IF NOT EXISTS REG_LOG ( + REG_LOG_ID INTEGER AUTO_INCREMENT, + REG_PATH VARCHAR (2000), + REG_USER_ID VARCHAR (31) NOT NULL, + REG_LOGGED_TIME TIMESTAMP NOT NULL, + REG_ACTION INTEGER NOT NULL, + REG_ACTION_DATA VARCHAR (500), + REG_TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (REG_LOG_ID, REG_TENANT_ID) +); + +CREATE INDEX IF NOT EXISTS REG_LOG_IND_BY_REG_LOGTIME ON REG_LOG(REG_LOGGED_TIME, REG_TENANT_ID); + +CREATE TABLE IF NOT EXISTS REG_PATH( + REG_PATH_ID INTEGER NOT NULL AUTO_INCREMENT, + REG_PATH_VALUE VARCHAR(2000) NOT NULL, + REG_PATH_PARENT_ID INT, + REG_TENANT_ID INTEGER DEFAULT 0, + CONSTRAINT PK_REG_PATH PRIMARY KEY(REG_PATH_ID, REG_TENANT_ID) +); +CREATE INDEX IF NOT EXISTS REG_PATH_IND_BY_NAME ON REG_PATH(REG_PATH_VALUE, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_PATH_IND_BY_PARENT_ID ON REG_PATH(REG_PATH_PARENT_ID, REG_TENANT_ID); + + +CREATE TABLE IF NOT EXISTS REG_CONTENT ( + REG_CONTENT_ID INTEGER NOT NULL AUTO_INCREMENT, + REG_CONTENT_DATA LONGBLOB, + REG_TENANT_ID INTEGER DEFAULT 0, + CONSTRAINT PK_REG_CONTENT PRIMARY KEY(REG_CONTENT_ID, REG_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS REG_CONTENT_HISTORY ( + REG_CONTENT_ID INTEGER NOT NULL, + REG_CONTENT_DATA LONGBLOB, + REG_DELETED SMALLINT, + REG_TENANT_ID INTEGER DEFAULT 0, + CONSTRAINT PK_REG_CONTENT_HISTORY PRIMARY KEY(REG_CONTENT_ID, REG_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS REG_RESOURCE ( + REG_PATH_ID INTEGER NOT NULL, + REG_NAME VARCHAR(256), + REG_VERSION INTEGER NOT NULL AUTO_INCREMENT, + REG_MEDIA_TYPE VARCHAR(500), + REG_CREATOR VARCHAR(31) NOT NULL, + REG_CREATED_TIME TIMESTAMP NOT NULL, + REG_LAST_UPDATOR VARCHAR(31), + REG_LAST_UPDATED_TIME TIMESTAMP NOT NULL, + REG_DESCRIPTION VARCHAR(1000), + REG_CONTENT_ID INTEGER, + REG_TENANT_ID INTEGER DEFAULT 0, + REG_UUID VARCHAR(100) NOT NULL, + CONSTRAINT PK_REG_RESOURCE PRIMARY KEY(REG_VERSION, REG_TENANT_ID) +); + +ALTER TABLE REG_RESOURCE ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); +ALTER TABLE REG_RESOURCE ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_FK_BY_CONTENT_ID FOREIGN KEY (REG_CONTENT_ID, REG_TENANT_ID) REFERENCES REG_CONTENT (REG_CONTENT_ID, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_IND_BY_NAME ON REG_RESOURCE(REG_NAME, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_IND_BY_PATH_ID_NAME ON REG_RESOURCE(REG_PATH_ID, REG_NAME, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_IND_BY_UUID ON REG_RESOURCE(REG_UUID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_IND_BY_TENANT ON REG_RESOURCE(REG_TENANT_ID, REG_UUID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_IND_BY_TYPE ON REG_RESOURCE(REG_TENANT_ID, REG_MEDIA_TYPE); + +CREATE TABLE IF NOT EXISTS REG_RESOURCE_HISTORY ( + REG_PATH_ID INTEGER NOT NULL, + REG_NAME VARCHAR(256), + REG_VERSION INTEGER NOT NULL, + REG_MEDIA_TYPE VARCHAR(500), + REG_CREATOR VARCHAR(31) NOT NULL, + REG_CREATED_TIME TIMESTAMP NOT NULL, + REG_LAST_UPDATOR VARCHAR(31), + REG_LAST_UPDATED_TIME TIMESTAMP NOT NULL, + REG_DESCRIPTION VARCHAR(1000), + REG_CONTENT_ID INTEGER, + REG_DELETED SMALLINT, + REG_TENANT_ID INTEGER DEFAULT 0, + REG_UUID VARCHAR(100) NOT NULL, + CONSTRAINT PK_REG_RESOURCE_HISTORY PRIMARY KEY(REG_VERSION, REG_TENANT_ID) +); + +ALTER TABLE REG_RESOURCE_HISTORY ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_HIST_FK_BY_PATHID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); +ALTER TABLE REG_RESOURCE_HISTORY ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_HIST_FK_BY_CONTENT_ID FOREIGN KEY (REG_CONTENT_ID, REG_TENANT_ID) REFERENCES REG_CONTENT_HISTORY (REG_CONTENT_ID, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_HISTORY_IND_BY_NAME ON REG_RESOURCE_HISTORY(REG_NAME, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_HISTORY_IND_BY_PATH_ID_NAME ON REG_RESOURCE(REG_PATH_ID, REG_NAME, REG_TENANT_ID); + +CREATE TABLE IF NOT EXISTS REG_COMMENT ( + REG_ID INTEGER NOT NULL AUTO_INCREMENT, + REG_COMMENT_TEXT VARCHAR(500) NOT NULL, + REG_USER_ID VARCHAR(31) NOT NULL, + REG_COMMENTED_TIME TIMESTAMP NOT NULL, + REG_TENANT_ID INTEGER DEFAULT 0, + CONSTRAINT PK_REG_COMMENT PRIMARY KEY(REG_ID, REG_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS REG_RESOURCE_COMMENT ( + REG_COMMENT_ID INTEGER NOT NULL, + REG_VERSION INTEGER, + REG_PATH_ID INTEGER, + REG_RESOURCE_NAME VARCHAR(256), + REG_TENANT_ID INTEGER DEFAULT 0 +); + +ALTER TABLE REG_RESOURCE_COMMENT ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_COMMENT_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); +ALTER TABLE REG_RESOURCE_COMMENT ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_COMMENT_FK_BY_COMMENT_ID FOREIGN KEY (REG_COMMENT_ID, REG_TENANT_ID) REFERENCES REG_COMMENT (REG_ID, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_COMMENT_IND_BY_PATH_ID_AND_RESOURCE_NAME ON REG_RESOURCE_COMMENT(REG_PATH_ID, REG_RESOURCE_NAME, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_COMMENT_IND_BY_VERSION ON REG_RESOURCE_COMMENT(REG_VERSION, REG_TENANT_ID); + +CREATE TABLE IF NOT EXISTS REG_RATING ( + REG_ID INTEGER NOT NULL AUTO_INCREMENT, + REG_RATING INTEGER NOT NULL, + REG_USER_ID VARCHAR(31) NOT NULL, + REG_RATED_TIME TIMESTAMP NOT NULL, + REG_TENANT_ID INTEGER DEFAULT 0, + CONSTRAINT PK_REG_RATING PRIMARY KEY(REG_ID, REG_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS REG_RESOURCE_RATING ( + REG_RATING_ID INTEGER NOT NULL, + REG_VERSION INTEGER, + REG_PATH_ID INTEGER, + REG_RESOURCE_NAME VARCHAR(256), + REG_TENANT_ID INTEGER DEFAULT 0 +); + +ALTER TABLE REG_RESOURCE_RATING ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_RATING_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); +ALTER TABLE REG_RESOURCE_RATING ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_RATING_FK_BY_RATING_ID FOREIGN KEY (REG_RATING_ID, REG_TENANT_ID) REFERENCES REG_RATING (REG_ID, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_RATING_IND_BY_PATH_ID_AND_RESOURCE_NAME ON REG_RESOURCE_RATING(REG_PATH_ID, REG_RESOURCE_NAME, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_RATING_IND_BY_VERSION ON REG_RESOURCE_RATING(REG_VERSION, REG_TENANT_ID); + + +CREATE TABLE IF NOT EXISTS REG_TAG ( + REG_ID INTEGER NOT NULL AUTO_INCREMENT, + REG_TAG_NAME VARCHAR(500) NOT NULL, + REG_USER_ID VARCHAR(31) NOT NULL, + REG_TAGGED_TIME TIMESTAMP NOT NULL, + REG_TENANT_ID INTEGER DEFAULT 0, + CONSTRAINT PK_REG_TAG PRIMARY KEY(REG_ID, REG_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS REG_RESOURCE_TAG ( + REG_TAG_ID INTEGER NOT NULL, + REG_VERSION INTEGER, + REG_PATH_ID INTEGER, + REG_RESOURCE_NAME VARCHAR(256), + REG_TENANT_ID INTEGER DEFAULT 0 +); + +ALTER TABLE REG_RESOURCE_TAG ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_TAG_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); +ALTER TABLE REG_RESOURCE_TAG ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_TAG_FK_BY_TAG_ID FOREIGN KEY (REG_TAG_ID, REG_TENANT_ID) REFERENCES REG_TAG (REG_ID, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_TAG_IND_BY_PATH_ID_AND_RESOURCE_NAME ON REG_RESOURCE_TAG(REG_PATH_ID, REG_RESOURCE_NAME, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_TAG_IND_BY_VERSION ON REG_RESOURCE_TAG(REG_VERSION, REG_TENANT_ID); + +CREATE TABLE IF NOT EXISTS REG_PROPERTY ( + REG_ID INTEGER NOT NULL AUTO_INCREMENT, + REG_NAME VARCHAR(100) NOT NULL, + REG_VALUE VARCHAR(1000), + REG_TENANT_ID INTEGER DEFAULT 0, + CONSTRAINT PK_REG_PROPERTY PRIMARY KEY(REG_ID, REG_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS REG_RESOURCE_PROPERTY ( + REG_PROPERTY_ID INTEGER NOT NULL, + REG_VERSION INTEGER, + REG_PATH_ID INTEGER, + REG_RESOURCE_NAME VARCHAR(256), + REG_TENANT_ID INTEGER DEFAULT 0 +); + +ALTER TABLE REG_RESOURCE_PROPERTY ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_PROPERTY_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); +ALTER TABLE REG_RESOURCE_PROPERTY ADD CONSTRAINT IF NOT EXISTS REG_RESOURCE_PROPERTY_FK_BY_TAG_ID FOREIGN KEY (REG_PROPERTY_ID, REG_TENANT_ID) REFERENCES REG_PROPERTY (REG_ID, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_PROPERTY_IND_BY_PATH_ID_AND_RESOURCE_NAME ON REG_RESOURCE_PROPERTY(REG_PATH_ID, REG_RESOURCE_NAME, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_RESOURCE_PROPERTY_IND_BY_VERSION ON REG_RESOURCE_PROPERTY(REG_VERSION, REG_TENANT_ID); + +CREATE TABLE IF NOT EXISTS REG_ASSOCIATION ( + REG_ASSOCIATION_ID INTEGER AUTO_INCREMENT, + REG_SOURCEPATH VARCHAR (2000) NOT NULL, + REG_TARGETPATH VARCHAR (2000) NOT NULL, + REG_ASSOCIATION_TYPE VARCHAR (2000) NOT NULL, + REG_TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (REG_ASSOCIATION_ID, REG_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS REG_SNAPSHOT ( + REG_SNAPSHOT_ID INTEGER NOT NULL AUTO_INCREMENT, + REG_PATH_ID INTEGER NOT NULL, + REG_RESOURCE_NAME VARCHAR (256), + REG_RESOURCE_VIDS LONGBLOB NOT NULL, + REG_TENANT_ID INTEGER DEFAULT 0, + CONSTRAINT PK_REG_SNAPSHOT PRIMARY KEY(REG_SNAPSHOT_ID, REG_TENANT_ID) +); + +ALTER TABLE REG_SNAPSHOT ADD CONSTRAINT IF NOT EXISTS REG_SNAPSHOT_FK_BY_PATH_ID FOREIGN KEY (REG_PATH_ID, REG_TENANT_ID) REFERENCES REG_PATH (REG_PATH_ID, REG_TENANT_ID); +CREATE INDEX IF NOT EXISTS REG_SNAPSHOT_IND_BY_PATH_ID_AND_RESOURCE_NAME ON REG_SNAPSHOT(REG_PATH_ID, REG_RESOURCE_NAME, REG_TENANT_ID); + +-- ################################ +-- USER MANAGER TABLES +-- ################################ + +CREATE TABLE IF NOT EXISTS UM_TENANT ( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_DOMAIN_NAME VARCHAR(255) NOT NULL, + UM_EMAIL VARCHAR(255), + UM_ACTIVE BOOLEAN DEFAULT FALSE, + UM_CREATED_DATE TIMESTAMP NOT NULL, + UM_USER_CONFIG LONGBLOB NOT NULL, + PRIMARY KEY (UM_ID), + UNIQUE(UM_DOMAIN_NAME)); + +CREATE TABLE IF NOT EXISTS UM_DOMAIN( + UM_DOMAIN_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_DOMAIN_NAME VARCHAR(255), + UM_TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (UM_DOMAIN_ID, UM_TENANT_ID) +); + +CREATE INDEX IF NOT EXISTS INDEX_UM_TENANT_UM_DOMAIN_NAME ON UM_TENANT (UM_DOMAIN_NAME); + +CREATE TABLE IF NOT EXISTS UM_USER ( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_USER_NAME VARCHAR(255) NOT NULL, + UM_USER_PASSWORD VARCHAR(255) NOT NULL, + UM_SALT_VALUE VARCHAR(31), + UM_REQUIRE_CHANGE BOOLEAN DEFAULT FALSE, + UM_CHANGED_TIME TIMESTAMP NOT NULL, + UM_TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (UM_ID, UM_TENANT_ID), + UNIQUE(UM_USER_NAME, UM_TENANT_ID)); + +CREATE TABLE IF NOT EXISTS UM_SYSTEM_USER ( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_USER_NAME VARCHAR(255) NOT NULL, + UM_USER_PASSWORD VARCHAR(255) NOT NULL, + UM_SALT_VALUE VARCHAR(31), + UM_REQUIRE_CHANGE BOOLEAN DEFAULT FALSE, + UM_CHANGED_TIME TIMESTAMP NOT NULL, + UM_TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (UM_ID, UM_TENANT_ID), + UNIQUE(UM_USER_NAME, UM_TENANT_ID)); + +CREATE TABLE IF NOT EXISTS UM_USER_ATTRIBUTE ( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_ATTR_NAME VARCHAR(255) NOT NULL, + UM_ATTR_VALUE VARCHAR(1024), + UM_PROFILE_ID VARCHAR(255), + UM_USER_ID INTEGER, + UM_TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (UM_ID, UM_TENANT_ID), + FOREIGN KEY (UM_USER_ID, UM_TENANT_ID) REFERENCES UM_USER(UM_ID, UM_TENANT_ID)); + +CREATE INDEX IF NOT EXISTS UM_USER_ID_INDEX ON UM_USER_ATTRIBUTE(UM_USER_ID); + +CREATE TABLE IF NOT EXISTS UM_ROLE ( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_ROLE_NAME VARCHAR(255) NOT NULL, + UM_TENANT_ID INTEGER DEFAULT 0, + UM_SHARED_ROLE BOOLEAN DEFAULT FALSE, + PRIMARY KEY (UM_ID, UM_TENANT_ID), + UNIQUE(UM_ROLE_NAME, UM_TENANT_ID)); + +CREATE TABLE IF NOT EXISTS UM_MODULE( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_MODULE_NAME VARCHAR(100), + UNIQUE(UM_MODULE_NAME), + PRIMARY KEY(UM_ID) +); + +CREATE TABLE IF NOT EXISTS UM_MODULE_ACTIONS( + UM_ACTION VARCHAR(255) NOT NULL, + UM_MODULE_ID INTEGER NOT NULL, + PRIMARY KEY(UM_ACTION, UM_MODULE_ID), + FOREIGN KEY (UM_MODULE_ID) REFERENCES UM_MODULE(UM_ID) ON DELETE CASCADE +); + +CREATE TABLE IF NOT EXISTS UM_PERMISSION ( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_RESOURCE_ID VARCHAR(255) NOT NULL, + UM_ACTION VARCHAR(255) NOT NULL, + UM_TENANT_ID INTEGER DEFAULT 0, + UM_MODULE_ID INTEGER DEFAULT 0, + UNIQUE(UM_RESOURCE_ID,UM_ACTION, UM_TENANT_ID), + PRIMARY KEY (UM_ID, UM_TENANT_ID)); + +CREATE INDEX IF NOT EXISTS INDEX_UM_PERMISSION_UM_RESOURCE_ID_UM_ACTION ON UM_PERMISSION (UM_RESOURCE_ID, UM_ACTION, UM_TENANT_ID); + +CREATE TABLE IF NOT EXISTS UM_ROLE_PERMISSION ( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_PERMISSION_ID INTEGER NOT NULL, + UM_ROLE_NAME VARCHAR(255) NOT NULL, + UM_IS_ALLOWED SMALLINT NOT NULL, + UM_TENANT_ID INTEGER DEFAULT 0, + UM_DOMAIN_ID INTEGER, + FOREIGN KEY (UM_PERMISSION_ID, UM_TENANT_ID) REFERENCES UM_PERMISSION(UM_ID, UM_TENANT_ID) ON DELETE CASCADE, + FOREIGN KEY (UM_DOMAIN_ID, UM_TENANT_ID) REFERENCES UM_DOMAIN(UM_DOMAIN_ID, UM_TENANT_ID) ON DELETE CASCADE, + PRIMARY KEY (UM_ID, UM_TENANT_ID)); + +CREATE TABLE IF NOT EXISTS UM_USER_PERMISSION ( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_PERMISSION_ID INTEGER NOT NULL, + UM_USER_NAME VARCHAR(255) NOT NULL, + UM_IS_ALLOWED SMALLINT NOT NULL, + UNIQUE (UM_PERMISSION_ID, UM_USER_NAME, UM_TENANT_ID), + UM_TENANT_ID INTEGER DEFAULT 0, + FOREIGN KEY (UM_PERMISSION_ID, UM_TENANT_ID) REFERENCES UM_PERMISSION(UM_ID, UM_TENANT_ID) ON DELETE CASCADE, + PRIMARY KEY (UM_ID, UM_TENANT_ID)); + +CREATE TABLE IF NOT EXISTS UM_USER_ROLE ( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_ROLE_ID INTEGER NOT NULL, + UM_USER_ID INTEGER NOT NULL, + UM_TENANT_ID INTEGER DEFAULT 0, + UNIQUE (UM_USER_ID, UM_ROLE_ID, UM_TENANT_ID), + FOREIGN KEY (UM_ROLE_ID, UM_TENANT_ID) REFERENCES UM_ROLE(UM_ID, UM_TENANT_ID), + FOREIGN KEY (UM_USER_ID, UM_TENANT_ID) REFERENCES UM_USER(UM_ID, UM_TENANT_ID), + PRIMARY KEY (UM_ID, UM_TENANT_ID)); + + +CREATE TABLE IF NOT EXISTS UM_SHARED_USER_ROLE( + UM_ROLE_ID INTEGER NOT NULL, + UM_USER_ID INTEGER NOT NULL, + UM_USER_TENANT_ID INTEGER NOT NULL, + UM_ROLE_TENANT_ID INTEGER NOT NULL, + UNIQUE(UM_USER_ID,UM_ROLE_ID,UM_USER_TENANT_ID, UM_ROLE_TENANT_ID), + FOREIGN KEY(UM_ROLE_ID,UM_ROLE_TENANT_ID) REFERENCES UM_ROLE(UM_ID,UM_TENANT_ID) ON DELETE CASCADE , + FOREIGN KEY(UM_USER_ID,UM_USER_TENANT_ID) REFERENCES UM_USER(UM_ID,UM_TENANT_ID) ON DELETE CASCADE +); + +CREATE TABLE IF NOT EXISTS UM_ACCOUNT_MAPPING( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_USER_NAME VARCHAR(255) NOT NULL, + UM_TENANT_ID INTEGER NOT NULL, + UM_USER_STORE_DOMAIN VARCHAR(100), + UM_ACC_LINK_ID INTEGER NOT NULL, + UNIQUE(UM_USER_NAME, UM_TENANT_ID, UM_USER_STORE_DOMAIN, UM_ACC_LINK_ID), + FOREIGN KEY (UM_TENANT_ID) REFERENCES UM_TENANT(UM_ID) ON DELETE CASCADE, + PRIMARY KEY (UM_ID) +); + + +CREATE TABLE IF NOT EXISTS UM_DIALECT( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_DIALECT_URI VARCHAR(255) NOT NULL, + UM_TENANT_ID INTEGER DEFAULT 0, + UNIQUE(UM_DIALECT_URI, UM_TENANT_ID), + PRIMARY KEY (UM_ID, UM_TENANT_ID) +); + + +CREATE TABLE IF NOT EXISTS UM_CLAIM( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_DIALECT_ID INTEGER NOT NULL, + UM_CLAIM_URI VARCHAR(255) NOT NULL, + UM_DISPLAY_TAG VARCHAR(255), + UM_DESCRIPTION VARCHAR(255), + UM_MAPPED_ATTRIBUTE_DOMAIN VARCHAR(255), + UM_MAPPED_ATTRIBUTE VARCHAR(255), + UM_REG_EX VARCHAR(255), + UM_SUPPORTED SMALLINT, + UM_REQUIRED SMALLINT, + UM_DISPLAY_ORDER INTEGER, + UM_CHECKED_ATTRIBUTE SMALLINT, + UM_READ_ONLY SMALLINT, + UM_TENANT_ID INTEGER DEFAULT 0, + UNIQUE(UM_DIALECT_ID, UM_CLAIM_URI,UM_MAPPED_ATTRIBUTE_DOMAIN, UM_TENANT_ID), + FOREIGN KEY(UM_DIALECT_ID, UM_TENANT_ID) REFERENCES UM_DIALECT(UM_ID, UM_TENANT_ID), + PRIMARY KEY (UM_ID, UM_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS UM_PROFILE_CONFIG( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_DIALECT_ID INTEGER, + UM_PROFILE_NAME VARCHAR(255), + UM_TENANT_ID INTEGER DEFAULT 0, + FOREIGN KEY(UM_DIALECT_ID, UM_TENANT_ID) REFERENCES UM_DIALECT(UM_ID, UM_TENANT_ID), + PRIMARY KEY (UM_ID, UM_TENANT_ID) +); + + +CREATE TABLE IF NOT EXISTS UM_HYBRID_ROLE( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_ROLE_NAME VARCHAR(255), + UM_TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (UM_ID, UM_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS UM_HYBRID_USER_ROLE( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_USER_NAME VARCHAR(255), + UM_ROLE_ID INTEGER NOT NULL, + UM_TENANT_ID INTEGER DEFAULT 0, + UM_DOMAIN_ID INTEGER, + UNIQUE (UM_USER_NAME, UM_ROLE_ID, UM_TENANT_ID,UM_DOMAIN_ID), + FOREIGN KEY (UM_ROLE_ID, UM_TENANT_ID) REFERENCES UM_HYBRID_ROLE(UM_ID, UM_TENANT_ID) ON DELETE CASCADE, + FOREIGN KEY (UM_DOMAIN_ID, UM_TENANT_ID) REFERENCES UM_DOMAIN(UM_DOMAIN_ID, UM_TENANT_ID) ON DELETE CASCADE, + PRIMARY KEY (UM_ID, UM_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS UM_HYBRID_REMEMBER_ME ( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_USER_NAME VARCHAR(255) NOT NULL, + UM_COOKIE_VALUE VARCHAR(1024), + UM_CREATED_TIME TIMESTAMP, + UM_TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (UM_ID, UM_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS UM_SYSTEM_ROLE( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_ROLE_NAME VARCHAR(255), + UM_TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (UM_ID, UM_TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS UM_SYSTEM_USER_ROLE( + UM_ID INTEGER NOT NULL AUTO_INCREMENT, + UM_USER_NAME VARCHAR(255), + UM_ROLE_ID INTEGER NOT NULL, + UM_TENANT_ID INTEGER DEFAULT 0, + UNIQUE (UM_USER_NAME, UM_ROLE_ID, UM_TENANT_ID), + FOREIGN KEY (UM_ROLE_ID, UM_TENANT_ID) REFERENCES UM_SYSTEM_ROLE(UM_ID, UM_TENANT_ID), + PRIMARY KEY (UM_ID, UM_TENANT_ID) +); diff --git a/src/test/resources/carbon-home/repository/conf/axis2/axis2.xml b/src/test/resources/carbon-home/repository/conf/axis2/axis2.xml new file mode 100644 index 000000000..fc5047f29 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/axis2/axis2.xml @@ -0,0 +1,723 @@ + + + + + + + + + + + + + ${hotdeployment} + ${hotupdate} + optional + true + work/mtom + 4000 + + ${childfirstCL} + + + true + + + true + + + + false + + inmemory + + + + + + + services + + + axis2services + + + axis2modules + + + @product.name@-@product.version@ + + + @product.name@-@product.version@ + + + + + + + false + + + + + + false + + + true + + + repository/deployment/server/synapse-configs + + + . + + + . + + + WSO2 Carbon Server + + + + + + + ${jaxwsparam} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 9763 + + + + + + + + + + + + 9443 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + HTTP/1.1 + chunked + + true + + + HTTP/1.1 + chunked + + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + + + multicast + + + + + wso2.carbon.domain + + + + + + 45564 + + 100 + + 60 + + + + + + 127.0.0.1 + + + + + + 4000 + + + + + + + + + + + + + + + + + + 127.0.0.1 + 4000 + + + + + + + + + diff --git a/src/test/resources/carbon-home/repository/conf/axis2/axis2_client.xml b/src/test/resources/carbon-home/repository/conf/axis2/axis2_client.xml new file mode 100644 index 000000000..40f3e07c3 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/axis2/axis2_client.xml @@ -0,0 +1,300 @@ + + + + + + + true + false + false + + + 500 + + 15000 + + + false + + + + true + + + + + + false + + + admin + axis2 + + + + + + + + + + + + + + + + + + + + + + false + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 6071 + + + + + + + + + + + + + + + + + + + + + + HTTP/1.1 + chunked + 60000 + 60000 + + + HTTP/1.1 + chunked + 60000 + 60000 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/resources/carbon-home/repository/conf/axis2/tenant-axis2.xml b/src/test/resources/carbon-home/repository/conf/axis2/tenant-axis2.xml new file mode 100644 index 000000000..6f49f62ed --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/axis2/tenant-axis2.xml @@ -0,0 +1,285 @@ + + + + + + + + + true + true + optional + + + true + + + false + + + + true + + + + + + false + + + false + + + axis2services + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/resources/carbon-home/repository/conf/carbon.xml b/src/test/resources/carbon-home/repository/conf/carbon.xml new file mode 100644 index 000000000..f24ee57be --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/carbon.xml @@ -0,0 +1,656 @@ + + + + + + + + + ${product.name} + + + ${product.key} + + + ${product.version} + + + + + + + + + local:/${carbon.context}/services/ + + + + + + + ${default.server.role} + + + + + + + org.wso2.carbon + + + / + + + + + + + + + 15 + + + + + + + + + 0 + + + + + 9999 + + 11111 + + + + + + 10389 + + 8000 + + + + + + 10500 + + + + + + + org.wso2.carbon.tomcat.jndi.CarbonJavaURLContextFactory + + + + + + + + + java + + + + + + + + + + false + + + false + + + 600 + + + + false + + + + + + + + 30 + + + + + + + + + 15 + + + + + + ${carbon.home}/repository/deployment/server/ + + + 15 + + + ${carbon.home}/repository/conf/axis2/axis2.xml + + + 30000 + + + ${carbon.home}/repository/deployment/client/ + + ${carbon.home}/repository/conf/axis2/axis2_client.xml + + true + + + + + + + + + + admin + Default Administrator Role + + + user + Default User Role + + + + + + + + + + + + ${carbon.home}/repository/resources/security/wso2carbon.jks + + JKS + + wso2carbon + + wso2carbon + + wso2carbon + + + + + + ${carbon.home}/repository/resources/security/client-truststore.jks + + JKS + + wso2carbon + + + + + + + + + + + + + + + + + + + UserManager + + + false + + + + + + + ${carbon.home}/tmp/work + + + + + + true + + + 10 + + + 30 + + + + + + 100 + + + + keystore + certificate + * + + org.wso2.carbon.ui.transports.fileupload.AnyFileUploadExecutor + + + + + jarZip + + org.wso2.carbon.ui.transports.fileupload.JarZipUploadExecutor + + + + dbs + + org.wso2.carbon.ui.transports.fileupload.DBSFileUploadExecutor + + + + tools + + org.wso2.carbon.ui.transports.fileupload.ToolsFileUploadExecutor + + + + toolsAny + + org.wso2.carbon.ui.transports.fileupload.ToolsAnyFileUploadExecutor + + + + + + + info + org.wso2.carbon.core.transports.util.InfoProcessor + + + wsdl + org.wso2.carbon.core.transports.util.Wsdl11Processor + + + wsdl2 + org.wso2.carbon.core.transports.util.Wsdl20Processor + + + xsd + org.wso2.carbon.core.transports.util.XsdProcessor + + + + + + false + false + true + svn + http://svnrepo.example.com/repos/ + username + password + true + + + + + + + + + + + + + + + ${require.carbon.servlet} + + + + + true + + + + + + + default repository + ${p2.repo.url} + + + + + + + + true + + + + + + true + + diff --git a/src/test/resources/carbon-home/repository/conf/cdm-config.xml b/src/test/resources/carbon-home/repository/conf/cdm-config.xml new file mode 100644 index 000000000..9097a645c --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/cdm-config.xml @@ -0,0 +1,96 @@ + + + + + + + + jdbc/DM_DS + + + + + 1000 + 60000 + 60000 + true + + org.wso2.carbon.device.mgt.extensions.push.notification.provider.fcm.FCMBasedPushNotificationProvider + + org.wso2.carbon.device.mgt.extensions.push.notification.provider.mqtt.MQTTBasedPushNotificationProvider + org.wso2.carbon.device.mgt.extensions.push.notification.provider.http.HTTPBasedPushNotificationProvider + org.wso2.carbon.device.mgt.extensions.push.notification.provider.xmpp.XMPPBasedPushNotificationProvider + + + + false + + + https://localhost:9443 + admin + admin + + + org.wso2.carbon.policy.mgt + true + 60000 + 5 + 8 + 20 + + + + Simple + + + + 20 + 20 + 20 + 20 + 20 + 20 + + + + true + + + + false + 600 + + 10000 + + + false + 86400 + + + false + false + + BYOD,COPE + + diff --git a/src/test/resources/carbon-home/repository/conf/datasources/master-datasources.xml b/src/test/resources/carbon-home/repository/conf/datasources/master-datasources.xml new file mode 100644 index 000000000..897e33581 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/datasources/master-datasources.xml @@ -0,0 +1,68 @@ + + + + org.wso2.carbon.ndatasource.rdbms.RDBMSDataSourceReader + + + + + + WSO2_CARBON_DB + The datasource used for registry and user manager + + jdbc/WSO2CarbonDB + + + + jdbc:h2:repository/database/WSO2CARBON_DB;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000 + wso2carbon + wso2carbon + org.h2.Driver + 50 + 60000 + true + SELECT 1 + 30000 + false + + + + + + + + + + diff --git a/src/test/resources/carbon-home/repository/conf/etc/bundle-config/README.txt b/src/test/resources/carbon-home/repository/conf/etc/bundle-config/README.txt new file mode 100644 index 000000000..ffa7c7926 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/etc/bundle-config/README.txt @@ -0,0 +1,12 @@ +This directory supports adding third-pary config files to specific bundles during runtime. + +Explanation: Each OSGi bundle has its own classLoader. Some thirdpary libs read configs from classPath. This scenario fails in OSGi runtime, since OSGi runtime does not share a common classPath for individual bundles. Bundling config files during the bundle creation process itself will solve the issue. However it limits the ability to edit the configs during restarts. + +Here we are providing a workaround for such scenarios. The given config file will get resolved to a fragment bundle and will get attached to the specified host bundle. The host bundle name(symbolic name) is resolved by looking at the directory structure. Hence host bundle name should be directory name of the config file directory. + + +Example: The bundle with symbolic name, 'org.foo.bar' expects a config file named 'foobar.properties' from its classPath. + +create a directory named 'org.foo.bar' inside 'repository/conf/etc/bundle-config' - (this directory) and place the foobar.properties file. + + diff --git a/src/test/resources/carbon-home/repository/conf/etc/carboncontext-osgi-services.properties b/src/test/resources/carbon-home/repository/conf/etc/carboncontext-osgi-services.properties new file mode 100644 index 000000000..f52d19400 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/etc/carboncontext-osgi-services.properties @@ -0,0 +1,3 @@ +#osgi.service.1 = org.wso2.carbon.client.configcontext.provider.Axis2ClientConfigContextProvider +#osgi.service.2 = org.wso2.carbon.user.core.UserManager +#osgi.service.3 = org.wso2.carbon.user.api.UserRealmService \ No newline at end of file diff --git a/src/test/resources/carbon-home/repository/conf/etc/config-validation.xml b/src/test/resources/carbon-home/repository/conf/etc/config-validation.xml new file mode 100644 index 000000000..3b5b3484b --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/etc/config-validation.xml @@ -0,0 +1,37 @@ + + + + + + 800 + 2047 + 2047 + 1024 + 4096 + 02:FB:AA:5F:20:64:49:4A:27:29:55:71:83:F7:46:CD + + + 256 + 512 + 256 + + + carbon.home + carbon.config.dir.path + axis2.home + + + Linux + Unix + Mac OS + Windows Server 2003 + Windows XP + Windows Vista + Windows 7 + Mac OS X + Windows Server 2008 + Windows Server 2008 R2 + AIX + + + diff --git a/src/test/resources/carbon-home/repository/conf/etc/jmx.xml b/src/test/resources/carbon-home/repository/conf/etc/jmx.xml new file mode 100644 index 000000000..b2bb2ac7a --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/etc/jmx.xml @@ -0,0 +1,32 @@ + + + + + true + + + localhost + + + ${Ports.JMX.RMIRegistryPort} + + + ${Ports.JMX.RMIServerPort} + diff --git a/src/test/resources/carbon-home/repository/conf/etc/launch.ini b/src/test/resources/carbon-home/repository/conf/etc/launch.ini new file mode 100644 index 000000000..8b9f5ad19 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/etc/launch.ini @@ -0,0 +1,258 @@ +# Eclipse Runtime Configuration Overrides +# These properties are loaded prior to starting the framework and can also be used to override System Properties +# @null is a special value used to override and clear the framework's copy of a System Property prior to starting the framework +# "*" can be used together with @null to clear System Properties that match a prefix name. + +osgi.*=@null +org.osgi.*=@null +eclipse.*=@null + +osgi.parentClassloader=app +osgi.contextClassLoaderParent=app + +# When osgi.clean is set to "true", any cached data used by the OSGi framework +# will be wiped clean. This will clean the caches used to store bundle +# dependency resolution and eclipse extension registry data. Using this +# option will force OSGi framework to reinitialize these caches. +# The following setting is put in place to get rid of the problems +# faced when re-starting the system. Please note that, when this setting is +# true, if you manually start a bundle, it would not be available when +# you re-start the system. To avid this, copy the bundle jar to the plugins +# folder, before you re-start the system. +osgi.clean=true + +# Uncomment the following line to turn on Eclipse Equinox debugging. +# You may also edit the osgi-debug.options file and fine tune the debugging +# options to suite your needs. +#osgi.debug=./repository/conf/osgi-debug.options + +# Following system property allows us to control the public JDK packages exported through the system bundle. +org.osgi.framework.system.packages=javax.accessibility,\ +javax.activity,\ +javax.crypto,\ +javax.crypto.interfaces,\ +javax.crypto.spec,\ +javax.imageio,\ +javax.imageio.event,\ +javax.imageio.metadata,\ +javax.imageio.plugins.bmp,\ +javax.imageio.plugins.jpeg,\ +javax.imageio.spi,\ +javax.imageio.stream,\ +javax.jms,\ +javax.management,\ +javax.management.loading,\ +javax.management.modelmbean,\ +javax.management.monitor,\ +javax.management.openmbean,\ +javax.management.relation,\ +javax.management.remote,\ +javax.management.remote.rmi,\ +javax.management.timer,\ +javax.naming,\ +javax.naming.directory,\ +javax.naming.event,\ +javax.naming.ldap,\ +javax.naming.spi,\ +javax.net,\ +javax.net.ssl,\ +javax.print,\ +javax.print.attribute,\ +javax.print.attribute.standard,\ +javax.print.event,\ +javax.rmi,\ +javax.rmi.CORBA,\ +javax.rmi.ssl,\ +javax.script,\ +javax.security.auth,\ +javax.security.auth.callback,\ +javax.security.auth.kerberos,\ +javax.security.auth.login,\ +javax.security.auth.spi,\ +javax.security.auth.x500,\ +javax.security.cert,\ +javax.security.sasl,\ +javax.sound.midi,\ +javax.sound.midi.spi,\ +javax.sound.sampled,\ +javax.sound.sampled.spi,\ +javax.sql,\ +javax.sql.rowset,\ +javax.sql.rowset.serial,\ +javax.sql.rowset.spi,\ +javax.swing,\ +javax.swing.border,\ +javax.swing.colorchooser,\ +javax.swing.event,\ +javax.swing.filechooser,\ +javax.swing.plaf,\ +javax.swing.plaf.basic,\ +javax.swing.plaf.metal,\ +javax.swing.plaf.multi,\ +javax.swing.plaf.synth,\ +javax.swing.table,\ +javax.swing.text,\ +javax.swing.text.html,\ +javax.swing.text.html.parser,\ +javax.swing.text.rtf,\ +javax.swing.tree,\ +javax.swing.undo,\ +javax.transaction,\ +javax.transaction.xa,\ +javax.xml.namespace,\ +javax.xml.parsers,\ +javax.xml.stream,\ +javax.xml.stream.events,\ +javax.xml.stream.util,\ +javax.xml.transform,\ +javax.xml.transform.stream,\ +javax.xml.transform.dom,\ +javax.xml.transform.sax,\ +javax.xml,\ +javax.xml.validation,\ +javax.xml.datatype,\ +javax.xml.xpath,\ +javax.activation,\ +com.sun.activation.registries,\ +com.sun.activation.viewers,\ +org.ietf.jgss,\ +org.omg.CORBA,\ +org.omg.CORBA_2_3,\ +org.omg.CORBA_2_3.portable,\ +org.omg.CORBA.DynAnyPackage,\ +org.omg.CORBA.ORBPackage,\ +org.omg.CORBA.portable,\ +org.omg.CORBA.TypeCodePackage,\ +org.omg.CosNaming,\ +org.omg.CosNaming.NamingContextExtPackage,\ +org.omg.CosNaming.NamingContextPackage,\ +org.omg.Dynamic,\ +org.omg.DynamicAny,\ +org.omg.DynamicAny.DynAnyFactoryPackage,\ +org.omg.DynamicAny.DynAnyPackage,\ +org.omg.IOP,\ +org.omg.IOP.CodecFactoryPackage,\ +org.omg.IOP.CodecPackage,\ +org.omg.Messaging,\ +org.omg.PortableInterceptor,\ +org.omg.PortableInterceptor.ORBInitInfoPackage,\ +org.omg.PortableServer,\ +org.omg.PortableServer.CurrentPackage,\ +org.omg.PortableServer.POAManagerPackage,\ +org.omg.PortableServer.POAPackage,\ +org.omg.PortableServer.portable,\ +org.omg.PortableServer.ServantLocatorPackage,\ +org.omg.SendingContext,\ +org.omg.stub.java.rmi,\ +org.w3c.dom,\ +org.w3c.dom.bootstrap,\ +org.w3c.dom.css,\ +org.w3c.dom.events,\ +org.w3c.dom.html,\ +org.w3c.dom.ls,\ +org.w3c.dom.ranges,\ +org.w3c.dom.stylesheets,\ +org.w3c.dom.traversal,\ +org.w3c.dom.views ,\ +org.xml.sax,\ +org.xml.sax.ext,\ +org.xml.sax.helpers,\ +org.apache.xerces.xpointer,\ +org.apache.xerces.xni.grammars,\ +org.apache.xerces.impl.xs.util,\ +org.apache.xerces.jaxp.validation,\ +org.apache.xerces.impl.dtd.models,\ +org.apache.xerces.impl.xpath,\ +org.apache.xerces.dom3.as,\ +org.apache.xerces.impl.dv.xs,\ +org.apache.xerces.util,\ +org.apache.xerces.impl.xs.identity,\ +org.apache.xerces.impl.xs.opti,\ +org.apache.xerces.jaxp,\ +org.apache.xerces.impl.dv,\ +org.apache.xerces.xs.datatypes,\ +org.apache.xerces.dom.events,\ +org.apache.xerces.impl.msg,\ +org.apache.xerces.xni,\ +org.apache.xerces.impl.xs,\ +org.apache.xerces.impl,\ +org.apache.xerces.impl.io,\ +org.apache.xerces.xinclude,\ +org.apache.xerces.jaxp.datatype,\ +org.apache.xerces.parsers,\ +org.apache.xerces.impl.dv.util,\ +org.apache.xerces.xni.parser,\ +org.apache.xerces.impl.xs.traversers,\ +org.apache.xerces.impl.dv.dtd,\ +org.apache.xerces.xs,\ +org.apache.xerces.impl.dtd,\ +org.apache.xerces.impl.validation,\ +org.apache.xerces.impl.xs.models,\ +org.apache.xerces.impl.xpath.regex,\ +org.apache.xml.serialize,\ +org.apache.xerces.dom,\ +org.apache.xalan,\ +org.apache.xalan.xslt,\ +org.apache.xalan.templates,\ +org.apache.xalan.xsltc,\ +org.apache.xalan.xsltc.cmdline,\ +org.apache.xalan.xsltc.cmdline.getopt,\ +org.apache.xalan.xsltc.trax,\ +org.apache.xalan.xsltc.dom,\ +org.apache.xalan.xsltc.runtime,\ +org.apache.xalan.xsltc.runtime.output,\ +org.apache.xalan.xsltc.util,\ +org.apache.xalan.xsltc.compiler,\ +org.apache.xalan.xsltc.compiler.util,\ +org.apache.xalan.serialize,\ +org.apache.xalan.client,\ +org.apache.xalan.res,\ +org.apache.xalan.transformer,\ +org.apache.xalan.extensions,\ +org.apache.xalan.lib,\ +org.apache.xalan.lib.sql,\ +org.apache.xalan.processor,\ +org.apache.xalan.trace,\ +org.apache.xml.dtm,\ +org.apache.xml.dtm.ref,\ +org.apache.xml.dtm.ref.sax2dtm,\ +org.apache.xml.dtm.ref.dom2dtm,\ +org.apache.xml.utils,\ +org.apache.xml.utils.res,\ +org.apache.xml.res,\ +org.apache.xml.serializer,\ +org.apache.xml.serializer.utils,\ +org.apache.xpath,\ +org.apache.xpath.domapi,\ +org.apache.xpath.objects,\ +org.apache.xpath.patterns,\ +org.apache.xpath.jaxp,\ +org.apache.xpath.res,\ +org.apache.xpath.operations,\ +org.apache.xpath.functions,\ +org.apache.xpath.axes,\ +org.apache.xpath.compiler,\ +org.apache.xml.resolver,\ +org.apache.xml.resolver.tools,\ +org.apache.xml.resolver.helpers,\ +org.apache.xml.resolver.readers,\ +org.apache.xml.resolver.etc,\ +org.apache.xml.resolver.apps,\ +javax.xml.ws,\ +javax.xml.ws.handler,\ +javax.xml.ws.handler.soap,\ +javax.xml.ws.http,\ +javax.xml.ws.soap,\ +javax.xml.ws.spi,\ +javax.xml.ws.spi.http,\ +javax.xml.ws.wsaddressing,\ +javax.xml.bind,\ +javax.xml.bind.annotation,\ +javax.xml.bind.annotation.adapters,\ +javax.annotation,\ +javax.jws,\ +javax.jws.soap,\ +com.sun.xml.internal.messaging.saaj.soap.ver1_1,\ +com.sun.xml.internal.messaging.saaj.soap,\ +com.sun.tools.internal.ws.spi,\ +org.wso2.carbon.bootstrap diff --git a/src/test/resources/carbon-home/repository/conf/etc/logging-bridge.properties b/src/test/resources/carbon-home/repository/conf/etc/logging-bridge.properties new file mode 100644 index 000000000..7b63190ae --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/etc/logging-bridge.properties @@ -0,0 +1,65 @@ +############################################################ +# Default Logging Configuration File +# +# You can use a different file by specifying a filename +# with the java.util.logging.config.file system property. +# For example java -Djava.util.logging.config.file=myfile +############################################################ + +############################################################ +# Global properties +# NOTE: this configuration file use to get the handler list, +# Properties(except level property) define for each handler +# may be not available because LogRecords handover to log4j +# appenders in runtime. +############################################################ + +# "handlers" specifies a comma separated list of log Handler +# classes. These handlers will be installed during VM startup. +# Note that these classes must be on the system classpath. +# By default we only configure a ConsoleHandler, which will only +# show messages at the INFO and above levels. +#handlers= java.util.logging.ConsoleHandler + +# To also add the FileHandler, use the following line instead. +#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler +# Add org.wso2.carbon.bootstrap.logging.handlers.LogEventHandler to handlers if you need to push java logs to LOGEVENT appender + +handlers= org.wso2.carbon.bootstrap.logging.handlers.LoggingConsoleHandler, org.wso2.carbon.bootstrap.logging.handlers.LoggingFileHandler + +# Default global logging level. +# This specifies which kinds of events are logged across +# all loggers. For any given facility this global level +# can be overriden by a facility specific level +# Note that the ConsoleHandler also has a separate level +# setting to limit messages printed to the console. +.level= INFO + +############################################################ +# Handler specific properties. +# Describes specific configuration info for Handlers. +# + +############################################################ +# This FileHandler pushed LogRecords to a log4j FileAppander in runtime +org.wso2.carbon.bootstrap.logging.handlers.LoggingFileHandler.level = INFO +#org.wso2.carbon.bootstrap.logging.handlers.LoggingFileHandler.formatter = java.util.logging.SimpleFormatter + +# This ConsoleHandler pushed LogRecords to q log4j ConsoleAppander in runtime +org.wso2.carbon.bootstrap.logging.handlers.LoggingConsoleHandler.level = INFO +#org.wso2.carbon.bootstrap.logging.handlers.LoggingConsoleHandler.formatter = java.util.logging.SimpleFormatter + + +############################################################ +# Facility specific properties. +# Provides extra control for each logger. +############################################################ + +# For example, set the com.xyz.foo logger to only log SEVERE +# messages: +#com.xyz.foo.level = SEVERE +org.apache.coyote.level = SEVERE +org.apache.catalina.level = SEVERE +com.hazelcast.level = SEVERE + + diff --git a/src/test/resources/carbon-home/repository/conf/etc/mime.mappings b/src/test/resources/carbon-home/repository/conf/etc/mime.mappings new file mode 100755 index 000000000..97a5c5a5f --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/etc/mime.mappings @@ -0,0 +1,27 @@ +# +# Copyright 2005-2011 WSO2, Inc. (http://wso2.com) +# +# Licensed 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. +# + +# This file is to define the human readable media type for a mime type. +# Eg:- +# text/plain txt text +application/wsdl+xml WSDL +application/x-xsd+xml Schema +application/policy+xml Policy +application/vnd.wso2-service+xml Service +application/vnd.wso2-hyperlink Hyperlink +application/vnd.wso2.endpoint Endpoint +application/vnd.wso2-api+xml API +application/vnd.wso2-uri+xml URI diff --git a/src/test/resources/carbon-home/repository/conf/etc/mime.types b/src/test/resources/carbon-home/repository/conf/etc/mime.types new file mode 100644 index 000000000..21c386da0 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/etc/mime.types @@ -0,0 +1,734 @@ +# +# Copyright 2005-2009 WSO2, Inc. (http://wso2.com) +# +# Licensed 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. +# + +# Media type for wsdl files. This is not defined in the original mime.types file. +chemical/x-alchemy alc +application/andrew-inset ez +application/wsdl+xml wsdl +application/vnd.sun.wadl+xml wadl +application/activemessage +application/applefile +application/atomicmail +application/batch-SMTP +application/beep+xml +application/cals-1840 +application/commonground +application/cu-seeme cu +application/cybercash +application/dca-rft +application/dec-dx +application/docbook+xml +application/dsptype tsp +application/dvcs +application/edi-consent +application/edi-x12 +application/edifact +application/eshop +application/font-tdpfr +application/futuresplash spl +application/ghostview +application/hta hta +application/http +application/hyperstudio +application/iges +application/index +application/index.cmd +application/index.obj +application/index.response +application/index.vnd +application/iotp +application/ipp +application/isup +application/java-archive jar +application/java-serialized-object ser +application/java-vm class +application/mac-binhex40 hqx +application/mac-compactpro cpt +application/macwriteii +application/marc +application/mathematica nb +application/mathematica-old +application/msaccess mdb +application/msword doc dot +application/news-message-id +application/news-transmission +application/ocsp-request +application/ocsp-response +application/octet-stream bin +application/oda oda +application/ogg ogg +application/parityfec +application/pdf pdf +application/pgp-encrypted +application/pgp-keys key +application/pgp-signature pgp +application/pics-rules prf +application/pkcs10 +application/pkcs7-mime +application/pkcs7-signature +application/pkix-cert +application/pkix-crl +application/pkixcmp +application/policy+xml +application/postscript ps ai eps +application/prs.alvestrand.titrax-sheet +application/prs.cww +application/prs.nprend +application/qsig +application/rar rar +application/rdf+xml rdf +application/remote-printing +application/riscos +application/rss+xml rss +application/rtf +application/sdp +application/set-payment +application/set-payment-initiation +application/set-registration +application/set-registration-initiation +application/sgml +application/sgml-open-catalog +application/sieve +application/slate +application/smil smi smil +application/timestamp-query +application/timestamp-reply +application/vemmi +application/whoispp-query +application/whoispp-response +application/wita +application/wordperfect wpd +application/wordperfect5.1 wp5 +application/x400-bp +application/xhtml+xml xhtml xht +application/xml xml xsl xslt jrxml +application/xml-dtd +application/xml-external-parsed-entity +application/zip zip +application/vnd.3M.Post-it-Notes +application/vnd.accpac.simply.aso +application/vnd.accpac.simply.imp +application/vnd.acucobol +application/vnd.aether.imp +application/vnd.anser-web-certificate-issue-initiation +application/vnd.anser-web-funds-transfer-initiation +application/vnd.audiograph +application/vnd.bmi +application/vnd.businessobjects +application/vnd.canon-cpdl +application/vnd.canon-lips +application/vnd.cinderella cdy +application/vnd.claymore +application/vnd.commerce-battelle +application/vnd.commonspace +application/vnd.comsocaller +application/vnd.contact.cmsg +application/vnd.cosmocaller +application/vnd.ctc-posml +application/vnd.cups-postscript +application/vnd.cups-raster +application/vnd.cups-raw +application/vnd.cybank +application/vnd.dna +application/vnd.dpgraph +application/vnd.dxr +application/vnd.ecdis-update +application/vnd.ecowin.chart +application/vnd.ecowin.filerequest +application/vnd.ecowin.fileupdate +application/vnd.ecowin.series +application/vnd.ecowin.seriesrequest +application/vnd.ecowin.seriesupdate +application/vnd.enliven +application/vnd.epson.esf +application/vnd.epson.msf +application/vnd.epson.quickanime +application/vnd.epson.salt +application/vnd.epson.ssf +application/vnd.ericsson.quickcall +application/vnd.eudora.data +application/vnd.fdf +application/vnd.ffsns +application/vnd.flographit +application/vnd.framemaker +application/vnd.fsc.weblaunch +application/vnd.fujitsu.oasys +application/vnd.fujitsu.oasys2 +application/vnd.fujitsu.oasys3 +application/vnd.fujitsu.oasysgp +application/vnd.fujitsu.oasysprs +application/vnd.fujixerox.ddd +application/vnd.fujixerox.docuworks +application/vnd.fujixerox.docuworks.binder +application/vnd.fut-misnet +application/vnd.grafeq +application/vnd.groove-account +application/vnd.groove-identity-message +application/vnd.groove-injector +application/vnd.groove-tool-message +application/vnd.groove-tool-template +application/vnd.groove-vcard +application/vnd.hhe.lesson-player +application/vnd.hp-HPGL +application/vnd.hp-PCL +application/vnd.hp-PCLXL +application/vnd.hp-hpid +application/vnd.hp-hps +application/vnd.httphone +application/vnd.hzn-3d-crossword +application/vnd.ibm.MiniPay +application/vnd.ibm.afplinedata +application/vnd.ibm.modcap +application/vnd.informix-visionary +application/vnd.intercon.formnet +application/vnd.intertrust.digibox +application/vnd.intertrust.nncp +application/vnd.intu.qbo +application/vnd.intu.qfx +application/vnd.irepository.package+xml +application/vnd.is-xpr +application/vnd.japannet-directory-service +application/vnd.japannet-jpnstore-wakeup +application/vnd.japannet-payment-wakeup +application/vnd.japannet-registration +application/vnd.japannet-registration-wakeup +application/vnd.japannet-setstore-wakeup +application/vnd.japannet-verification +application/vnd.japannet-verification-wakeup +application/vnd.koan +application/vnd.lotus-1-2-3 +application/vnd.lotus-approach +application/vnd.lotus-freelance +application/vnd.lotus-notes +application/vnd.lotus-organizer +application/vnd.lotus-screencam +application/vnd.lotus-wordpro +application/vnd.mcd +application/vnd.mediastation.cdkey +application/vnd.meridian-slingshot +application/vnd.mif +application/vnd.minisoft-hp3000-save +application/vnd.mitsubishi.misty-guard.trustweb +application/vnd.mobius.daf +application/vnd.mobius.dis +application/vnd.mobius.msl +application/vnd.mobius.plc +application/vnd.mobius.txf +application/vnd.motorola.flexsuite +application/vnd.motorola.flexsuite.adsi +application/vnd.motorola.flexsuite.fis +application/vnd.motorola.flexsuite.gotap +application/vnd.motorola.flexsuite.kmr +application/vnd.motorola.flexsuite.ttc +application/vnd.motorola.flexsuite.wem +application/vnd.mozilla.xul+xml xul +application/vnd.ms-artgalry +application/vnd.ms-asf +application/vnd.ms-excel xls xlb xlt +application/vnd.ms-lrm +application/vnd.ms-pki.seccat cat +application/vnd.ms-pki.stl stl +application/vnd.ms-powerpoint ppt pps +application/vnd.ms-project +application/vnd.ms-tnef +application/vnd.ms-works +application/vnd.mseq +application/vnd.msign +application/vnd.music-niff +application/vnd.musician +application/vnd.netfpx +application/vnd.noblenet-directory +application/vnd.noblenet-sealer +application/vnd.noblenet-web +application/vnd.novadigm.EDM +application/vnd.novadigm.EDX +application/vnd.novadigm.EXT +application/vnd.oasis.opendocument.chart odc +application/vnd.oasis.opendocument.database odb +application/vnd.oasis.opendocument.formula odf +application/vnd.oasis.opendocument.graphics odg +application/vnd.oasis.opendocument.graphics-template otg +application/vnd.oasis.opendocument.image odi +application/vnd.oasis.opendocument.presentation odp +application/vnd.oasis.opendocument.presentation-template otp +application/vnd.oasis.opendocument.spreadsheet ods +application/vnd.oasis.opendocument.spreadsheet-template ots +application/vnd.oasis.opendocument.text odt +application/vnd.oasis.opendocument.text-master odm +application/vnd.oasis.opendocument.text-template ott +application/vnd.oasis.opendocument.text-web oth +application/vnd.osa.netdeploy +application/vnd.palm +application/vnd.pg.format +application/vnd.pg.osasli +application/vnd.powerbuilder6 +application/vnd.powerbuilder6-s +application/vnd.powerbuilder7 +application/vnd.powerbuilder7-s +application/vnd.powerbuilder75 +application/vnd.powerbuilder75-s +application/vnd.previewsystems.box +application/vnd.publishare-delta-tree +application/vnd.pvi.ptid1 +application/vnd.pwg-xhtml-print+xml +application/vnd.rapid +application/vnd.rim.cod cod +application/vnd.s3sms +application/vnd.seemail +application/vnd.shana.informed.formdata +application/vnd.shana.informed.formtemplate +application/vnd.shana.informed.interchange +application/vnd.shana.informed.package +application/vnd.smaf mmf +application/vnd.sss-cod +application/vnd.sss-dtf +application/vnd.sss-ntf +application/vnd.stardivision.calc sdc +application/vnd.stardivision.draw sda +application/vnd.stardivision.impress sdd sdp +application/vnd.stardivision.math smf +application/vnd.stardivision.writer sdw vor +application/vnd.stardivision.writer-global sgl +application/vnd.street-stream +application/vnd.sun.xml.calc sxc +application/vnd.sun.xml.calc.template stc +application/vnd.sun.xml.draw sxd +application/vnd.sun.xml.draw.template std +application/vnd.sun.xml.impress sxi +application/vnd.sun.xml.impress.template sti +application/vnd.sun.xml.math sxm +application/vnd.sun.xml.writer sxw +application/vnd.sun.xml.writer.global sxg +application/vnd.sun.xml.writer.template stw +application/vnd.svd +application/vnd.swiftview-ics +application/vnd.symbian.install sis +application/vnd.triscape.mxs +application/vnd.trueapp +application/vnd.truedoc +application/vnd.tve-trigger +application/vnd.ufdl +application/vnd.uplanet.alert +application/vnd.uplanet.alert-wbxml +application/vnd.uplanet.bearer-choice +application/vnd.uplanet.bearer-choice-wbxml +application/vnd.uplanet.cacheop +application/vnd.uplanet.cacheop-wbxml +application/vnd.uplanet.channel +application/vnd.uplanet.channel-wbxml +application/vnd.uplanet.list +application/vnd.uplanet.list-wbxml +application/vnd.uplanet.listcmd +application/vnd.uplanet.listcmd-wbxml +application/vnd.uplanet.signal +application/vnd.vcx +application/vnd.vectorworks +application/vnd.vidsoft.vidconference +application/vnd.visio vsd +application/vnd.vividence.scriptfile +application/vnd.wap.sic +application/vnd.wap.slc +application/vnd.wap.wbxml wbxml +application/vnd.wap.wmlc wmlc +application/vnd.wap.wmlscriptc wmlsc +application/vnd.webturbo +application/vnd.wrq-hp3000-labelled +application/vnd.wso2.bpel+xml bpel +application/vnd.wso2.bpmn+xml bpmn +application/vnd.wso2.endpoint +application/vnd.wso2.governance-archive gar +application/vnd.wso2-hyperlink +application/vnd.wso2.registry-ext-type+xml rxt +application/vnd.wso2-service+xml +application/vnd.wso2.xpdl+xml xpdl +application/vnd.wt.stf +application/vnd.xara +application/vnd.xfdl +application/vnd.yellowriver-custom-menu +application/x-123 wk +application/x-abiword abw +application/x-apple-diskimage dmg +application/x-bcpio bcpio +application/x-bittorrent torrent +application/x-cdf cdf +application/x-cdlink vcd +application/x-chess-pgn pgn +application/x-core +application/x-cpio cpio +application/x-csh csh +application/x-debian-package deb udeb +application/x-director dcr dir dxr +application/x-dms dms +application/x-doom wad +application/x-dvi dvi +application/x-executable +application/x-flac flac +application/x-font pfa pfb gsf pcf pcf.Z +application/x-freemind mm +application/x-futuresplash spl +application/x-gnumeric gnumeric +application/x-go-sgf sgf +application/x-graphing-calculator gcf +application/x-gtar gtar tgz taz +application/x-hdf hdf +application/x-httpd-php phtml pht php +application/x-httpd-php-source phps +application/x-httpd-php3 php3 +application/x-httpd-php3-preprocessed php3p +application/x-httpd-php4 php4 +application/x-httpd-eruby rhtml +application/x-ica ica +application/x-internet-signup ins isp +application/x-iphone iii +application/x-iso9660-image iso +application/x-java-applet +application/x-java-bean +application/x-java-jnlp-file jnlp +application/x-javascript js +application/x-jmol jmz +application/x-kchart chrt +application/x-kdelnk +application/x-killustrator kil +application/x-koan skp skd skt skm +application/x-kpresenter kpr kpt +application/x-kspread ksp +application/x-kword kwd kwt +application/x-latex latex +application/x-lha lha +application/x-lzh lzh +application/x-lzx lzx +application/x-maker frm maker frame fm fb book fbdoc +application/x-mif mif +application/x-ms-wmd wmd +application/x-ms-wmz wmz +application/x-msdos-program com exe bat dll +application/x-msi msi +application/x-netcdf nc +application/x-ns-proxy-autoconfig pac +application/x-nwc nwc +application/x-object o +application/x-oz-application oza +application/x-pkcs7-certreqresp p7r +application/x-pkcs7-crl crl +application/x-python-code pyc pyo +application/x-quicktimeplayer qtl +application/x-redhat-package-manager rpm +application/x-rx +application/x-sh sh +application/x-shar shar +application/x-shellscript +application/x-shockwave-flash swf swfl +application/x-stuffit sit +application/x-sv4cpio sv4cpio +application/x-sv4crc sv4crc +application/x-tar tar +application/x-tcl tcl +application/x-tex-gf gf +application/x-tex-pk pk +application/x-texinfo texinfo texi +application/x-trash ~ % bak old sik +application/x-troff t tr roff +application/x-troff-man man +application/x-troff-me me +application/x-troff-ms ms +application/x-ustar ustar +application/x-videolan +application/x-wais-source src +application/x-wingz wz +application/x-x509-ca-cert crt +application/x-xcf xcf +application/x-xfig fig +application/x-xpinstall xpi +application/x-xsd+xml xsd + +audio/32kadpcm +audio/basic au snd +audio/g.722.1 +audio/l16 +audio/midi mid midi kar +audio/mp4a-latm +audio/mpa-robust +audio/mpeg mpga mpega mp2 mp3 m4a +audio/mpegurl m3u +audio/parityfec +audio/prs.sid sid +audio/telephone-event +audio/tone +audio/vnd.cisco.nse +audio/vnd.cns.anp1 +audio/vnd.cns.inf1 +audio/vnd.digital-winds +audio/vnd.everad.plj +audio/vnd.lucent.voice +audio/vnd.nortel.vbk +audio/vnd.nuera.ecelp4800 +audio/vnd.nuera.ecelp7470 +audio/vnd.nuera.ecelp9600 +audio/vnd.octel.sbc +audio/vnd.qcelp +audio/vnd.rhetorex.32kadpcm +audio/vnd.vmx.cvsd +audio/x-aiff aif aiff aifc +audio/x-gsm gsm +audio/x-mpegurl m3u +audio/x-ms-wma wma +audio/x-ms-wax wax +audio/x-pn-realaudio-plugin +audio/x-pn-realaudio ra rm ram +audio/x-realaudio ra +audio/x-scpls pls +audio/x-sd2 sd2 +audio/x-wav wav + +chemical/x-alchemy alc +chemical/x-cache cac cache +chemical/x-cache-csf csf +chemical/x-cactvs-binary cbin cascii ctab +chemical/x-cdx cdx +chemical/x-cerius cer +chemical/x-chem3d c3d +chemical/x-chemdraw chm +chemical/x-cif cif +chemical/x-cmdf cmdf +chemical/x-cml cml +chemical/x-compass cpa +chemical/x-crossfire bsd +chemical/x-csml csml csm +chemical/x-ctx ctx +chemical/x-cxf cxf cef +#chemical/x-daylight-smiles smi +chemical/x-embl-dl-nucleotide emb embl +chemical/x-galactic-spc spc +chemical/x-gamess-input inp gam gamin +chemical/x-gaussian-checkpoint fch fchk +chemical/x-gaussian-cube cub +chemical/x-gaussian-input gau gjc gjf +chemical/x-gaussian-log gal +chemical/x-gcg8-sequence gcg +chemical/x-genbank gen +chemical/x-hin hin +chemical/x-isostar istr ist +chemical/x-jcamp-dx jdx dx +chemical/x-kinemage kin +chemical/x-macmolecule mcm +chemical/x-macromodel-input mmd mmod +chemical/x-mdl-molfile mol +chemical/x-mdl-rdfile rd +chemical/x-mdl-rxnfile rxn +chemical/x-mdl-sdfile sd sdf +chemical/x-mdl-tgf tgf +#chemical/x-mif mif +chemical/x-mmcif mcif +chemical/x-mol2 mol2 +chemical/x-molconn-Z b +chemical/x-mopac-graph gpt +chemical/x-mopac-input mop mopcrt mpc dat zmt +chemical/x-mopac-out moo +chemical/x-mopac-vib mvb +chemical/x-ncbi-asn1 asn +chemical/x-ncbi-asn1-ascii prt ent +chemical/x-ncbi-asn1-binary val aso +chemical/x-ncbi-asn1-spec asn +chemical/x-pdb pdb ent +chemical/x-rosdal ros +chemical/x-swissprot sw +chemical/x-vamas-iso14976 vms +chemical/x-vmd vmd +chemical/x-xtel xtel +chemical/x-xyz xyz + +image/cgm +image/g3fax +image/gif gif +image/ief ief +image/jpeg jpeg jpg jpe +image/naplps +image/pcx pcx +image/png png +image/prs.btif +image/prs.pti +image/svg+xml svg svgz +image/tiff tiff tif +image/vnd.cns.inf2 +image/vnd.djvu djvu djv +image/vnd.dwg +image/vnd.dxf +image/vnd.fastbidsheet +image/vnd.fpx +image/vnd.fst +image/vnd.fujixerox.edmics-mmr +image/vnd.fujixerox.edmics-rlc +image/vnd.mix +image/vnd.net-fpx +image/vnd.svf +image/vnd.wap.wbmp wbmp +image/vnd.xiff +image/x-cmu-raster ras +image/x-coreldraw cdr +image/x-coreldrawpattern pat +image/x-coreldrawtemplate cdt +image/x-corelphotopaint cpt +image/x-icon ico +image/x-jg art +image/x-jng jng +image/x-ms-bmp bmp +image/x-photoshop psd +image/x-portable-anymap pnm +image/x-portable-bitmap pbm +image/x-portable-graymap pgm +image/x-portable-pixmap ppm +image/x-rgb rgb +image/x-xbitmap xbm +image/x-xpixmap xpm +image/x-xwindowdump xwd + +inode/chardevice +inode/blockdevice +inode/directory-locked +inode/directory +inode/fifo +inode/socket + +message/delivery-status +message/disposition-notification +message/external-body +message/http +message/s-http +message/news +message/partial +message/rfc822 + +model/iges igs iges +model/mesh msh mesh silo +model/vnd.dwf +model/vnd.flatland.3dml +model/vnd.gdl +model/vnd.gs-gdl +model/vnd.gtw +model/vnd.mts +model/vnd.vtu +model/vrml wrl vrml + +multipart/alternative +multipart/appledouble +multipart/byteranges +multipart/digest +multipart/encrypted +multipart/form-data +multipart/header-set +multipart/mixed +multipart/parallel +multipart/related +multipart/report +multipart/signed +multipart/voice-message + +text/calendar ics icz +text/comma-separated-values csv +text/css css +text/directory +text/english +text/enriched +text/h323 323 +text/html html htm shtml +text/iuls uls +text/mathml mml +text/parityfec +text/plain asc txt text diff pot sql +text/prs.lines.tag +text/rfc822-headers +text/richtext rtx +text/rtf rtf +text/scriptlet sct wsc +text/t140 +text/texmacs tm ts +text/tab-separated-values tsv +text/uri-list +text/vnd.abc +text/vnd.curl +text/vnd.DMClientScript +text/vnd.flatland.3dml +text/vnd.fly +text/vnd.fmi.flexstor +text/vnd.in3d.3dml +text/vnd.in3d.spot +text/vnd.IPTC.NewsML +text/vnd.IPTC.NITF +text/vnd.latex-z +text/vnd.motorola.reflex +text/vnd.ms-mediapackage +text/vnd.sun.j2me.app-descriptor jad +text/vnd.wap.si +text/vnd.wap.sl +text/vnd.wap.wml wml +text/vnd.wap.wmlscript wmls +text/x-bibtex bib +text/x-boo boo +text/x-c++hdr h++ hpp hxx hh +text/x-c++src c++ cpp cxx cc +text/x-chdr h +text/x-component htc +text/x-crontab +text/x-csh csh +text/x-csrc c +text/x-dsrc d +text/x-haskell hs +text/x-java java +text/x-literate-haskell lhs +text/x-makefile +text/x-moc moc +text/x-pascal p pas +text/x-pcs-gcd gcd +text/x-perl pl pm +text/x-python py +text/x-server-parsed-html +text/x-setext etx +text/x-sh sh +text/x-tcl tcl tk +text/x-tex tex ltx sty cls +text/x-vcalendar vcs +text/x-vcard vcf + +video/dl dl +video/dv dif dv +video/fli fli +video/gl gl +video/mpeg mpeg mpg mpe +video/mp4 mp4 +video/quicktime qt mov +video/mp4v-es +video/parityfec +video/pointer +video/vnd.fvt +video/vnd.motorola.video +video/vnd.motorola.videop +video/vnd.mpegurl mxu +video/vnd.mts +video/vnd.nokia.interleaved-multimedia +video/vnd.vivo +video/x-la-asf lsf lsx +video/x-mng mng +video/x-ms-asf asf asx +video/x-ms-wm wm +video/x-ms-wmv wmv +video/x-ms-wmx wmx +video/x-ms-wvx wvx +video/x-msvideo avi +video/x-sgi-movie movie + +x-conference/x-cooltalk ice + +x-world/x-vrml vrm vrml wrl diff --git a/src/test/resources/carbon-home/repository/conf/etc/osgi-debug.options b/src/test/resources/carbon-home/repository/conf/etc/osgi-debug.options new file mode 100644 index 000000000..32ffd8739 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/etc/osgi-debug.options @@ -0,0 +1,95 @@ +#### Debugging options for org.eclipse.osgi + +# Turn on general debugging for org.eclipse.osgi +org.eclipse.osgi/debug=true +# Prints out class loading debug information +org.eclipse.osgi/debug/loader=false +# Prints out event (FrameworkEvent/BundleEvent/ServiceEvent) and listener debug information +org.eclipse.osgi/debug/events=false +# Prints out OSGi service debug information (registration/getting/ungetting etc.) +org.eclipse.osgi/debug/services=false +# Prints out bundle manifest parsing debug information +org.eclipse.osgi/debug/manifest=false +# Prints out LDAP filter debug information +org.eclipse.osgi/debug/filter=false +# Prints out security (PermissionAdmin service) debug information +org.eclipse.osgi/debug/security=false +# Prints out start level service debug information +org.eclipse.osgi/debug/startlevel=true +# Prints out package admin service debug information +org.eclipse.osgi/debug/packageadmin=false +# Prints out timing information for bundle activation +org.eclipse.osgi/debug/bundleTime=false +# Debug the loading of message bundles +org.eclipse.osgi/debug/messageBundles=false + +# Eclipse adaptor options +org.eclipse.osgi/eclipseadaptor/debug = false +org.eclipse.osgi/eclipseadaptor/debug/location = false +org.eclipse.osgi/eclipseadaptor/debug/platformadmin=false +org.eclipse.osgi/eclipseadaptor/debug/platformadmin/resolver=false +org.eclipse.osgi/eclipseadaptor/converter/debug = false + +### OSGi resolver options +# Turns on debugging for the resolver +org.eclipse.osgi/resolver/debug = false +# Prints out wiring information after the resolver has completed the resolve process +org.eclipse.osgi/resolver/wiring = false +# Prints out Import-Package information +org.eclipse.osgi/resolver/imports = false +# Prints out Require-Bundle information +org.eclipse.osgi/resolver/requires = false +# Prints out package grouping information form the "uses" clause +org.eclipse.osgi/resolver/grouping = false +# Prints out cycle information +org.eclipse.osgi/resolver/cycles = false +# Prints out Eclipse-GenericRequire information +org.eclipse.osgi/resolver/generics = false + +#### Profile settings +org.eclipse.osgi/profile/startup = false +org.eclipse.osgi/profile/benchmark = false +org.eclipse.osgi/profile/debug = true + +# Override the default implemenation +org.eclipse.osgi/profile/impl = org.eclipse.osgi.internal.profile.DefaultProfileLogger + +# Append all profile messages to the filename specified +org.eclipse.osgi/defaultprofile/logfilename = + +# Output all profile log messages synchronously to the jvm console. +# By default, all log messages are cached until the log buffer is +# requested. +org.eclipse.osgi/defaultprofile/logsynchronously = false + +# Specify the size of the default profile implementation log buffer. +org.eclipse.osgi/defaultprofile/buffersize = 256 + +#### Monitoring settings +# monitor class loading +org.eclipse.osgi/monitor/classes=false + +# monitor bundle activation +org.eclipse.osgi/monitor/activation=false + +# monitor resource bundle (*.properties) loading +org.eclipse.osgi/monitor/resources=false + + +#### Trace settings +# trace class loading - snapshot the execution stack when a class is loaded +org.eclipse.osgi/trace/classLoading=false + +# trace location - file in which execution traces are written +org.eclipse.osgi/trace/filename=runtime.traces + +# trace filters - Java properties file defining which classes should +# be traced (if trace/classLoading is true) +# File format: +# plugins= +# packages= +# Note that there may be many 'plugins' and 'packages' lines in one file. +org.eclipse.osgi/trace/filters=trace.properties + +# trace bundle activation - snapshot the execution stack when a bundle is activated +org.eclipse.osgi/trace/activation=false diff --git a/src/test/resources/carbon-home/repository/conf/log4j.properties b/src/test/resources/carbon-home/repository/conf/log4j.properties new file mode 100644 index 000000000..9cff0ddf7 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/log4j.properties @@ -0,0 +1,165 @@ +# +# Copyright 2009 WSO2, Inc. (http://wso2.com) +# +# Licensed 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. +# + +# +# This is the log4j configuration file used by WSO2 Carbon +# +# IMPORTANT : Please do not remove or change the names of any +# of the Appenders defined here. The layout pattern & log file +# can be changed using the WSO2 Carbon Management Console, and those +# settings will override the settings in this file. +# + +log4j.rootLogger=INFO, CARBON_CONSOLE, CARBON_LOGFILE, CARBON_MEMORY, CARBON_SYS_LOG + +log4j.logger.AUDIT_LOG=INFO, AUDIT_LOGFILE +log4j.logger.org.apache.axis2.wsdl.codegen.writer.PrettyPrinter=ERROR, CARBON_LOGFILE, CARBON_MEMORY +log4j.logger.org.apache.axis2.clustering=INFO, CARBON_CONSOLE, CARBON_LOGFILE +log4j.logger.org.apache=INFO, CARBON_LOGFILE, CARBON_MEMORY +log4j.logger.org.apache.catalina=WARN +log4j.logger.org.apache.tomcat=WARN +log4j.logger.org.wso2.carbon.apacheds=WARN +log4j.logger.org.apache.directory.server.ldap=ERROR +log4j.logger.org.apache.directory.server.core.event=WARN +log4j.logger.com.atomikos=INFO,ATOMIKOS +log4j.logger.org.quartz=WARN +log4j.logger.org.apache.jackrabbit.webdav=WARN +log4j.logger.org.apache.juddi=ERROR +log4j.logger.org.apache.commons.digester.Digester=WARN +log4j.logger.org.apache.jasper.compiler.TldLocationsCache=WARN +log4j.logger.org.apache.qpid=WARN +log4j.logger.org.apache.qpid.server.Main=INFO +log4j.logger.qpid.message=WARN +log4j.logger.qpid.message.broker.listening=INFO +log4j.logger.org.apache.tiles=WARN +log4j.logger.org.apache.commons.httpclient=ERROR +log4j.logger.org.apache.coyote=WARN +log4j.logger.org.apache.solr=ERROR +log4j.logger.me.prettyprint.cassandra.hector.TimingLogger=ERROR +log4j.logger.org.wso2=INFO +log4j.logger.org.apache.axis2.enterprise=FATAL, CARBON_LOGFILE, CARBON_MEMORY +log4j.logger.org.opensaml.xml=WARN, CARBON_LOGFILE, CARBON_MEMORY +log4j.logger.org.apache.directory.shared.ldap=WARN, CARBON_LOGFILE, CARBON_MEMORY +log4j.logger.org.apache.directory.server.ldap.handlers=WARN, CARBON_LOGFILE, CARBON_MEMORY +#Following are to remove false error messages from startup (IS) +log4j.logger.org.apache.directory.shared.ldap.entry.DefaultServerAttribute=FATAL, CARBON_LOGFILE, CARBON_MEMORY +log4j.logger.org.apache.directory.server.core.DefaultDirectoryService=ERROR, CARBON_LOGFILE, CARBON_MEMORY +log4j.logger.org.apache.directory.shared.ldap.ldif.LdifReader=ERROR, CARBON_LOGFILE, CARBON_MEMORY +log4j.logger.org.apache.directory.server.ldap.LdapProtocolHandler=ERROR, CARBON_LOGFILE, CARBON_MEMORY +log4j.logger.org.apache.directory.server.core=ERROR, CARBON_LOGFILE, CARBON_MEMORY +log4j.logger.org.apache.directory.server.ldap.LdapSession=ERROR, CARBON_LOGFILE, CARBON_MEMORY +#Hive Related Log configurations +log4j.logger.DataNucleus=ERROR +log4j.logger.Datastore=ERROR +log4j.logger.Datastore.Schema=ERROR +log4j.logger.JPOX.Datastore=ERROR +log4j.logger.JPOX.Plugin=ERROR +log4j.logger.JPOX.MetaData=ERROR +log4j.logger.JPOX.Query=ERROR +log4j.logger.JPOX.General=ERROR +log4j.logger.JPOX.Enhancer=ERROR +log4j.logger.org.apache.hadoop.hive=WARN +log4j.logger.hive=WARN +log4j.logger.ExecMapper=WARN +log4j.logger.ExecReducer=WARN +log4j.logger.net.sf.ehcache.config.ConfigurationFactory=ERROR + +log4j.logger.trace.messages=TRACE,CARBON_TRACE_LOGFILE + +log4j.additivity.org.apache.axis2.clustering=false +log4j.additivity.com.atomikos=false +log4j.additivity.org.apache=false + +# CARBON_CONSOLE is set to be a ConsoleAppender using a PatternLayout. +log4j.appender.CARBON_CONSOLE=org.wso2.carbon.utils.logging.appenders.CarbonConsoleAppender +log4j.appender.CARBON_CONSOLE.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout +# ConversionPattern will be overridden by the configuration setting in the DB +log4j.appender.CARBON_CONSOLE.layout.ConversionPattern=[%d] %P%5p {%c} - %x %m%n +log4j.appender.CARBON_CONSOLE.layout.TenantPattern=%U%@%D[%T] +log4j.appender.CARBON_CONSOLE.threshold=DEBUG + +# CARBON_MEMORY is set to be a MemoryAppender using a PatternLayout. +log4j.appender.CARBON_MEMORY=org.wso2.carbon.utils.logging.appenders.MemoryAppender +log4j.appender.CARBON_MEMORY.layout=org.apache.log4j.PatternLayout +log4j.appender.CARBON_MEMORY.bufferSize=200 +# ConversionPattern will be overridden by the configuration setting in the DB +#log4j.appender.CARBON_MEMORY.layout.ConversionPattern=[%d] %5p - %x %m {%c}%n +log4j.appender.CARBON_MEMORY.layout.ConversionPattern=[%d] %5p {%c} - %x %m %n +log4j.appender.CARBON_MEMORY.threshold=DEBUG + + +# CARBON_LOGFILE is set to be a DailyRollingFileAppender using a PatternLayout. +log4j.appender.CARBON_LOGFILE=org.wso2.carbon.utils.logging.appenders.CarbonDailyRollingFileAppender +# Log file will be overridden by the configuration setting in the DB +# This path should be relative to WSO2 Carbon Home +log4j.appender.CARBON_LOGFILE.File=${carbon.home}/repository/logs/${instance.log}/wso2carbon${instance.log}.log +log4j.appender.CARBON_LOGFILE.Append=true +log4j.appender.CARBON_LOGFILE.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout +# ConversionPattern will be overridden by the configuration setting in the DB +log4j.appender.CARBON_LOGFILE.layout.ConversionPattern=TID: [%T] [%S] [%d] %P%5p {%c} - %x %m %n +log4j.appender.CARBON_LOGFILE.layout.TenantPattern=%U%@%D [%T] [%S] +log4j.appender.CARBON_LOGFILE.threshold=DEBUG + +log4j.appender.CARBON_SYS_LOG = org.apache.log4j.net.SyslogAppender +log4j.appender.CARBON_SYS_LOG.layout=org.apache.log4j.PatternLayout +log4j.appender.CARBON_SYS_LOG.layout.ConversionPattern=[%d] %5p {%c} - %x %m %n +log4j.appender.CARBON_SYS_LOG.SyslogHost=localhost +log4j.appender.CARBON_SYS_LOG.Facility=USER +log4j.appender.CARBON_SYS_LOG.threshold=DEBUG + +# LOGEVENT is set to be a LogEventAppender using a PatternLayout to send logs to LOGEVENT +log4j.appender.LOGEVENT=org.wso2.carbon.logging.service.appender.LogEventAppender +log4j.appender.LOGEVENT.url=tcp://10.100.3.103:7611 +log4j.appender.LOGEVENT.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout +log4j.appender.LOGEVENT.columnList=%T,%S,%A,%d,%c,%p,%m,%H,%I,%Stacktrace +log4j.appender.LOGEVENT.userName=admin +log4j.appender.LOGEVENT.password=admin +#log4j.appender.LOGEVENT.password=secretAlias:Log4j.Appender.LOGEVENT.Password + +# Appender config to CARBON_TRACE_LOGFILE +log4j.appender.CARBON_TRACE_LOGFILE=org.apache.log4j.DailyRollingFileAppender +log4j.appender.CARBON_TRACE_LOGFILE.File=${carbon.home}/repository/logs/${instance.log}/wso2carbon-trace-messages${instance.log}.log +log4j.appender.CARBON_TRACE_LOGFILE.Append=true +log4j.appender.CARBON_TRACE_LOGFILE.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout +log4j.appender.CARBON_TRACE_LOGFILE.layout.ConversionPattern=[%d] %P%5p {%c} - %x %m %n +log4j.appender.CARBON_TRACE_LOGFILE.layout.TenantPattern=%U%@%D [%T] [%S] +log4j.appender.CARBON_TRACE_LOGFILE.threshold=TRACE +log4j.additivity.trace.messages=false + +# Appender config to AUDIT_LOGFILE +log4j.appender.AUDIT_LOGFILE=org.apache.log4j.DailyRollingFileAppender +log4j.appender.AUDIT_LOGFILE.File=${carbon.home}/repository/logs/audit.log +log4j.appender.AUDIT_LOGFILE.Append=true +log4j.appender.AUDIT_LOGFILE.layout=org.wso2.carbon.utils.logging.TenantAwarePatternLayout +log4j.appender.AUDIT_LOGFILE.layout.ConversionPattern=[%d] %P%5p {%c}- %x %m %n +log4j.appender.AUDIT_LOGFILE.layout.TenantPattern=%U%@%D [%T] [%S] +log4j.appender.AUDIT_LOGFILE.threshold=INFO +log4j.additivity.AUDIT_LOG=false + +# Appender config to send Atomikos transaction logs to new log file tm.out. +log4j.appender.ATOMIKOS = org.apache.log4j.RollingFileAppender +log4j.appender.ATOMIKOS.File = repository/logs/tm.out +log4j.appender.ATOMIKOS.Append = true +log4j.appender.ATOMIKOS.layout = org.apache.log4j.PatternLayout +log4j.appender.ATOMIKOS.layout.ConversionPattern=%p %t %c - %m%n + +# This file is used to override the default logger settings, and is used to remove unwanted logs from Shindig appearing on the console. + +# Specification of Handler used by Console Logger +handlers=java.util.logging.ConsoleHandler + +# Replacing default INFO level with SEVERE +java.util.logging.ConsoleHandler.level=SEVERE diff --git a/src/test/resources/carbon-home/repository/conf/registry.xml b/src/test/resources/carbon-home/repository/conf/registry.xml new file mode 100644 index 000000000..c16502090 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/registry.xml @@ -0,0 +1,106 @@ + + + + + + + + wso2registry + false + true + / + + + jdbc:h2:./target/databasetest/CARBON_TEST + + org.h2.Driver + 80 + 60000 + 5 + + + + + + + + + + + + false + + + + true + true + true + true + + diff --git a/src/test/resources/carbon-home/repository/conf/security/authenticators.xml b/src/test/resources/carbon-home/repository/conf/security/authenticators.xml new file mode 100644 index 000000000..01cd4c98c --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/security/authenticators.xml @@ -0,0 +1,73 @@ + + + + + + + + + + 5 + + + + + 10 + + /carbon/admin/login.jsp + carbonServer + https://localhost:9443/samlsso + urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/resources/carbon-home/repository/conf/tomcat/carbon/META-INF/context.xml b/src/test/resources/carbon-home/repository/conf/tomcat/carbon/META-INF/context.xml new file mode 100644 index 000000000..04f622e3e --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/tomcat/carbon/META-INF/context.xml @@ -0,0 +1,31 @@ + + + + + + + WEB-INF/web.xml + + + + + + + + + + diff --git a/src/test/resources/carbon-home/repository/conf/tomcat/carbon/WEB-INF/web.xml b/src/test/resources/carbon-home/repository/conf/tomcat/carbon/WEB-INF/web.xml new file mode 100644 index 000000000..52f88eb30 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/tomcat/carbon/WEB-INF/web.xml @@ -0,0 +1,61 @@ + + + + + + + bridgeservlet + Carbon Bridge Servlet + Carbon Bridge Servlet + org.wso2.carbon.tomcat.ext.servlet.DelegationServlet + + 1 + + + bridgeservlet + /* + + + + bridgeservlet + *.jsp + + + + + CharsetFilter + org.wso2.carbon.tomcat.ext.filter.CharacterSetFilter + + requestEncoding + UTF-8 + + + + + CharsetFilter + /* + + + + 15 + + diff --git a/src/test/resources/carbon-home/repository/conf/tomcat/catalina-server.xml b/src/test/resources/carbon-home/repository/conf/tomcat/catalina-server.xml new file mode 100644 index 000000000..834792930 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/tomcat/catalina-server.xml @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/test/resources/carbon-home/repository/conf/tomcat/tomcat-users.xml b/src/test/resources/carbon-home/repository/conf/tomcat/tomcat-users.xml new file mode 100644 index 000000000..7ef7dbb0a --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/tomcat/tomcat-users.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/test/resources/carbon-home/repository/conf/tomcat/web.xml b/src/test/resources/carbon-home/repository/conf/tomcat/web.xml new file mode 100644 index 000000000..765865b47 --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/tomcat/web.xml @@ -0,0 +1,1220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + default + org.apache.catalina.servlets.DefaultServlet + + debug + 0 + + + sendfileSize + -1 + + + listings + false + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + jsp + org.apache.jasper.servlet.JspServlet + + fork + false + + + xpoweredBy + false + + 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + jsp + *.jsp + + + + jsp + *.jspx + + + + default + / + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 30 + + + + + + + + + + + + abs + audio/x-mpeg + + + ai + application/postscript + + + aif + audio/x-aiff + + + aifc + audio/x-aiff + + + aiff + audio/x-aiff + + + aim + application/x-aim + + + art + image/x-jg + + + asf + video/x-ms-asf + + + asx + video/x-ms-asf + + + au + audio/basic + + + avi + video/x-msvideo + + + avx + video/x-rad-screenplay + + + bcpio + application/x-bcpio + + + bin + application/octet-stream + + + bmp + image/bmp + + + body + text/html + + + cdf + application/x-cdf + + + cer + application/x-x509-ca-cert + + + class + application/java + + + cpio + application/x-cpio + + + csh + application/x-csh + + + css + text/css + + + dib + image/bmp + + + doc + application/msword + + + dtd + application/xml-dtd + + + dv + video/x-dv + + + dvi + application/x-dvi + + + eps + application/postscript + + + etx + text/x-setext + + + exe + application/octet-stream + + + gif + image/gif + + + gtar + application/x-gtar + + + gz + application/x-gzip + + + hdf + application/x-hdf + + + hqx + application/mac-binhex40 + + + htc + text/x-component + + + htm + text/html + + + html + text/html + + + ief + image/ief + + + jad + text/vnd.sun.j2me.app-descriptor + + + jar + application/java-archive + + + java + text/plain + + + jnlp + application/x-java-jnlp-file + + + jpe + image/jpeg + + + jpeg + image/jpeg + + + jpg + image/jpeg + + + js + application/javascript + + + jsf + text/plain + + + jspf + text/plain + + + kar + audio/x-midi + + + latex + application/x-latex + + + m3u + audio/x-mpegurl + + + mac + image/x-macpaint + + + man + application/x-troff-man + + + mathml + application/mathml+xml + + + me + application/x-troff-me + + + mid + audio/x-midi + + + midi + audio/x-midi + + + mif + application/x-mif + + + mov + video/quicktime + + + movie + video/x-sgi-movie + + + mp1 + audio/x-mpeg + + + mp2 + audio/x-mpeg + + + mp3 + audio/x-mpeg + + + mp4 + video/mp4 + + + mpa + audio/x-mpeg + + + mpe + video/mpeg + + + mpeg + video/mpeg + + + mpega + audio/x-mpeg + + + mpg + video/mpeg + + + mpv2 + video/mpeg2 + + + ms + application/x-wais-source + + + nc + application/x-netcdf + + + oda + application/oda + + + + odb + application/vnd.oasis.opendocument.database + + + + odc + application/vnd.oasis.opendocument.chart + + + + odf + application/vnd.oasis.opendocument.formula + + + + odg + application/vnd.oasis.opendocument.graphics + + + + odi + application/vnd.oasis.opendocument.image + + + + odm + application/vnd.oasis.opendocument.text-master + + + + odp + application/vnd.oasis.opendocument.presentation + + + + ods + application/vnd.oasis.opendocument.spreadsheet + + + + odt + application/vnd.oasis.opendocument.text + + + + otg + application/vnd.oasis.opendocument.graphics-template + + + + oth + application/vnd.oasis.opendocument.text-web + + + + otp + application/vnd.oasis.opendocument.presentation-template + + + + ots + application/vnd.oasis.opendocument.spreadsheet-template + + + + ott + application/vnd.oasis.opendocument.text-template + + + + ogx + application/ogg + + + ogv + video/ogg + + + oga + audio/ogg + + + ogg + audio/ogg + + + spx + audio/ogg + + + flac + audio/flac + + + anx + application/annodex + + + axa + audio/annodex + + + axv + video/annodex + + + xspf + application/xspf+xml + + + pbm + image/x-portable-bitmap + + + pct + image/pict + + + pdf + application/pdf + + + pgm + image/x-portable-graymap + + + pic + image/pict + + + pict + image/pict + + + pls + audio/x-scpls + + + png + image/png + + + pnm + image/x-portable-anymap + + + pnt + image/x-macpaint + + + ppm + image/x-portable-pixmap + + + ppt + application/vnd.ms-powerpoint + + + pps + application/vnd.ms-powerpoint + + + ps + application/postscript + + + psd + image/x-photoshop + + + qt + video/quicktime + + + qti + image/x-quicktime + + + qtif + image/x-quicktime + + + ras + image/x-cmu-raster + + + rdf + application/rdf+xml + + + rgb + image/x-rgb + + + rm + application/vnd.rn-realmedia + + + roff + application/x-troff + + + rtf + application/rtf + + + rtx + text/richtext + + + sh + application/x-sh + + + shar + application/x-shar + + + + smf + audio/x-midi + + + sit + application/x-stuffit + + + snd + audio/basic + + + src + application/x-wais-source + + + sv4cpio + application/x-sv4cpio + + + sv4crc + application/x-sv4crc + + + svg + image/svg+xml + + + svgz + image/svg+xml + + + swf + application/x-shockwave-flash + + + t + application/x-troff + + + tar + application/x-tar + + + tcl + application/x-tcl + + + tex + application/x-tex + + + texi + application/x-texinfo + + + texinfo + application/x-texinfo + + + tif + image/tiff + + + tiff + image/tiff + + + tr + application/x-troff + + + tsv + text/tab-separated-values + + + txt + text/plain + + + ulw + audio/basic + + + ustar + application/x-ustar + + + vxml + application/voicexml+xml + + + xbm + image/x-xbitmap + + + xht + application/xhtml+xml + + + xhtml + application/xhtml+xml + + + xls + application/vnd.ms-excel + + + xml + application/xml + + + xpm + image/x-xpixmap + + + xsl + application/xml + + + xslt + application/xslt+xml + + + xul + application/vnd.mozilla.xul+xml + + + xwd + image/x-xwindowdump + + + vsd + application/x-visio + + + wav + audio/x-wav + + + + wbmp + image/vnd.wap.wbmp + + + + wml + text/vnd.wap.wml + + + + wmlc + application/vnd.wap.wmlc + + + + wmls + text/vnd.wap.wmlscript + + + + wmlscriptc + application/vnd.wap.wmlscriptc + + + wmv + video/x-ms-wmv + + + wrl + x-world/x-vrml + + + wspolicy + application/wspolicy+xml + + + Z + application/x-compress + + + z + application/x-compress + + + zip + application/zip + + + + + + + + + + + + + + + + + + index.html + index.htm + index.jsp + + + \ No newline at end of file diff --git a/src/test/resources/carbon-home/repository/conf/user-mgt.xml b/src/test/resources/carbon-home/repository/conf/user-mgt.xml new file mode 100644 index 000000000..7be83118a --- /dev/null +++ b/src/test/resources/carbon-home/repository/conf/user-mgt.xml @@ -0,0 +1,380 @@ + + + + + + true + admin + + admin + admin + + everyone + jdbc/WSO2CarbonDB + + + + + + + org.wso2.carbon.user.core.tenant.JDBCTenantManager + false + 100 + false + default + SHA-256 + true + true + true + false + ^[\S]{5,30}$ + Password length should be between 5 to 30 characters + + ^[\S]{5,30}$ + [a-zA-Z0-9._-|//]{3,30}$ + ^[\S]{3,30}$ + ^[^~!#$;%^*+={}\\|\\\\<>,\'\"]{3,30}$ + ^[\S]{3,30}$ + true + 100 + 100 + false + false + true + , + true + + + + + + + + + + + + + + + + + + + /permission + true + true + + + + + diff --git a/src/test/resources/config/datasource/data-source-config.xml b/src/test/resources/config/datasource/data-source-config.xml new file mode 100644 index 000000000..93253751a --- /dev/null +++ b/src/test/resources/config/datasource/data-source-config.xml @@ -0,0 +1,25 @@ + + + + + jdbc:h2:mem:cdm-test-db;DB_CLOSE_ON_EXIT=FALSE;MVCC=true + org.h2.Driver + wso2carbon + wso2carbon + diff --git a/src/test/resources/log4j.properties b/src/test/resources/log4j.properties new file mode 100644 index 000000000..96c79e944 --- /dev/null +++ b/src/test/resources/log4j.properties @@ -0,0 +1,36 @@ +# +# Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# +# WSO2 Inc. 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. +# + + +# For the general syntax of property based configuration files see the +# documenation of org.apache.log4j.PropertyConfigurator. + +# The root category uses the appender called A1. Since no priority is +# specified, the root category assumes the default priority for root +# which is DEBUG in log4j. The root category is the only category that +# has a default priority. All other categories need not be assigned a +# priority in which case they inherit their priority from the +# hierarchy. + +#log4j.rootLogger=DEBUG, stdout +log4j.rootLogger=INFO, stdout + +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%m%n +#log4j.appender.stdout.layout.ConversionPattern=[%t] %-5p %c %x - %m%n diff --git a/src/test/resources/sql/h2.sql b/src/test/resources/sql/h2.sql new file mode 100644 index 000000000..686d0a6b3 --- /dev/null +++ b/src/test/resources/sql/h2.sql @@ -0,0 +1,531 @@ +CREATE TABLE IF NOT EXISTS DM_DEVICE_TYPE ( + ID INT AUTO_INCREMENT NOT NULL, + NAME VARCHAR(300) NULL DEFAULT NULL, + DEVICE_TYPE_META VARCHAR(20000) NULL DEFAULT NULL, + LAST_UPDATED_TIMESTAMP TIMESTAMP NOT NULL, + PROVIDER_TENANT_ID INTEGER DEFAULT 0, + SHARED_WITH_ALL_TENANTS BOOLEAN NOT NULL DEFAULT FALSE, + PRIMARY KEY (ID) +); + +CREATE TABLE IF NOT EXISTS DM_GROUP ( + ID INTEGER AUTO_INCREMENT NOT NULL, + GROUP_NAME VARCHAR(100) DEFAULT NULL, + DESCRIPTION TEXT DEFAULT NULL, + OWNER VARCHAR(45) DEFAULT NULL, + TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (ID) +); + +CREATE TABLE IF NOT EXISTS DM_ROLE_GROUP_MAP ( + ID INTEGER AUTO_INCREMENT NOT NULL, + GROUP_ID INTEGER DEFAULT NULL, + ROLE VARCHAR(45) DEFAULT NULL, + TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (ID), + CONSTRAINT fk_DM_ROLE_GROUP_MAP_DM_GROUP2 FOREIGN KEY (GROUP_ID) + REFERENCES DM_GROUP (ID) ON DELETE CASCADE ON UPDATE CASCADE +); + +CREATE TABLE IF NOT EXISTS DM_DEVICE ( + ID INTEGER auto_increment NOT NULL, + DESCRIPTION TEXT DEFAULT NULL, + NAME VARCHAR(100) DEFAULT NULL, + DEVICE_TYPE_ID INT(11) DEFAULT NULL, + DEVICE_IDENTIFICATION VARCHAR(300) DEFAULT NULL, + LAST_UPDATED_TIMESTAMP TIMESTAMP NOT NULL, + TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (ID), + CONSTRAINT fk_DM_DEVICE_DM_DEVICE_TYPE2 FOREIGN KEY (DEVICE_TYPE_ID) + REFERENCES DM_DEVICE_TYPE (ID) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT uk_DM_DEVICE UNIQUE (NAME, DEVICE_TYPE_ID, DEVICE_IDENTIFICATION, TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS DM_DEVICE_PROPERTIES ( + DEVICE_TYPE_NAME VARCHAR(300) NOT NULL, + DEVICE_IDENTIFICATION VARCHAR(300) NOT NULL, + PROPERTY_NAME VARCHAR(100) DEFAULT 0, + PROPERTY_VALUE VARCHAR(100) DEFAULT NULL, + TENANT_ID VARCHAR(100), + PRIMARY KEY (DEVICE_TYPE_NAME, DEVICE_IDENTIFICATION, PROPERTY_NAME, TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS DM_DEVICE_GROUP_MAP ( + ID INTEGER AUTO_INCREMENT NOT NULL, + DEVICE_ID INTEGER DEFAULT NULL, + GROUP_ID INTEGER DEFAULT NULL, + TENANT_ID INTEGER DEFAULT 0, + PRIMARY KEY (ID), + CONSTRAINT fk_DM_DEVICE_GROUP_MAP_DM_DEVICE2 FOREIGN KEY (DEVICE_ID) + REFERENCES DM_DEVICE (ID) ON DELETE CASCADE ON UPDATE CASCADE, + CONSTRAINT fk_DM_DEVICE_GROUP_MAP_DM_GROUP2 FOREIGN KEY (GROUP_ID) + REFERENCES DM_GROUP (ID) ON DELETE CASCADE ON UPDATE CASCADE +); + +CREATE TABLE IF NOT EXISTS DM_OPERATION ( + ID INTEGER AUTO_INCREMENT NOT NULL, + TYPE VARCHAR(50) NOT NULL, + CREATED_TIMESTAMP TIMESTAMP NOT NULL, + RECEIVED_TIMESTAMP TIMESTAMP NULL, + OPERATION_CODE VARCHAR(1000) NOT NULL, + PRIMARY KEY (ID) +); + +CREATE TABLE IF NOT EXISTS DM_CONFIG_OPERATION ( + OPERATION_ID INTEGER NOT NULL, + OPERATION_CONFIG BLOB DEFAULT NULL, + ENABLED BOOLEAN NOT NULL DEFAULT FALSE, + PRIMARY KEY (OPERATION_ID), + CONSTRAINT fk_dm_operation_config FOREIGN KEY (OPERATION_ID) REFERENCES + DM_OPERATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_COMMAND_OPERATION ( + OPERATION_ID INTEGER NOT NULL, + ENABLED BOOLEAN NOT NULL DEFAULT FALSE, + PRIMARY KEY (OPERATION_ID), + CONSTRAINT fk_dm_operation_command FOREIGN KEY (OPERATION_ID) REFERENCES + DM_OPERATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_POLICY_OPERATION ( + OPERATION_ID INTEGER NOT NULL, + ENABLED INTEGER NOT NULL DEFAULT 0, + OPERATION_DETAILS BLOB DEFAULT NULL, + PRIMARY KEY (OPERATION_ID), + CONSTRAINT fk_dm_operation_policy FOREIGN KEY (OPERATION_ID) REFERENCES + DM_OPERATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_PROFILE_OPERATION ( + OPERATION_ID INTEGER NOT NULL, + ENABLED INTEGER NOT NULL DEFAULT 0, + OPERATION_DETAILS BLOB DEFAULT NULL, + PRIMARY KEY (OPERATION_ID), + CONSTRAINT fk_dm_operation_profile FOREIGN KEY (OPERATION_ID) REFERENCES + DM_OPERATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_ENROLMENT ( + ID INTEGER AUTO_INCREMENT NOT NULL, + DEVICE_ID INTEGER NOT NULL, + OWNER VARCHAR(50) NOT NULL, + OWNERSHIP VARCHAR(45) DEFAULT NULL, + STATUS VARCHAR(50) NULL, + DATE_OF_ENROLMENT TIMESTAMP DEFAULT NULL, + DATE_OF_LAST_UPDATE TIMESTAMP DEFAULT NULL, + TENANT_ID INT NOT NULL, + PRIMARY KEY (ID), + CONSTRAINT fk_dm_device_enrolment FOREIGN KEY (DEVICE_ID) REFERENCES + DM_DEVICE (ID) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT uk_dm_device_enrolment UNIQUE (DEVICE_ID, OWNER, OWNERSHIP, TENANT_ID) +); + +CREATE TABLE IF NOT EXISTS DM_ENROLMENT_OP_MAPPING ( + ID INTEGER AUTO_INCREMENT NOT NULL, + ENROLMENT_ID INTEGER NOT NULL, + OPERATION_ID INTEGER NOT NULL, + STATUS VARCHAR(50) NULL, + PUSH_NOTIFICATION_STATUS VARCHAR(50) NULL, + CREATED_TIMESTAMP INT NOT NULL, + UPDATED_TIMESTAMP INT NOT NULL, + PRIMARY KEY (ID), + CONSTRAINT fk_dm_device_operation_mapping_device FOREIGN KEY (ENROLMENT_ID) REFERENCES + DM_ENROLMENT (ID) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT fk_dm_device_operation_mapping_operation FOREIGN KEY (OPERATION_ID) REFERENCES + DM_OPERATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_DEVICE_OPERATION_RESPONSE ( + ID INTEGER AUTO_INCREMENT NOT NULL, + ENROLMENT_ID INTEGER NOT NULL, + OPERATION_ID INTEGER NOT NULL, + EN_OP_MAP_ID INTEGER NOT NULL, + OPERATION_RESPONSE LONGBLOB DEFAULT NULL, + RECEIVED_TIMESTAMP TIMESTAMP NULL, + PRIMARY KEY (ID), + CONSTRAINT fk_dm_device_operation_response_enrollment FOREIGN KEY (ENROLMENT_ID) REFERENCES + DM_ENROLMENT (ID) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT fk_dm_device_operation_response_operation FOREIGN KEY (OPERATION_ID) REFERENCES + DM_OPERATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT fk_dm_en_op_map_response FOREIGN KEY (EN_OP_MAP_ID) REFERENCES + DM_ENROLMENT_OP_MAPPING (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +); + +-- POLICY RELATED TABLES -- + +CREATE TABLE IF NOT EXISTS DM_PROFILE ( + ID INT NOT NULL AUTO_INCREMENT , + PROFILE_NAME VARCHAR(45) NOT NULL , + TENANT_ID INT NOT NULL , + DEVICE_TYPE VARCHAR(300) NOT NULL , + CREATED_TIME DATETIME NOT NULL , + UPDATED_TIME DATETIME NOT NULL , + PRIMARY KEY (ID) +); + +CREATE TABLE IF NOT EXISTS DM_POLICY ( + ID INT(11) NOT NULL AUTO_INCREMENT , + NAME VARCHAR(45) DEFAULT NULL , + DESCRIPTION VARCHAR(1000) NULL, + TENANT_ID INT(11) NOT NULL , + PROFILE_ID INT(11) NOT NULL , + OWNERSHIP_TYPE VARCHAR(45) NULL, + COMPLIANCE VARCHAR(100) NULL, + PRIORITY INT NOT NULL, + ACTIVE INT(2) NOT NULL, + UPDATED INT(1) NULL, + PRIMARY KEY (ID) , + CONSTRAINT FK_DM_PROFILE_DM_POLICY + FOREIGN KEY (PROFILE_ID ) + REFERENCES DM_PROFILE (ID ) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_DEVICE_POLICY ( + ID INT(11) NOT NULL AUTO_INCREMENT , + DEVICE_ID INT(11) NOT NULL , + ENROLMENT_ID INT(11) NOT NULL, + DEVICE BLOB NOT NULL, + POLICY_ID INT(11) NOT NULL , + PRIMARY KEY (ID) , + CONSTRAINT FK_POLICY_DEVICE_POLICY + FOREIGN KEY (POLICY_ID ) + REFERENCES DM_POLICY (ID ) + ON DELETE NO ACTION + ON UPDATE NO ACTION, + CONSTRAINT FK_DEVICE_DEVICE_POLICY + FOREIGN KEY (DEVICE_ID ) + REFERENCES DM_DEVICE (ID ) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_DEVICE_TYPE_POLICY ( + ID INT(11) NOT NULL , + DEVICE_TYPE VARCHAR(300) NOT NULL , + POLICY_ID INT(11) NOT NULL , + PRIMARY KEY (ID) , + CONSTRAINT FK_DEVICE_TYPE_POLICY + FOREIGN KEY (POLICY_ID ) + REFERENCES DM_POLICY (ID ) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_PROFILE_FEATURES ( + ID INT(11) NOT NULL AUTO_INCREMENT, + PROFILE_ID INT(11) NOT NULL, + FEATURE_CODE VARCHAR(100) NOT NULL, + DEVICE_TYPE VARCHAR(300) NOT NULL, + TENANT_ID INT(11) NOT NULL , + CONTENT BLOB NULL DEFAULT NULL, + PRIMARY KEY (ID), + CONSTRAINT FK_DM_PROFILE_DM_POLICY_FEATURES + FOREIGN KEY (PROFILE_ID) + REFERENCES DM_PROFILE (ID) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_ROLE_POLICY ( + ID INT(11) NOT NULL AUTO_INCREMENT , + ROLE_NAME VARCHAR(45) NOT NULL , + POLICY_ID INT(11) NOT NULL , + PRIMARY KEY (ID) , + CONSTRAINT FK_ROLE_POLICY_POLICY + FOREIGN KEY (POLICY_ID ) + REFERENCES DM_POLICY (ID ) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_USER_POLICY ( + ID INT NOT NULL AUTO_INCREMENT , + POLICY_ID INT NOT NULL , + USERNAME VARCHAR(45) NOT NULL , + PRIMARY KEY (ID) , + CONSTRAINT DM_POLICY_USER_POLICY + FOREIGN KEY (POLICY_ID ) + REFERENCES DM_POLICY (ID ) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_DEVICE_POLICY_APPLIED ( + ID INT NOT NULL AUTO_INCREMENT , + DEVICE_ID INT NOT NULL , + ENROLMENT_ID INT(11) NOT NULL, + POLICY_ID INT NOT NULL , + POLICY_CONTENT BLOB NULL , + TENANT_ID INT NOT NULL, + APPLIED TINYINT(1) NULL , + CREATED_TIME TIMESTAMP NULL , + UPDATED_TIME TIMESTAMP NULL , + APPLIED_TIME TIMESTAMP NULL , + PRIMARY KEY (ID) , + CONSTRAINT FK_DM_POLICY_DEVCIE_APPLIED + FOREIGN KEY (DEVICE_ID ) + REFERENCES DM_DEVICE (ID ) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_CRITERIA ( + ID INT NOT NULL AUTO_INCREMENT, + TENANT_ID INT NOT NULL, + NAME VARCHAR(50) NULL, + PRIMARY KEY (ID) +); + +CREATE TABLE IF NOT EXISTS DM_POLICY_CRITERIA ( + ID INT NOT NULL AUTO_INCREMENT, + CRITERIA_ID INT NOT NULL, + POLICY_ID INT NOT NULL, + PRIMARY KEY (ID), + CONSTRAINT FK_CRITERIA_POLICY_CRITERIA + FOREIGN KEY (CRITERIA_ID) + REFERENCES DM_CRITERIA (ID) + ON DELETE NO ACTION + ON UPDATE NO ACTION, + CONSTRAINT FK_POLICY_POLICY_CRITERIA + FOREIGN KEY (POLICY_ID) + REFERENCES DM_POLICY (ID) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_POLICY_CRITERIA_PROPERTIES ( + ID INT NOT NULL AUTO_INCREMENT, + POLICY_CRITERION_ID INT NOT NULL, + PROP_KEY VARCHAR(45) NULL, + PROP_VALUE VARCHAR(100) NULL, + CONTENT BLOB NULL COMMENT 'This is used to ', + PRIMARY KEY (ID), + CONSTRAINT FK_POLICY_CRITERIA_PROPERTIES + FOREIGN KEY (POLICY_CRITERION_ID) + REFERENCES DM_POLICY_CRITERIA (ID) + ON DELETE CASCADE + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_POLICY_COMPLIANCE_STATUS ( + ID INT NOT NULL AUTO_INCREMENT, + DEVICE_ID INT NOT NULL, + ENROLMENT_ID INT(11) NOT NULL, + POLICY_ID INT NOT NULL, + TENANT_ID INT NOT NULL, + STATUS INT NULL, + LAST_SUCCESS_TIME TIMESTAMP NULL, + LAST_REQUESTED_TIME TIMESTAMP NULL, + LAST_FAILED_TIME TIMESTAMP NULL, + ATTEMPTS INT NULL, + PRIMARY KEY (ID) +); + +CREATE TABLE IF NOT EXISTS DM_POLICY_CHANGE_MGT ( + ID INT NOT NULL AUTO_INCREMENT, + POLICY_ID INT NOT NULL, + DEVICE_TYPE VARCHAR(300) NOT NULL , + TENANT_ID INT(11) NOT NULL, + PRIMARY KEY (ID) +); + +CREATE TABLE IF NOT EXISTS DM_POLICY_COMPLIANCE_FEATURES ( + ID INT NOT NULL AUTO_INCREMENT, + COMPLIANCE_STATUS_ID INT NOT NULL, + TENANT_ID INT NOT NULL, + FEATURE_CODE VARCHAR(100) NOT NULL, + STATUS INT NULL, + PRIMARY KEY (ID), + CONSTRAINT FK_COMPLIANCE_FEATURES_STATUS + FOREIGN KEY (COMPLIANCE_STATUS_ID) + REFERENCES DM_POLICY_COMPLIANCE_STATUS (ID) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_APPLICATION ( + ID INTEGER AUTO_INCREMENT NOT NULL, + NAME VARCHAR(150) NOT NULL, + APP_IDENTIFIER VARCHAR(150) NOT NULL, + PLATFORM VARCHAR(50) DEFAULT NULL, + CATEGORY VARCHAR(50) NULL, + VERSION VARCHAR(50) NULL, + TYPE VARCHAR(50) NULL, + LOCATION_URL VARCHAR(100) DEFAULT NULL, + IMAGE_URL VARCHAR(100) DEFAULT NULL, + APP_PROPERTIES BLOB NULL, + MEMORY_USAGE INTEGER(10) NULL, + IS_ACTIVE BOOLEAN NOT NULL DEFAULT FALSE, + TENANT_ID INTEGER NOT NULL, + PRIMARY KEY (ID) +); + +CREATE TABLE IF NOT EXISTS DM_DEVICE_APPLICATION_MAPPING ( + ID INTEGER AUTO_INCREMENT NOT NULL, + DEVICE_ID INTEGER NOT NULL, + APPLICATION_ID INTEGER NOT NULL, + TENANT_ID INTEGER NOT NULL, + PRIMARY KEY (ID), + CONSTRAINT fk_dm_device FOREIGN KEY (DEVICE_ID) REFERENCES + DM_DEVICE (ID) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT fk_dm_application FOREIGN KEY (APPLICATION_ID) REFERENCES + DM_APPLICATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +); + +-- POLICY RELATED TABLES FINISHED -- + +-- NOTIFICATION TABLE -- +CREATE TABLE IF NOT EXISTS DM_NOTIFICATION ( + NOTIFICATION_ID INTEGER AUTO_INCREMENT NOT NULL, + DEVICE_ID INTEGER NOT NULL, + OPERATION_ID INTEGER NOT NULL, + TENANT_ID INTEGER NOT NULL, + STATUS VARCHAR(10) NULL, + DESCRIPTION VARCHAR(1000) NULL, + PRIMARY KEY (NOTIFICATION_ID), + CONSTRAINT fk_dm_device_notification FOREIGN KEY (DEVICE_ID) REFERENCES + DM_DEVICE (ID) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT fk_dm_operation_notification FOREIGN KEY (OPERATION_ID) REFERENCES + DM_OPERATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +); +-- NOTIFICATION TABLE END -- + +CREATE TABLE IF NOT EXISTS DM_DEVICE_INFO ( + ID INTEGER AUTO_INCREMENT NOT NULL, + DEVICE_ID INT NULL, + KEY_FIELD VARCHAR(45) NULL, + VALUE_FIELD VARCHAR(100) NULL, + PRIMARY KEY (ID), + CONSTRAINT DM_DEVICE_INFO_DEVICE + FOREIGN KEY (DEVICE_ID) + REFERENCES DM_DEVICE (ID) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_DEVICE_LOCATION ( + ID INTEGER AUTO_INCREMENT NOT NULL, + DEVICE_ID INT NULL, + LATITUDE DOUBLE NULL, + LONGITUDE DOUBLE NULL, + STREET1 VARCHAR(255) NULL, + STREET2 VARCHAR(45) NULL, + CITY VARCHAR(45) NULL, + ZIP VARCHAR(10) NULL, + STATE VARCHAR(45) NULL, + COUNTRY VARCHAR(45) NULL, + UPDATE_TIMESTAMP BIGINT(15) NOT NULL, + PRIMARY KEY (ID), + CONSTRAINT DM_DEVICE_LOCATION_DEVICE + FOREIGN KEY (DEVICE_ID) + REFERENCES DM_DEVICE (ID) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +CREATE TABLE IF NOT EXISTS DM_DEVICE_DETAIL ( + ID INT NOT NULL AUTO_INCREMENT, + DEVICE_ID INT NOT NULL, + DEVICE_MODEL VARCHAR(45) NULL, + VENDOR VARCHAR(45) NULL, + OS_VERSION VARCHAR(45) NULL, + OS_BUILD_DATE VARCHAR(100) NULL, + BATTERY_LEVEL DECIMAL(4) NULL, + INTERNAL_TOTAL_MEMORY DECIMAL(30,3) NULL, + INTERNAL_AVAILABLE_MEMORY DECIMAL(30,3) NULL, + EXTERNAL_TOTAL_MEMORY DECIMAL(30,3) NULL, + EXTERNAL_AVAILABLE_MEMORY DECIMAL(30,3) NULL, + CONNECTION_TYPE VARCHAR(50) NULL, + SSID VARCHAR(45) NULL, + CPU_USAGE DECIMAL(5) NULL, + TOTAL_RAM_MEMORY DECIMAL(30,3) NULL, + AVAILABLE_RAM_MEMORY DECIMAL(30,3) NULL, + PLUGGED_IN INT(1) NULL, + UPDATE_TIMESTAMP BIGINT(15) NOT NULL, + PRIMARY KEY (ID), + CONSTRAINT FK_DM_DEVICE_DETAILS_DEVICE + FOREIGN KEY (DEVICE_ID) + REFERENCES DM_DEVICE (ID) + ON DELETE NO ACTION + ON UPDATE NO ACTION +); + +-- POLICY AND DEVICE GROUP MAPPING -- +CREATE TABLE IF NOT EXISTS DM_DEVICE_GROUP_POLICY ( + ID INT NOT NULL AUTO_INCREMENT, + DEVICE_GROUP_ID INT NOT NULL, + POLICY_ID INT NOT NULL, + TENANT_ID INT NOT NULL, + PRIMARY KEY (ID), + CONSTRAINT FK_DM_DEVICE_GROUP_POLICY + FOREIGN KEY (DEVICE_GROUP_ID) + REFERENCES DM_GROUP (ID) + ON DELETE CASCADE + ON UPDATE CASCADE , + CONSTRAINT FK_DM_DEVICE_GROUP_DM_POLICY + FOREIGN KEY (POLICY_ID) + REFERENCES DM_POLICY (ID) + ON DELETE CASCADE + ON UPDATE CASCADE +); +-- END OF POLICY AND DEVICE GROUP MAPPING -- + +-- DASHBOARD RELATED VIEWS -- +CREATE VIEW POLICY_COMPLIANCE_INFO AS +SELECT +DEVICE_INFO.DEVICE_ID, +DEVICE_INFO.DEVICE_IDENTIFICATION, +DEVICE_INFO.PLATFORM, +DEVICE_INFO.OWNERSHIP, +DEVICE_INFO.CONNECTIVITY_STATUS, +IFNULL(DEVICE_WITH_POLICY_INFO.POLICY_ID, -1) AS POLICY_ID, +IFNULL(DEVICE_WITH_POLICY_INFO.IS_COMPLIANT, -1) AS IS_COMPLIANT, +DEVICE_INFO.TENANT_ID +FROM +(SELECT +DM_DEVICE.ID AS DEVICE_ID, +DM_DEVICE.DEVICE_IDENTIFICATION, +DM_DEVICE_TYPE.NAME AS PLATFORM, +DM_ENROLMENT.OWNERSHIP, +DM_ENROLMENT.STATUS AS CONNECTIVITY_STATUS, +DM_DEVICE.TENANT_ID +FROM DM_DEVICE, DM_DEVICE_TYPE, DM_ENROLMENT +WHERE DM_DEVICE.DEVICE_TYPE_ID = DM_DEVICE_TYPE.ID AND DM_DEVICE.ID = DM_ENROLMENT.DEVICE_ID) DEVICE_INFO +LEFT JOIN +(SELECT +DEVICE_ID, +POLICY_ID, +STATUS AS IS_COMPLIANT +FROM DM_POLICY_COMPLIANCE_STATUS) DEVICE_WITH_POLICY_INFO +ON DEVICE_INFO.DEVICE_ID = DEVICE_WITH_POLICY_INFO.DEVICE_ID +ORDER BY DEVICE_INFO.DEVICE_ID; + +CREATE VIEW FEATURE_NON_COMPLIANCE_INFO AS +SELECT +DM_DEVICE.ID AS DEVICE_ID, +DM_DEVICE.DEVICE_IDENTIFICATION, +DM_DEVICE_DETAIL.DEVICE_MODEL, +DM_DEVICE_DETAIL.VENDOR, +DM_DEVICE_DETAIL.OS_VERSION, +DM_ENROLMENT.OWNERSHIP, +DM_ENROLMENT.OWNER, +DM_ENROLMENT.STATUS AS CONNECTIVITY_STATUS, +DM_POLICY_COMPLIANCE_STATUS.POLICY_ID, +DM_DEVICE_TYPE.NAME AS PLATFORM, +DM_POLICY_COMPLIANCE_FEATURES.FEATURE_CODE, +DM_POLICY_COMPLIANCE_FEATURES.STATUS AS IS_COMPLAINT, +DM_DEVICE.TENANT_ID +FROM +DM_POLICY_COMPLIANCE_FEATURES, DM_POLICY_COMPLIANCE_STATUS, DM_ENROLMENT, DM_DEVICE, DM_DEVICE_TYPE, DM_DEVICE_DETAIL +WHERE +DM_POLICY_COMPLIANCE_FEATURES.COMPLIANCE_STATUS_ID = DM_POLICY_COMPLIANCE_STATUS.ID AND +DM_POLICY_COMPLIANCE_STATUS.ENROLMENT_ID = DM_ENROLMENT.ID AND +DM_POLICY_COMPLIANCE_STATUS.DEVICE_ID = DM_DEVICE.ID AND +DM_DEVICE.DEVICE_TYPE_ID = DM_DEVICE_TYPE.ID AND +DM_DEVICE.ID = DM_DEVICE_DETAIL.DEVICE_ID +ORDER BY TENANT_ID, DEVICE_ID; + +-- END OF DASHBOARD RELATED VIEWS -- diff --git a/src/test/resources/testng.xml b/src/test/resources/testng.xml new file mode 100644 index 000000000..a2e39e52e --- /dev/null +++ b/src/test/resources/testng.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + diff --git a/src/test/resources/user-test/user-mgt-registry-test.xml b/src/test/resources/user-test/user-mgt-registry-test.xml new file mode 100644 index 000000000..d7468d13c --- /dev/null +++ b/src/test/resources/user-test/user-mgt-registry-test.xml @@ -0,0 +1,101 @@ + + + + + true + admin + + admin + admin + + everyone + false + 500 + jdbc:h2:target/databasetest/CARBON_TEST + org.h2.Driver + 50 + 60000 + 5 + + + [\S]{5,30}$ + [\\S]{5,30} + SELECT * FROM UM_USER WHERE UM_USER_NAME=? AND UM_TENANT_ID=? + + + + + + + + + + + + + + + + SHA-256 + true + false + false + wso2.com + true + 100 + + + INSERT INTO UM_ROLE (UM_ROLE_NAME, UM_TENANT_ID) VALUES (?, ?) + + + + + + + + + + + + + + + + + org.wso2.carbon.user.core.tenant.JDBCTenantManager + + + true + + + + login + manage-configuration + manage-security + upload-services + manage-services + manage-lc-configuration + manage-mediation + monitor-system + delegate-identity + + + From be373accec40b40569037725d06fe07a455b1c1c Mon Sep 17 00:00:00 2001 From: charitha Date: Thu, 16 Nov 2017 21:13:22 +0530 Subject: [PATCH 0546/1075] Merge branch 'master' of https://github.com/wso2/carbon-device-mgt-plugins # Conflicts: # components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 996094ec1..dec60bc1a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.91-SNAPSHOT + 4.0.93-SNAPSHOT ../pom.xml From cb9162520cded57e29fac2f73d0d3e73631bf3c7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 16 Nov 2017 15:59:00 +0000 Subject: [PATCH 0547/1075] [WSO2 Release] [Jenkins #3053] [Release 4.0.93] prepare release v4.0.93 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57fa74dd6..085bdc1ee 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.93-SNAPSHOT + 4.0.93 ../pom.xml From d16af56dc2dcdb5c736167d99e5c06e55bb892cf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 16 Nov 2017 15:59:00 +0000 Subject: [PATCH 0548/1075] [WSO2 Release] [Jenkins #3053] [Release 4.0.93] prepare release v4.0.93 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 19f015aac..5ec61c329 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.93-SNAPSHOT + 4.0.93 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.93-SNAPSHOT + 4.0.93 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ba54a878dd8a7b6339c503ecc569594f49da30e9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 16 Nov 2017 15:59:16 +0000 Subject: [PATCH 0549/1075] [WSO2 Release] [Jenkins #3053] [Release 4.0.93] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 085bdc1ee..e1d6e6695 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.93 + 4.0.94-SNAPSHOT ../pom.xml From 5c4138e455cde3d8d7d8c1759b894da818c8273b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 16 Nov 2017 15:59:16 +0000 Subject: [PATCH 0550/1075] [WSO2 Release] [Jenkins #3053] [Release 4.0.93] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5ec61c329..cde306869 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.93 + 4.0.94-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.93 + 4.0.94-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2a1a57e290d5394cd28d3de7f06dd4f856584d6a Mon Sep 17 00:00:00 2001 From: charitha Date: Fri, 17 Nov 2017 12:55:14 +0530 Subject: [PATCH 0551/1075] Add siddhi extensions to reflect get methods in device management core service --- pom.xml | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 000000000..50aeb0941 --- /dev/null +++ b/pom.xml @@ -0,0 +1,73 @@ + + + + 4.0.0 + + + org.wso2.carbon.devicemgt-plugins + extensions-feature + 4.0.93-SNAPSHOT + ../pom.xml + + + org.wso2.extension.siddhi.device.feature + pom + WSO2 Siddhi Execution Extension - Device Group Feature + http://wso2.org + This feature contains Siddhi extension feature for device groups + + + + org.wso2.carbon.devicemgt-plugins + org.wso2.extension.siddhi.device + + + + + + + org.wso2.maven + carbon-p2-plugin + ${carbon.p2.plugin.version} + + + p2-feature-generation + package + + p2-feature-gen + + + org.wso2.extension.siddhi.device + ../../etc/feature.properties + + + org.wso2.carbon.p2.category.type:server + org.eclipse.equinox.p2.type.group:true + + + + + org.wso2.carbon.devicemgt-plugins:org.wso2.extension.siddhi.device:${carbon.devicemgt.plugins.version} + + + + + + + + + \ No newline at end of file From 2139a91c054116a12718e2cb70fbe281539d46ba Mon Sep 17 00:00:00 2001 From: charitha Date: Fri, 17 Nov 2017 12:58:35 +0530 Subject: [PATCH 0552/1075] Merge branch 'master' of https://github.com/wso2/carbon-device-mgt-plugins # Conflicts: # components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dec60bc1a..0b6d4bb58 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.93-SNAPSHOT + 4.0.94-SNAPSHOT ../pom.xml From 3a83bde8f4f939eadc675ad3d180cb95e2568a24 Mon Sep 17 00:00:00 2001 From: charitha Date: Fri, 17 Nov 2017 12:58:35 +0530 Subject: [PATCH 0553/1075] Merge branch 'master' of https://github.com/wso2/carbon-device-mgt-plugins # Conflicts: # components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 50aeb0941..514ef3523 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.93-SNAPSHOT + 4.0.94-SNAPSHOT ../pom.xml From 26ab0fcff2e2319d42f470119b892ff114daa2f0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:07:04 +0000 Subject: [PATCH 0554/1075] [WSO2 Release] [Jenkins #3055] [Release 4.0.94] prepare release v4.0.94 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e1d6e6695..9a6f37c00 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.94-SNAPSHOT + 4.0.94 ../pom.xml From 5f27c2de70ffe4bd99f9b929ade28e9ad9df117a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:07:04 +0000 Subject: [PATCH 0555/1075] [WSO2 Release] [Jenkins #3055] [Release 4.0.94] prepare release v4.0.94 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0b6d4bb58..1c99f108f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.94-SNAPSHOT + 4.0.94 ../pom.xml From b3224307759f8a13718ca7bfb8ad5a955e777606 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:07:04 +0000 Subject: [PATCH 0556/1075] [WSO2 Release] [Jenkins #3055] [Release 4.0.94] prepare release v4.0.94 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 514ef3523..572a02875 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.94-SNAPSHOT + 4.0.94 ../pom.xml From 03c788d223416b6b78de33941d42001b6e222977 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:07:04 +0000 Subject: [PATCH 0557/1075] [WSO2 Release] [Jenkins #3055] [Release 4.0.94] prepare release v4.0.94 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cde306869..842f1434b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.94-SNAPSHOT + 4.0.94 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.94-SNAPSHOT + 4.0.94 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 935992b512d0b207044d521f4edc5530091f5fdd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:07:21 +0000 Subject: [PATCH 0558/1075] [WSO2 Release] [Jenkins #3055] [Release 4.0.94] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9a6f37c00..dca6c7c7b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.94 + 4.0.95-SNAPSHOT ../pom.xml From 215e27ee3c20e3b28126badb4ce850a1623bfff3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:07:21 +0000 Subject: [PATCH 0559/1075] [WSO2 Release] [Jenkins #3055] [Release 4.0.94] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1c99f108f..14cbf0233 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.94 + 4.0.95-SNAPSHOT ../pom.xml From 4b1819a7956b6f2723301b20811cb7c2b32436c4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:07:21 +0000 Subject: [PATCH 0560/1075] [WSO2 Release] [Jenkins #3055] [Release 4.0.94] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 572a02875..733691fc8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.94 + 4.0.95-SNAPSHOT ../pom.xml From 6ca62f4b6323b23bd6c26e4eb43799246b1e7955 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:07:21 +0000 Subject: [PATCH 0561/1075] [WSO2 Release] [Jenkins #3055] [Release 4.0.94] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 842f1434b..092d4c6db 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.94 + 4.0.95-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.94 + 4.0.95-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0ace204960238a904741c24167a9b64e51b992e6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:43:56 +0000 Subject: [PATCH 0562/1075] [WSO2 Release] [Jenkins #3056] [Release 4.0.95] prepare release v4.0.95 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dca6c7c7b..40ee35669 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.95-SNAPSHOT + 4.0.95 ../pom.xml From b5c095bb67a71fecdb5de240dfbc222fe72750c3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:43:56 +0000 Subject: [PATCH 0563/1075] [WSO2 Release] [Jenkins #3056] [Release 4.0.95] prepare release v4.0.95 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 14cbf0233..86d38843f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.95-SNAPSHOT + 4.0.95 ../pom.xml From 92d3923a1f66aca8a528f1bf34b6390062ac8b8f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:43:56 +0000 Subject: [PATCH 0564/1075] [WSO2 Release] [Jenkins #3056] [Release 4.0.95] prepare release v4.0.95 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 733691fc8..8929a10d4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.95-SNAPSHOT + 4.0.95 ../pom.xml From 6b81fd0a96e42ba642ab64d4e9a724fee9132edf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:43:56 +0000 Subject: [PATCH 0565/1075] [WSO2 Release] [Jenkins #3056] [Release 4.0.95] prepare release v4.0.95 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 092d4c6db..779291048 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.95-SNAPSHOT + 4.0.95 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.95-SNAPSHOT + 4.0.95 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 079f2e474886c3e02ebf9cde8d8ec1029225ac3e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:44:11 +0000 Subject: [PATCH 0566/1075] [WSO2 Release] [Jenkins #3056] [Release 4.0.95] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 40ee35669..ff1566236 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.95 + 4.0.96-SNAPSHOT ../pom.xml From 7bcb776f3ac8cb4fc32edd367f3b857057f58ac0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:44:11 +0000 Subject: [PATCH 0567/1075] [WSO2 Release] [Jenkins #3056] [Release 4.0.95] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 86d38843f..906d3b9c4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.95 + 4.0.96-SNAPSHOT ../pom.xml From 562d08756bbd9f9cdcdadab7bd2cdd866e06ac3d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:44:11 +0000 Subject: [PATCH 0568/1075] [WSO2 Release] [Jenkins #3056] [Release 4.0.95] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8929a10d4..3740e728b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.95 + 4.0.96-SNAPSHOT ../pom.xml From 50b22910cf8d5c32804f4b58f22fb50abe56f657 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 09:44:11 +0000 Subject: [PATCH 0569/1075] [WSO2 Release] [Jenkins #3056] [Release 4.0.95] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 779291048..4535e1b30 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.95 + 4.0.96-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.95 + 4.0.96-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 91f7540ec792989b790c847480cb9a95215dc581 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 10:55:43 +0000 Subject: [PATCH 0570/1075] [WSO2 Release] [Jenkins #3058] [Release 4.0.96] prepare release v4.0.96 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ff1566236..33f8d0c70 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.96-SNAPSHOT + 4.0.96 ../pom.xml From 3e4288e5e16598b0858e58cbeba2544282e36c80 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 10:55:43 +0000 Subject: [PATCH 0571/1075] [WSO2 Release] [Jenkins #3058] [Release 4.0.96] prepare release v4.0.96 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 906d3b9c4..5a9c7bd8a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.96-SNAPSHOT + 4.0.96 ../pom.xml From 8005d4be408b9bb748b97af4cd8fe1541022a6f2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 10:55:43 +0000 Subject: [PATCH 0572/1075] [WSO2 Release] [Jenkins #3058] [Release 4.0.96] prepare release v4.0.96 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3740e728b..57ce764df 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.96-SNAPSHOT + 4.0.96 ../pom.xml From 666152b01f8eaed28e4dff85bf60b2599f342166 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 10:55:43 +0000 Subject: [PATCH 0573/1075] [WSO2 Release] [Jenkins #3058] [Release 4.0.96] prepare release v4.0.96 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4535e1b30..0accb3296 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.96-SNAPSHOT + 4.0.96 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.96-SNAPSHOT + 4.0.96 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From efa3d0194d50e884ff73df6bc7e8915b186b9e2f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 10:55:56 +0000 Subject: [PATCH 0574/1075] [WSO2 Release] [Jenkins #3058] [Release 4.0.96] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 33f8d0c70..ac02375b0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.96 + 4.0.97-SNAPSHOT ../pom.xml From 783fab0ccef34de13823fdcd13c4a6b6ee3e62df Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 10:55:56 +0000 Subject: [PATCH 0575/1075] [WSO2 Release] [Jenkins #3058] [Release 4.0.96] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5a9c7bd8a..cfe6b5ad6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.96 + 4.0.97-SNAPSHOT ../pom.xml From aead5b129db139a956985e6949fa5a7351940577 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 10:55:56 +0000 Subject: [PATCH 0576/1075] [WSO2 Release] [Jenkins #3058] [Release 4.0.96] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57ce764df..cf3b6f945 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.96 + 4.0.97-SNAPSHOT ../pom.xml From 91a571e4cd8ba1755b35a61eaa14aa6065a993bf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 10:55:56 +0000 Subject: [PATCH 0577/1075] [WSO2 Release] [Jenkins #3058] [Release 4.0.96] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 0accb3296..1f40680d6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.96 + 4.0.97-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.96 + 4.0.97-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d19b41e389a8b796f7b286b75f42cf2b667ced44 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 13:02:44 +0000 Subject: [PATCH 0578/1075] [WSO2 Release] [Jenkins #3060] [Release 4.0.97] prepare release v4.0.97 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ac02375b0..e2a667bc2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.97-SNAPSHOT + 4.0.97 ../pom.xml From 05b7e9fe6f1a3cdda10d633dd37077d0aa73a09c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 13:02:44 +0000 Subject: [PATCH 0579/1075] [WSO2 Release] [Jenkins #3060] [Release 4.0.97] prepare release v4.0.97 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cfe6b5ad6..fda87700c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.97-SNAPSHOT + 4.0.97 ../pom.xml From dfcc0f78b713eb19ed4e965130d4e20bf93d88ff Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 13:02:44 +0000 Subject: [PATCH 0580/1075] [WSO2 Release] [Jenkins #3060] [Release 4.0.97] prepare release v4.0.97 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cf3b6f945..4e2a3121d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.97-SNAPSHOT + 4.0.97 ../pom.xml From 15c1543b40a7e5510b55496c7b8316aae55e327c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 13:02:44 +0000 Subject: [PATCH 0581/1075] [WSO2 Release] [Jenkins #3060] [Release 4.0.97] prepare release v4.0.97 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1f40680d6..5199ff221 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.97-SNAPSHOT + 4.0.97 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.97-SNAPSHOT + 4.0.97 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 20af45e3cc186da610b141b7ec2e417de626e8ce Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 13:02:58 +0000 Subject: [PATCH 0582/1075] [WSO2 Release] [Jenkins #3060] [Release 4.0.97] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e2a667bc2..cf9c55f69 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.97 + 4.0.98-SNAPSHOT ../pom.xml From 59f468e58500e78050fdc06e924deb8b8c8983b2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 13:02:58 +0000 Subject: [PATCH 0583/1075] [WSO2 Release] [Jenkins #3060] [Release 4.0.97] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fda87700c..fd48e3a9a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.97 + 4.0.98-SNAPSHOT ../pom.xml From 7f7f7afe8d54c8574d56b24a40bfc71bf9217cb1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 13:02:58 +0000 Subject: [PATCH 0584/1075] [WSO2 Release] [Jenkins #3060] [Release 4.0.97] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4e2a3121d..fb003b6eb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.97 + 4.0.98-SNAPSHOT ../pom.xml From 3bf62643af941f606abe2f15bc49f32b336278fc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 17 Nov 2017 13:02:58 +0000 Subject: [PATCH 0585/1075] [WSO2 Release] [Jenkins #3060] [Release 4.0.97] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5199ff221..7e9bcc2e6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.97 + 4.0.98-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.97 + 4.0.98-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From dd0c7a33877f004b5371b4b7883af138586f8f35 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 12:30:02 +0000 Subject: [PATCH 0586/1075] [WSO2 Release] [Jenkins #3064] [Release 4.0.98] prepare release v4.0.98 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cf9c55f69..8d323166f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.98-SNAPSHOT + 4.0.98 ../pom.xml From 86ce1475e2caac6de3fe9cd6da559432b06b7e9e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 12:30:02 +0000 Subject: [PATCH 0587/1075] [WSO2 Release] [Jenkins #3064] [Release 4.0.98] prepare release v4.0.98 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fd48e3a9a..e4c767b98 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.98-SNAPSHOT + 4.0.98 ../pom.xml From 214bfddd046e06d4d984b92c77614212a8eed830 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 12:30:02 +0000 Subject: [PATCH 0588/1075] [WSO2 Release] [Jenkins #3064] [Release 4.0.98] prepare release v4.0.98 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fb003b6eb..67ec8b46e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.98-SNAPSHOT + 4.0.98 ../pom.xml From ff37d2bab95efed7cc54e168d5002186dc4c6c9e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 12:30:02 +0000 Subject: [PATCH 0589/1075] [WSO2 Release] [Jenkins #3064] [Release 4.0.98] prepare release v4.0.98 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7e9bcc2e6..d9ca94229 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.98-SNAPSHOT + 4.0.98 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.98-SNAPSHOT + 4.0.98 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0a39e302f3e5cac624e8aafbe9fc89187e1e8ae2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 12:30:19 +0000 Subject: [PATCH 0590/1075] [WSO2 Release] [Jenkins #3064] [Release 4.0.98] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8d323166f..52a77b21f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.98 + 4.0.99-SNAPSHOT ../pom.xml From b1210c65462a60519641e34f67b2030ceb2146e6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 12:30:19 +0000 Subject: [PATCH 0591/1075] [WSO2 Release] [Jenkins #3064] [Release 4.0.98] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e4c767b98..c43f7c161 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.98 + 4.0.99-SNAPSHOT ../pom.xml From 1c23f6f66c12f025401a72824a2d7a5ba3f1fd89 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 12:30:19 +0000 Subject: [PATCH 0592/1075] [WSO2 Release] [Jenkins #3064] [Release 4.0.98] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 67ec8b46e..9297fe791 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.98 + 4.0.99-SNAPSHOT ../pom.xml From 2ab30cdee765340ae8edfabcd22d52000c0f13d0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 12:30:19 +0000 Subject: [PATCH 0593/1075] [WSO2 Release] [Jenkins #3064] [Release 4.0.98] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d9ca94229..428a3ae99 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.98 + 4.0.99-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.98 + 4.0.99-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From de63628e998552a55ec7185b8d89d0b5685880db Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 14:37:32 +0000 Subject: [PATCH 0594/1075] [WSO2 Release] [Jenkins #3066] [Release 4.0.99] prepare release v4.0.99 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 52a77b21f..9931f094f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.99-SNAPSHOT + 4.0.99 ../pom.xml From 11fb75ac26c402a6610f72e77916e31e88dec0dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 14:37:32 +0000 Subject: [PATCH 0595/1075] [WSO2 Release] [Jenkins #3066] [Release 4.0.99] prepare release v4.0.99 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c43f7c161..42d979c81 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.99-SNAPSHOT + 4.0.99 ../pom.xml From 203135cc75b9bbfa68b96e11cc213eb7a239a567 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 14:37:32 +0000 Subject: [PATCH 0596/1075] [WSO2 Release] [Jenkins #3066] [Release 4.0.99] prepare release v4.0.99 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9297fe791..10a6a5731 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.99-SNAPSHOT + 4.0.99 ../pom.xml From d753a997dfebbcf5cbf8877f23e1e22daa52012e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 14:37:32 +0000 Subject: [PATCH 0597/1075] [WSO2 Release] [Jenkins #3066] [Release 4.0.99] prepare release v4.0.99 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 428a3ae99..fb5799f32 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.99-SNAPSHOT + 4.0.99 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.99-SNAPSHOT + 4.0.99 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8ec3dd5f32bd10d922c28cea80c59d70c8e7f128 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 14:37:47 +0000 Subject: [PATCH 0598/1075] [WSO2 Release] [Jenkins #3066] [Release 4.0.99] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9931f094f..54c691765 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.99 + 4.0.100-SNAPSHOT ../pom.xml From b81ebfa9778686e87bbc5eba1a92dd103f86a361 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 14:37:47 +0000 Subject: [PATCH 0599/1075] [WSO2 Release] [Jenkins #3066] [Release 4.0.99] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 42d979c81..b6f55e1a3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.99 + 4.0.100-SNAPSHOT ../pom.xml From 385ad750de6ea83e3b0c4fc182458bdfd41286a0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 14:37:47 +0000 Subject: [PATCH 0600/1075] [WSO2 Release] [Jenkins #3066] [Release 4.0.99] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 10a6a5731..f28cc6dc3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.99 + 4.0.100-SNAPSHOT ../pom.xml From b6abf18b2e6d037fda9eeb155821d237a8b18d84 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 23 Nov 2017 14:37:47 +0000 Subject: [PATCH 0601/1075] [WSO2 Release] [Jenkins #3066] [Release 4.0.99] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fb5799f32..b3471ef0b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.99 + 4.0.100-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.99 + 4.0.100-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1c90ad80baa2ec28d2b107767952990892867364 Mon Sep 17 00:00:00 2001 From: charitha Date: Wed, 29 Nov 2017 15:48:13 +0530 Subject: [PATCH 0602/1075] Add siddhi extension to Get json array form given list of arguments --- pom.xml | 4 +- .../json/GetArrayFunctionExtension.java | 96 +++++++++++++++++++ src/main/resources/json.siddhiext | 5 +- ...onTestCase.java => ExtensionTestCase.java} | 51 ++++++++-- 4 files changed, 144 insertions(+), 12 deletions(-) create mode 100644 src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java rename src/test/java/org/wso2/extension/siddhi/execution/json/{getPropertyFunctionTestCase.java => ExtensionTestCase.java} (64%) diff --git a/pom.xml b/pom.xml index 54c691765..09bfb0ad6 100644 --- a/pom.xml +++ b/pom.xml @@ -48,8 +48,8 @@ json - junit - junit + org.testng + testng test diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java b/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java new file mode 100644 index 000000000..08712416e --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java @@ -0,0 +1,96 @@ +/* + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.execution.json; + +import org.json.JSONArray; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.executor.function.FunctionExecutor; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +/** + * getArray(elements..) + * Returns json array of elements as a string + * Accept Type(s): (STRING|INT|DOUBLE|FLOAT|OBJECT ..) + * Return Type(s): (STRING) + */ +public class GetArrayFunctionExtension extends FunctionExecutor { + + private Attribute.Type returnType = Attribute.Type.STRING; + + @Override + protected void init(ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length <= 0) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to json:getArray() function," + " required one or more, but found " + + attributeExpressionExecutors.length); + } + Attribute.Type inputType = attributeExpressionExecutors[0].getReturnType(); + for (int i = 1; i < attributeExpressionExecutors.length; i++) { + if (attributeExpressionExecutors[0].getReturnType() != inputType) { + throw new ExecutionPlanValidationException( + "Parameter types are inconsistent. All parameters should be same"); + } + } + } + + @Override + protected Object execute(Object[] data) { + + JSONArray jsonArray = new JSONArray(); + for (Object obj : data) { + jsonArray.put(obj); + } + return jsonArray.toString(); + } + + @Override + protected Object execute(Object data) { + return execute(new Object[]{data}); + } + + @Override + public void start() { + //Nothing to start + } + + @Override + public void stop() { + //Nothing to stop + } + + @Override + public Attribute.Type getReturnType() { + return returnType; + } + + @Override + public Object[] currentState() { + return null; //No need to maintain a state. + } + + @Override + public void restoreState(Object[] state) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} + + diff --git a/src/main/resources/json.siddhiext b/src/main/resources/json.siddhiext index f2a86a7eb..fa4336f4a 100644 --- a/src/main/resources/json.siddhiext +++ b/src/main/resources/json.siddhiext @@ -1,12 +1,12 @@ # -# Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +# Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. # # WSO2 Inc. 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 +# 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 @@ -17,3 +17,4 @@ # getProperty=org.wso2.extension.siddhi.execution.json.GetPropertyFunctionExtension +getArray=org.wso2.extension.siddhi.execution.json.GetArrayFunctionExtension \ No newline at end of file diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java b/src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java similarity index 64% rename from src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java rename to src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java index c1c49f788..761336a2d 100644 --- a/src/test/java/org/wso2/extension/siddhi/execution/json/getPropertyFunctionTestCase.java +++ b/src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java @@ -1,12 +1,12 @@ /* - * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. 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 + * 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 @@ -18,10 +18,10 @@ package org.wso2.extension.siddhi.execution.json; -import junit.framework.Assert; import org.apache.log4j.Logger; -import org.junit.Before; -import org.junit.Test; +import org.testng.Assert; +import org.testng.annotations.BeforeClass; +import org.testng.annotations.Test; import org.wso2.siddhi.core.ExecutionPlanRuntime; import org.wso2.siddhi.core.SiddhiManager; import org.wso2.siddhi.core.event.Event; @@ -32,12 +32,12 @@ import org.wso2.extension.siddhi.execution.json.test.util.SiddhiTestHelper; import java.util.concurrent.atomic.AtomicInteger; -public class getPropertyFunctionTestCase { - static final Logger log = Logger.getLogger(getPropertyFunctionTestCase.class); +public class ExtensionTestCase { + static final Logger log = Logger.getLogger(ExtensionTestCase.class); private AtomicInteger count = new AtomicInteger(0); private volatile boolean eventArrived; - @Before + @BeforeClass public void init() { count.set(0); eventArrived = false; @@ -85,4 +85,39 @@ public class getPropertyFunctionTestCase { Assert.assertTrue(eventArrived); executionPlanRuntime.shutdown(); } + + @Test(dependsOnMethods = {"testGetPropertyFunctionExtension"}) + public void testGetArrayFunctionExtension() throws InterruptedException { + count.set(0); + eventArrived = false; + log.info("GetArrayFunctionExtension TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + String inStreamDefinition = "define stream inputStream (arg1 string, arg2 string);"; + String query = ("@info(name = 'query1') from inputStream select json:getArray(arg1, arg2) " + + "as array insert into outputStream;"); + + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + + executionPlanRuntime.addCallback("query1", new QueryCallback() { + @Override + public void receive(long timeStamp, Event[] inEvents, Event[] removeEvents) { + EventPrinter.print(timeStamp, inEvents, removeEvents); + for (Event event : inEvents) { + count.incrementAndGet(); + if (count.get() == 1) { + eventArrived = true; + } + } + } + }); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + inputHandler.send(new Object[]{"Arg1","Arg2"}); + SiddhiTestHelper.waitForEvents(100, 1, count, 60000); + Assert.assertEquals(1, count.get()); + Assert.assertTrue(eventArrived); + executionPlanRuntime.shutdown(); + } } From 67fdf0e4d3a5176bec926e867f608ef749971d95 Mon Sep 17 00:00:00 2001 From: charitha Date: Wed, 29 Nov 2017 21:30:04 +0530 Subject: [PATCH 0603/1075] Improve testing --- pom.xml | 26 ++++++ .../siddhi/device/ExtensionTestCase.java | 44 ++++++++-- .../device/test/util/TestDataHolder.java | 87 ++++--------------- .../siddhi/device/test/util/TestUtils.java | 31 ------- src/test/resources/testng.xml | 2 +- 5 files changed, 77 insertions(+), 113 deletions(-) diff --git a/pom.xml b/pom.xml index b6f55e1a3..18ddcde60 100644 --- a/pom.xml +++ b/pom.xml @@ -148,6 +148,32 @@ + + org.jacoco + jacoco-maven-plugin + + ${basedir}/target/coverage-reports/jacoco-unit.exec + + + + jacoco-initialize + + prepare-agent + + + + jacoco-site + test + + report + + + ${basedir}/target/coverage-reports/jacoco-unit.exec + ${basedir}/target/coverage-reports/site + + + + \ No newline at end of file diff --git a/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java b/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java index 801b9e93a..607fcb537 100644 --- a/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java +++ b/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java @@ -49,7 +49,6 @@ import org.wso2.carbon.utils.multitenancy.MultitenantConstants; import org.wso2.extension.siddhi.device.test.util.SiddhiTestHelper; import org.wso2.extension.siddhi.device.test.util.TestDataHolder; import org.wso2.extension.siddhi.device.test.util.TestDeviceManagementService; -import org.wso2.extension.siddhi.device.test.util.TestUtils; import org.wso2.extension.siddhi.device.utils.DeviceUtils; import org.wso2.siddhi.core.ExecutionPlanRuntime; import org.wso2.siddhi.core.SiddhiManager; @@ -79,7 +78,7 @@ public class ExtensionTestCase extends BaseDeviceManagementTest { @Override public void receive(long timeStamp, Event[] inEvents, Event[] removeEvents) { EventPrinter.print(timeStamp, inEvents, removeEvents); - for (Event event : inEvents) { + for (Event ignored : inEvents) { count.incrementAndGet(); eventArrived = true; } @@ -127,8 +126,10 @@ public class ExtensionTestCase extends BaseDeviceManagementTest { @Test public void createGroup() throws GroupManagementException, GroupAlreadyExistException { - groupManagementProviderService.createGroup(TestUtils.createDeviceGroup1(), DEFAULT_ADMIN_ROLE, DEFAULT_ADMIN_PERMISSIONS); - groupManagementProviderService.createGroup(TestUtils.createDeviceGroup2(), DEFAULT_ADMIN_ROLE, DEFAULT_ADMIN_PERMISSIONS); + groupManagementProviderService.createGroup(TestDataHolder.generateDummyGroupData(1), + DEFAULT_ADMIN_ROLE, DEFAULT_ADMIN_PERMISSIONS); + groupManagementProviderService.createGroup(TestDataHolder.generateDummyGroupData(2), + DEFAULT_ADMIN_ROLE, DEFAULT_ADMIN_PERMISSIONS); } @Test @@ -149,13 +150,38 @@ public class ExtensionTestCase extends BaseDeviceManagementTest { configuration.setEnabled(false); DeviceConfigurationManager.getInstance().getDeviceManagementConfig().setDeviceCacheConfiguration(configuration); - List list = TestUtils.getDeviceIdentifiersList(DEVICE_TYPE); - DeviceGroup deviceGroup = groupManagementProviderService.getGroup(TestUtils.createDeviceGroup1().getName()); + List list = TestDataHolder.getDeviceIdentifiersList(DEVICE_TYPE); + DeviceGroup deviceGroup = groupManagementProviderService.getGroup(TestDataHolder.generateDummyGroupData(1).getName()); Assert.assertNotNull(deviceGroup); groupManagementProviderService.addDevices(deviceGroup.getGroupId(), list); } @Test(dependsOnMethods = {"addDevices"}) + public void testIsEnrolledExtension() throws InterruptedException, GroupManagementException { + log.info("IsEnrolled TestCase"); + SiddhiManager siddhiManager = new SiddhiManager(); + + count.set(0); + eventArrived = false; + + String inStreamDefinition = "define stream inputStream (deviceId string, deviceType string);"; + String query = ("@info(name = 'query1') from inputStream[device:isEnrolled(deviceId, deviceType)] " + + "select deviceId insert into outputStream;"); + ExecutionPlanRuntime executionPlanRuntime = siddhiManager.createExecutionPlanRuntime(inStreamDefinition + query); + executionPlanRuntime.addCallback("query1", queryCallback); + + InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); + executionPlanRuntime.start(); + DeviceIdentifier deviceIdentifier = TestDataHolder.getDeviceIdentifiersList(DEVICE_TYPE).get(0); + inputHandler.send(new Object[]{deviceIdentifier.getId(), deviceIdentifier.getType()}); + inputHandler.send(new Object[]{"99999", deviceIdentifier.getType()}); + SiddhiTestHelper.waitForEvents(100, 1, count, 10000); + Assert.assertTrue(eventArrived); + Assert.assertEquals(1, count.get()); + executionPlanRuntime.shutdown(); + } + + @Test(dependsOnMethods = {"testIsEnrolledExtension"}) public void testIsInGroupExtension() throws InterruptedException, GroupManagementException { log.info("IsInGroup TestCase"); SiddhiManager siddhiManager = new SiddhiManager(); @@ -171,11 +197,11 @@ public class ExtensionTestCase extends BaseDeviceManagementTest { InputHandler inputHandler = executionPlanRuntime.getInputHandler("inputStream"); executionPlanRuntime.start(); - DeviceIdentifier deviceIdentifier = TestUtils.getDeviceIdentifiersList(DEVICE_TYPE).get(0); + DeviceIdentifier deviceIdentifier = TestDataHolder.getDeviceIdentifiersList(DEVICE_TYPE).get(0); inputHandler.send(new Object[]{groupManagementProviderService.getGroup( - TestUtils.createDeviceGroup1().getName()).getGroupId(), deviceIdentifier.getId(), deviceIdentifier.getType()}); + TestDataHolder.generateDummyGroupData(1).getName()).getGroupId(), deviceIdentifier.getId(), deviceIdentifier.getType()}); inputHandler.send(new Object[]{groupManagementProviderService.getGroup( - TestUtils.createDeviceGroup2().getName()).getGroupId(), deviceIdentifier.getId(), deviceIdentifier.getType()}); + TestDataHolder.generateDummyGroupData(2).getName()).getGroupId(), deviceIdentifier.getId(), deviceIdentifier.getType()}); SiddhiTestHelper.waitForEvents(100, 1, count, 10000); Assert.assertTrue(eventArrived); Assert.assertEquals(1, count.get()); diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java index 6c2fe832f..6b482abcb 100644 --- a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java +++ b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java @@ -30,13 +30,8 @@ import java.util.Properties; public class TestDataHolder { - public final static String TEST_DEVICE_TYPE = "Test"; - public final static Integer SUPER_TENANT_ID = -1234; - public final static String SUPER_TENANT_DOMAIN = "carbon.super"; public final static String initialDeviceIdentifier = "12345"; public final static String OWNER = "admin"; - public static Device initialTestDevice; - public static DeviceType initialTestDeviceType; public static Device generateDummyDeviceData(String deviceType) { Device device = new Device(); @@ -53,75 +48,23 @@ public class TestDataHolder { return device; } - public static Notification getNotification(int notificationId, String status, String deviceId, - String description, String deviceName, int operationId, - String deviceType) { - Notification notification = new Notification(); - notification.setNotificationId(notificationId); - notification.setStatus(status); - notification.setDeviceIdentifier(deviceId); - notification.setDescription(description); - notification.setDeviceName(deviceName); - notification.setOperationId(operationId); - notification.setDeviceType(deviceType); - return notification; - } - - public static Device generateDummyDeviceData(String deviceIdentifier, String deviceType, - EnrolmentInfo enrolmentInfo) { - Device device = new Device(); - device.setEnrolmentInfo(enrolmentInfo); - device.setDescription("Test Description"); - device.setDeviceIdentifier(deviceIdentifier); - device.setType(deviceType); - return device; - } - - public static List generateDummyDeviceData(List deviceIds) { - List devices = new ArrayList<>(); - for (DeviceIdentifier deviceId : deviceIds) { - Device device = new Device(); - EnrolmentInfo enrolmentInfo = new EnrolmentInfo(); - enrolmentInfo.setDateOfEnrolment(new Date().getTime()); - enrolmentInfo.setDateOfLastUpdate(new Date().getTime()); - enrolmentInfo.setOwner(OWNER); - enrolmentInfo.setOwnership(EnrolmentInfo.OwnerShip.BYOD); - enrolmentInfo.setStatus(EnrolmentInfo.Status.CREATED); - device.setEnrolmentInfo(enrolmentInfo); - device.setDescription("Test Description"); - device.setDeviceIdentifier(deviceId.getId()); - device.setType(deviceId.getType()); - devices.add(device); - } - return devices; - } - - public static DeviceType generateDeviceTypeData(String devTypeName) { - DeviceType deviceType = new DeviceType(); - deviceType.setName(devTypeName); - return deviceType; - } - - public static Application generateApplicationDummyData(String appIdentifier) { - Application application = new Application(); - Properties properties = new Properties(); - properties.setProperty("test1", "testVal"); - application.setName("SimpleCalculator"); - application.setCategory("TestCategory"); - application.setApplicationIdentifier(appIdentifier); - application.setType("TestType"); - application.setVersion("1.0.0"); - application.setImageUrl("http://test.org/image/"); - application.setLocationUrl("http://test.org/location/"); - application.setAppProperties(properties); - return application; - } - - public static DeviceGroup generateDummyGroupData() { + public static DeviceGroup generateDummyGroupData(int testId) { DeviceGroup deviceGroup = new DeviceGroup(); - deviceGroup.setName("Test device group"); - deviceGroup.setDescription("Test description"); + deviceGroup.setName("Test" + testId); + deviceGroup.setDescription("Test description " + testId); deviceGroup.setOwner(OWNER); return deviceGroup; } + + public static List getDeviceIdentifiersList(String deviceType){ + Device device = generateDummyDeviceData(deviceType); + DeviceIdentifier identifier = new DeviceIdentifier(); + identifier.setId(device.getDeviceIdentifier()); + identifier.setType(deviceType); + + List list = new ArrayList<>(); + list.add(identifier); + + return list; + } } diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java index 20ed04dae..673b2b521 100644 --- a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java +++ b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java @@ -58,35 +58,4 @@ public class TestUtils { } } } - - - public static DeviceGroup createDeviceGroup1(){ - DeviceGroup group = new DeviceGroup(); - group.setName("TEST_GROUP_01"); - group.setDescription("TEST_GROUP_01 - Description"); - group.setOwner("admin"); - return group; - } - - - public static DeviceGroup createDeviceGroup2(){ - DeviceGroup group = new DeviceGroup(); - group.setName("TEST_GROUP_02"); - group.setDescription("TEST_GROUP_02 - Description"); - group.setOwner("admin"); - return group; - } - - public static List getDeviceIdentifiersList(String deviceType){ - - Device device = TestDataHolder.generateDummyDeviceData(deviceType); - DeviceIdentifier identifier = new DeviceIdentifier(); - identifier.setId(device.getDeviceIdentifier()); - identifier.setType(deviceType); - - List list = new ArrayList<>(); - list.add(identifier); - - return list; - } } diff --git a/src/test/resources/testng.xml b/src/test/resources/testng.xml index a2e39e52e..2f25f2a58 100644 --- a/src/test/resources/testng.xml +++ b/src/test/resources/testng.xml @@ -19,7 +19,7 @@ - + From bee7360f3a1c6911372a36f0f3b9b36a2850669c Mon Sep 17 00:00:00 2001 From: charitha Date: Wed, 29 Nov 2017 21:30:04 +0530 Subject: [PATCH 0604/1075] Improve testing --- pom.xml | 12 ++++++++++++ src/test/resources/testng.xml | 30 ++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 src/test/resources/testng.xml diff --git a/pom.xml b/pom.xml index 09bfb0ad6..de341dfb6 100644 --- a/pom.xml +++ b/pom.xml @@ -84,6 +84,18 @@ + + org.apache.maven.plugins + maven-surefire-plugin + + + file:src/test/resources/log4j.properties + + + src/test/resources/testng.xml + + + org.jacoco jacoco-maven-plugin diff --git a/src/test/resources/testng.xml b/src/test/resources/testng.xml new file mode 100644 index 000000000..80918d253 --- /dev/null +++ b/src/test/resources/testng.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + From e54739f1e96ee2369d2d1018e13dca4eaf1f1f06 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Nov 2017 16:30:29 +0000 Subject: [PATCH 0605/1075] [WSO2 Release] [Jenkins #3068] [Release 4.0.100] prepare release v4.0.100 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 18ddcde60..ead960a61 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.100-SNAPSHOT + 4.0.100 ../pom.xml From 6872700fe4bc6201cddd8e08603528aaf091bab5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Nov 2017 16:30:29 +0000 Subject: [PATCH 0606/1075] [WSO2 Release] [Jenkins #3068] [Release 4.0.100] prepare release v4.0.100 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f28cc6dc3..dbd435ebd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.100-SNAPSHOT + 4.0.100 ../pom.xml From 106974d5069264876bf6dc32ec5fac75067ab067 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Nov 2017 16:30:29 +0000 Subject: [PATCH 0607/1075] [WSO2 Release] [Jenkins #3068] [Release 4.0.100] prepare release v4.0.100 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index de341dfb6..d7304abbf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.100-SNAPSHOT + 4.0.100 ../pom.xml From afe00008646161b2edc0783d71254cb66429b5ca Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Nov 2017 16:30:29 +0000 Subject: [PATCH 0608/1075] [WSO2 Release] [Jenkins #3068] [Release 4.0.100] prepare release v4.0.100 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b3471ef0b..eb16a49c2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.100-SNAPSHOT + 4.0.100 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.100-SNAPSHOT + 4.0.100 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f6150f3fda5ac9bb35861e1ac135257cd8e4910b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Nov 2017 16:30:44 +0000 Subject: [PATCH 0609/1075] [WSO2 Release] [Jenkins #3068] [Release 4.0.100] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ead960a61..e4409332a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.100 + 4.0.101-SNAPSHOT ../pom.xml From 99cb57bc80f1ed8980e351e8e4dd43d61da95282 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Nov 2017 16:30:44 +0000 Subject: [PATCH 0610/1075] [WSO2 Release] [Jenkins #3068] [Release 4.0.100] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dbd435ebd..106bbb7ec 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.100 + 4.0.101-SNAPSHOT ../pom.xml From f04b920738cb610e0fd4919f493171ddf8847949 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Nov 2017 16:30:44 +0000 Subject: [PATCH 0611/1075] [WSO2 Release] [Jenkins #3068] [Release 4.0.100] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d7304abbf..9297d7434 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.100 + 4.0.101-SNAPSHOT ../pom.xml From 27e878b443fa3c20f2e27cf18ee4efc390eb3920 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 29 Nov 2017 16:30:44 +0000 Subject: [PATCH 0612/1075] [WSO2 Release] [Jenkins #3068] [Release 4.0.100] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eb16a49c2..2c9155f47 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.100 + 4.0.101-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.100 + 4.0.101-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a084af918d681e9f1ddf31fd724b7df80fc207a3 Mon Sep 17 00:00:00 2001 From: Ace Date: Thu, 30 Nov 2017 10:52:30 +0530 Subject: [PATCH 0613/1075] Bumping cdmf version and updating unit tests --- .../extension/siddhi/device/test/util/TestDeviceManager.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java index 7a152b9a3..78197c0ce 100644 --- a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java +++ b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java @@ -88,6 +88,11 @@ public class TestDeviceManager implements DeviceManager { return null; } + @Override + public boolean updateDeviceProperties(DeviceIdentifier deviceIdentifier, List list) throws DeviceManagementException { + return false; + } + @Override public boolean updateDeviceInfo(DeviceIdentifier deviceIdentifier, Device device) throws DeviceManagementException { From cb63e4899876f3bc05a2e30f426d0c1c88b0b667 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Nov 2017 06:01:18 +0000 Subject: [PATCH 0614/1075] [WSO2 Release] [Jenkins #3070] [Release 4.0.101] prepare release v4.0.101 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 106bbb7ec..19b59cb28 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.101-SNAPSHOT + 4.0.101 ../pom.xml From c2f096b3711833141cd8988670806dbc59945c8a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Nov 2017 06:01:18 +0000 Subject: [PATCH 0615/1075] [WSO2 Release] [Jenkins #3070] [Release 4.0.101] prepare release v4.0.101 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9297d7434..ecf1702de 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.101-SNAPSHOT + 4.0.101 ../pom.xml From 9997b3d92fa46868f3a9daed908b2d79b2b7ddae Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Nov 2017 06:01:18 +0000 Subject: [PATCH 0616/1075] [WSO2 Release] [Jenkins #3070] [Release 4.0.101] prepare release v4.0.101 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2c9155f47..264a36277 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.101-SNAPSHOT + 4.0.101 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.101-SNAPSHOT + 4.0.101 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 68034d69fde8ab858c9cece11750a7c0444e7e73 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Nov 2017 06:01:18 +0000 Subject: [PATCH 0617/1075] [WSO2 Release] [Jenkins #3070] [Release 4.0.101] prepare release v4.0.101 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e4409332a..e70c18dbf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.101-SNAPSHOT + 4.0.101 ../pom.xml From 760d5168bde4e515963a837e9acc336e5f090db5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Nov 2017 06:01:33 +0000 Subject: [PATCH 0618/1075] [WSO2 Release] [Jenkins #3070] [Release 4.0.101] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 19b59cb28..6fac7e89f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.101 + 4.0.102-SNAPSHOT ../pom.xml From bc3301ddcb0621fcbc797763fe62b4c2d618dbc2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Nov 2017 06:01:33 +0000 Subject: [PATCH 0619/1075] [WSO2 Release] [Jenkins #3070] [Release 4.0.101] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ecf1702de..40ba509c7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.101 + 4.0.102-SNAPSHOT ../pom.xml From 7c53381f99fd21cf94596c9a6de71af0c50b3b50 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Nov 2017 06:01:33 +0000 Subject: [PATCH 0620/1075] [WSO2 Release] [Jenkins #3070] [Release 4.0.101] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 264a36277..81b1f7c71 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.101 + 4.0.102-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.101 + 4.0.102-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 27e940fd8c7e0fb7089784ff184b323b82ad2060 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 30 Nov 2017 06:01:33 +0000 Subject: [PATCH 0621/1075] [WSO2 Release] [Jenkins #3070] [Release 4.0.101] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e70c18dbf..aa365855e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.101 + 4.0.102-SNAPSHOT ../pom.xml From 40b3966cd62691520c15fc496a32146d0ea9a99e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 03:58:06 +0000 Subject: [PATCH 0622/1075] [WSO2 Release] [Jenkins #3072] [Release 4.0.102] prepare release v4.0.102 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6fac7e89f..790abb63a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.102-SNAPSHOT + 4.0.102 ../pom.xml From 17bcb38f5bc49c4b95a92cd1db31a2f87f685cd7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 03:58:06 +0000 Subject: [PATCH 0623/1075] [WSO2 Release] [Jenkins #3072] [Release 4.0.102] prepare release v4.0.102 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 40ba509c7..8c311048d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.102-SNAPSHOT + 4.0.102 ../pom.xml From df98035e9564eb529fc6293f942450c074620c6b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 03:58:06 +0000 Subject: [PATCH 0624/1075] [WSO2 Release] [Jenkins #3072] [Release 4.0.102] prepare release v4.0.102 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 81b1f7c71..4271a056d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.102-SNAPSHOT + 4.0.102 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.102-SNAPSHOT + 4.0.102 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1e44e662802a8b5c3f30e5d6d02855906c66768e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 03:58:06 +0000 Subject: [PATCH 0625/1075] [WSO2 Release] [Jenkins #3072] [Release 4.0.102] prepare release v4.0.102 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aa365855e..b2475f012 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.102-SNAPSHOT + 4.0.102 ../pom.xml From f2ea99a5ac8a9968457d4d8359a3f09367d3c39a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 03:58:20 +0000 Subject: [PATCH 0626/1075] [WSO2 Release] [Jenkins #3072] [Release 4.0.102] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 790abb63a..c5c3e83f4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.102 + 4.0.103-SNAPSHOT ../pom.xml From 7c7aeb2ed654096505e5f7a65065367ec86c6a39 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 03:58:20 +0000 Subject: [PATCH 0627/1075] [WSO2 Release] [Jenkins #3072] [Release 4.0.102] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8c311048d..01777a935 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.102 + 4.0.103-SNAPSHOT ../pom.xml From ec3ab140d67ad9f8afb8cf71fa0fc10f1a73ce5a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 03:58:20 +0000 Subject: [PATCH 0628/1075] [WSO2 Release] [Jenkins #3072] [Release 4.0.102] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4271a056d..62375c4c2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.102 + 4.0.103-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.102 + 4.0.103-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 23b2c50d8ec6557d9f78df66e9b08b43a15154ec Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 03:58:20 +0000 Subject: [PATCH 0629/1075] [WSO2 Release] [Jenkins #3072] [Release 4.0.102] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b2475f012..8f0df6dab 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.102 + 4.0.103-SNAPSHOT ../pom.xml From 276b183f6460e2e265c15271241f045968d339a2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 07:06:19 +0000 Subject: [PATCH 0630/1075] [WSO2 Release] [Jenkins #3074] [Release 4.0.103] prepare release v4.0.103 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c5c3e83f4..7dbdefcec 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.103-SNAPSHOT + 4.0.103 ../pom.xml From 6c7aeed47e7e938099615909c75803f8be2e21bb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 07:06:19 +0000 Subject: [PATCH 0631/1075] [WSO2 Release] [Jenkins #3074] [Release 4.0.103] prepare release v4.0.103 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 01777a935..b9a4fa5f6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.103-SNAPSHOT + 4.0.103 ../pom.xml From 233df9013db2c4eea4c8fad6d321aed2c202c1c3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 07:06:19 +0000 Subject: [PATCH 0632/1075] [WSO2 Release] [Jenkins #3074] [Release 4.0.103] prepare release v4.0.103 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 62375c4c2..7c848e515 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.103-SNAPSHOT + 4.0.103 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.103-SNAPSHOT + 4.0.103 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a3095faff6eafd35752aed97696723b87d516140 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 07:06:19 +0000 Subject: [PATCH 0633/1075] [WSO2 Release] [Jenkins #3074] [Release 4.0.103] prepare release v4.0.103 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8f0df6dab..7ab16a764 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.103-SNAPSHOT + 4.0.103 ../pom.xml From 75fdd0be4c5d0027e3d1938c637a9765e62255c9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 07:06:33 +0000 Subject: [PATCH 0634/1075] [WSO2 Release] [Jenkins #3074] [Release 4.0.103] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7dbdefcec..5ab28c8d8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.103 + 4.0.104-SNAPSHOT ../pom.xml From e1aa1c96164431ffceebed6d72e22d3797a36cf6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 07:06:33 +0000 Subject: [PATCH 0635/1075] [WSO2 Release] [Jenkins #3074] [Release 4.0.103] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b9a4fa5f6..362912047 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.103 + 4.0.104-SNAPSHOT ../pom.xml From 3307b7a00affd70bb25242111d47e8299de4a323 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 07:06:33 +0000 Subject: [PATCH 0636/1075] [WSO2 Release] [Jenkins #3074] [Release 4.0.103] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7c848e515..1d3de2d4d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.103 + 4.0.104-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.103 + 4.0.104-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1864cebd405bad5a1c8ce18c3bacd899bccac725 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 13 Dec 2017 07:06:33 +0000 Subject: [PATCH 0637/1075] [WSO2 Release] [Jenkins #3074] [Release 4.0.103] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7ab16a764..ba0c097a4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.103 + 4.0.104-SNAPSHOT ../pom.xml From 8158fe0c2dd033ff12c50fbb41ad260a1e0c1908 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Dec 2017 09:24:58 +0000 Subject: [PATCH 0638/1075] [WSO2 Release] [Jenkins #3076] [Release 4.0.104] prepare release v4.0.104 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5ab28c8d8..c1be227e8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.104-SNAPSHOT + 4.0.104 ../pom.xml From 3f1e09de5e03e971524ab3107d988155d4d255ef Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Dec 2017 09:24:58 +0000 Subject: [PATCH 0639/1075] [WSO2 Release] [Jenkins #3076] [Release 4.0.104] prepare release v4.0.104 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 362912047..9854f1290 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.104-SNAPSHOT + 4.0.104 ../pom.xml From 556b1e5cf72e0a1fc0f373ed5b327684a54dca4e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Dec 2017 09:24:58 +0000 Subject: [PATCH 0640/1075] [WSO2 Release] [Jenkins #3076] [Release 4.0.104] prepare release v4.0.104 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1d3de2d4d..b432f1a54 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.104-SNAPSHOT + 4.0.104 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.104-SNAPSHOT + 4.0.104 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 75d2f3f42c89e77d30149be973bc554a70565bfb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Dec 2017 09:24:58 +0000 Subject: [PATCH 0641/1075] [WSO2 Release] [Jenkins #3076] [Release 4.0.104] prepare release v4.0.104 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ba0c097a4..edbd5d765 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.104-SNAPSHOT + 4.0.104 ../pom.xml From 39e2f9c79c7f5e618e2344a9abd9ad99745cdc16 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Dec 2017 09:25:13 +0000 Subject: [PATCH 0642/1075] [WSO2 Release] [Jenkins #3076] [Release 4.0.104] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c1be227e8..3714c8309 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.104 + 4.0.105-SNAPSHOT ../pom.xml From cbbfb6c95a0c7ec3bea6469018f154426145732d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Dec 2017 09:25:13 +0000 Subject: [PATCH 0643/1075] [WSO2 Release] [Jenkins #3076] [Release 4.0.104] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9854f1290..bd72a5d6c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.104 + 4.0.105-SNAPSHOT ../pom.xml From 16ec2562bfff8056d2dacff6e07585cc283e5846 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Dec 2017 09:25:13 +0000 Subject: [PATCH 0644/1075] [WSO2 Release] [Jenkins #3076] [Release 4.0.104] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b432f1a54..1d9878794 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.104 + 4.0.105-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.104 + 4.0.105-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1cb5d1e3a8245bb3c248e0103b6a9f651f763129 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 14 Dec 2017 09:25:13 +0000 Subject: [PATCH 0645/1075] [WSO2 Release] [Jenkins #3076] [Release 4.0.104] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index edbd5d765..7aad555c5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.104 + 4.0.105-SNAPSHOT ../pom.xml From 9c5f9324687c2ce17b248fc0818df61056c766d5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 13:48:13 +0000 Subject: [PATCH 0646/1075] [WSO2 Release] [Jenkins #3079] [Release 4.0.105] prepare release v4.0.105 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3714c8309..aceb00caa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.105-SNAPSHOT + 4.0.105 ../pom.xml From ea873dfdfde584e19bc1adc3ed22ed8e9208b201 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 13:48:13 +0000 Subject: [PATCH 0647/1075] [WSO2 Release] [Jenkins #3079] [Release 4.0.105] prepare release v4.0.105 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd72a5d6c..1c4c096e1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.105-SNAPSHOT + 4.0.105 ../pom.xml From 82cb3f2832a0338573c53ea56084556e4f3295ab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 13:48:13 +0000 Subject: [PATCH 0648/1075] [WSO2 Release] [Jenkins #3079] [Release 4.0.105] prepare release v4.0.105 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1d9878794..3eae14ffc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.105-SNAPSHOT + 4.0.105 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.105-SNAPSHOT + 4.0.105 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 41198ea821e59a2693fa4118df5b4a4017e21f61 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 13:48:13 +0000 Subject: [PATCH 0649/1075] [WSO2 Release] [Jenkins #3079] [Release 4.0.105] prepare release v4.0.105 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7aad555c5..c538a6476 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.105-SNAPSHOT + 4.0.105 ../pom.xml From e60983ffd83d43e226ec7810d8926818a7260275 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 13:48:28 +0000 Subject: [PATCH 0650/1075] [WSO2 Release] [Jenkins #3079] [Release 4.0.105] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aceb00caa..af491dc8d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.105 + 4.0.106-SNAPSHOT ../pom.xml From bfd70bb00d7b9de3d643f68505bc1c35e7377d6a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 13:48:28 +0000 Subject: [PATCH 0651/1075] [WSO2 Release] [Jenkins #3079] [Release 4.0.105] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1c4c096e1..db9874fa4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.105 + 4.0.106-SNAPSHOT ../pom.xml From 095f296f48b3765012d7cb2acaea96866ae9d916 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 13:48:28 +0000 Subject: [PATCH 0652/1075] [WSO2 Release] [Jenkins #3079] [Release 4.0.105] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3eae14ffc..435772fa7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.105 + 4.0.106-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.105 + 4.0.106-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0ad3b4c320d3aaada72e3c7a1822e61ead8ae30c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 13:48:28 +0000 Subject: [PATCH 0653/1075] [WSO2 Release] [Jenkins #3079] [Release 4.0.105] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c538a6476..f6f63f228 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.105 + 4.0.106-SNAPSHOT ../pom.xml From 3c9fae318864af83b69a257ead769da9012952eb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 16:06:38 +0000 Subject: [PATCH 0654/1075] [WSO2 Release] [Jenkins #3081] [Release 4.0.106] prepare release v4.0.106 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index af491dc8d..538dcfb98 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.106-SNAPSHOT + 4.0.106 ../pom.xml From f2585d093f5a2be259d6b18a1b0660b1e2b9e710 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 16:06:38 +0000 Subject: [PATCH 0655/1075] [WSO2 Release] [Jenkins #3081] [Release 4.0.106] prepare release v4.0.106 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index db9874fa4..51a3191e2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.106-SNAPSHOT + 4.0.106 ../pom.xml From 8d417280c3e554d9c224abc98267c5646ff47569 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 16:06:38 +0000 Subject: [PATCH 0656/1075] [WSO2 Release] [Jenkins #3081] [Release 4.0.106] prepare release v4.0.106 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 435772fa7..037247d79 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.106-SNAPSHOT + 4.0.106 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.106-SNAPSHOT + 4.0.106 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 93f07ba24b8adcda6809efbfc21faefe7e7e1a07 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 16:06:38 +0000 Subject: [PATCH 0657/1075] [WSO2 Release] [Jenkins #3081] [Release 4.0.106] prepare release v4.0.106 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f6f63f228..a5962688b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.106-SNAPSHOT + 4.0.106 ../pom.xml From a498e86c070286a1c70e58f49aa0344b88a29cae Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 16:06:54 +0000 Subject: [PATCH 0658/1075] [WSO2 Release] [Jenkins #3081] [Release 4.0.106] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 538dcfb98..b35ceec3e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.106 + 4.0.107-SNAPSHOT ../pom.xml From 60dbfa649fa01d75432a647f93b879bd451c6b75 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 16:06:54 +0000 Subject: [PATCH 0659/1075] [WSO2 Release] [Jenkins #3081] [Release 4.0.106] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 51a3191e2..7f4d2eeaf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.106 + 4.0.107-SNAPSHOT ../pom.xml From 8ea3681ee9b7e68045dc0197f6047788830d53cc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 16:06:54 +0000 Subject: [PATCH 0660/1075] [WSO2 Release] [Jenkins #3081] [Release 4.0.106] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 037247d79..48e443d79 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.106 + 4.0.107-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.106 + 4.0.107-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e5cd7a724c077b46fdf628322064ce42dfa06d9a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 15 Dec 2017 16:06:54 +0000 Subject: [PATCH 0661/1075] [WSO2 Release] [Jenkins #3081] [Release 4.0.106] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a5962688b..7f99d7876 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.106 + 4.0.107-SNAPSHOT ../pom.xml From f76555a1c0fb8bf0ecc9fd03e265663b3f02e607 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 24 Dec 2017 17:28:12 +0000 Subject: [PATCH 0662/1075] [WSO2 Release] [Jenkins #3084] [Release 4.0.107] prepare release v4.0.107 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b35ceec3e..b6c4ab748 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.107-SNAPSHOT + 4.0.107 ../pom.xml From 1927f0a1d280cf2a58a8116966cddedc08eef270 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 24 Dec 2017 17:28:12 +0000 Subject: [PATCH 0663/1075] [WSO2 Release] [Jenkins #3084] [Release 4.0.107] prepare release v4.0.107 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7f4d2eeaf..6220760db 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.107-SNAPSHOT + 4.0.107 ../pom.xml From c3bf7486c52339b74fa5bee0a068aa02f8882a0b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 24 Dec 2017 17:28:12 +0000 Subject: [PATCH 0664/1075] [WSO2 Release] [Jenkins #3084] [Release 4.0.107] prepare release v4.0.107 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 48e443d79..eaf4755ae 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.107-SNAPSHOT + 4.0.107 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.107-SNAPSHOT + 4.0.107 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 25b3700149c7c1e715225c981fe00873f0d7d058 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 24 Dec 2017 17:28:12 +0000 Subject: [PATCH 0665/1075] [WSO2 Release] [Jenkins #3084] [Release 4.0.107] prepare release v4.0.107 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7f99d7876..aaf692c7a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.107-SNAPSHOT + 4.0.107 ../pom.xml From 8a04b5a65efc6ab3f54f36eba0bad8117cee94ed Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 24 Dec 2017 17:28:29 +0000 Subject: [PATCH 0666/1075] [WSO2 Release] [Jenkins #3084] [Release 4.0.107] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b6c4ab748..b4513a03a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.107 + 4.0.108-SNAPSHOT ../pom.xml From 8a259727d8d7a43df18ad03f08c00eacc1b39e53 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 24 Dec 2017 17:28:29 +0000 Subject: [PATCH 0667/1075] [WSO2 Release] [Jenkins #3084] [Release 4.0.107] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6220760db..83216391f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.107 + 4.0.108-SNAPSHOT ../pom.xml From bef4837d1da16df5b233052ea175a4ddeed54674 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 24 Dec 2017 17:28:29 +0000 Subject: [PATCH 0668/1075] [WSO2 Release] [Jenkins #3084] [Release 4.0.107] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eaf4755ae..19c32ab8f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.107 + 4.0.108-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.107 + 4.0.108-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8be342caf65166159d490c7e435cbdb941ea15a0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 24 Dec 2017 17:28:29 +0000 Subject: [PATCH 0669/1075] [WSO2 Release] [Jenkins #3084] [Release 4.0.107] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aaf692c7a..5869e1043 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.107 + 4.0.108-SNAPSHOT ../pom.xml From 38047d649079be7ac5927744b5bd16db99682f2f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 02:17:00 +0000 Subject: [PATCH 0670/1075] [WSO2 Release] [Jenkins #3086] [Release 4.0.108] prepare release v4.0.108 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b4513a03a..47a0c1f61 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.108-SNAPSHOT + 4.0.108 ../pom.xml From a5caca4cf7c3f98be9ffe5ccb35492f9e95f9a46 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 02:17:00 +0000 Subject: [PATCH 0671/1075] [WSO2 Release] [Jenkins #3086] [Release 4.0.108] prepare release v4.0.108 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 83216391f..162eb2c0a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.108-SNAPSHOT + 4.0.108 ../pom.xml From c0802a149ef59f00737d44d102cbee009a47f37e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 02:17:00 +0000 Subject: [PATCH 0672/1075] [WSO2 Release] [Jenkins #3086] [Release 4.0.108] prepare release v4.0.108 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 19c32ab8f..44d2834c0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.108-SNAPSHOT + 4.0.108 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.108-SNAPSHOT + 4.0.108 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 80537c657adba021879da28afa0650106a05a264 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 02:17:00 +0000 Subject: [PATCH 0673/1075] [WSO2 Release] [Jenkins #3086] [Release 4.0.108] prepare release v4.0.108 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5869e1043..b21f42321 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.108-SNAPSHOT + 4.0.108 ../pom.xml From f01b6f273947b58dcf1822e2936eaab3dedc0d32 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 02:17:15 +0000 Subject: [PATCH 0674/1075] [WSO2 Release] [Jenkins #3086] [Release 4.0.108] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 47a0c1f61..755c61997 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.108 + 4.0.109-SNAPSHOT ../pom.xml From 3317a9f3e8ce47532513dfc3205df91ce89ffac6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 02:17:15 +0000 Subject: [PATCH 0675/1075] [WSO2 Release] [Jenkins #3086] [Release 4.0.108] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 162eb2c0a..b1cd2751c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.108 + 4.0.109-SNAPSHOT ../pom.xml From 720383ba0f2ec574c8417ac7b85406841893a9e1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 02:17:15 +0000 Subject: [PATCH 0676/1075] [WSO2 Release] [Jenkins #3086] [Release 4.0.108] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 44d2834c0..f64a296ed 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.108 + 4.0.109-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.108 + 4.0.109-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 3147e7813cfd2778c1d6c3b41cfc1397e18d409f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 02:17:15 +0000 Subject: [PATCH 0677/1075] [WSO2 Release] [Jenkins #3086] [Release 4.0.108] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b21f42321..f7cdea73f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.108 + 4.0.109-SNAPSHOT ../pom.xml From 001ed4863d79fc0a5d6b362e9b1337d2ee796fe5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 05:58:20 +0000 Subject: [PATCH 0678/1075] [WSO2 Release] [Jenkins #3088] [Release 4.0.109] prepare release v4.0.109 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 755c61997..d92885d7d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.109-SNAPSHOT + 4.0.109 ../pom.xml From 7af6858bba09df8e2079d5dd371908aa41876dff Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 05:58:20 +0000 Subject: [PATCH 0679/1075] [WSO2 Release] [Jenkins #3088] [Release 4.0.109] prepare release v4.0.109 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1cd2751c..688d32625 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.109-SNAPSHOT + 4.0.109 ../pom.xml From e81ffc040f6f4e3474a27d31116174c8634b14c6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 05:58:20 +0000 Subject: [PATCH 0680/1075] [WSO2 Release] [Jenkins #3088] [Release 4.0.109] prepare release v4.0.109 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f64a296ed..ac6baffbd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.109-SNAPSHOT + 4.0.109 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.109-SNAPSHOT + 4.0.109 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 284b93bd869e8c46a9308e4e7a17eacf92ab1835 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 05:58:20 +0000 Subject: [PATCH 0681/1075] [WSO2 Release] [Jenkins #3088] [Release 4.0.109] prepare release v4.0.109 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f7cdea73f..b1dd70849 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.109-SNAPSHOT + 4.0.109 ../pom.xml From b9ec76b3fb216187fdf4077c9e633d42b04f43dd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 05:58:33 +0000 Subject: [PATCH 0682/1075] [WSO2 Release] [Jenkins #3088] [Release 4.0.109] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d92885d7d..53231dddd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.109 + 4.0.110-SNAPSHOT ../pom.xml From 4db2d8b2d140daeb0d2e91085b7203fab2cec19e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 05:58:33 +0000 Subject: [PATCH 0683/1075] [WSO2 Release] [Jenkins #3088] [Release 4.0.109] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 688d32625..bc124e4cd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.109 + 4.0.110-SNAPSHOT ../pom.xml From a9b5097bf48220e6338cf69ffb9e8a38e36b0b3c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 05:58:33 +0000 Subject: [PATCH 0684/1075] [WSO2 Release] [Jenkins #3088] [Release 4.0.109] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ac6baffbd..b58e4b2d9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.109 + 4.0.110-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.109 + 4.0.110-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9050950f2ab16dc844c267a6067a4fad477c9b97 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Jan 2018 05:58:33 +0000 Subject: [PATCH 0685/1075] [WSO2 Release] [Jenkins #3088] [Release 4.0.109] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1dd70849..322e14d82 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.109 + 4.0.110-SNAPSHOT ../pom.xml From 3929aef83382dca141b428992a9607c0e8351f8c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 04:58:23 +0000 Subject: [PATCH 0686/1075] [WSO2 Release] [Jenkins #3090] [Release 4.0.110] prepare release v4.0.110 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 53231dddd..603a70e5b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.110-SNAPSHOT + 4.0.110 ../pom.xml From 073fd5dea213dc69b98e4d762059e22e124bbbf0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 04:58:23 +0000 Subject: [PATCH 0687/1075] [WSO2 Release] [Jenkins #3090] [Release 4.0.110] prepare release v4.0.110 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bc124e4cd..ae4f8f68f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.110-SNAPSHOT + 4.0.110 ../pom.xml From 41aea9e134b82c6977893eef0e7993930f8fef76 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 04:58:23 +0000 Subject: [PATCH 0688/1075] [WSO2 Release] [Jenkins #3090] [Release 4.0.110] prepare release v4.0.110 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b58e4b2d9..8341a3607 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.110-SNAPSHOT + 4.0.110 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.110-SNAPSHOT + 4.0.110 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 940b7726d2001e0c851a9d23a8db59ec2cbe1eb4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 04:58:23 +0000 Subject: [PATCH 0689/1075] [WSO2 Release] [Jenkins #3090] [Release 4.0.110] prepare release v4.0.110 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 322e14d82..55cdab731 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.110-SNAPSHOT + 4.0.110 ../pom.xml From dec17f7aaa5ff8407930a2f811f2f4d163c4f188 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 04:58:39 +0000 Subject: [PATCH 0690/1075] [WSO2 Release] [Jenkins #3090] [Release 4.0.110] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 603a70e5b..2bb0b1747 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.110 + 4.0.111-SNAPSHOT ../pom.xml From ad1b4bf54ff68a2fcbedc760de379d7056fe9425 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 04:58:39 +0000 Subject: [PATCH 0691/1075] [WSO2 Release] [Jenkins #3090] [Release 4.0.110] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ae4f8f68f..80b0a1af7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.110 + 4.0.111-SNAPSHOT ../pom.xml From d2f679f14b2d1a78503904b85cdb2e56127094d5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 04:58:39 +0000 Subject: [PATCH 0692/1075] [WSO2 Release] [Jenkins #3090] [Release 4.0.110] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8341a3607..6cd050c36 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.110 + 4.0.111-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.110 + 4.0.111-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 150940791eb4177c5d70ff1ec94acd768d23c159 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 04:58:39 +0000 Subject: [PATCH 0693/1075] [WSO2 Release] [Jenkins #3090] [Release 4.0.110] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 55cdab731..42cedca2d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.110 + 4.0.111-SNAPSHOT ../pom.xml From 602f1d3ba7874a4e3299683a2f386a1f7b01e71b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 07:41:36 +0000 Subject: [PATCH 0694/1075] [WSO2 Release] [Jenkins #3092] [Release 4.0.111] prepare release v4.0.111 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2bb0b1747..0e5598224 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.111-SNAPSHOT + 4.0.111 ../pom.xml From 4a1411a0214fd22e06d215af6d126a1a6fb65f06 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 07:41:36 +0000 Subject: [PATCH 0695/1075] [WSO2 Release] [Jenkins #3092] [Release 4.0.111] prepare release v4.0.111 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 80b0a1af7..94d9b9fbf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.111-SNAPSHOT + 4.0.111 ../pom.xml From 5e7c133651f2340a8e97ee2bb78e113e5ca6960c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 07:41:36 +0000 Subject: [PATCH 0696/1075] [WSO2 Release] [Jenkins #3092] [Release 4.0.111] prepare release v4.0.111 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6cd050c36..e15c64e2e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.111-SNAPSHOT + 4.0.111 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.111-SNAPSHOT + 4.0.111 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e76b823e3dd21d735464cebb12a71126adab7cae Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 07:41:36 +0000 Subject: [PATCH 0697/1075] [WSO2 Release] [Jenkins #3092] [Release 4.0.111] prepare release v4.0.111 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 42cedca2d..53dd000d2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.111-SNAPSHOT + 4.0.111 ../pom.xml From 9c9ee17a7644070849dd7a430ce4a45d8bbd96b2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 07:41:52 +0000 Subject: [PATCH 0698/1075] [WSO2 Release] [Jenkins #3092] [Release 4.0.111] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0e5598224..a0427ee88 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.111 + 4.0.112-SNAPSHOT ../pom.xml From ba07b50a3894817c4c0d52ca96c62ad6c5a1a203 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 07:41:52 +0000 Subject: [PATCH 0699/1075] [WSO2 Release] [Jenkins #3092] [Release 4.0.111] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 94d9b9fbf..ae9fad393 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.111 + 4.0.112-SNAPSHOT ../pom.xml From 0323351b40d728b5420bf0eb7f40277da75a60d1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 07:41:52 +0000 Subject: [PATCH 0700/1075] [WSO2 Release] [Jenkins #3092] [Release 4.0.111] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e15c64e2e..b332c4e6f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.111 + 4.0.112-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.111 + 4.0.112-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c97fb052b900f838af9a4a9274bf22b723d7be06 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 11 Jan 2018 07:41:52 +0000 Subject: [PATCH 0701/1075] [WSO2 Release] [Jenkins #3092] [Release 4.0.111] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 53dd000d2..7105351f9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.111 + 4.0.112-SNAPSHOT ../pom.xml From 8b26d00aca17791dd16e640a337e733dfd0277dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 09:02:58 +0000 Subject: [PATCH 0702/1075] [WSO2 Release] [Jenkins #3094] [Release 4.0.112] prepare release v4.0.112 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7105351f9..51b137af8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.112-SNAPSHOT + 4.0.112 ../pom.xml From cfe8531da982c3ab404a0a62ab361d513aa4b778 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 09:02:58 +0000 Subject: [PATCH 0703/1075] [WSO2 Release] [Jenkins #3094] [Release 4.0.112] prepare release v4.0.112 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a0427ee88..1b4c90981 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.112-SNAPSHOT + 4.0.112 ../pom.xml From 5f8aec7d4c315b0f6dddc732a128d6b235e26e70 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 09:02:58 +0000 Subject: [PATCH 0704/1075] [WSO2 Release] [Jenkins #3094] [Release 4.0.112] prepare release v4.0.112 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ae9fad393..bd704368d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.112-SNAPSHOT + 4.0.112 ../pom.xml From ba07f96c5503a253dda4dc7be7b4206d244e01c8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 09:02:58 +0000 Subject: [PATCH 0705/1075] [WSO2 Release] [Jenkins #3094] [Release 4.0.112] prepare release v4.0.112 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b332c4e6f..348d922d5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.112-SNAPSHOT + 4.0.112 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.112-SNAPSHOT + 4.0.112 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0db1fc72b586a2bfa029e336c700cd85a160450b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 09:03:13 +0000 Subject: [PATCH 0706/1075] [WSO2 Release] [Jenkins #3094] [Release 4.0.112] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 51b137af8..e7e1527d8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.112 + 4.0.113-SNAPSHOT ../pom.xml From 8a40c919885ba122114fe0f456e91efcd0b66eb7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 09:03:13 +0000 Subject: [PATCH 0707/1075] [WSO2 Release] [Jenkins #3094] [Release 4.0.112] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1b4c90981..9c4f3defd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.112 + 4.0.113-SNAPSHOT ../pom.xml From 68d223c4a705b38f80aefb2b9d02699ddaf0bfa5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 09:03:13 +0000 Subject: [PATCH 0708/1075] [WSO2 Release] [Jenkins #3094] [Release 4.0.112] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd704368d..6fd2e54fd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.112 + 4.0.113-SNAPSHOT ../pom.xml From 1de89c4428cfb684c33fd67b85ffdca481ef5acf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 09:03:13 +0000 Subject: [PATCH 0709/1075] [WSO2 Release] [Jenkins #3094] [Release 4.0.112] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 348d922d5..bc0863ed3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.112 + 4.0.113-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.112 + 4.0.113-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b7771f427cea3e8f3c93f15d28dc507624b45366 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 14:20:44 +0000 Subject: [PATCH 0710/1075] [WSO2 Release] [Jenkins #3096] [Release 4.0.113] prepare release v4.0.113 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e7e1527d8..f232b3525 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.113-SNAPSHOT + 4.0.113 ../pom.xml From 975a931f48a4b22c4a4c607c72e87a9fb3a0d881 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 14:20:44 +0000 Subject: [PATCH 0711/1075] [WSO2 Release] [Jenkins #3096] [Release 4.0.113] prepare release v4.0.113 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9c4f3defd..eaf73fe54 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.113-SNAPSHOT + 4.0.113 ../pom.xml From d068a57e835d77f17d290b13de26de4c119d6a28 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 14:20:44 +0000 Subject: [PATCH 0712/1075] [WSO2 Release] [Jenkins #3096] [Release 4.0.113] prepare release v4.0.113 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6fd2e54fd..94a2ae18f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.113-SNAPSHOT + 4.0.113 ../pom.xml From ec1166f1efb390f579c76c8139d373591f9bdf03 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 14:20:44 +0000 Subject: [PATCH 0713/1075] [WSO2 Release] [Jenkins #3096] [Release 4.0.113] prepare release v4.0.113 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index bc0863ed3..a7cfcec96 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.113-SNAPSHOT + 4.0.113 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.113-SNAPSHOT + 4.0.113 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9fc1b0da9d916f5916bab40d6f86b37838272e47 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 14:21:00 +0000 Subject: [PATCH 0714/1075] [WSO2 Release] [Jenkins #3096] [Release 4.0.113] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f232b3525..b459eef81 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.113 + 4.0.114-SNAPSHOT ../pom.xml From 4d2deab7aa0dd0ca0b0a2c71e26dc50a927123fa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 14:21:00 +0000 Subject: [PATCH 0715/1075] [WSO2 Release] [Jenkins #3096] [Release 4.0.113] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index eaf73fe54..cf7cc69f5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.113 + 4.0.114-SNAPSHOT ../pom.xml From 539cf699e5e5f1b174417cfe231281af2ad3dd44 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 14:21:00 +0000 Subject: [PATCH 0716/1075] [WSO2 Release] [Jenkins #3096] [Release 4.0.113] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 94a2ae18f..b35af30b6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.113 + 4.0.114-SNAPSHOT ../pom.xml From 0b831f7681feadc936b6378587cc5727f94e7f58 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Jan 2018 14:21:00 +0000 Subject: [PATCH 0717/1075] [WSO2 Release] [Jenkins #3096] [Release 4.0.113] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a7cfcec96..92cd238d5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.113 + 4.0.114-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.113 + 4.0.114-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 34515ccc41ba2933325308d565fe2d26976f2c77 Mon Sep 17 00:00:00 2001 From: geethkokila Date: Mon, 22 Jan 2018 17:29:44 +0530 Subject: [PATCH 0718/1075] Updating the carbon-device-mgt version This upgrade has api changes due to fixes to the policy monitoring --- .../device/test/util/TestDeviceManagementService.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java index f1631b747..504f1b252 100644 --- a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java +++ b/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java @@ -25,6 +25,7 @@ import org.wso2.carbon.device.mgt.common.MonitoringOperation; import org.wso2.carbon.device.mgt.common.OperationMonitoringTaskConfig; import org.wso2.carbon.device.mgt.common.ProvisioningConfig; import org.wso2.carbon.device.mgt.common.app.mgt.ApplicationManager; +import org.wso2.carbon.device.mgt.common.general.GeneralConfig; import org.wso2.carbon.device.mgt.common.policy.mgt.PolicyMonitoringManager; import org.wso2.carbon.device.mgt.common.pull.notification.PullNotificationSubscriber; import org.wso2.carbon.device.mgt.common.push.notification.PushNotificationConfig; @@ -108,4 +109,9 @@ public class TestDeviceManagementService implements DeviceManagementService { public DeviceStatusTaskPluginConfig getDeviceStatusTaskPluginConfig() { return null; } + + @Override + public GeneralConfig getGeneralConfig() { + return null; + } } From 95d4dd76e00199370910f0dde09ebf3769866b56 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 03:03:34 +0000 Subject: [PATCH 0719/1075] [WSO2 Release] [Jenkins #3098] [Release 4.0.114] prepare release v4.0.114 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b459eef81..e6f0a2392 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.114-SNAPSHOT + 4.0.114 ../pom.xml From 7db050e0e2392305f2e9562882b5f197789584ab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 03:03:34 +0000 Subject: [PATCH 0720/1075] [WSO2 Release] [Jenkins #3098] [Release 4.0.114] prepare release v4.0.114 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cf7cc69f5..c26570555 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.114-SNAPSHOT + 4.0.114 ../pom.xml From b44190b1ec55dd5557fa019e5872e13bd16f9748 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 03:03:34 +0000 Subject: [PATCH 0721/1075] [WSO2 Release] [Jenkins #3098] [Release 4.0.114] prepare release v4.0.114 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b35af30b6..615c2d1aa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.114-SNAPSHOT + 4.0.114 ../pom.xml From 1d3b7d970bac3791fb23f30242b389c494d3fbc2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 03:03:34 +0000 Subject: [PATCH 0722/1075] [WSO2 Release] [Jenkins #3098] [Release 4.0.114] prepare release v4.0.114 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 92cd238d5..4170a834d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.114-SNAPSHOT + 4.0.114 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.114-SNAPSHOT + 4.0.114 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 92972db3dd383fc20411946075ea86166037ed78 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 03:03:47 +0000 Subject: [PATCH 0723/1075] [WSO2 Release] [Jenkins #3098] [Release 4.0.114] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e6f0a2392..2b27a40a4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.114 + 4.0.115-SNAPSHOT ../pom.xml From 655e3da3fe28125664a5403a720dc5790293740c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 03:03:47 +0000 Subject: [PATCH 0724/1075] [WSO2 Release] [Jenkins #3098] [Release 4.0.114] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c26570555..fd73cf749 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.114 + 4.0.115-SNAPSHOT ../pom.xml From 30ce54a257f437f0f27f4e4f484ae8e66b1fcb56 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 03:03:47 +0000 Subject: [PATCH 0725/1075] [WSO2 Release] [Jenkins #3098] [Release 4.0.114] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 615c2d1aa..582362392 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.114 + 4.0.115-SNAPSHOT ../pom.xml From a6c16072053d2070f68dd5221e2ee35e9f24d0c1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 03:03:47 +0000 Subject: [PATCH 0726/1075] [WSO2 Release] [Jenkins #3098] [Release 4.0.114] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4170a834d..cb1281130 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.114 + 4.0.115-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.114 + 4.0.115-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d63d3456eb9e0ecb48b59772cb363eafc9a0203f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 12:42:41 +0000 Subject: [PATCH 0727/1075] [WSO2 Release] [Jenkins #3100] [Release 4.0.115] prepare release v4.0.115 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2b27a40a4..4241d9229 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.115-SNAPSHOT + 4.0.115 ../pom.xml From 82e9d3ce677010c13eebf98ac048242ef4b11b4e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 12:42:41 +0000 Subject: [PATCH 0728/1075] [WSO2 Release] [Jenkins #3100] [Release 4.0.115] prepare release v4.0.115 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fd73cf749..b2361443e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.115-SNAPSHOT + 4.0.115 ../pom.xml From 2f1467bf9e1503f36cca0c7449b8927e4a54234e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 12:42:41 +0000 Subject: [PATCH 0729/1075] [WSO2 Release] [Jenkins #3100] [Release 4.0.115] prepare release v4.0.115 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 582362392..2c7861b6a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.115-SNAPSHOT + 4.0.115 ../pom.xml From b4808da227457a593a426604726f4659bac4551c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 12:42:41 +0000 Subject: [PATCH 0730/1075] [WSO2 Release] [Jenkins #3100] [Release 4.0.115] prepare release v4.0.115 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cb1281130..448e4da18 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.115-SNAPSHOT + 4.0.115 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.115-SNAPSHOT + 4.0.115 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 96e9dffaf12abb57f820b0fbbba27b3733f0686f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 12:42:55 +0000 Subject: [PATCH 0731/1075] [WSO2 Release] [Jenkins #3100] [Release 4.0.115] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4241d9229..e554b09f6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.115 + 4.0.116-SNAPSHOT ../pom.xml From 06f0562b8c3a1f1626a55d1eb52e8adaf44e18e6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 12:42:55 +0000 Subject: [PATCH 0732/1075] [WSO2 Release] [Jenkins #3100] [Release 4.0.115] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b2361443e..4f49b6457 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.115 + 4.0.116-SNAPSHOT ../pom.xml From 9f1b624cc40882db07fb6f472591e7fbd0691c26 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 12:42:55 +0000 Subject: [PATCH 0733/1075] [WSO2 Release] [Jenkins #3100] [Release 4.0.115] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2c7861b6a..f5d3f6a7b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.115 + 4.0.116-SNAPSHOT ../pom.xml From b0c5485254b6f3d9af717a8b9642fa6cba0cfdaa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 12:42:55 +0000 Subject: [PATCH 0734/1075] [WSO2 Release] [Jenkins #3100] [Release 4.0.115] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 448e4da18..8b606ba9f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.115 + 4.0.116-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.115 + 4.0.116-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 68f69278a514556ff5337414e92e6406377fbca9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 13:23:47 +0000 Subject: [PATCH 0735/1075] [WSO2 Release] [Jenkins #3102] [Release 4.0.116] prepare release v4.0.116 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e554b09f6..b9080e046 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.116-SNAPSHOT + 4.0.116 ../pom.xml From d210b10eff7c3e5464bd1f5c62e9adf653de895b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 13:23:47 +0000 Subject: [PATCH 0736/1075] [WSO2 Release] [Jenkins #3102] [Release 4.0.116] prepare release v4.0.116 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4f49b6457..7d34efa4a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.116-SNAPSHOT + 4.0.116 ../pom.xml From fd9edb7be6c2abf8a88e24d43d1592fde90d58fa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 13:23:47 +0000 Subject: [PATCH 0737/1075] [WSO2 Release] [Jenkins #3102] [Release 4.0.116] prepare release v4.0.116 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f5d3f6a7b..d1169850d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.116-SNAPSHOT + 4.0.116 ../pom.xml From 7b1065537c5cdf32dfbf1ed92550b1bc60b4d0de Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 13:23:47 +0000 Subject: [PATCH 0738/1075] [WSO2 Release] [Jenkins #3102] [Release 4.0.116] prepare release v4.0.116 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8b606ba9f..63bad5928 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.116-SNAPSHOT + 4.0.116 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.116-SNAPSHOT + 4.0.116 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f3aed2e753f51316314fe7a096b52154c4906c5c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 13:24:02 +0000 Subject: [PATCH 0739/1075] [WSO2 Release] [Jenkins #3102] [Release 4.0.116] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b9080e046..f79d36c7b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.116 + 4.0.117-SNAPSHOT ../pom.xml From 6d0264a2a86f77d006af8a2347b0883379783979 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 13:24:02 +0000 Subject: [PATCH 0740/1075] [WSO2 Release] [Jenkins #3102] [Release 4.0.116] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7d34efa4a..9e57c3afc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.116 + 4.0.117-SNAPSHOT ../pom.xml From fae3b9d4778c89c51d28293130428fd8b22473aa Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 13:24:02 +0000 Subject: [PATCH 0741/1075] [WSO2 Release] [Jenkins #3102] [Release 4.0.116] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d1169850d..672654e27 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.116 + 4.0.117-SNAPSHOT ../pom.xml From 58f04596eb027107a35060c4d874d4b7e95a5f04 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Jan 2018 13:24:02 +0000 Subject: [PATCH 0742/1075] [WSO2 Release] [Jenkins #3102] [Release 4.0.116] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 63bad5928..820e97fd3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.116 + 4.0.117-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.116 + 4.0.117-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 4eac83d88a8ad98e432f8c46798bcf274ecc7db2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Jan 2018 05:49:01 +0000 Subject: [PATCH 0743/1075] [WSO2 Release] [Jenkins #3104] [Release 4.0.117] prepare release v4.0.117 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f79d36c7b..8a13ca713 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.117-SNAPSHOT + 4.0.117 ../pom.xml From 6fe88f9c3a918b38248e252d07a0fef13bb667cd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Jan 2018 05:49:01 +0000 Subject: [PATCH 0744/1075] [WSO2 Release] [Jenkins #3104] [Release 4.0.117] prepare release v4.0.117 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e57c3afc..eae6f3315 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.117-SNAPSHOT + 4.0.117 ../pom.xml From f3464fedb04ba6d28321925dd10260fd78cbb3af Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Jan 2018 05:49:01 +0000 Subject: [PATCH 0745/1075] [WSO2 Release] [Jenkins #3104] [Release 4.0.117] prepare release v4.0.117 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 672654e27..65aefc9ee 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.117-SNAPSHOT + 4.0.117 ../pom.xml From 9394ec0de7d7748003ade41b1f88769877f58d8e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Jan 2018 05:49:01 +0000 Subject: [PATCH 0746/1075] [WSO2 Release] [Jenkins #3104] [Release 4.0.117] prepare release v4.0.117 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 820e97fd3..a43d53a6a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.117-SNAPSHOT + 4.0.117 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.117-SNAPSHOT + 4.0.117 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 3e21b29dbe901708539d49a13072241a153d080b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Jan 2018 05:49:15 +0000 Subject: [PATCH 0747/1075] [WSO2 Release] [Jenkins #3104] [Release 4.0.117] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8a13ca713..d2b392d7e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.117 + 4.0.118-SNAPSHOT ../pom.xml From 91a300325d3818b770bb61e4fd34c56a8d029e17 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Jan 2018 05:49:15 +0000 Subject: [PATCH 0748/1075] [WSO2 Release] [Jenkins #3104] [Release 4.0.117] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index eae6f3315..c91f359e3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.117 + 4.0.118-SNAPSHOT ../pom.xml From d380fe6d0434605a5be7c7995a7cee5802cbea58 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Jan 2018 05:49:15 +0000 Subject: [PATCH 0749/1075] [WSO2 Release] [Jenkins #3104] [Release 4.0.117] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 65aefc9ee..6c64c6571 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.117 + 4.0.118-SNAPSHOT ../pom.xml From a7efc47b23515bd24534ca847410ded6b53dcf7e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Jan 2018 05:49:15 +0000 Subject: [PATCH 0750/1075] [WSO2 Release] [Jenkins #3104] [Release 4.0.117] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a43d53a6a..99539c707 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.117 + 4.0.118-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.117 + 4.0.118-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 5b9738d8d3df2873b8efb30d9de31c3d5ceec359 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 26 Jan 2018 08:59:09 +0000 Subject: [PATCH 0751/1075] [WSO2 Release] [Jenkins #3106] [Release 4.0.118] prepare release v4.0.118 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d2b392d7e..024f329ab 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.118-SNAPSHOT + 4.0.118 ../pom.xml From 0dd10f134a9d113313b84187b43004bae5f27798 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 26 Jan 2018 08:59:09 +0000 Subject: [PATCH 0752/1075] [WSO2 Release] [Jenkins #3106] [Release 4.0.118] prepare release v4.0.118 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c91f359e3..0292df814 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.118-SNAPSHOT + 4.0.118 ../pom.xml From 3d294e8a2bca9ecb79a14ec1887ee04ff2b183d0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 26 Jan 2018 08:59:09 +0000 Subject: [PATCH 0753/1075] [WSO2 Release] [Jenkins #3106] [Release 4.0.118] prepare release v4.0.118 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6c64c6571..c029a122a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.118-SNAPSHOT + 4.0.118 ../pom.xml From 2e5ecbadecb818cb148bd555392389f39db1ccba Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 26 Jan 2018 08:59:09 +0000 Subject: [PATCH 0754/1075] [WSO2 Release] [Jenkins #3106] [Release 4.0.118] prepare release v4.0.118 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 99539c707..4eaeeefc0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.118-SNAPSHOT + 4.0.118 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.118-SNAPSHOT + 4.0.118 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9569a150ec2ec1a113aa9dfaf96f8735d831ad0d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 26 Jan 2018 08:59:23 +0000 Subject: [PATCH 0755/1075] [WSO2 Release] [Jenkins #3106] [Release 4.0.118] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 024f329ab..f1d568c7f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.118 + 4.0.119-SNAPSHOT ../pom.xml From 4f6f76a04622f3a09e5f0510b48436c06105c69e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 26 Jan 2018 08:59:23 +0000 Subject: [PATCH 0756/1075] [WSO2 Release] [Jenkins #3106] [Release 4.0.118] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0292df814..aaf9b682c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.118 + 4.0.119-SNAPSHOT ../pom.xml From a83f4bff2fba04241d5a2f4d34b320eb0d8bf69f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 26 Jan 2018 08:59:23 +0000 Subject: [PATCH 0757/1075] [WSO2 Release] [Jenkins #3106] [Release 4.0.118] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c029a122a..efe8f540a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.118 + 4.0.119-SNAPSHOT ../pom.xml From f80c70da7adf9419d0f4db0895d0908eff19373f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 26 Jan 2018 08:59:23 +0000 Subject: [PATCH 0758/1075] [WSO2 Release] [Jenkins #3106] [Release 4.0.118] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4eaeeefc0..5d00452ba 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.118 + 4.0.119-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.118 + 4.0.119-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fc767cb43d284ab051ade45e1a47a7acba54fd29 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 27 Jan 2018 04:33:26 +0000 Subject: [PATCH 0759/1075] [WSO2 Release] [Jenkins #3108] [Release 4.0.119] prepare release v4.0.119 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f1d568c7f..3ee11dd26 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.119-SNAPSHOT + 4.0.119 ../pom.xml From 83144e4bcdfaab6c13168b50973405c917b5ffa6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 27 Jan 2018 04:33:26 +0000 Subject: [PATCH 0760/1075] [WSO2 Release] [Jenkins #3108] [Release 4.0.119] prepare release v4.0.119 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aaf9b682c..8a809f1c6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.119-SNAPSHOT + 4.0.119 ../pom.xml From fcd1dd767c08c8937fb09ea80e34b1bb267ca412 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 27 Jan 2018 04:33:26 +0000 Subject: [PATCH 0761/1075] [WSO2 Release] [Jenkins #3108] [Release 4.0.119] prepare release v4.0.119 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index efe8f540a..4a44a6837 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.119-SNAPSHOT + 4.0.119 ../pom.xml From c2ed0a745c98f2665ca72959cbe042a009e2f694 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 27 Jan 2018 04:33:26 +0000 Subject: [PATCH 0762/1075] [WSO2 Release] [Jenkins #3108] [Release 4.0.119] prepare release v4.0.119 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5d00452ba..7b7c3f037 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.119-SNAPSHOT + 4.0.119 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.119-SNAPSHOT + 4.0.119 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ca7448c68559604612ee67e2363b4be62dcd19cb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 27 Jan 2018 04:33:41 +0000 Subject: [PATCH 0763/1075] [WSO2 Release] [Jenkins #3108] [Release 4.0.119] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3ee11dd26..4863e59ce 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.119 + 4.0.120-SNAPSHOT ../pom.xml From 8c27811861277136523f30d9518579eaa0b4461e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 27 Jan 2018 04:33:41 +0000 Subject: [PATCH 0764/1075] [WSO2 Release] [Jenkins #3108] [Release 4.0.119] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8a809f1c6..5ea7b074c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.119 + 4.0.120-SNAPSHOT ../pom.xml From a499462737a789a156768e09d6f1744f5edc1fd5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 27 Jan 2018 04:33:41 +0000 Subject: [PATCH 0765/1075] [WSO2 Release] [Jenkins #3108] [Release 4.0.119] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4a44a6837..735c335fe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.119 + 4.0.120-SNAPSHOT ../pom.xml From 210b8dda34edb17983278307755781f6077142c3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 27 Jan 2018 04:33:41 +0000 Subject: [PATCH 0766/1075] [WSO2 Release] [Jenkins #3108] [Release 4.0.119] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 7b7c3f037..55bfa5b2e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.119 + 4.0.120-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.119 + 4.0.120-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c4d82e0d23a3b9dd19593818873838ce6c543d93 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 28 Jan 2018 15:29:10 +0000 Subject: [PATCH 0767/1075] [WSO2 Release] [Jenkins #3110] [Release 4.0.120] prepare release v4.0.120 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4863e59ce..55a840970 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.120-SNAPSHOT + 4.0.120 ../pom.xml From af801398c7337c4d3e01244e0587f36aa9a1dae3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 28 Jan 2018 15:29:10 +0000 Subject: [PATCH 0768/1075] [WSO2 Release] [Jenkins #3110] [Release 4.0.120] prepare release v4.0.120 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5ea7b074c..1a664ff8a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.120-SNAPSHOT + 4.0.120 ../pom.xml From b2a1f8d72db616878cf3631238a3efe8031491bc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 28 Jan 2018 15:29:10 +0000 Subject: [PATCH 0769/1075] [WSO2 Release] [Jenkins #3110] [Release 4.0.120] prepare release v4.0.120 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 735c335fe..d485238db 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.120-SNAPSHOT + 4.0.120 ../pom.xml From 7ff1c964a113dcb1d20c2db0dbd755d1c676aacc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 28 Jan 2018 15:29:10 +0000 Subject: [PATCH 0770/1075] [WSO2 Release] [Jenkins #3110] [Release 4.0.120] prepare release v4.0.120 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 55bfa5b2e..cb944aa40 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.120-SNAPSHOT + 4.0.120 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.120-SNAPSHOT + 4.0.120 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 842e669720c864c3998eda61b453c177f7acadf5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 28 Jan 2018 15:29:25 +0000 Subject: [PATCH 0771/1075] [WSO2 Release] [Jenkins #3110] [Release 4.0.120] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 55a840970..4afec8c81 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.120 + 4.0.121-SNAPSHOT ../pom.xml From 74405cabc82959d8ca9f353adfbeaee7367174e7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 28 Jan 2018 15:29:25 +0000 Subject: [PATCH 0772/1075] [WSO2 Release] [Jenkins #3110] [Release 4.0.120] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1a664ff8a..06d823b48 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.120 + 4.0.121-SNAPSHOT ../pom.xml From d93b54e930d4f9f4e71f038daeeefc2b6ee0d19b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 28 Jan 2018 15:29:25 +0000 Subject: [PATCH 0773/1075] [WSO2 Release] [Jenkins #3110] [Release 4.0.120] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d485238db..aca75bfcb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.120 + 4.0.121-SNAPSHOT ../pom.xml From 7cd00f5e760bdd879f2e46d1181a118954a8da6a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 28 Jan 2018 15:29:25 +0000 Subject: [PATCH 0774/1075] [WSO2 Release] [Jenkins #3110] [Release 4.0.120] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index cb944aa40..79334ef8e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.120 + 4.0.121-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.120 + 4.0.121-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 938cb19f88f25f04bc2017267631b650f475fc34 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 05:35:54 +0000 Subject: [PATCH 0775/1075] [WSO2 Release] [Jenkins #3112] [Release 4.0.121] prepare release v4.0.121 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4afec8c81..4c949f778 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.121-SNAPSHOT + 4.0.121 ../pom.xml From 9e4fcb97f60b8eb27d3e5cfa82c27018e14177c1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 05:35:54 +0000 Subject: [PATCH 0776/1075] [WSO2 Release] [Jenkins #3112] [Release 4.0.121] prepare release v4.0.121 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 06d823b48..eed4174c0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.121-SNAPSHOT + 4.0.121 ../pom.xml From 08611ae9b4a6d7d9e32b96dcc704d4254aad7859 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 05:35:54 +0000 Subject: [PATCH 0777/1075] [WSO2 Release] [Jenkins #3112] [Release 4.0.121] prepare release v4.0.121 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aca75bfcb..f872d67f0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.121-SNAPSHOT + 4.0.121 ../pom.xml From f164912cfa8963bbea79fc37d83cbaf7333fa073 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 05:35:54 +0000 Subject: [PATCH 0778/1075] [WSO2 Release] [Jenkins #3112] [Release 4.0.121] prepare release v4.0.121 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 79334ef8e..a087c7116 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.121-SNAPSHOT + 4.0.121 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.121-SNAPSHOT + 4.0.121 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2a5f6c3a380310cadeae1ccee9ec9405ee5ab9d9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 05:36:09 +0000 Subject: [PATCH 0779/1075] [WSO2 Release] [Jenkins #3112] [Release 4.0.121] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4c949f778..5d67988b4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.121 + 4.0.122-SNAPSHOT ../pom.xml From 01958a303e72b8b000f7797db60384615b78ee52 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 05:36:09 +0000 Subject: [PATCH 0780/1075] [WSO2 Release] [Jenkins #3112] [Release 4.0.121] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index eed4174c0..63169a88c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.121 + 4.0.122-SNAPSHOT ../pom.xml From 89bf84fb5d8c0e6300c5b3cc63141b5f6fe49c0a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 05:36:09 +0000 Subject: [PATCH 0781/1075] [WSO2 Release] [Jenkins #3112] [Release 4.0.121] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f872d67f0..5a0fa2a37 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.121 + 4.0.122-SNAPSHOT ../pom.xml From 54a38df3a3cd33efa1c5569d6fa380d7ea847f1d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 05:36:09 +0000 Subject: [PATCH 0782/1075] [WSO2 Release] [Jenkins #3112] [Release 4.0.121] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a087c7116..fe091ba13 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.121 + 4.0.122-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.121 + 4.0.122-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a72bcb52e9004889eb017a675955e4fc1f58fca5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:24:07 +0000 Subject: [PATCH 0783/1075] [WSO2 Release] [Jenkins #3114] [Release 4.0.122] prepare release v4.0.122 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5d67988b4..42bb82954 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.122-SNAPSHOT + 4.0.122 ../pom.xml From e490ea166af48de0da76030d33af17a2d64e907b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:24:07 +0000 Subject: [PATCH 0784/1075] [WSO2 Release] [Jenkins #3114] [Release 4.0.122] prepare release v4.0.122 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 63169a88c..7ff5b43e4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.122-SNAPSHOT + 4.0.122 ../pom.xml From fae913fcf1e581641d5c11385c7655a7c4bb49d4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:24:07 +0000 Subject: [PATCH 0785/1075] [WSO2 Release] [Jenkins #3114] [Release 4.0.122] prepare release v4.0.122 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5a0fa2a37..7141471ca 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.122-SNAPSHOT + 4.0.122 ../pom.xml From 1886f4ad565d726d5f74711c0885551a21d8d0f5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:24:07 +0000 Subject: [PATCH 0786/1075] [WSO2 Release] [Jenkins #3114] [Release 4.0.122] prepare release v4.0.122 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fe091ba13..b9bab1783 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.122-SNAPSHOT + 4.0.122 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.122-SNAPSHOT + 4.0.122 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8ce1389895c895a05313fa65a9700b9b0bbc8f5a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:24:22 +0000 Subject: [PATCH 0787/1075] [WSO2 Release] [Jenkins #3114] [Release 4.0.122] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 42bb82954..db1c2ba7f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.122 + 4.0.123-SNAPSHOT ../pom.xml From fa133053a47935309c276a69c0de2f469ff13897 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:24:22 +0000 Subject: [PATCH 0788/1075] [WSO2 Release] [Jenkins #3114] [Release 4.0.122] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7ff5b43e4..9ad3599c5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.122 + 4.0.123-SNAPSHOT ../pom.xml From 04c7805134a004eeb1281d30cebcf5521cd74477 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:24:22 +0000 Subject: [PATCH 0789/1075] [WSO2 Release] [Jenkins #3114] [Release 4.0.122] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7141471ca..e15a7c170 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.122 + 4.0.123-SNAPSHOT ../pom.xml From 0756c337d7c540b1e6e02ccf7667e81e6181bca3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:24:22 +0000 Subject: [PATCH 0790/1075] [WSO2 Release] [Jenkins #3114] [Release 4.0.122] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index b9bab1783..c7c32640d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.122 + 4.0.123-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.122 + 4.0.123-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d91736f339afd48f4141a793089879841a8b722f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:53:19 +0000 Subject: [PATCH 0791/1075] [WSO2 Release] [Jenkins #3116] [Release 4.0.123] prepare release v4.0.123 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index db1c2ba7f..e7b682a5a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.123-SNAPSHOT + 4.0.123 ../pom.xml From fb0a18ffed8f28d7c89f9b09fd4bf85eb21a04d9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:53:19 +0000 Subject: [PATCH 0792/1075] [WSO2 Release] [Jenkins #3116] [Release 4.0.123] prepare release v4.0.123 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9ad3599c5..7c011d6f0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.123-SNAPSHOT + 4.0.123 ../pom.xml From 53b5d6798e624a000ee89a5076b427b645f0167c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:53:19 +0000 Subject: [PATCH 0793/1075] [WSO2 Release] [Jenkins #3116] [Release 4.0.123] prepare release v4.0.123 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e15a7c170..1efe8794d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.123-SNAPSHOT + 4.0.123 ../pom.xml From 87f6eac524904cb18e858573415ae7f12ddcfb2f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:53:19 +0000 Subject: [PATCH 0794/1075] [WSO2 Release] [Jenkins #3116] [Release 4.0.123] prepare release v4.0.123 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c7c32640d..c1c5c9d49 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.123-SNAPSHOT + 4.0.123 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.123-SNAPSHOT + 4.0.123 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From febeb0c255820566552648844b364be47916820f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:53:35 +0000 Subject: [PATCH 0795/1075] [WSO2 Release] [Jenkins #3116] [Release 4.0.123] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e7b682a5a..3cde11aa8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.123 + 4.0.124-SNAPSHOT ../pom.xml From 90e00d163bb22d3f42f7383abc6927d5b7f8aa9a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:53:35 +0000 Subject: [PATCH 0796/1075] [WSO2 Release] [Jenkins #3116] [Release 4.0.123] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7c011d6f0..83bc9982b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.123 + 4.0.124-SNAPSHOT ../pom.xml From 69a025913fe933b06a46db9c090c77040ca76df2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:53:35 +0000 Subject: [PATCH 0797/1075] [WSO2 Release] [Jenkins #3116] [Release 4.0.123] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1efe8794d..3fba0bb52 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.123 + 4.0.124-SNAPSHOT ../pom.xml From 7ff1fde36de83012baddab2a2efc67a11a3e8f48 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 11:53:35 +0000 Subject: [PATCH 0798/1075] [WSO2 Release] [Jenkins #3116] [Release 4.0.123] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c1c5c9d49..943e4ef3a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.123 + 4.0.124-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.123 + 4.0.124-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a34b9e2e2bd55f7136110d047d1b6243cb055a4d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 12:43:38 +0000 Subject: [PATCH 0799/1075] [WSO2 Release] [Jenkins #3118] [Release 4.0.124] prepare release v4.0.124 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3cde11aa8..d879cae26 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.124-SNAPSHOT + 4.0.124 ../pom.xml From 03fbea681f7ebcac54d79fb08d9c6c9c9233fb2f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 12:43:38 +0000 Subject: [PATCH 0800/1075] [WSO2 Release] [Jenkins #3118] [Release 4.0.124] prepare release v4.0.124 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 83bc9982b..50e07ae87 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.124-SNAPSHOT + 4.0.124 ../pom.xml From c5cd3e9b4bf0920c2af81cb22668636456e47e70 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 12:43:38 +0000 Subject: [PATCH 0801/1075] [WSO2 Release] [Jenkins #3118] [Release 4.0.124] prepare release v4.0.124 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3fba0bb52..b243164f1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.124-SNAPSHOT + 4.0.124 ../pom.xml From acedfdfa7d90faa739ae672d823f05ed2d912755 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 12:43:38 +0000 Subject: [PATCH 0802/1075] [WSO2 Release] [Jenkins #3118] [Release 4.0.124] prepare release v4.0.124 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 943e4ef3a..97a0904d0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.124-SNAPSHOT + 4.0.124 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.124-SNAPSHOT + 4.0.124 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7e8121cceea9e831815523e6ff6be996b747ff6f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 12:43:53 +0000 Subject: [PATCH 0803/1075] [WSO2 Release] [Jenkins #3118] [Release 4.0.124] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d879cae26..a1d9e41c7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.124 + 4.0.125-SNAPSHOT ../pom.xml From cdc462cef0195b09442b29852da9d9ac29b8a3e5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 12:43:53 +0000 Subject: [PATCH 0804/1075] [WSO2 Release] [Jenkins #3118] [Release 4.0.124] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 50e07ae87..dc99eed6c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.124 + 4.0.125-SNAPSHOT ../pom.xml From 78453cc9583134946a3ebcfff61d1079071c4b83 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 12:43:53 +0000 Subject: [PATCH 0805/1075] [WSO2 Release] [Jenkins #3118] [Release 4.0.124] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b243164f1..a7686e652 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.124 + 4.0.125-SNAPSHOT ../pom.xml From 83f3954112e38b2fd95ea6aeae2e28d1b952a048 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 29 Jan 2018 12:43:53 +0000 Subject: [PATCH 0806/1075] [WSO2 Release] [Jenkins #3118] [Release 4.0.124] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 97a0904d0..34265e5eb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.124 + 4.0.125-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.124 + 4.0.125-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From df049049deb405fccf3ecf4c391c993fcc23ca34 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Feb 2018 06:16:37 +0000 Subject: [PATCH 0807/1075] [WSO2 Release] [Jenkins #3120] [Release 4.0.125] prepare release v4.0.125 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a1d9e41c7..82c365fb6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.125-SNAPSHOT + 4.0.125 ../pom.xml From 1baf8c44a61f81599070451db33729db1644292d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Feb 2018 06:16:37 +0000 Subject: [PATCH 0808/1075] [WSO2 Release] [Jenkins #3120] [Release 4.0.125] prepare release v4.0.125 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dc99eed6c..b7e3c93df 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.125-SNAPSHOT + 4.0.125 ../pom.xml From 644b7f142380f64de3cccda5854655035cbe13b9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Feb 2018 06:16:37 +0000 Subject: [PATCH 0809/1075] [WSO2 Release] [Jenkins #3120] [Release 4.0.125] prepare release v4.0.125 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a7686e652..63f498ec2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.125-SNAPSHOT + 4.0.125 ../pom.xml From 5d8d4e4aa812dc2d7342d843eecbb34995b5628a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Feb 2018 06:16:37 +0000 Subject: [PATCH 0810/1075] [WSO2 Release] [Jenkins #3120] [Release 4.0.125] prepare release v4.0.125 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 34265e5eb..1de3d0d28 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.125-SNAPSHOT + 4.0.125 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.125-SNAPSHOT + 4.0.125 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0dc193d2f998aa872e8797d09a32a397cde52866 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Feb 2018 06:16:51 +0000 Subject: [PATCH 0811/1075] [WSO2 Release] [Jenkins #3120] [Release 4.0.125] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 82c365fb6..67ca20d3d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.125 + 4.0.126-SNAPSHOT ../pom.xml From 1066380816ac25ba2b6dc2a0b2623a2466099195 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Feb 2018 06:16:51 +0000 Subject: [PATCH 0812/1075] [WSO2 Release] [Jenkins #3120] [Release 4.0.125] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b7e3c93df..817f73682 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.125 + 4.0.126-SNAPSHOT ../pom.xml From 27d063862b7dcd6dfbfcbfe731e61e25962c1a2c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Feb 2018 06:16:51 +0000 Subject: [PATCH 0813/1075] [WSO2 Release] [Jenkins #3120] [Release 4.0.125] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 63f498ec2..05f183258 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.125 + 4.0.126-SNAPSHOT ../pom.xml From 3f3b890f864c9a4e6af1f581ca5d442f7de3ba5e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Feb 2018 06:16:51 +0000 Subject: [PATCH 0814/1075] [WSO2 Release] [Jenkins #3120] [Release 4.0.125] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1de3d0d28..ad351f2b4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.125 + 4.0.126-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.125 + 4.0.126-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 115001e7988f2b24ecf2276a37dc4933befc8085 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Feb 2018 15:10:14 +0000 Subject: [PATCH 0815/1075] [WSO2 Release] [Jenkins #3122] [Release 4.0.126] prepare release v4.0.126 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 67ca20d3d..f6da927b5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.126-SNAPSHOT + 4.0.126 ../pom.xml From 7ff3f4b3b99f3b85fd2328c2afe868a7413e89c2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Feb 2018 15:10:14 +0000 Subject: [PATCH 0816/1075] [WSO2 Release] [Jenkins #3122] [Release 4.0.126] prepare release v4.0.126 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 817f73682..fc9ed2777 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.126-SNAPSHOT + 4.0.126 ../pom.xml From 72823fd34b17de14a125a18b2f60eacfe12de224 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Feb 2018 15:10:14 +0000 Subject: [PATCH 0817/1075] [WSO2 Release] [Jenkins #3122] [Release 4.0.126] prepare release v4.0.126 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 05f183258..4c1a11592 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.126-SNAPSHOT + 4.0.126 ../pom.xml From 46b75abaaa39fc622798b4f3746e37848b1fd58e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Feb 2018 15:10:14 +0000 Subject: [PATCH 0818/1075] [WSO2 Release] [Jenkins #3122] [Release 4.0.126] prepare release v4.0.126 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ad351f2b4..1d324069e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.126-SNAPSHOT + 4.0.126 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.126-SNAPSHOT + 4.0.126 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7e24741a4ffee5f5947252c0b2776ec0d6c88814 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Feb 2018 15:10:29 +0000 Subject: [PATCH 0819/1075] [WSO2 Release] [Jenkins #3122] [Release 4.0.126] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f6da927b5..038075988 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.126 + 4.0.127-SNAPSHOT ../pom.xml From a7a63829c7e23a120c282d0814f374a9cbc17dc5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Feb 2018 15:10:29 +0000 Subject: [PATCH 0820/1075] [WSO2 Release] [Jenkins #3122] [Release 4.0.126] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fc9ed2777..d98d2f992 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.126 + 4.0.127-SNAPSHOT ../pom.xml From 021b9947699b3473d160ed2811d8987ded50d817 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Feb 2018 15:10:29 +0000 Subject: [PATCH 0821/1075] [WSO2 Release] [Jenkins #3122] [Release 4.0.126] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4c1a11592..884f02c05 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.126 + 4.0.127-SNAPSHOT ../pom.xml From 72e58448673416b759bff473de345a9fad3b9f58 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 6 Feb 2018 15:10:29 +0000 Subject: [PATCH 0822/1075] [WSO2 Release] [Jenkins #3122] [Release 4.0.126] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1d324069e..e4ece85cf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.126 + 4.0.127-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.126 + 4.0.127-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f685c47bb74f53c2466dcf21a79acd681692ac78 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Feb 2018 04:00:36 +0000 Subject: [PATCH 0823/1075] [WSO2 Release] [Jenkins #3124] [Release 4.0.127] prepare release v4.0.127 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 038075988..29a13b883 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.127-SNAPSHOT + 4.0.127 ../pom.xml From 612f9c14a15b29b4e797ea0d80a8d8b188d79ad9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Feb 2018 04:00:36 +0000 Subject: [PATCH 0824/1075] [WSO2 Release] [Jenkins #3124] [Release 4.0.127] prepare release v4.0.127 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d98d2f992..097e5cfd5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.127-SNAPSHOT + 4.0.127 ../pom.xml From 1cc32980d56b527b6c6442aafa83a09df3ac396b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Feb 2018 04:00:36 +0000 Subject: [PATCH 0825/1075] [WSO2 Release] [Jenkins #3124] [Release 4.0.127] prepare release v4.0.127 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 884f02c05..e4a94cc9f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.127-SNAPSHOT + 4.0.127 ../pom.xml From 772686616077d995e790bbd6b7c3bed602fa5d56 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Feb 2018 04:00:36 +0000 Subject: [PATCH 0826/1075] [WSO2 Release] [Jenkins #3124] [Release 4.0.127] prepare release v4.0.127 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e4ece85cf..328242ea8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.127-SNAPSHOT + 4.0.127 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.127-SNAPSHOT + 4.0.127 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From b5610173d6d8c90ebf81ef82f2508fc1d5b6c85f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Feb 2018 04:00:51 +0000 Subject: [PATCH 0827/1075] [WSO2 Release] [Jenkins #3124] [Release 4.0.127] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 29a13b883..4b99bf0d5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.127 + 4.0.128-SNAPSHOT ../pom.xml From 1f3a14c732f29e03eef0a8a9cfdb8d7f461d1e3f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Feb 2018 04:00:51 +0000 Subject: [PATCH 0828/1075] [WSO2 Release] [Jenkins #3124] [Release 4.0.127] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 097e5cfd5..580cfb8d5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.127 + 4.0.128-SNAPSHOT ../pom.xml From 3f7cde40ee1d9002081bad673e03e082f9d58044 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Feb 2018 04:00:51 +0000 Subject: [PATCH 0829/1075] [WSO2 Release] [Jenkins #3124] [Release 4.0.127] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e4a94cc9f..efa7761c3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.127 + 4.0.128-SNAPSHOT ../pom.xml From 81248fbc5e95fd6b4994cd21042133c5b5a78073 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Feb 2018 04:00:51 +0000 Subject: [PATCH 0830/1075] [WSO2 Release] [Jenkins #3124] [Release 4.0.127] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 328242ea8..f374a1470 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.127 + 4.0.128-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.127 + 4.0.128-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 331396529760177cc4bb16301e7406c4773556ed Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 18 Feb 2018 07:19:52 +0000 Subject: [PATCH 0831/1075] [WSO2 Release] [Jenkins #3126] [Release 4.0.128] prepare release v4.0.128 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b99bf0d5..5f1aca8af 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.128-SNAPSHOT + 4.0.128 ../pom.xml From 5103ca446a6d020bfb57e71e3dff38608b7d3c4d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 18 Feb 2018 07:19:52 +0000 Subject: [PATCH 0832/1075] [WSO2 Release] [Jenkins #3126] [Release 4.0.128] prepare release v4.0.128 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 580cfb8d5..635b5eadf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.128-SNAPSHOT + 4.0.128 ../pom.xml From fb551d44ea0494830f5a57d0310629c8e39706d1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 18 Feb 2018 07:19:52 +0000 Subject: [PATCH 0833/1075] [WSO2 Release] [Jenkins #3126] [Release 4.0.128] prepare release v4.0.128 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index efa7761c3..f4ad5581e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.128-SNAPSHOT + 4.0.128 ../pom.xml From 175055acf28b0a29b8d47bc93dae7781ed933e51 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 18 Feb 2018 07:19:52 +0000 Subject: [PATCH 0834/1075] [WSO2 Release] [Jenkins #3126] [Release 4.0.128] prepare release v4.0.128 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f374a1470..291cbe5cd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.128-SNAPSHOT + 4.0.128 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.128-SNAPSHOT + 4.0.128 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 8fffa4bb25f69b3840340eabb23733f73243726c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 18 Feb 2018 07:20:07 +0000 Subject: [PATCH 0835/1075] [WSO2 Release] [Jenkins #3126] [Release 4.0.128] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5f1aca8af..2040310fc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.128 + 4.0.129-SNAPSHOT ../pom.xml From fb57dcf8b613c19e63a0ecb5d479005d8541ced5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 18 Feb 2018 07:20:07 +0000 Subject: [PATCH 0836/1075] [WSO2 Release] [Jenkins #3126] [Release 4.0.128] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 635b5eadf..d6808f040 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.128 + 4.0.129-SNAPSHOT ../pom.xml From 8129c6944fbf4050ebe2f4d27197617ea824b918 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 18 Feb 2018 07:20:07 +0000 Subject: [PATCH 0837/1075] [WSO2 Release] [Jenkins #3126] [Release 4.0.128] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f4ad5581e..e118cca85 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.128 + 4.0.129-SNAPSHOT ../pom.xml From 67467416b479397851f7c242bf12531d3059742b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 18 Feb 2018 07:20:07 +0000 Subject: [PATCH 0838/1075] [WSO2 Release] [Jenkins #3126] [Release 4.0.128] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 291cbe5cd..47e22ac9e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.128 + 4.0.129-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.128 + 4.0.129-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 183e01520cf7a4610eb64e416fb8a78c404658e3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Feb 2018 10:24:10 +0000 Subject: [PATCH 0839/1075] [WSO2 Release] [Jenkins #3128] [Release 4.0.129] prepare release v4.0.129 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2040310fc..a53ee005c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.129-SNAPSHOT + 4.0.129 ../pom.xml From 804c1e29fe392e1904d4d678bfea84e79cfcd411 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Feb 2018 10:24:10 +0000 Subject: [PATCH 0840/1075] [WSO2 Release] [Jenkins #3128] [Release 4.0.129] prepare release v4.0.129 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d6808f040..eaee05f34 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.129-SNAPSHOT + 4.0.129 ../pom.xml From bbd013f497ea08649ac230420cdf6a5e046b70f9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Feb 2018 10:24:10 +0000 Subject: [PATCH 0841/1075] [WSO2 Release] [Jenkins #3128] [Release 4.0.129] prepare release v4.0.129 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e118cca85..0f6d8324c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.129-SNAPSHOT + 4.0.129 ../pom.xml From 445261e7c67bdba572c0eb8f0e93bec7505e786c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Feb 2018 10:24:10 +0000 Subject: [PATCH 0842/1075] [WSO2 Release] [Jenkins #3128] [Release 4.0.129] prepare release v4.0.129 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 47e22ac9e..d85638fb1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.129-SNAPSHOT + 4.0.129 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.129-SNAPSHOT + 4.0.129 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fb534d576fcd02dfdde0fc96ab5db2957fd4118f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Feb 2018 10:24:20 +0000 Subject: [PATCH 0843/1075] [WSO2 Release] [Jenkins #3128] [Release 4.0.129] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a53ee005c..cb45fc1f4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.129 + 4.0.130-SNAPSHOT ../pom.xml From e8507c0751e4a797cccc1c90ea46d92fb3599e7f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Feb 2018 10:24:20 +0000 Subject: [PATCH 0844/1075] [WSO2 Release] [Jenkins #3128] [Release 4.0.129] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index eaee05f34..f8a344898 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.129 + 4.0.130-SNAPSHOT ../pom.xml From c876d2107bca425559e7b01245840114f726b2fe Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Feb 2018 10:24:20 +0000 Subject: [PATCH 0845/1075] [WSO2 Release] [Jenkins #3128] [Release 4.0.129] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0f6d8324c..5c14f3456 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.129 + 4.0.130-SNAPSHOT ../pom.xml From 9429ff1c1ddce4c6313757640158838fa1e4444b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 22 Feb 2018 10:24:20 +0000 Subject: [PATCH 0846/1075] [WSO2 Release] [Jenkins #3128] [Release 4.0.129] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d85638fb1..635af4679 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.129 + 4.0.130-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.129 + 4.0.130-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 239df66cf261fc6886354f8979dd2ca36d6639a8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Feb 2018 03:44:11 +0000 Subject: [PATCH 0847/1075] [WSO2 Release] [Jenkins #3130] [Release 4.0.130] prepare release v4.0.130 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cb45fc1f4..e845f8b9b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.130-SNAPSHOT + 4.0.130 ../pom.xml From 2b4ef62cbefb6413f866f7e44109aaf63f0fa8ea Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Feb 2018 03:44:11 +0000 Subject: [PATCH 0848/1075] [WSO2 Release] [Jenkins #3130] [Release 4.0.130] prepare release v4.0.130 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f8a344898..093f259b2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.130-SNAPSHOT + 4.0.130 ../pom.xml From 508e4527481b2da12602b1717ec3f41b4ed2c9e0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Feb 2018 03:44:11 +0000 Subject: [PATCH 0849/1075] [WSO2 Release] [Jenkins #3130] [Release 4.0.130] prepare release v4.0.130 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5c14f3456..6fb8b9135 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.130-SNAPSHOT + 4.0.130 ../pom.xml From 5402f3829c5d5350e2329c5d800446522528b994 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Feb 2018 03:44:11 +0000 Subject: [PATCH 0850/1075] [WSO2 Release] [Jenkins #3130] [Release 4.0.130] prepare release v4.0.130 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 635af4679..4556898f3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.130-SNAPSHOT + 4.0.130 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.130-SNAPSHOT + 4.0.130 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e41ebe392d6d648fc0160dddf8c1d229589867c5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Feb 2018 03:44:21 +0000 Subject: [PATCH 0851/1075] [WSO2 Release] [Jenkins #3130] [Release 4.0.130] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e845f8b9b..fdd6b49cc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.130 + 4.0.131-SNAPSHOT ../pom.xml From e278559cfe41aa05d4994fdc570ef07e55c4613d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Feb 2018 03:44:21 +0000 Subject: [PATCH 0852/1075] [WSO2 Release] [Jenkins #3130] [Release 4.0.130] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 093f259b2..a2745515d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.130 + 4.0.131-SNAPSHOT ../pom.xml From 0cde78880afd08c73c2021b7264474ee3b31d62f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Feb 2018 03:44:21 +0000 Subject: [PATCH 0853/1075] [WSO2 Release] [Jenkins #3130] [Release 4.0.130] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6fb8b9135..06468f579 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.130 + 4.0.131-SNAPSHOT ../pom.xml From 3091528a8b1f7debda336c3fb682265bcb2b2c26 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 24 Feb 2018 03:44:21 +0000 Subject: [PATCH 0854/1075] [WSO2 Release] [Jenkins #3130] [Release 4.0.130] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4556898f3..ca9b858f6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.130 + 4.0.131-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.130 + 4.0.131-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 6bab4e8893cd9c67b8764bcb122dc9133af4592a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 25 Feb 2018 11:03:00 +0000 Subject: [PATCH 0855/1075] [WSO2 Release] [Jenkins #3132] [Release 4.0.131] prepare release v4.0.131 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fdd6b49cc..4b5f9c52e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.131-SNAPSHOT + 4.0.131 ../pom.xml From 7963f9016dc4777c2e51ae9dd00e63a97865a4d6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 25 Feb 2018 11:03:00 +0000 Subject: [PATCH 0856/1075] [WSO2 Release] [Jenkins #3132] [Release 4.0.131] prepare release v4.0.131 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a2745515d..91ed5cf31 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.131-SNAPSHOT + 4.0.131 ../pom.xml From 24270c30095c6096a542cd30bb12f86fbc67c2c0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 25 Feb 2018 11:03:00 +0000 Subject: [PATCH 0857/1075] [WSO2 Release] [Jenkins #3132] [Release 4.0.131] prepare release v4.0.131 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 06468f579..b91bb0598 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.131-SNAPSHOT + 4.0.131 ../pom.xml From 130b68c1f77434046dd34a361302df06b46fe736 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 25 Feb 2018 11:03:00 +0000 Subject: [PATCH 0858/1075] [WSO2 Release] [Jenkins #3132] [Release 4.0.131] prepare release v4.0.131 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ca9b858f6..bd8d91bb9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.131-SNAPSHOT + 4.0.131 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.131-SNAPSHOT + 4.0.131 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 1d9481a0084e1d629b70a683fa69617ad4e93f1a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 25 Feb 2018 11:03:12 +0000 Subject: [PATCH 0859/1075] [WSO2 Release] [Jenkins #3132] [Release 4.0.131] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b5f9c52e..c97f050f4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.131 + 4.0.132-SNAPSHOT ../pom.xml From 823c2456fb766818b35bf059e2198cf31904b4bd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 25 Feb 2018 11:03:12 +0000 Subject: [PATCH 0860/1075] [WSO2 Release] [Jenkins #3132] [Release 4.0.131] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 91ed5cf31..ba8296b8e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.131 + 4.0.132-SNAPSHOT ../pom.xml From 879f0d428c714ebae2e07c06587f169576044d78 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 25 Feb 2018 11:03:12 +0000 Subject: [PATCH 0861/1075] [WSO2 Release] [Jenkins #3132] [Release 4.0.131] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b91bb0598..fc31a50aa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.131 + 4.0.132-SNAPSHOT ../pom.xml From 3eef7dfc6e2f2748d7b647d61598bf55d4816b5e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sun, 25 Feb 2018 11:03:12 +0000 Subject: [PATCH 0862/1075] [WSO2 Release] [Jenkins #3132] [Release 4.0.131] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index bd8d91bb9..9bb055b4c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.131 + 4.0.132-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.131 + 4.0.132-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From bc93b8bfd412c64240a43ed4803df303b56dbac1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 14:30:43 +0000 Subject: [PATCH 0863/1075] [WSO2 Release] [Jenkins #3134] [Release 4.0.132] prepare release v4.0.132 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c97f050f4..fd7a2d4ac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.132-SNAPSHOT + 4.0.132 ../pom.xml From a1f81b4d9cb1ddf9a789140c2fa2c68701175b93 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 14:30:43 +0000 Subject: [PATCH 0864/1075] [WSO2 Release] [Jenkins #3134] [Release 4.0.132] prepare release v4.0.132 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ba8296b8e..84d1f1dcd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.132-SNAPSHOT + 4.0.132 ../pom.xml From 4ccdc47bcfc1585c34cae150661d254db4aa0b3e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 14:30:43 +0000 Subject: [PATCH 0865/1075] [WSO2 Release] [Jenkins #3134] [Release 4.0.132] prepare release v4.0.132 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fc31a50aa..8c0b11d3d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.132-SNAPSHOT + 4.0.132 ../pom.xml From 3b5631c2e102b36668d5bccb311b841c575408f8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 14:30:43 +0000 Subject: [PATCH 0866/1075] [WSO2 Release] [Jenkins #3134] [Release 4.0.132] prepare release v4.0.132 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9bb055b4c..ea57c7fad 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.132-SNAPSHOT + 4.0.132 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.132-SNAPSHOT + 4.0.132 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 41ce49e0efcf7386e7daaf5d9763d4680839d84b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 14:30:53 +0000 Subject: [PATCH 0867/1075] [WSO2 Release] [Jenkins #3134] [Release 4.0.132] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fd7a2d4ac..3d7e884b0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.132 + 4.0.133-SNAPSHOT ../pom.xml From 3200cec9d9ba1347054930e2c88e65c8afb072e1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 14:30:53 +0000 Subject: [PATCH 0868/1075] [WSO2 Release] [Jenkins #3134] [Release 4.0.132] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 84d1f1dcd..d110b80c6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.132 + 4.0.133-SNAPSHOT ../pom.xml From c1e010018b0e4a72fee7e56d3c547d7334300261 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 14:30:53 +0000 Subject: [PATCH 0869/1075] [WSO2 Release] [Jenkins #3134] [Release 4.0.132] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8c0b11d3d..ddb81fde1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.132 + 4.0.133-SNAPSHOT ../pom.xml From f1e25bff885ff3f15d130a52980663350d1f4b67 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 14:30:53 +0000 Subject: [PATCH 0870/1075] [WSO2 Release] [Jenkins #3134] [Release 4.0.132] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ea57c7fad..e20133cbf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.132 + 4.0.133-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.132 + 4.0.133-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2d38279b9f5ba502cfad32738be2d14e65522090 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 17:49:43 +0000 Subject: [PATCH 0871/1075] [WSO2 Release] [Jenkins #3136] [Release 4.0.133] prepare release v4.0.133 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3d7e884b0..b1e197ecd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.133-SNAPSHOT + 4.0.133 ../pom.xml From 2b75a1dcc22dc62612c06b9525e393bce838cf8e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 17:49:43 +0000 Subject: [PATCH 0872/1075] [WSO2 Release] [Jenkins #3136] [Release 4.0.133] prepare release v4.0.133 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d110b80c6..5233229b6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.133-SNAPSHOT + 4.0.133 ../pom.xml From 2adc8a7a7dada23ce7ebd6db8d673c199f89c7f0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 17:49:43 +0000 Subject: [PATCH 0873/1075] [WSO2 Release] [Jenkins #3136] [Release 4.0.133] prepare release v4.0.133 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ddb81fde1..e07703241 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.133-SNAPSHOT + 4.0.133 ../pom.xml From 60d6152c9b82f24d235c5e1c2f77bcdf402d555f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 17:49:43 +0000 Subject: [PATCH 0874/1075] [WSO2 Release] [Jenkins #3136] [Release 4.0.133] prepare release v4.0.133 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e20133cbf..8cbfe7fe9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.133-SNAPSHOT + 4.0.133 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.133-SNAPSHOT + 4.0.133 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 805ef2777a420f76e00f22dd418e7fdc204e94af Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 17:49:53 +0000 Subject: [PATCH 0875/1075] [WSO2 Release] [Jenkins #3136] [Release 4.0.133] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1e197ecd..146ee977c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.133 + 4.0.134-SNAPSHOT ../pom.xml From 8ceb0a320b3b8aa12eb2143de9111e7d1eb91818 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 17:49:53 +0000 Subject: [PATCH 0876/1075] [WSO2 Release] [Jenkins #3136] [Release 4.0.133] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5233229b6..2dc5c5148 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.133 + 4.0.134-SNAPSHOT ../pom.xml From b0a29926c3608563375636e16264d93cb43fbd1f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 17:49:53 +0000 Subject: [PATCH 0877/1075] [WSO2 Release] [Jenkins #3136] [Release 4.0.133] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e07703241..b159afac9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.133 + 4.0.134-SNAPSHOT ../pom.xml From ff95c6ee259d79184c2e17f7711a95e2e101645d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 28 Feb 2018 17:49:53 +0000 Subject: [PATCH 0878/1075] [WSO2 Release] [Jenkins #3136] [Release 4.0.133] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8cbfe7fe9..ac16299de 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.133 + 4.0.134-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.133 + 4.0.134-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 48beb8862389d010027602cc9601c432d5bba865 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Mar 2018 18:27:51 +0000 Subject: [PATCH 0879/1075] [WSO2 Release] [Jenkins #3138] [Release 4.0.134] prepare release v4.0.134 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 146ee977c..1d79e0212 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.134-SNAPSHOT + 4.0.134 ../pom.xml From fb3526a066de2fb96be2c2e09257ab1ed7413c1a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Mar 2018 18:27:51 +0000 Subject: [PATCH 0880/1075] [WSO2 Release] [Jenkins #3138] [Release 4.0.134] prepare release v4.0.134 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2dc5c5148..e7a5733ac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.134-SNAPSHOT + 4.0.134 ../pom.xml From cf410b9edeff32a7b0adbf0a788990b4b2a820e0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Mar 2018 18:27:51 +0000 Subject: [PATCH 0881/1075] [WSO2 Release] [Jenkins #3138] [Release 4.0.134] prepare release v4.0.134 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b159afac9..0eaf6cbd1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.134-SNAPSHOT + 4.0.134 ../pom.xml From 463d50f1a5078b247b3ecc3651867ed5eddc81f8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Mar 2018 18:27:51 +0000 Subject: [PATCH 0882/1075] [WSO2 Release] [Jenkins #3138] [Release 4.0.134] prepare release v4.0.134 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index ac16299de..38faa02ad 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.134-SNAPSHOT + 4.0.134 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.134-SNAPSHOT + 4.0.134 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 785daabc5268855aef7c229c45ce071d56f95cf1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Mar 2018 18:28:02 +0000 Subject: [PATCH 0883/1075] [WSO2 Release] [Jenkins #3138] [Release 4.0.134] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1d79e0212..4c163bf7d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.134 + 4.0.135-SNAPSHOT ../pom.xml From bdb860d4fb837beb5f1530e9716edb9c4292f038 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Mar 2018 18:28:02 +0000 Subject: [PATCH 0884/1075] [WSO2 Release] [Jenkins #3138] [Release 4.0.134] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e7a5733ac..a7ca67dfa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.134 + 4.0.135-SNAPSHOT ../pom.xml From 2ee630834f061aa816bd2d12c5abf7dae5d297a7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Mar 2018 18:28:02 +0000 Subject: [PATCH 0885/1075] [WSO2 Release] [Jenkins #3138] [Release 4.0.134] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0eaf6cbd1..9079ffe75 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.134 + 4.0.135-SNAPSHOT ../pom.xml From 78e57a687483dec86ee58a3607462db89afe176e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 1 Mar 2018 18:28:02 +0000 Subject: [PATCH 0886/1075] [WSO2 Release] [Jenkins #3138] [Release 4.0.134] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 38faa02ad..273428216 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.134 + 4.0.135-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.134 + 4.0.135-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d580d80611ee93222f3942e6ccf52f66bdd005d8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 16:48:22 +0000 Subject: [PATCH 0887/1075] [WSO2 Release] [Jenkins #3140] [Release 4.0.135] prepare release v4.0.135 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4c163bf7d..a129d4412 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.135-SNAPSHOT + 4.0.135 ../pom.xml From 95ab07c27a13aafd4043c3ff95d1ee061fddd48d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 16:48:22 +0000 Subject: [PATCH 0888/1075] [WSO2 Release] [Jenkins #3140] [Release 4.0.135] prepare release v4.0.135 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a7ca67dfa..18dc16161 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.135-SNAPSHOT + 4.0.135 ../pom.xml From fc6a0b499cfe120f3b66fdf1056145fd24cd0ff0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 16:48:22 +0000 Subject: [PATCH 0889/1075] [WSO2 Release] [Jenkins #3140] [Release 4.0.135] prepare release v4.0.135 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9079ffe75..dab575d48 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.135-SNAPSHOT + 4.0.135 ../pom.xml From f59abe848bf0e6aa6aa0695e1b723384aef310bc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 16:48:22 +0000 Subject: [PATCH 0890/1075] [WSO2 Release] [Jenkins #3140] [Release 4.0.135] prepare release v4.0.135 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 273428216..e4540aa19 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.135-SNAPSHOT + 4.0.135 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.135-SNAPSHOT + 4.0.135 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From ad32465897781a02deb39828b08330e4c26e8bec Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 16:48:32 +0000 Subject: [PATCH 0891/1075] [WSO2 Release] [Jenkins #3140] [Release 4.0.135] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a129d4412..3fe7d6c1e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.135 + 4.0.136-SNAPSHOT ../pom.xml From 91dbfe175b3c019ef2ea6f6dcf611ef464c5dcc1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 16:48:32 +0000 Subject: [PATCH 0892/1075] [WSO2 Release] [Jenkins #3140] [Release 4.0.135] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 18dc16161..62feac823 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.135 + 4.0.136-SNAPSHOT ../pom.xml From a7452c46f0d1ab77c82c70fd881267b654959468 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 16:48:32 +0000 Subject: [PATCH 0893/1075] [WSO2 Release] [Jenkins #3140] [Release 4.0.135] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dab575d48..b125a25e1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.135 + 4.0.136-SNAPSHOT ../pom.xml From 36cf9a6f6f69c0cb87057f24b6fdd64cd0b53de3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 16:48:32 +0000 Subject: [PATCH 0894/1075] [WSO2 Release] [Jenkins #3140] [Release 4.0.135] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e4540aa19..1f451a552 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.135 + 4.0.136-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.135 + 4.0.136-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From dbb7b66cbfdaf8fba86b9b75eb2b328af9dbb9cd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 20:26:23 +0000 Subject: [PATCH 0895/1075] [WSO2 Release] [Jenkins #3142] [Release 4.0.136] prepare release v4.0.136 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3fe7d6c1e..c7ebcecac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.136-SNAPSHOT + 4.0.136 ../pom.xml From 0b9cc63080b432c5c502d236961ca6d2219673cd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 20:26:23 +0000 Subject: [PATCH 0896/1075] [WSO2 Release] [Jenkins #3142] [Release 4.0.136] prepare release v4.0.136 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 62feac823..dcb3eedfd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.136-SNAPSHOT + 4.0.136 ../pom.xml From 6e4ae66814a495f382015af1e2778801e43ce2bf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 20:26:23 +0000 Subject: [PATCH 0897/1075] [WSO2 Release] [Jenkins #3142] [Release 4.0.136] prepare release v4.0.136 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b125a25e1..e9096312a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.136-SNAPSHOT + 4.0.136 ../pom.xml From 25133a6d358b458e37c3ec18864b3fb32eb6ec8b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 20:26:23 +0000 Subject: [PATCH 0898/1075] [WSO2 Release] [Jenkins #3142] [Release 4.0.136] prepare release v4.0.136 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1f451a552..64513459b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.136-SNAPSHOT + 4.0.136 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.136-SNAPSHOT + 4.0.136 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 708f6ca7de303833141ff6b4234e9daf01663207 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 20:26:33 +0000 Subject: [PATCH 0899/1075] [WSO2 Release] [Jenkins #3142] [Release 4.0.136] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c7ebcecac..a8ca78fe6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.136 + 4.0.137-SNAPSHOT ../pom.xml From 0a019191289058e699a1584f7d91aba3e6741acf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 20:26:33 +0000 Subject: [PATCH 0900/1075] [WSO2 Release] [Jenkins #3142] [Release 4.0.136] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dcb3eedfd..fc77c7d8a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.136 + 4.0.137-SNAPSHOT ../pom.xml From 7ad4a35d22d842e9bfa9ed3f23a8ab46b10e1376 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 20:26:33 +0000 Subject: [PATCH 0901/1075] [WSO2 Release] [Jenkins #3142] [Release 4.0.136] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e9096312a..c3a6033dd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.136 + 4.0.137-SNAPSHOT ../pom.xml From 7c138c851038a6fb1ce8773e16b3cb61f550fb1d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Sat, 3 Mar 2018 20:26:33 +0000 Subject: [PATCH 0902/1075] [WSO2 Release] [Jenkins #3142] [Release 4.0.136] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 64513459b..b9f1b612f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.136 + 4.0.137-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.136 + 4.0.137-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2c97c2fdf37047929432989a272c9507f65dff5e Mon Sep 17 00:00:00 2001 From: geethkokila Date: Mon, 12 Mar 2018 16:28:28 +0530 Subject: [PATCH 0903/1075] Updating the version to 4.1.0 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a8ca78fe6..4be11550d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.137-SNAPSHOT + 4.1.0-SNAPSHOT ../pom.xml @@ -176,4 +176,4 @@ - \ No newline at end of file + From bb3732da9ad5dfdee3156bf8e57783e833894b51 Mon Sep 17 00:00:00 2001 From: geethkokila Date: Mon, 12 Mar 2018 16:28:28 +0530 Subject: [PATCH 0904/1075] Updating the version to 4.1.0 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fc77c7d8a..4607a7165 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.137-SNAPSHOT + 4.1.0-SNAPSHOT ../pom.xml @@ -70,4 +70,4 @@ - \ No newline at end of file + From 9172140ff1749337dbb584dbc2d4624b1cf24083 Mon Sep 17 00:00:00 2001 From: geethkokila Date: Mon, 12 Mar 2018 16:28:28 +0530 Subject: [PATCH 0905/1075] Updating the version to 4.1.0 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c3a6033dd..9056e04bf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.0.137-SNAPSHOT + 4.1.0-SNAPSHOT ../pom.xml @@ -124,4 +124,4 @@ - \ No newline at end of file + From 2eba476a9ec2dbc871903b14bb46950e62f275a5 Mon Sep 17 00:00:00 2001 From: geethkokila Date: Mon, 12 Mar 2018 16:28:28 +0530 Subject: [PATCH 0906/1075] Updating the version to 4.1.0 --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index b9f1b612f..fff6d45ac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.0.137-SNAPSHOT + 4.1.0-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.0.137-SNAPSHOT + 4.1.0-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. @@ -71,4 +71,4 @@ - \ No newline at end of file + From 2f9fe42f63a18d1168ba618bba605a217975da52 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Mar 2018 11:34:53 +0000 Subject: [PATCH 0907/1075] [WSO2 Release] [Jenkins #3144] [Release 4.1.0] prepare release v4.1.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4be11550d..4d13e3c92 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.0-SNAPSHOT + 4.1.0 ../pom.xml From 3c2dd0ec480199519f4860ae2bb433ef758c983d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Mar 2018 11:34:53 +0000 Subject: [PATCH 0908/1075] [WSO2 Release] [Jenkins #3144] [Release 4.1.0] prepare release v4.1.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4607a7165..d717eb4f2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.0-SNAPSHOT + 4.1.0 ../pom.xml From d91997df9b4dac8836e18fb7f2bf19ad93818151 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Mar 2018 11:34:53 +0000 Subject: [PATCH 0909/1075] [WSO2 Release] [Jenkins #3144] [Release 4.1.0] prepare release v4.1.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9056e04bf..06c93a35a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.0-SNAPSHOT + 4.1.0 ../pom.xml From af7d1a8e8711860efa3bb1d86dfbcc101b095ca5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Mar 2018 11:34:53 +0000 Subject: [PATCH 0910/1075] [WSO2 Release] [Jenkins #3144] [Release 4.1.0] prepare release v4.1.0 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fff6d45ac..6da4b542d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.0-SNAPSHOT + 4.1.0 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.0-SNAPSHOT + 4.1.0 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 10d45b85579d36ad892ffae012155157bb3b9e2b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Mar 2018 11:35:05 +0000 Subject: [PATCH 0911/1075] [WSO2 Release] [Jenkins #3144] [Release 4.1.0] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4d13e3c92..59d44e19e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.0 + 4.1.1-SNAPSHOT ../pom.xml From cb345f787a74e636fd5f5dbf4055dcb93e6702a6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Mar 2018 11:35:05 +0000 Subject: [PATCH 0912/1075] [WSO2 Release] [Jenkins #3144] [Release 4.1.0] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d717eb4f2..d638bfa6f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.0 + 4.1.1-SNAPSHOT ../pom.xml From 281a40b03593720dc0cc494ba8aff11a484232bb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Mar 2018 11:35:05 +0000 Subject: [PATCH 0913/1075] [WSO2 Release] [Jenkins #3144] [Release 4.1.0] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 06c93a35a..677edb049 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.0 + 4.1.1-SNAPSHOT ../pom.xml From ff3a6d664e32ac8bfeb542f2e2e53de9673e6e4c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 12 Mar 2018 11:35:05 +0000 Subject: [PATCH 0914/1075] [WSO2 Release] [Jenkins #3144] [Release 4.1.0] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6da4b542d..5c8d3a891 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.0 + 4.1.1-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.0 + 4.1.1-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 144a01970d69edf39c1e05796f2899f299cd4411 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 13 Mar 2018 05:46:38 +0000 Subject: [PATCH 0915/1075] [WSO2 Release] [Jenkins #3146] [Release 4.1.1] prepare release v4.1.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 59d44e19e..c0bab2da8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.1-SNAPSHOT + 4.1.1 ../pom.xml From 657170611bb638a7873b19a075e1a6a6e8a45aa6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 13 Mar 2018 05:46:38 +0000 Subject: [PATCH 0916/1075] [WSO2 Release] [Jenkins #3146] [Release 4.1.1] prepare release v4.1.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d638bfa6f..97fde1532 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.1-SNAPSHOT + 4.1.1 ../pom.xml From 0735518f413be4d3e817f4ee2f469e33f6edff1c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 13 Mar 2018 05:46:38 +0000 Subject: [PATCH 0917/1075] [WSO2 Release] [Jenkins #3146] [Release 4.1.1] prepare release v4.1.1 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 677edb049..0a526d779 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.1-SNAPSHOT + 4.1.1 ../pom.xml From 9132c4d6bcbf6c12a37a1f67bb3e894f2b61833c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 13 Mar 2018 05:46:38 +0000 Subject: [PATCH 0918/1075] [WSO2 Release] [Jenkins #3146] [Release 4.1.1] prepare release v4.1.1 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5c8d3a891..dfe2337ab 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.1-SNAPSHOT + 4.1.1 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.1-SNAPSHOT + 4.1.1 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 677a00f17dcb33a62515ec77b0d5dbc0731753f0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 13 Mar 2018 05:46:49 +0000 Subject: [PATCH 0919/1075] [WSO2 Release] [Jenkins #3146] [Release 4.1.1] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c0bab2da8..f7c7c1c68 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.1 + 4.1.2-SNAPSHOT ../pom.xml From f75fdee929e43e693bd9aa737af25a516b7da812 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 13 Mar 2018 05:46:49 +0000 Subject: [PATCH 0920/1075] [WSO2 Release] [Jenkins #3146] [Release 4.1.1] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 97fde1532..5d2e604a8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.1 + 4.1.2-SNAPSHOT ../pom.xml From 78f7c8c2e5727367b5280a21566a44bf6a5346e8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 13 Mar 2018 05:46:49 +0000 Subject: [PATCH 0921/1075] [WSO2 Release] [Jenkins #3146] [Release 4.1.1] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0a526d779..d54319063 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.1 + 4.1.2-SNAPSHOT ../pom.xml From aa4af307d11961af0e4f85fa5f3ffb02d6cd3c6a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 13 Mar 2018 05:46:49 +0000 Subject: [PATCH 0922/1075] [WSO2 Release] [Jenkins #3146] [Release 4.1.1] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index dfe2337ab..5f79b7dcc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.1 + 4.1.2-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.1 + 4.1.2-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From dc4e2d0ba3a79216f5535c6749c45e36c7b21976 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 14 Mar 2018 07:59:38 +0000 Subject: [PATCH 0923/1075] [WSO2 Release] [Jenkins #3148] [Release 4.1.2] prepare release v4.1.2 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f7c7c1c68..fedccfcd1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.2-SNAPSHOT + 4.1.2 ../pom.xml From f3beeb46dfd150e1281f2e33c5ce6415d3ab9632 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 14 Mar 2018 07:59:38 +0000 Subject: [PATCH 0924/1075] [WSO2 Release] [Jenkins #3148] [Release 4.1.2] prepare release v4.1.2 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5d2e604a8..379d52b44 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.2-SNAPSHOT + 4.1.2 ../pom.xml From fb27608261874303bfb17f8b42cb4ec20e5644e7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 14 Mar 2018 07:59:38 +0000 Subject: [PATCH 0925/1075] [WSO2 Release] [Jenkins #3148] [Release 4.1.2] prepare release v4.1.2 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d54319063..5c5d31e58 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.2-SNAPSHOT + 4.1.2 ../pom.xml From 1bada228b00f3281570676ca8d6b3b6c491d2519 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 14 Mar 2018 07:59:38 +0000 Subject: [PATCH 0926/1075] [WSO2 Release] [Jenkins #3148] [Release 4.1.2] prepare release v4.1.2 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5f79b7dcc..78a832da6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.2-SNAPSHOT + 4.1.2 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.2-SNAPSHOT + 4.1.2 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 434f94e61abd7e12fb22829273e9cf3b97a07b00 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 14 Mar 2018 07:59:49 +0000 Subject: [PATCH 0927/1075] [WSO2 Release] [Jenkins #3148] [Release 4.1.2] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fedccfcd1..bbc6b1ab9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.2 + 4.1.3-SNAPSHOT ../pom.xml From d74373914e6519e59af23a69fcade0e866b411c9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 14 Mar 2018 07:59:49 +0000 Subject: [PATCH 0928/1075] [WSO2 Release] [Jenkins #3148] [Release 4.1.2] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 379d52b44..9ace62053 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.2 + 4.1.3-SNAPSHOT ../pom.xml From ff435131331e6400436c31eb91cf2985850c6e45 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 14 Mar 2018 07:59:49 +0000 Subject: [PATCH 0929/1075] [WSO2 Release] [Jenkins #3148] [Release 4.1.2] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5c5d31e58..6856803ee 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.2 + 4.1.3-SNAPSHOT ../pom.xml From d050857ce850d0b48df4629d07178a9451138088 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 14 Mar 2018 07:59:49 +0000 Subject: [PATCH 0930/1075] [WSO2 Release] [Jenkins #3148] [Release 4.1.2] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 78a832da6..691ad029d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.2 + 4.1.3-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.2 + 4.1.3-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d64615475ef38c51552de3bd72fa6184a36a471a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Mar 2018 09:05:24 +0000 Subject: [PATCH 0931/1075] [WSO2 Release] [Jenkins #3150] [Release 4.1.3] prepare release v4.1.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bbc6b1ab9..63b6c397d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.3-SNAPSHOT + 4.1.3 ../pom.xml From 31e35b998ddf61db97fb668a96383e68396e9d5f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Mar 2018 09:05:24 +0000 Subject: [PATCH 0932/1075] [WSO2 Release] [Jenkins #3150] [Release 4.1.3] prepare release v4.1.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9ace62053..83dc806fa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.3-SNAPSHOT + 4.1.3 ../pom.xml From 7e2a207e1ab9e21cbe7e22b2c3399c25b25fd962 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Mar 2018 09:05:24 +0000 Subject: [PATCH 0933/1075] [WSO2 Release] [Jenkins #3150] [Release 4.1.3] prepare release v4.1.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6856803ee..1cee643d7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.3-SNAPSHOT + 4.1.3 ../pom.xml From 94269593a56ab3d42ad2474901426651612bd7f3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Mar 2018 09:05:24 +0000 Subject: [PATCH 0934/1075] [WSO2 Release] [Jenkins #3150] [Release 4.1.3] prepare release v4.1.3 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 691ad029d..09c64f92b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.3-SNAPSHOT + 4.1.3 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.3-SNAPSHOT + 4.1.3 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c761837f93b30bbabbf684d80a736cdc345cb4cf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Mar 2018 09:05:34 +0000 Subject: [PATCH 0935/1075] [WSO2 Release] [Jenkins #3150] [Release 4.1.3] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 63b6c397d..5c597c29e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.3 + 4.1.4-SNAPSHOT ../pom.xml From 23a673479834715d5bfc0d47b21e752a09b255a2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Mar 2018 09:05:34 +0000 Subject: [PATCH 0936/1075] [WSO2 Release] [Jenkins #3150] [Release 4.1.3] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 83dc806fa..d5e84a02c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.3 + 4.1.4-SNAPSHOT ../pom.xml From 2c901a9568a513b52c583dd5fa58307eeb9e59b2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Mar 2018 09:05:34 +0000 Subject: [PATCH 0937/1075] [WSO2 Release] [Jenkins #3150] [Release 4.1.3] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1cee643d7..d6d315321 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.3 + 4.1.4-SNAPSHOT ../pom.xml From 0e249ed2ae490a6659242773c0cdc176f66c07d5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 15 Mar 2018 09:05:34 +0000 Subject: [PATCH 0938/1075] [WSO2 Release] [Jenkins #3150] [Release 4.1.3] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 09c64f92b..192c1f35f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.3 + 4.1.4-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.3 + 4.1.4-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 296998e67606b85428500bee342329e216d9ecb9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 16 Mar 2018 12:06:49 +0000 Subject: [PATCH 0939/1075] [WSO2 Release] [Jenkins #3152] [Release 4.1.4] prepare release v4.1.4 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5c597c29e..16b3f6faa 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.4-SNAPSHOT + 4.1.4 ../pom.xml From 2a448efad1ffb847ca5740fa0fecdd920e66a658 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 16 Mar 2018 12:06:49 +0000 Subject: [PATCH 0940/1075] [WSO2 Release] [Jenkins #3152] [Release 4.1.4] prepare release v4.1.4 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d5e84a02c..3b6aa6b44 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.4-SNAPSHOT + 4.1.4 ../pom.xml From 55e21ffa55ac641af65160f6bcbdff47aa007fe3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 16 Mar 2018 12:06:49 +0000 Subject: [PATCH 0941/1075] [WSO2 Release] [Jenkins #3152] [Release 4.1.4] prepare release v4.1.4 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d6d315321..8e0f2eab3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.4-SNAPSHOT + 4.1.4 ../pom.xml From 59f2ed4ff39ca6f9c31a50e787b5c63fdc591cab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 16 Mar 2018 12:06:49 +0000 Subject: [PATCH 0942/1075] [WSO2 Release] [Jenkins #3152] [Release 4.1.4] prepare release v4.1.4 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 192c1f35f..e2d93cad1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.4-SNAPSHOT + 4.1.4 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.4-SNAPSHOT + 4.1.4 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fd75dab540b498a12b2cb82dd989aa105049c684 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 16 Mar 2018 12:06:59 +0000 Subject: [PATCH 0943/1075] [WSO2 Release] [Jenkins #3152] [Release 4.1.4] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 16b3f6faa..d5cd0a946 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.4 + 4.1.5-SNAPSHOT ../pom.xml From 64322180d72c81426ac83fdfadc53df136c034c5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 16 Mar 2018 12:06:59 +0000 Subject: [PATCH 0944/1075] [WSO2 Release] [Jenkins #3152] [Release 4.1.4] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3b6aa6b44..3b8d62dc4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.4 + 4.1.5-SNAPSHOT ../pom.xml From acc8f6cd62f6ea0c38f25c98f397705c7cc835b5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 16 Mar 2018 12:06:59 +0000 Subject: [PATCH 0945/1075] [WSO2 Release] [Jenkins #3152] [Release 4.1.4] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8e0f2eab3..c3a73cf72 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.4 + 4.1.5-SNAPSHOT ../pom.xml From 0e12e521a8807213e8e0c01cf8d12b29faa6618d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 16 Mar 2018 12:06:59 +0000 Subject: [PATCH 0946/1075] [WSO2 Release] [Jenkins #3152] [Release 4.1.4] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index e2d93cad1..3be66ae76 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.4 + 4.1.5-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.4 + 4.1.5-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From fa8d9b5fcfa71f006d598f5fe7b8001eb9c8cd23 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 21 Mar 2018 04:31:01 +0000 Subject: [PATCH 0947/1075] [WSO2 Release] [Jenkins #3154] [Release 4.1.5] prepare release v4.1.5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d5cd0a946..05c0e1bf9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.5-SNAPSHOT + 4.1.5 ../pom.xml From 3db06b12414c4b072e86b28b545e406bdf55f128 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 21 Mar 2018 04:31:01 +0000 Subject: [PATCH 0948/1075] [WSO2 Release] [Jenkins #3154] [Release 4.1.5] prepare release v4.1.5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3b8d62dc4..c47b4f206 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.5-SNAPSHOT + 4.1.5 ../pom.xml From bef1df21ca4842116bdd56f6309832685d2d243d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 21 Mar 2018 04:31:01 +0000 Subject: [PATCH 0949/1075] [WSO2 Release] [Jenkins #3154] [Release 4.1.5] prepare release v4.1.5 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c3a73cf72..cd008e2fb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.5-SNAPSHOT + 4.1.5 ../pom.xml From 9020fb7092923c946df76c75917312ae9167003d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 21 Mar 2018 04:31:01 +0000 Subject: [PATCH 0950/1075] [WSO2 Release] [Jenkins #3154] [Release 4.1.5] prepare release v4.1.5 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3be66ae76..24bdb1021 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.5-SNAPSHOT + 4.1.5 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.5-SNAPSHOT + 4.1.5 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 889e7d707e80ab275ac038418511529e44e76135 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 21 Mar 2018 04:31:13 +0000 Subject: [PATCH 0951/1075] [WSO2 Release] [Jenkins #3154] [Release 4.1.5] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 05c0e1bf9..6e06bb9ef 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.5 + 4.1.6-SNAPSHOT ../pom.xml From 4e985b346a03a9925aa5650658390f19462fa20a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 21 Mar 2018 04:31:13 +0000 Subject: [PATCH 0952/1075] [WSO2 Release] [Jenkins #3154] [Release 4.1.5] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c47b4f206..c13a0a5a7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.5 + 4.1.6-SNAPSHOT ../pom.xml From 88b1e4742c92c6ec404a34a42230327c0ed99f79 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 21 Mar 2018 04:31:13 +0000 Subject: [PATCH 0953/1075] [WSO2 Release] [Jenkins #3154] [Release 4.1.5] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cd008e2fb..1a8d12f73 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.5 + 4.1.6-SNAPSHOT ../pom.xml From 25ac2b2742ba9514d714c65bd957ce267187c97e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 21 Mar 2018 04:31:13 +0000 Subject: [PATCH 0954/1075] [WSO2 Release] [Jenkins #3154] [Release 4.1.5] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 24bdb1021..918dc3638 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.5 + 4.1.6-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.5 + 4.1.6-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 5c649b43caec7c695218a387f39a491117573d67 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 5 Apr 2018 13:49:53 +0000 Subject: [PATCH 0955/1075] [WSO2 Release] [Jenkins #3159] [Release 4.1.6] prepare release v4.1.6 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6e06bb9ef..6fc99e6c4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.6-SNAPSHOT + 4.1.6 ../pom.xml From 77ff88e32ad703d9bcd54d0b769415708d84dcb6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 5 Apr 2018 13:49:53 +0000 Subject: [PATCH 0956/1075] [WSO2 Release] [Jenkins #3159] [Release 4.1.6] prepare release v4.1.6 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c13a0a5a7..ab05af3bf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.6-SNAPSHOT + 4.1.6 ../pom.xml From d9f18126a8e60e8a3292ce66a1588910297f4de2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 5 Apr 2018 13:49:53 +0000 Subject: [PATCH 0957/1075] [WSO2 Release] [Jenkins #3159] [Release 4.1.6] prepare release v4.1.6 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1a8d12f73..dfa7bbc30 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.6-SNAPSHOT + 4.1.6 ../pom.xml From c79b6175b2135837d44b53833589d7e32d0a9b4a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 5 Apr 2018 13:49:53 +0000 Subject: [PATCH 0958/1075] [WSO2 Release] [Jenkins #3159] [Release 4.1.6] prepare release v4.1.6 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 918dc3638..9176a1c79 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.6-SNAPSHOT + 4.1.6 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.6-SNAPSHOT + 4.1.6 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c6cc2e6bdd7b4cd0e03cf65e61352ab1fd4e5230 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 5 Apr 2018 13:50:04 +0000 Subject: [PATCH 0959/1075] [WSO2 Release] [Jenkins #3159] [Release 4.1.6] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6fc99e6c4..2246024c9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.6 + 4.1.7-SNAPSHOT ../pom.xml From 458de918c7457412dfd52d1544dd90487b9af7cd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 5 Apr 2018 13:50:04 +0000 Subject: [PATCH 0960/1075] [WSO2 Release] [Jenkins #3159] [Release 4.1.6] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ab05af3bf..6c8c07ef9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.6 + 4.1.7-SNAPSHOT ../pom.xml From 56bc4169ad372f5b6136cadce264bda6bd211a70 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 5 Apr 2018 13:50:04 +0000 Subject: [PATCH 0961/1075] [WSO2 Release] [Jenkins #3159] [Release 4.1.6] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dfa7bbc30..ccce924e4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.6 + 4.1.7-SNAPSHOT ../pom.xml From 47930f466da2dab5399f3f5e00de8567b7ecd437 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 5 Apr 2018 13:50:04 +0000 Subject: [PATCH 0962/1075] [WSO2 Release] [Jenkins #3159] [Release 4.1.6] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9176a1c79..d0c161ec2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.6 + 4.1.7-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.6 + 4.1.7-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 7c35c622bcf5f8ecb0c323f5f7f8fcabe47a5d24 Mon Sep 17 00:00:00 2001 From: charitha Date: Fri, 10 Aug 2018 15:22:01 +0530 Subject: [PATCH 0963/1075] Add siddhi extensions for operation and notification publishing --- pom.xml | 67 +++++- .../AddNotificationFunctionProcessor.java | 169 +++++++++++++ .../device/AddOperationFunctionProcessor.java | 223 ++++++++++++++++++ .../client/OAuthRequestInterceptor.java | 106 +++++++++ .../client/configs/SiddhiExtensionConfig.java | 70 ++++++ .../configs/SiddhiExtensionConfigReader.java | 95 ++++++++ .../device/client/dto/OAuthApplication.java | 50 ++++ .../device/client/dto/OperationRequest.java | 45 ++++ .../client/dto/RegistrationProfile.java | 63 +++++ .../client/exception/APIMClientException.java | 58 +++++ .../exception/APIMClientOAuthException.java | 58 +++++ .../InvalidConfigurationStateException.java | 78 ++++++ .../device/client/services/DCRService.java | 42 ++++ .../client/services/OperationService.java | 43 ++++ .../siddhi/device/utils/ClientUtils.java | 223 ++++++++++++++++++ .../siddhi/device/utils/DeviceUtils.java | 34 +++ src/main/resources/device.siddhiext | 2 + 17 files changed, 1425 insertions(+), 1 deletion(-) create mode 100644 src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/AddOperationFunctionProcessor.java create mode 100755 src/main/java/org/wso2/extension/siddhi/device/client/OAuthRequestInterceptor.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfig.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfigReader.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/client/dto/OAuthApplication.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/client/dto/OperationRequest.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/client/dto/RegistrationProfile.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientException.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientOAuthException.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/client/exception/InvalidConfigurationStateException.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/client/services/DCRService.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/client/services/OperationService.java create mode 100644 src/main/java/org/wso2/extension/siddhi/device/utils/ClientUtils.java diff --git a/pom.xml b/pom.xml index 2246024c9..43570e890 100644 --- a/pom.xml +++ b/pom.xml @@ -55,6 +55,42 @@ org.json.wso2 json + + org.wso2.carbon.devicemgt + org.wso2.carbon.identity.jwt.client.extension + + + io.github.openfeign + feign-core + + + io.github.openfeign + feign-jaxrs + + + io.github.openfeign + feign-gson + + + io.github.openfeign + feign-slf4j + + + com.squareup.okhttp3 + okhttp + + + com.squareup.okio + okio + + + io.github.openfeign + feign-okhttp + + + javax.ws.rs + jsr311-api + com.h2database.wso2 h2-database-engine @@ -125,14 +161,43 @@ org.wso2.extension.siddhi.device.* + feign, + feign.codec, + feign.auth, + feign.gson, + feign.slf4j, + javax.net.ssl, + javax.xml, + javax.xml.bind, + javax.xml.bind.annotation, + javax.xml.parsers;resolution:=optional, + org.apache.commons.lang, + org.w3c.dom, + org.wso2.carbon.base, + org.wso2.carbon.utils, + org.wso2.carbon.user.api, org.json;version="${orbit.version.json.range}", org.wso2.siddhi.core.*, org.wso2.siddhi.query.api.*, org.wso2.carbon.device.mgt.core.*, org.wso2.carbon.device.mgt.common.*, + org.wso2.carbon.identity.jwt.client.*, org.apache.commons.logging, - org.wso2.carbon.context + org.wso2.carbon.context, + android.util;resolution:=optional, + javax.annotation;resolution:=optional, + javax.net;resolution:=optional, + javax.security.auth.x500;resolution:=optional, + javax.crypto;resolution:=optional, + javax.crypto.spec;resolution:=optional + + jsr311-api, + feign-jaxrs, + feign-okhttp, + okhttp, + okio + diff --git a/src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java b/src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java new file mode 100644 index 000000000..cc48643b8 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java @@ -0,0 +1,169 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.device.mgt.common.DeviceIdentifier; +import org.wso2.carbon.device.mgt.common.notification.mgt.Notification; +import org.wso2.carbon.device.mgt.common.notification.mgt.NotificationManagementException; +import org.wso2.carbon.device.mgt.common.notification.mgt.NotificationManagementService; +import org.wso2.extension.siddhi.device.utils.DeviceUtils; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.query.processor.stream.function.StreamFunctionProcessor; +import org.wso2.siddhi.query.api.definition.AbstractDefinition; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +import java.util.ArrayList; +import java.util.List; + +public class AddNotificationFunctionProcessor extends StreamFunctionProcessor { + + private static final Log log = LogFactory.getLog(AddNotificationFunctionProcessor.class); + + /** + * The init method of the StreamProcessor, this method will be called before other methods + * + * @param abstractDefinition the incoming stream definition + * @param attributeExpressionExecutors the executors of each function parameters + * @param executionPlanContext the context of the execution plan + * @return the additional output attributes introduced by the function + */ + @Override + protected List init(AbstractDefinition abstractDefinition, + ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 3) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to device:addNotification() function, required 3 but found " + + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument (deviceIdentifier) of device:addNotification() " + + "function, required " + Attribute.Type.STRING + " as deviceIdentifier, but found " + + attributeExpressionExecutors[0].getReturnType().toString()); + } + if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument (deviceType) of device:addNotification() " + + "function, required " + Attribute.Type.STRING + " as deviceType, but found " + + attributeExpressionExecutors[1].getReturnType().toString()); + } + if (attributeExpressionExecutors[2].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the third argument (description) of device:addNotification() " + + "function, required " + Attribute.Type.STRING + " as description, but found " + + attributeExpressionExecutors[2].getReturnType().toString()); + } + ArrayList attributes = new ArrayList<>(); + attributes.add(new Attribute("notified", Attribute.Type.BOOL)); + return attributes; + } + + /** + * The process method of the StreamFunction, used when more than one function parameters are provided + * + * @param data the data values for the function parameters + * @return the data for additional output attributes introduced by the function + */ + @Override + protected Object[] process(Object[] data) { + if (data[0] == null || data[1] == null || data[2] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:addNotification() function. " + + "Neither of any three arguments cannot be null"); + } + boolean isNotified = false; + String deviceId = (String) data[0]; + String deviceType = (String) data[1]; + String description = (String) data[2]; + Notification notification = new Notification(); + notification.setStatus(Notification.Status.NEW.name()); + notification.setDeviceIdentifier(deviceId); + notification.setDeviceType(deviceType); + notification.setDescription(description); + + NotificationManagementService notificationManagementService = DeviceUtils.getNotificationManagementService(); + try { + isNotified = notificationManagementService.addNotification(new DeviceIdentifier(deviceId, deviceType), notification); + } catch (NotificationManagementException e) { + log.error("Error occurred while adding notification for " + deviceType + " device with id " + deviceId, e); + } + + return new Object[]{isNotified}; + } + + /** + * The process method of the StreamFunction, used when zero or one function parameter is provided + * + * @param data null if the function parameter count is zero or runtime data value of the function parameter + * @return the data for additional output attribute introduced by the function + */ + @Override + protected Object[] process(Object data) { + return new Object[0]; + } + + /** + * This will be called only once and this can be used to acquire + * required resources for the processing element. + * This will be called after initializing the system and before + * starting to process the events. + */ + @Override + public void start() { + + } + + /** + * This will be called only once and this can be used to release + * the acquired resources for processing. + * This will be called before shutting down the system. + */ + @Override + public void stop() { + + } + + /** + * Used to collect the serializable state of the processing element, that need to be + * persisted for the reconstructing the element to the same state on a different point of time + * + * @return stateful objects of the processing element as an array + */ + @Override + public Object[] currentState() { + return new Object[0]; + } + + /** + * Used to restore serialized state of the processing element, for reconstructing + * the element to the same state as if was on a previous point of time. + * + * @param objects the stateful objects of the element as an array on + * the same order provided by currentState(). + */ + @Override + public void restoreState(Object[] objects) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/AddOperationFunctionProcessor.java b/src/main/java/org/wso2/extension/siddhi/device/AddOperationFunctionProcessor.java new file mode 100644 index 000000000..f3abc1a99 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/AddOperationFunctionProcessor.java @@ -0,0 +1,223 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device; + +import feign.Feign; +import feign.Logger; +import feign.gson.GsonDecoder; +import feign.gson.GsonEncoder; +import feign.jaxrs.JAXRSContract; +import feign.okhttp.OkHttpClient; +import feign.slf4j.Slf4jLogger; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.json.JSONArray; +import org.wso2.carbon.device.mgt.common.operation.mgt.Activity; +import org.wso2.carbon.device.mgt.common.operation.mgt.Operation; +import org.wso2.extension.siddhi.device.client.OAuthRequestInterceptor; +import org.wso2.extension.siddhi.device.client.configs.SiddhiExtensionConfigReader; +import org.wso2.extension.siddhi.device.client.dto.OperationRequest; +import org.wso2.extension.siddhi.device.client.services.OperationService; +import org.wso2.extension.siddhi.device.utils.ClientUtils; +import org.wso2.siddhi.core.config.ExecutionPlanContext; +import org.wso2.siddhi.core.exception.ExecutionPlanRuntimeException; +import org.wso2.siddhi.core.executor.ExpressionExecutor; +import org.wso2.siddhi.core.query.processor.stream.function.StreamFunctionProcessor; +import org.wso2.siddhi.query.api.definition.AbstractDefinition; +import org.wso2.siddhi.query.api.definition.Attribute; +import org.wso2.siddhi.query.api.exception.ExecutionPlanValidationException; + +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class AddOperationFunctionProcessor extends StreamFunctionProcessor { + + private static final Log log = LogFactory.getLog(AddOperationFunctionProcessor.class); + private static final String DATE_FORMAT_NOW = "yyyy-MM-dd HH:mm:ss"; + private static final String DEVICE_MGT_BASE_CONTEXT = "/api/device-mgt/v1.0"; + private OperationService operationService; + + public AddOperationFunctionProcessor() { + operationService = Feign.builder().client(new OkHttpClient(ClientUtils.getSSLClient())) + .logger(new Slf4jLogger()) + .logLevel(Logger.Level.FULL).requestInterceptor(new OAuthRequestInterceptor()) + .contract(new JAXRSContract()).encoder(new GsonEncoder()).decoder(new GsonDecoder()) + .target(OperationService.class, ClientUtils.replaceProperties( + SiddhiExtensionConfigReader.getInstance().getConfig().getGatewayEndpoint() + + DEVICE_MGT_BASE_CONTEXT)); + } + + /** + * The init method of the StreamProcessor, this method will be called before other methods + * + * @param abstractDefinition the incoming stream definition + * @param attributeExpressionExecutors the executors of each function parameters + * @param executionPlanContext the context of the execution plan + * @return the additional output attributes introduced by the function + */ + @Override + protected List init(AbstractDefinition abstractDefinition, + ExpressionExecutor[] attributeExpressionExecutors, + ExecutionPlanContext executionPlanContext) { + if (attributeExpressionExecutors.length != 6) { + throw new ExecutionPlanValidationException( + "Invalid no of arguments passed to device:addOperation() function, required 3 but found " + + attributeExpressionExecutors.length); + } + if (attributeExpressionExecutors[0].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the first argument (deviceIdentifiers) of device:addOperation() " + + "function, required " + Attribute.Type.STRING + " as deviceIdentifiers, but found " + + attributeExpressionExecutors[0].getReturnType().toString()); + } + if (attributeExpressionExecutors[1].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the second argument (deviceType) of device:addOperation() " + + "function, required " + Attribute.Type.STRING + " as deviceType, but found " + + attributeExpressionExecutors[1].getReturnType().toString()); + } + if (attributeExpressionExecutors[2].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the third argument (code) of device:addOperation() " + + "function, required " + Attribute.Type.STRING + " as code, but found " + + attributeExpressionExecutors[2].getReturnType().toString()); + } + if (attributeExpressionExecutors[3].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the fourth argument (type) of device:addOperation() " + + "function, required " + Attribute.Type.STRING + " as type, but found " + + attributeExpressionExecutors[3].getReturnType().toString()); + } + if (attributeExpressionExecutors[4].getReturnType() != Attribute.Type.BOOL) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the fifth argument (isEnabled) of device:addOperation() " + + "function, required " + Attribute.Type.BOOL + " as isEnabled, but found " + + attributeExpressionExecutors[4].getReturnType().toString()); + } + if (attributeExpressionExecutors[5].getReturnType() != Attribute.Type.STRING) { + throw new ExecutionPlanValidationException( + "Invalid parameter type found for the fifth argument (payLoad) of device:addOperation() " + + "function, required " + Attribute.Type.STRING + " as payLoad, but found " + + attributeExpressionExecutors[5].getReturnType().toString()); + } + ArrayList attributes = new ArrayList<>(); + attributes.add(new Attribute("activity_id", Attribute.Type.STRING)); + return attributes; + } + + /** + * The process method of the StreamFunction, used when more than one function parameters are provided + * + * @param data the data values for the function parameters + * @return the data for additional output attributes introduced by the function + */ + @Override + protected Object[] process(Object[] data) { + if (data[0] == null || data[1] == null || data[2] == null || data[3] == null || data[4] == null || data[5] == null) { + throw new ExecutionPlanRuntimeException("Invalid input given to device:addOperation() function. " + + "Neither of any three arguments cannot be null"); + } + + JSONArray deviceIds = new JSONArray((String) data[0]); + String deviceType = (String) data[1]; + List deviceIdentifiers = new ArrayList<>(); + for (int i = 0; i < deviceIds.length(); i++) { + deviceIdentifiers.add(deviceIds.getString(i)); + } + + Operation operation = new Operation(); + operation.setType(Operation.Type.valueOf((String) data[3])); + operation.setStatus(Operation.Status.PENDING); + operation.setCode((String) data[2]); + operation.setEnabled((Boolean) data[4]); + String payloadString = (String) data[5]; + operation.setPayLoad(payloadString.replaceAll("'", "\"")); + + String date = new SimpleDateFormat(DATE_FORMAT_NOW).format(new Date()); + operation.setCreatedTimeStamp(date); + + OperationRequest operationRequest = new OperationRequest(); + operationRequest.setDeviceIdentifiers(deviceIdentifiers); + operationRequest.setOperation(operation); + try { + Activity activity = operationService.addOperation(deviceType, operationRequest); + return new Object[]{activity.getActivityId()}; + } catch (Exception e) { + log.error("Error occurred while adding the operation " + operation.toString(), e); + return new Object[]{null}; + } + } + + /** + * The process method of the StreamFunction, used when zero or one function parameter is provided + * + * @param data null if the function parameter count is zero or runtime data value of the function parameter + * @return the data for additional output attribute introduced by the function + */ + @Override + protected Object[] process(Object data) { + return new Object[0]; + } + + /** + * This will be called only once and this can be used to acquire + * required resources for the processing element. + * This will be called after initializing the system and before + * starting to process the events. + */ + @Override + public void start() { + + } + + /** + * This will be called only once and this can be used to release + * the acquired resources for processing. + * This will be called before shutting down the system. + */ + @Override + public void stop() { + + } + + /** + * Used to collect the serializable state of the processing element, that need to be + * persisted for the reconstructing the element to the same state on a different point of time + * + * @return stateful objects of the processing element as an array + */ + @Override + public Object[] currentState() { + return new Object[0]; + } + + /** + * Used to restore serialized state of the processing element, for reconstructing + * the element to the same state as if was on a previous point of time. + * + * @param objects the stateful objects of the element as an array on + * the same order provided by currentState(). + */ + @Override + public void restoreState(Object[] objects) { + //Since there's no need to maintain a state, nothing needs to be done here. + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/OAuthRequestInterceptor.java b/src/main/java/org/wso2/extension/siddhi/device/client/OAuthRequestInterceptor.java new file mode 100755 index 000000000..7ef87863d --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/OAuthRequestInterceptor.java @@ -0,0 +1,106 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.client; + +import feign.Feign; +import feign.Logger; +import feign.RequestInterceptor; +import feign.RequestTemplate; +import feign.auth.BasicAuthRequestInterceptor; +import feign.gson.GsonDecoder; +import feign.gson.GsonEncoder; +import feign.jaxrs.JAXRSContract; +import feign.okhttp.OkHttpClient; +import feign.slf4j.Slf4jLogger; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.base.MultitenantConstants; +import org.wso2.carbon.context.PrivilegedCarbonContext; +import org.wso2.carbon.identity.jwt.client.extension.JWTClient; +import org.wso2.carbon.identity.jwt.client.extension.dto.AccessTokenInfo; +import org.wso2.carbon.identity.jwt.client.extension.exception.JWTClientException; +import org.wso2.carbon.user.api.UserStoreException; +import org.wso2.extension.siddhi.device.client.configs.SiddhiExtensionConfigReader; +import org.wso2.extension.siddhi.device.client.dto.OAuthApplication; +import org.wso2.extension.siddhi.device.client.dto.RegistrationProfile; +import org.wso2.extension.siddhi.device.client.exception.APIMClientOAuthException; +import org.wso2.extension.siddhi.device.client.services.DCRService; +import org.wso2.extension.siddhi.device.utils.ClientUtils; +import org.wso2.extension.siddhi.device.utils.DeviceUtils; + +/** + * This is a request interceptor to add oauth token header. + */ +public class OAuthRequestInterceptor implements RequestInterceptor { + + private static final String APPLICATION_NAME = "siddhi_extension_client"; + private static final String REQUIRED_SCOPES = "perm:devices:operations"; + private static final String[] API_TAGS = {"device_management"}; + private DCRService dcrService; + private static OAuthApplication oAuthApplication; + private static final Log log = LogFactory.getLog(OAuthRequestInterceptor.class); + + /** + * Creates an interceptor that authenticates all requests. + */ + public OAuthRequestInterceptor() { + String username = SiddhiExtensionConfigReader.getInstance().getConfig().getUsername(); + String password = SiddhiExtensionConfigReader.getInstance().getConfig().getPassword(); + dcrService = Feign.builder().client(new OkHttpClient(ClientUtils.getSSLClient())).logger(new Slf4jLogger()) + .logLevel(Logger.Level.FULL) + .requestInterceptor(new BasicAuthRequestInterceptor(username, password)) + .contract(new JAXRSContract()).encoder(new GsonEncoder()).decoder(new GsonDecoder()) + .target(DCRService.class, ClientUtils.replaceProperties( + SiddhiExtensionConfigReader.getInstance().getConfig().getDcrEndpoint())); + } + + @Override + public void apply(RequestTemplate template) { + if (oAuthApplication == null) { + RegistrationProfile registrationProfile = new RegistrationProfile(); + registrationProfile.setApiApplicationName(APPLICATION_NAME); + registrationProfile.setIsAllowedToAllDomains(true); + registrationProfile.setTags(API_TAGS); + oAuthApplication = dcrService.register(registrationProfile); + } + String tenantDomain = PrivilegedCarbonContext.getThreadLocalCarbonContext().getTenantDomain(); + try { + String username = PrivilegedCarbonContext.getThreadLocalCarbonContext().getUserRealm().getRealmConfiguration().getAdminUserName(); + if (!tenantDomain.equals(MultitenantConstants.SUPER_TENANT_DOMAIN_NAME)) { + username = username + "@" + tenantDomain; + } + JWTClient jwtClient = DeviceUtils.getJWTClientManagerService().getJWTClient(); + AccessTokenInfo tenantBasedAccessTokenInfo = jwtClient.getAccessToken(oAuthApplication.getClientId(), + oAuthApplication.getClientSecret(), username, REQUIRED_SCOPES); + if (tenantBasedAccessTokenInfo.getAccessToken() != null) { + String headerValue = "Bearer " + tenantBasedAccessTokenInfo.getAccessToken(); + template.header("Authorization", headerValue); + } + } catch (JWTClientException e) { + String msg = "Failed to retrieve oauth token using jwt"; + log.error(msg, e); + throw new APIMClientOAuthException(msg, e); + } catch (UserStoreException e) { + String msg = "Unable to retrieve realm config for tenant " + tenantDomain; + log.error(msg, e); + throw new APIMClientOAuthException(msg, e); + } + } + +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfig.java b/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfig.java new file mode 100644 index 000000000..0021ca690 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfig.java @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.client.configs; + +import javax.xml.bind.annotation.XmlElement; +import javax.xml.bind.annotation.XmlRootElement; + +/** + * This holds the configuration api manager integration. + */ +@XmlRootElement(name = "SiddhiExtensionConfiguration") +public class SiddhiExtensionConfig { + + String dcrEndpoint; + String gatewayEndpoint; + String username; + String password; + + @XmlElement(name = "DCREndpoint", required = true) + public String getDcrEndpoint() { + return dcrEndpoint; + } + + public void setDcrEndpoint(String dcrEndpoint) { + this.dcrEndpoint = dcrEndpoint; + } + + @XmlElement(name = "GatewayEndpoint", required = true) + public String getGatewayEndpoint() { + return gatewayEndpoint; + } + + public void setGatewayEndpoint(String gatewayEndpoint) { + this.gatewayEndpoint = gatewayEndpoint; + } + + @XmlElement(name = "Username", required = true) + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + @XmlElement(name = "Password", required = true) + public String getPassword() { + return password; + } + + public void setPassword(String password) { + this.password = password; + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfigReader.java b/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfigReader.java new file mode 100644 index 000000000..5a2211463 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfigReader.java @@ -0,0 +1,95 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.client.configs; + +import org.w3c.dom.Document; +import org.wso2.carbon.utils.CarbonUtils; +import org.wso2.extension.siddhi.device.client.exception.APIMClientException; +import org.wso2.extension.siddhi.device.client.exception.InvalidConfigurationStateException; + +import javax.xml.XMLConstants; +import javax.xml.bind.JAXBContext; +import javax.xml.bind.JAXBException; +import javax.xml.bind.Unmarshaller; +import javax.xml.parsers.DocumentBuilder; +import javax.xml.parsers.DocumentBuilderFactory; +import java.io.File; + +/** + * This holds the configuration parser for api integration.xml + */ +public class SiddhiExtensionConfigReader { + + private static SiddhiExtensionConfig config; + private static SiddhiExtensionConfigReader configReader = new SiddhiExtensionConfigReader(); + private static boolean isInitialized = false; + private static final String SIDDHI_INTEGRATION_CONFIG_PATH = + CarbonUtils.getCarbonConfigDirPath() + File.separator + "siddhi-integration.xml"; + + private SiddhiExtensionConfigReader() { + + } + + private static String apimIntegrationXmlFilePath = ""; + + //TOD file may be a part of another file + public static SiddhiExtensionConfigReader getInstance() { + if (!isInitialized) { + try { + init(); + } catch (APIMClientException e) { + throw new InvalidConfigurationStateException("Webapp Authenticator Configuration is not " + + "initialized properly"); + } + } + return configReader; + } + + public static void init() throws APIMClientException { + try { + File siddhiConfigFile = new File(SIDDHI_INTEGRATION_CONFIG_PATH); + Document doc = convertToDocument(siddhiConfigFile); + + JAXBContext ctx = JAXBContext.newInstance(SiddhiExtensionConfig.class); + Unmarshaller unmarshaller = ctx.createUnmarshaller(); + config = (SiddhiExtensionConfig) unmarshaller.unmarshal(doc); + isInitialized = true; + } catch (JAXBException e) { + throw new APIMClientException("Error occurred while un-marshalling SiddhiExtensionConfig", e); + } + } + + private static Document convertToDocument(File file) throws APIMClientException { + DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); + factory.setNamespaceAware(true); + try { + factory.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true); + factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true); + DocumentBuilder docBuilder = factory.newDocumentBuilder(); + return docBuilder.parse(file); + } catch (Exception e) { + throw new APIMClientException("Error occurred while parsing file 'apim-integration.xml' to a org.w3c.dom.Document", e); + } + } + + public SiddhiExtensionConfig getConfig() { + return config; + } + +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/dto/OAuthApplication.java b/src/main/java/org/wso2/extension/siddhi/device/client/dto/OAuthApplication.java new file mode 100644 index 000000000..46c72e9e3 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/dto/OAuthApplication.java @@ -0,0 +1,50 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.client.dto; + +public class OAuthApplication { + + private String client_id; + private String client_secret; + + public String getClientId() { + return client_id; + } + + public void setClientId(String clientId) { + this.client_id = clientId; + } + + public String getClientSecret() { + return client_secret; + } + + public void setClientSecret(String clientSecret) { + this.client_secret = clientSecret; + } + + @Override + public String toString() { + return "OAuthApplication {\n" + + " clientId: " + client_id + "\n" + + " clientSecret: " + client_secret + "\n" + + "}\n"; + } + +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/dto/OperationRequest.java b/src/main/java/org/wso2/extension/siddhi/device/client/dto/OperationRequest.java new file mode 100644 index 000000000..bd3d919e3 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/dto/OperationRequest.java @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.client.dto; + +import org.wso2.carbon.device.mgt.common.operation.mgt.Operation; + +import java.util.List; + +public class OperationRequest { + + private List deviceIdentifiers; + private Operation operation; + + public List getDeviceIdentifiers() { + return deviceIdentifiers; + } + + public void setDeviceIdentifiers(List deviceIdentifiers) { + this.deviceIdentifiers = deviceIdentifiers; + } + + public Operation getOperation() { + return operation; + } + + public void setOperation(Operation operation) { + this.operation = operation; + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/dto/RegistrationProfile.java b/src/main/java/org/wso2/extension/siddhi/device/client/dto/RegistrationProfile.java new file mode 100644 index 000000000..ecb0086de --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/dto/RegistrationProfile.java @@ -0,0 +1,63 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.client.dto; + +/** + * DTO class to be used when registering an ApiM application. + */ + +public class RegistrationProfile { + + private String applicationName; + private String tags[]; + private boolean isAllowedToAllDomains; + private String validityPeriod; + + public String getApplicationName() { + return applicationName; + } + + public void setApiApplicationName(String apiApplicationName) { + this.applicationName = apiApplicationName; + } + + public String[] getTags() { + return tags; + } + + public void setTags(String[] tags) { + this.tags = tags; + } + + public boolean isAllowedToAllDomains() { + return isAllowedToAllDomains; + } + + public void setIsAllowedToAllDomains(boolean isAllowedToAllDomains) { + this.isAllowedToAllDomains = isAllowedToAllDomains; + } + + public String getValidityPeriod() { + return validityPeriod; + } + + public void setValidityPeriod(String validityPeriod) { + this.validityPeriod = validityPeriod; + } +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientException.java b/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientException.java new file mode 100644 index 000000000..98f3c460b --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientException.java @@ -0,0 +1,58 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.client.exception; + +/** + * This holds api client exception. + */ +public class APIMClientException extends Exception { + + private static final long serialVersionUID = -3976392476319079281L; + private String responseReason; + private int responseStatus; + private String methodKey; + + APIMClientException(String methodKey, String reason, int status) { + super("Exception occurred while invoking " + methodKey + " status = " + status + " reason = " + reason); + this.methodKey = methodKey; + this.responseReason = reason; + this.responseStatus = status; + } + + APIMClientException(String message) { + super(message); + } + + public APIMClientException(String message, Exception e) { + super(message, e); + } + + public String getResponseReason() { + return responseReason; + } + + public int getResponseStatus() { + return responseStatus; + } + + public String getMethodKey() { + return methodKey; + } + +} \ No newline at end of file diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientOAuthException.java b/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientOAuthException.java new file mode 100644 index 000000000..731fa3c25 --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientOAuthException.java @@ -0,0 +1,58 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.client.exception; + +/** + * This holds api client exception. + */ +public class APIMClientOAuthException extends RuntimeException { + + private static final long serialVersionUID = -3976392476319079281L; + private String responseReason; + private int responseStatus; + private String methodKey; + + APIMClientOAuthException(String methodKey, String reason, int status) { + super("Exception occurred while invoking " + methodKey + " status = " + status + " reason = " + reason); + this.methodKey = methodKey; + this.responseReason = reason; + this.responseStatus = status; + } + + public APIMClientOAuthException(String message) { + super(message); + } + + public APIMClientOAuthException(String message, Exception e) { + super(message, e); + } + + public String getResponseReason() { + return responseReason; + } + + public int getResponseStatus() { + return responseStatus; + } + + public String getMethodKey() { + return methodKey; + } + +} \ No newline at end of file diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/exception/InvalidConfigurationStateException.java b/src/main/java/org/wso2/extension/siddhi/device/client/exception/InvalidConfigurationStateException.java new file mode 100644 index 000000000..2656fd74b --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/exception/InvalidConfigurationStateException.java @@ -0,0 +1,78 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + * + */ + +package org.wso2.extension.siddhi.device.client.exception; + +/** + * This error is thrown when there is an issue with the client. + */ +public class InvalidConfigurationStateException extends RuntimeException { + + private static final long serialVersionUID = -3151279311329070397L; + + private String errorMessage; + private int errorCode; + + public InvalidConfigurationStateException(int errorCode, String message) { + super(message); + this.errorCode = errorCode; + } + + public InvalidConfigurationStateException(int errorCode, String message, Throwable cause) { + super(message, cause); + this.errorCode = errorCode; + } + + public int getErrorCode() { + return errorCode; + } + + + public String getErrorMessage() { + return errorMessage; + } + + public void setErrorMessage(String errorMessage) { + this.errorMessage = errorMessage; + } + + public InvalidConfigurationStateException(String msg, Exception nestedEx) { + super(msg, nestedEx); + setErrorMessage(msg); + } + + public InvalidConfigurationStateException(String message, Throwable cause) { + super(message, cause); + setErrorMessage(message); + } + + public InvalidConfigurationStateException(String msg) { + super(msg); + setErrorMessage(msg); + } + + public InvalidConfigurationStateException() { + super(); + } + + public InvalidConfigurationStateException(Throwable cause) { + super(cause); + } + +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/services/DCRService.java b/src/main/java/org/wso2/extension/siddhi/device/client/services/DCRService.java new file mode 100644 index 000000000..c170f9c5b --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/services/DCRService.java @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.client.services; + +import org.wso2.extension.siddhi.device.client.dto.OAuthApplication; +import org.wso2.extension.siddhi.device.client.dto.RegistrationProfile; + +import javax.ws.rs.Consumes; +import javax.ws.rs.POST; +import javax.ws.rs.Path; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +/** + * DCR Rest resource. + */ +@Path("/") +public interface DCRService { + + // DCR APIs + @POST + @Produces(MediaType.APPLICATION_JSON) + @Consumes(MediaType.APPLICATION_JSON) + OAuthApplication register(RegistrationProfile registrationProfile); + +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/services/OperationService.java b/src/main/java/org/wso2/extension/siddhi/device/client/services/OperationService.java new file mode 100644 index 000000000..9df62e75a --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/client/services/OperationService.java @@ -0,0 +1,43 @@ +/* + * Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. 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. + */ + +package org.wso2.extension.siddhi.device.client.services; + +import org.wso2.carbon.device.mgt.common.operation.mgt.Activity; +import org.wso2.extension.siddhi.device.client.dto.OperationRequest; + +import javax.ws.rs.Consumes; +import javax.ws.rs.POST; +import javax.ws.rs.Path; +import javax.ws.rs.PathParam; +import javax.ws.rs.Produces; +import javax.ws.rs.core.MediaType; + +/** + * Add Operation REST resource. + */ +@Path("/devices") +public interface OperationService { + + @POST + @Path("/{type}/operations") + @Produces(MediaType.APPLICATION_JSON) + @Consumes(MediaType.APPLICATION_JSON) + Activity addOperation(@PathParam("type") String type, OperationRequest operationRequest); + +} diff --git a/src/main/java/org/wso2/extension/siddhi/device/utils/ClientUtils.java b/src/main/java/org/wso2/extension/siddhi/device/utils/ClientUtils.java new file mode 100644 index 000000000..f51d9619a --- /dev/null +++ b/src/main/java/org/wso2/extension/siddhi/device/utils/ClientUtils.java @@ -0,0 +1,223 @@ +/* +* Copyright (c) 2018, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. +* +* WSO2 Inc. 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. +*/ + +package org.wso2.extension.siddhi.device.utils; + +import okhttp3.OkHttpClient; +import org.apache.commons.lang.StringUtils; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.base.ServerConfiguration; + +import javax.net.ssl.*; +import java.io.FileInputStream; +import java.io.IOException; +import java.io.InputStream; +import java.net.*; +import java.security.*; +import java.security.cert.CertificateException; +import java.util.ArrayList; +import java.util.List; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +public class ClientUtils { + + private static final Log log = LogFactory.getLog(ClientUtils.class); + + private static final String KEY_STORE_TYPE = "JKS"; + /** + * Default truststore type of the client + */ + private static final String TRUST_STORE_TYPE = "JKS"; + /** + * Default keymanager type of the client + */ + private static final String KEY_MANAGER_TYPE = "SunX509"; //Default Key Manager Type + /** + * Default trustmanager type of the client + */ + private static final String TRUST_MANAGER_TYPE = "SunX509"; //Default Trust Manager Type + + private static final String SSLV3 = "SSLv3"; + + private static final String DEFAULT_HOST = "localhost"; + + private static final String DEFAULT_HOST_IP = "127.0.0.1"; + + + //This method is only used if the mb features are within DAS. + public static String replaceProperties(String text) { + String regex = "\\$\\{(.*?)\\}"; + Pattern pattern = Pattern.compile(regex); + Matcher matchPattern = pattern.matcher(text); + while (matchPattern.find()) { + String sysPropertyName = matchPattern.group(1); + String sysPropertyValue = System.getProperty(sysPropertyName); + if (sysPropertyValue != null && !sysPropertyName.isEmpty()) { + text = text.replaceAll("\\$\\{(" + sysPropertyName + ")\\}", sysPropertyValue); + } + } + return text; + } + + public static OkHttpClient getSSLClient() { + + boolean isIgnoreHostnameVerification = Boolean.parseBoolean(System.getProperty("org.wso2" + + ".ignoreHostnameVerification")); + OkHttpClient okHttpClient; + final String proxyHost = System.getProperty("http.proxyHost"); + final String proxyPort = System.getProperty("http.proxyPort"); + final String nonProxyHostsValue = System.getProperty("http.nonProxyHosts"); + + final ProxySelector proxySelector = new ProxySelector() { + @Override + public List select(URI uri) { + List proxyList = new ArrayList<>(); + String host = uri.getHost(); + + if (!StringUtils.isEmpty(host)) { + if (host.startsWith(DEFAULT_HOST_IP) || host.startsWith(DEFAULT_HOST) || StringUtils + .isEmpty(nonProxyHostsValue) || StringUtils.contains(nonProxyHostsValue, host) || + StringUtils.isEmpty(proxyHost) || StringUtils.isEmpty(proxyPort)) { + proxyList.add(Proxy.NO_PROXY); + } else { + proxyList.add(new Proxy(Proxy.Type.HTTP, + new InetSocketAddress(proxyHost, Integer.parseInt(proxyPort)))); + } + } else { + log.error("Host is null. Host could not be empty or null"); + } + return proxyList; + } + + @Override + public void connectFailed(URI uri, SocketAddress sa, IOException ioe) { + throw new UnsupportedOperationException("Not supported yet."); + } + }; + + X509TrustManager trustAllCerts = new X509TrustManager() { + public java.security.cert.X509Certificate[] getAcceptedIssuers() { + return new java.security.cert.X509Certificate[0]; + } + public void checkClientTrusted( + java.security.cert.X509Certificate[] certs, String authType) { + } + public void checkServerTrusted( + java.security.cert.X509Certificate[] certs, String authType) { + } + }; + if(isIgnoreHostnameVerification) { + okHttpClient = new OkHttpClient.Builder() + .sslSocketFactory(getSimpleTrustedSSLSocketFactory(), trustAllCerts) + .hostnameVerifier(new HostnameVerifier() { + @Override + public boolean verify(String s, SSLSession sslSession) { + return true; + } + }).proxySelector(proxySelector).build(); + return okHttpClient; + }else { + SSLSocketFactory trustedSSLSocketFactory = getTrustedSSLSocketFactory(); + okHttpClient = new OkHttpClient.Builder().sslSocketFactory(trustedSSLSocketFactory) + .proxySelector(proxySelector).build(); + return okHttpClient; + } + } + + private static SSLSocketFactory getSimpleTrustedSSLSocketFactory() { + try { + TrustManager[] trustAllCerts = new TrustManager[]{ + new X509TrustManager() { + public java.security.cert.X509Certificate[] getAcceptedIssuers() { + return null; + } + public void checkClientTrusted( + java.security.cert.X509Certificate[] certs, String authType) { + } + public void checkServerTrusted( + java.security.cert.X509Certificate[] certs, String authType) { + } + } + }; + SSLContext sc = SSLContext.getInstance("SSL"); + sc.init(null, trustAllCerts, new java.security.SecureRandom()); + return sc.getSocketFactory(); + } catch (KeyManagementException | NoSuchAlgorithmException e) { + return null; + } + + } + + private static SSLSocketFactory getTrustedSSLSocketFactory() { + try { + String keyStorePassword = ServerConfiguration.getInstance().getFirstProperty("Security.KeyStore.Password"); + String keyStoreLocation = ServerConfiguration.getInstance().getFirstProperty("Security.KeyStore.Location"); + String trustStorePassword = ServerConfiguration.getInstance().getFirstProperty( + "Security.TrustStore.Password"); + String trustStoreLocation = ServerConfiguration.getInstance().getFirstProperty( + "Security.TrustStore.Location"); + KeyStore keyStore = loadKeyStore(keyStoreLocation,keyStorePassword,KEY_STORE_TYPE); + KeyStore trustStore = loadTrustStore(trustStoreLocation,trustStorePassword); + + return initSSLConnection(keyStore,keyStorePassword,trustStore); + } catch (KeyManagementException | NoSuchAlgorithmException | KeyStoreException + |CertificateException | IOException | UnrecoverableKeyException e) { + log.error("Error while creating the SSL socket factory due to "+e.getMessage(),e); + return null; + } + + } + + private static SSLSocketFactory initSSLConnection(KeyStore keyStore,String keyStorePassword,KeyStore trustStore) throws NoSuchAlgorithmException, UnrecoverableKeyException, + KeyStoreException, KeyManagementException { + KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance(KEY_MANAGER_TYPE); + keyManagerFactory.init(keyStore, keyStorePassword.toCharArray()); + TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(TRUST_MANAGER_TYPE); + trustManagerFactory.init(trustStore); + + // Create and initialize SSLContext for HTTPS communication + SSLContext sslContext = SSLContext.getInstance(SSLV3); + sslContext.init(keyManagerFactory.getKeyManagers(), trustManagerFactory.getTrustManagers(), null); + SSLContext.setDefault(sslContext); + return sslContext.getSocketFactory(); + } + + + private static KeyStore loadKeyStore(String keyStorePath, String ksPassword,String type) + throws KeyStoreException, IOException, CertificateException, NoSuchAlgorithmException { + InputStream fileInputStream = null; + try { + char[] keypassChar = ksPassword.toCharArray(); + KeyStore keyStore = KeyStore.getInstance(type); + fileInputStream = new FileInputStream(keyStorePath); + keyStore.load(fileInputStream, keypassChar); + return keyStore; + } finally { + if (fileInputStream != null) { + fileInputStream.close(); + } + } + } + + private static KeyStore loadTrustStore(String trustStorePath, String tsPassword) + throws KeyStoreException, IOException, CertificateException, NoSuchAlgorithmException { + return loadKeyStore(trustStorePath,tsPassword,TRUST_STORE_TYPE); + } +} \ No newline at end of file diff --git a/src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java b/src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java index 897e026c6..b7109c8b1 100644 --- a/src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java +++ b/src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java @@ -20,8 +20,10 @@ package org.wso2.extension.siddhi.device.utils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.wso2.carbon.context.PrivilegedCarbonContext; +import org.wso2.carbon.device.mgt.common.notification.mgt.NotificationManagementService; import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService; +import org.wso2.carbon.identity.jwt.client.extension.service.JWTClientManagerService; /** * This class holds utility methods to retrieve data. @@ -31,6 +33,8 @@ public class DeviceUtils { private static Log log = LogFactory.getLog(DeviceUtils.class); private static DeviceManagementProviderService deviceManagementProviderService; private static GroupManagementProviderService groupManagementProviderService; + private static NotificationManagementService notificationManagementService; + private static JWTClientManagerService jwtClientManagerService; private DeviceUtils(){ } @@ -64,4 +68,34 @@ public class DeviceUtils { } return groupManagementProviderService; } + + public static NotificationManagementService getNotificationManagementService() { + if (notificationManagementService != null) { + return notificationManagementService; + } + PrivilegedCarbonContext ctx = PrivilegedCarbonContext.getThreadLocalCarbonContext(); + notificationManagementService = + (NotificationManagementService) ctx.getOSGiService(NotificationManagementService.class, null); + if (notificationManagementService == null) { + String msg = "Notification Management service has not initialized."; + log.error(msg); + throw new IllegalStateException(msg); + } + return notificationManagementService; + } + + public static JWTClientManagerService getJWTClientManagerService() { + if (jwtClientManagerService != null) { + return jwtClientManagerService; + } + PrivilegedCarbonContext ctx = PrivilegedCarbonContext.getThreadLocalCarbonContext(); + jwtClientManagerService = + (JWTClientManagerService) ctx.getOSGiService(JWTClientManagerService.class, null); + if (jwtClientManagerService == null) { + String msg = "JWTClient Manager service has not initialized."; + log.error(msg); + throw new IllegalStateException(msg); + } + return jwtClientManagerService; + } } diff --git a/src/main/resources/device.siddhiext b/src/main/resources/device.siddhiext index 84dd50b95..8b9d47d9f 100644 --- a/src/main/resources/device.siddhiext +++ b/src/main/resources/device.siddhiext @@ -22,3 +22,5 @@ hasDevicesOfUser=org.wso2.extension.siddhi.device.HasDevicesOfUserFunctionExecut getDevicesOfStatus=org.wso2.extension.siddhi.device.GetDevicesOfStatusFunctionExecutor hasDevicesOfStatus=org.wso2.extension.siddhi.device.HasDevicesOfStatusFunctionExecutor isEnrolled=org.wso2.extension.siddhi.device.IsEnrolledFunctionExecutor +addNotification=org.wso2.extension.siddhi.device.AddNotificationFunctionProcessor +addOperation=org.wso2.extension.siddhi.device.AddOperationFunctionProcessor \ No newline at end of file From 75ddcd26bc25ff775fb92581c95c4dc99538105d Mon Sep 17 00:00:00 2001 From: charitha Date: Fri, 10 Aug 2018 15:22:01 +0530 Subject: [PATCH 0964/1075] Add siddhi extensions for operation and notification publishing --- src/main/resources/build.properties | 1 + .../resources/conf/siddhi-integration.xml | 26 +++++++++++++++++++ src/main/resources/p2.inf | 2 ++ 3 files changed, 29 insertions(+) create mode 100644 src/main/resources/build.properties create mode 100644 src/main/resources/conf/siddhi-integration.xml create mode 100644 src/main/resources/p2.inf diff --git a/src/main/resources/build.properties b/src/main/resources/build.properties new file mode 100644 index 000000000..9c86577d7 --- /dev/null +++ b/src/main/resources/build.properties @@ -0,0 +1 @@ +custom = true diff --git a/src/main/resources/conf/siddhi-integration.xml b/src/main/resources/conf/siddhi-integration.xml new file mode 100644 index 000000000..8b762e3e4 --- /dev/null +++ b/src/main/resources/conf/siddhi-integration.xml @@ -0,0 +1,26 @@ + + + + https://${iot.gateway.host}:${iot.gateway.https.port}/api-application-registration/register + https://${iot.gateway.host}:${iot.gateway.https.port} + admin + admin + \ No newline at end of file diff --git a/src/main/resources/p2.inf b/src/main/resources/p2.inf new file mode 100644 index 000000000..d55300665 --- /dev/null +++ b/src/main/resources/p2.inf @@ -0,0 +1,2 @@ +instructions.configure = \ +org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.extension.siddhi.device_${feature.version}/conf/siddhi-integration.xml,target:${installFolder}/../../conf/siddhi-integration.xml,overwrite:true);\ From c29c43444edce4099492d64c3775e5da56b43bab Mon Sep 17 00:00:00 2001 From: charitha Date: Mon, 13 Aug 2018 12:03:47 +0530 Subject: [PATCH 0965/1075] Refactoring --- .../siddhi/device/AddNotificationFunctionProcessor.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java b/src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java index cc48643b8..ec9cfd347 100644 --- a/src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java +++ b/src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java @@ -106,7 +106,10 @@ public class AddNotificationFunctionProcessor extends StreamFunctionProcessor { try { isNotified = notificationManagementService.addNotification(new DeviceIdentifier(deviceId, deviceType), notification); } catch (NotificationManagementException e) { - log.error("Error occurred while adding notification for " + deviceType + " device with id " + deviceId, e); + // We are not throwing this exception to siddhi runtime as it will break the complete siddhi execution + // flow for the event stream coming in. + log.error("Error occurred while adding notification '" + notification.toString() + "' for " + + deviceType + " device with id " + deviceId, e); } return new Object[]{isNotified}; From 4a9eef212c07aad310aa1864ad231dbf8c46ee25 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Aug 2018 08:48:16 +0000 Subject: [PATCH 0966/1075] [maven-release-plugin] prepare release v4.1.7 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 43570e890..c11c71c42 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.7-SNAPSHOT + 4.1.7 ../pom.xml From 5d90618bec8cb3fbed6b48b7173c4985cff2b417 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Aug 2018 08:48:16 +0000 Subject: [PATCH 0967/1075] [maven-release-plugin] prepare release v4.1.7 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ccce924e4..05797f4bd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.7-SNAPSHOT + 4.1.7 ../pom.xml From adc10766fac8668c9f872835a1c570955df58e49 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Aug 2018 08:48:16 +0000 Subject: [PATCH 0968/1075] [maven-release-plugin] prepare release v4.1.7 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6c8c07ef9..795313f78 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.7-SNAPSHOT + 4.1.7 ../pom.xml From 4126f6f6da3ada22603761d191168da744133db9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Aug 2018 08:48:16 +0000 Subject: [PATCH 0969/1075] [maven-release-plugin] prepare release v4.1.7 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d0c161ec2..70f698cc7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.7-SNAPSHOT + 4.1.7 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.7-SNAPSHOT + 4.1.7 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 20e924ee11220d6df64da66d9ee1e7738606c8d9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Aug 2018 08:48:27 +0000 Subject: [PATCH 0970/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c11c71c42..2ccb2a558 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.7 + 4.1.8-SNAPSHOT ../pom.xml From 3a2ee27e950eff5c748d2c90e29d8a45c95e8f18 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Aug 2018 08:48:27 +0000 Subject: [PATCH 0971/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 05797f4bd..e3329478f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.7 + 4.1.8-SNAPSHOT ../pom.xml From 1dc949891c80c64341c72d6160a05cfd5f25bc43 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Aug 2018 08:48:27 +0000 Subject: [PATCH 0972/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 795313f78..c4e079c2e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.7 + 4.1.8-SNAPSHOT ../pom.xml From c0dd8d3ad38fca5918e39075367b168fa0f1867f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 13 Aug 2018 08:48:27 +0000 Subject: [PATCH 0973/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 70f698cc7..3df275ffc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.7 + 4.1.8-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.7 + 4.1.8-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 50b7090e658295332ba778a6b25733745733d8c5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Aug 2018 15:06:51 +0000 Subject: [PATCH 0974/1075] [maven-release-plugin] prepare release v4.1.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2ccb2a558..23a524a54 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.8-SNAPSHOT + 4.1.8 ../pom.xml From 784bf121dd2a28aee9452c2ec33899664d1bef53 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Aug 2018 15:06:51 +0000 Subject: [PATCH 0975/1075] [maven-release-plugin] prepare release v4.1.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e3329478f..e664d2b9f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.8-SNAPSHOT + 4.1.8 ../pom.xml From 8d286ac899099b83911ca44ceb65c7c27a4b410c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Aug 2018 15:06:51 +0000 Subject: [PATCH 0976/1075] [maven-release-plugin] prepare release v4.1.8 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c4e079c2e..5fafa1eec 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.8-SNAPSHOT + 4.1.8 ../pom.xml From 7a22f703453d2975901be82f96113c0f246ca5d0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Aug 2018 15:06:51 +0000 Subject: [PATCH 0977/1075] [maven-release-plugin] prepare release v4.1.8 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3df275ffc..9d3dad6fe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.8-SNAPSHOT + 4.1.8 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.8-SNAPSHOT + 4.1.8 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 129bdd60a92ebae0671794dcd2960d3e7b94eeba Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Aug 2018 15:07:02 +0000 Subject: [PATCH 0978/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 23a524a54..2f5550a18 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.8 + 4.1.9-SNAPSHOT ../pom.xml From 4ebe0195403b64270ad76abb1b1c6da1c6b4755b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Aug 2018 15:07:02 +0000 Subject: [PATCH 0979/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e664d2b9f..7d8e91d94 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.8 + 4.1.9-SNAPSHOT ../pom.xml From 49f37b472b872be91e9df767deb504df5dee10e4 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Aug 2018 15:07:02 +0000 Subject: [PATCH 0980/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5fafa1eec..29287fd82 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.8 + 4.1.9-SNAPSHOT ../pom.xml From a02c22642700f4c882ed9a422569f54a559960f6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 22 Aug 2018 15:07:02 +0000 Subject: [PATCH 0981/1075] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 9d3dad6fe..39cbedb38 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.8 + 4.1.9-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.8 + 4.1.9-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f306c8d57352850b73c43776d903478cd7b09a90 Mon Sep 17 00:00:00 2001 From: Madhawa Perera Date: Tue, 18 Sep 2018 14:23:04 +0530 Subject: [PATCH 0982/1075] version bump from 4.1.9 to 4.1.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2f5550a18..e31018ead 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.9-SNAPSHOT + 4.1.11-SNAPSHOT ../pom.xml From c54da827d8e52f2c2d303f9161a29d78b8e471ce Mon Sep 17 00:00:00 2001 From: Madhawa Perera Date: Tue, 18 Sep 2018 14:23:04 +0530 Subject: [PATCH 0983/1075] version bump from 4.1.9 to 4.1.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7d8e91d94..57586656a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.9-SNAPSHOT + 4.1.11-SNAPSHOT ../pom.xml From b2764717d546ed728eb953ab7bc0a25cf5bde0cf Mon Sep 17 00:00:00 2001 From: Madhawa Perera Date: Tue, 18 Sep 2018 14:23:04 +0530 Subject: [PATCH 0984/1075] version bump from 4.1.9 to 4.1.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 29287fd82..34cd7bfe3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.9-SNAPSHOT + 4.1.11-SNAPSHOT ../pom.xml From 582c8df9cc3c098002a1095363a1daf105bcd84b Mon Sep 17 00:00:00 2001 From: Madhawa Perera Date: Tue, 18 Sep 2018 14:23:04 +0530 Subject: [PATCH 0985/1075] version bump from 4.1.9 to 4.1.11 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 39cbedb38..86e427dbf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.9-SNAPSHOT + 4.1.11-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.9-SNAPSHOT + 4.1.11-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e8f8cb003fcdb0d3c9d8b047180416c127e58f7e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Sep 2018 09:24:03 +0000 Subject: [PATCH 0986/1075] [WSO2 Release] [Jenkins #3178] [Release 4.1.11] prepare release v4.1.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e31018ead..89d4eed84 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.11-SNAPSHOT + 4.1.11 ../pom.xml From 44a8a46c628da2ffb259aa087127b2a8ed556bac Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Sep 2018 09:24:03 +0000 Subject: [PATCH 0987/1075] [WSO2 Release] [Jenkins #3178] [Release 4.1.11] prepare release v4.1.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 57586656a..c0c662597 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.11-SNAPSHOT + 4.1.11 ../pom.xml From d0fc3093ea4677451265e278d217a11bb6110fff Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Sep 2018 09:24:03 +0000 Subject: [PATCH 0988/1075] [WSO2 Release] [Jenkins #3178] [Release 4.1.11] prepare release v4.1.11 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 34cd7bfe3..ba0f90166 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.11-SNAPSHOT + 4.1.11 ../pom.xml From f6e8be4030c33190c0e1b19e1a19551a8bfea14b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Sep 2018 09:24:03 +0000 Subject: [PATCH 0989/1075] [WSO2 Release] [Jenkins #3178] [Release 4.1.11] prepare release v4.1.11 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 86e427dbf..5f39bb6c8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.11-SNAPSHOT + 4.1.11 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.11-SNAPSHOT + 4.1.11 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d8d3f19b375ff7e94fd461b4af8f00071ded254e Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Sep 2018 09:24:16 +0000 Subject: [PATCH 0990/1075] [WSO2 Release] [Jenkins #3178] [Release 4.1.11] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 89d4eed84..8049d02d9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.11 + 4.1.12-SNAPSHOT ../pom.xml From 3f87c682fe32344233d666e21f8a093e59dd2ae1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Sep 2018 09:24:16 +0000 Subject: [PATCH 0991/1075] [WSO2 Release] [Jenkins #3178] [Release 4.1.11] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c0c662597..f5fbdc815 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.11 + 4.1.12-SNAPSHOT ../pom.xml From 3e29bc7ba122aee358e6507db9f5bf9d5819f329 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Sep 2018 09:24:16 +0000 Subject: [PATCH 0992/1075] [WSO2 Release] [Jenkins #3178] [Release 4.1.11] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ba0f90166..7c5bd5db1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.11 + 4.1.12-SNAPSHOT ../pom.xml From 98f211137b7c5a113e25813760788a8d477536b0 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 18 Sep 2018 09:24:16 +0000 Subject: [PATCH 0993/1075] [WSO2 Release] [Jenkins #3178] [Release 4.1.11] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5f39bb6c8..47953bcb7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.11 + 4.1.12-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.11 + 4.1.12-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 0323cc5bb2443d33973ec197159654d03e529de6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 Oct 2018 05:27:27 +0000 Subject: [PATCH 0994/1075] [WSO2 Release] [Jenkins #3180] [Release 4.1.12] prepare release v4.1.12 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8049d02d9..b06514a96 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.12-SNAPSHOT + 4.1.12 ../pom.xml From 00c10ade4bb95aeb288bf6468f7e12a821c119dc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 Oct 2018 05:27:27 +0000 Subject: [PATCH 0995/1075] [WSO2 Release] [Jenkins #3180] [Release 4.1.12] prepare release v4.1.12 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f5fbdc815..36872c078 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.12-SNAPSHOT + 4.1.12 ../pom.xml From 198895e9af1a54c51ae036bece4d5e6f3f2993cf Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 Oct 2018 05:27:27 +0000 Subject: [PATCH 0996/1075] [WSO2 Release] [Jenkins #3180] [Release 4.1.12] prepare release v4.1.12 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7c5bd5db1..254739d22 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.12-SNAPSHOT + 4.1.12 ../pom.xml From 0791b61602d83627153381da4c5c6d67a84ee9c5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 Oct 2018 05:27:27 +0000 Subject: [PATCH 0997/1075] [WSO2 Release] [Jenkins #3180] [Release 4.1.12] prepare release v4.1.12 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 47953bcb7..095f5e508 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.12-SNAPSHOT + 4.1.12 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.12-SNAPSHOT + 4.1.12 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 5a86f8c31d3daae81b059cf80ffb58233fe78517 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 Oct 2018 05:27:38 +0000 Subject: [PATCH 0998/1075] [WSO2 Release] [Jenkins #3180] [Release 4.1.12] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b06514a96..a09eabe85 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.12 + 4.1.13-SNAPSHOT ../pom.xml From cf83eb6df04fdd95b838d0c9ded468462bd3cef6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 Oct 2018 05:27:38 +0000 Subject: [PATCH 0999/1075] [WSO2 Release] [Jenkins #3180] [Release 4.1.12] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 36872c078..812bff3c8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.12 + 4.1.13-SNAPSHOT ../pom.xml From 36af24952830bfc9d103755efc297fd7c8f92334 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 Oct 2018 05:27:38 +0000 Subject: [PATCH 1000/1075] [WSO2 Release] [Jenkins #3180] [Release 4.1.12] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 254739d22..226e52569 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.12 + 4.1.13-SNAPSHOT ../pom.xml From a1fec7507bc0998994c6f04dc94563f387634cc2 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Mon, 8 Oct 2018 05:27:38 +0000 Subject: [PATCH 1001/1075] [WSO2 Release] [Jenkins #3180] [Release 4.1.12] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 095f5e508..f568d41b8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.12 + 4.1.13-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.12 + 4.1.13-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f46e8ee96600ece7668cec84d70a464fd16d04e6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Oct 2018 13:04:41 +0000 Subject: [PATCH 1002/1075] [WSO2 Release] [Jenkins #3182] [Release 4.1.13] prepare release v4.1.13 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a09eabe85..fc369c1da 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.13-SNAPSHOT + 4.1.13 ../pom.xml From c67e228e791b6e9ff3164b7fdeac1cef2b17e29f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Oct 2018 13:04:41 +0000 Subject: [PATCH 1003/1075] [WSO2 Release] [Jenkins #3182] [Release 4.1.13] prepare release v4.1.13 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 812bff3c8..bd24a706d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.13-SNAPSHOT + 4.1.13 ../pom.xml From 49623f7e3debe425345ca6faa562dac77accad15 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Oct 2018 13:04:41 +0000 Subject: [PATCH 1004/1075] [WSO2 Release] [Jenkins #3182] [Release 4.1.13] prepare release v4.1.13 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 226e52569..0b5966bdb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.13-SNAPSHOT + 4.1.13 ../pom.xml From fa3e873c43ba51cb5477fcac4355324d58d982c9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Oct 2018 13:04:41 +0000 Subject: [PATCH 1005/1075] [WSO2 Release] [Jenkins #3182] [Release 4.1.13] prepare release v4.1.13 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f568d41b8..eb01730db 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.13-SNAPSHOT + 4.1.13 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.13-SNAPSHOT + 4.1.13 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From d2d9e932cdca158cce55bdb49b9a57b1b848c899 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Oct 2018 13:04:53 +0000 Subject: [PATCH 1006/1075] [WSO2 Release] [Jenkins #3182] [Release 4.1.13] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fc369c1da..a72a704c5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.13 + 4.1.14-SNAPSHOT ../pom.xml From e5d94b8abf04dff7a817412601e493461ec5ac4f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Oct 2018 13:04:53 +0000 Subject: [PATCH 1007/1075] [WSO2 Release] [Jenkins #3182] [Release 4.1.13] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd24a706d..b1781b473 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.13 + 4.1.14-SNAPSHOT ../pom.xml From 6d4cd467ea6b5fea38e05b33b0306cdd310ba7b7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Oct 2018 13:04:53 +0000 Subject: [PATCH 1008/1075] [WSO2 Release] [Jenkins #3182] [Release 4.1.13] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0b5966bdb..6ab08abe8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.13 + 4.1.14-SNAPSHOT ../pom.xml From 6fa1e6869d746ac674736520dfdbe6136232a689 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 10 Oct 2018 13:04:53 +0000 Subject: [PATCH 1009/1075] [WSO2 Release] [Jenkins #3182] [Release 4.1.13] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index eb01730db..c06631975 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.13 + 4.1.14-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.13 + 4.1.14-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 45adbcb7ccbf76eb7eee8964bfe6a5fefbe3b6b5 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Oct 2018 17:58:14 +0000 Subject: [PATCH 1010/1075] [WSO2 Release] [Jenkins #3184] [Release 4.1.14] prepare release v4.1.14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a72a704c5..6cc5ecfbe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.14-SNAPSHOT + 4.1.14 ../pom.xml From 9baffb2df8d66e36e935bef261127908a267e83f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Oct 2018 17:58:14 +0000 Subject: [PATCH 1011/1075] [WSO2 Release] [Jenkins #3184] [Release 4.1.14] prepare release v4.1.14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b1781b473..6fec82652 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.14-SNAPSHOT + 4.1.14 ../pom.xml From 442899ac1b3a180a8c0255dd9e6ca3387575a081 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Oct 2018 17:58:14 +0000 Subject: [PATCH 1012/1075] [WSO2 Release] [Jenkins #3184] [Release 4.1.14] prepare release v4.1.14 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6ab08abe8..968c53130 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.14-SNAPSHOT + 4.1.14 ../pom.xml From 85f6dfb446ee72c28a0997de4d36663b879cae07 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Oct 2018 17:58:14 +0000 Subject: [PATCH 1013/1075] [WSO2 Release] [Jenkins #3184] [Release 4.1.14] prepare release v4.1.14 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c06631975..96c82f0ee 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.14-SNAPSHOT + 4.1.14 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.14-SNAPSHOT + 4.1.14 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From eec22d5c96d62be0cef10f9fd7cd05db2eefad97 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Oct 2018 17:58:26 +0000 Subject: [PATCH 1014/1075] [WSO2 Release] [Jenkins #3184] [Release 4.1.14] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6cc5ecfbe..81e2938d5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.14 + 4.1.15-SNAPSHOT ../pom.xml From ac3ccc010a39e48707c2dd92724718b9ba20a6fe Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Oct 2018 17:58:26 +0000 Subject: [PATCH 1015/1075] [WSO2 Release] [Jenkins #3184] [Release 4.1.14] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6fec82652..176df2307 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.14 + 4.1.15-SNAPSHOT ../pom.xml From 80996a69dcc68e68f81a927c0cfdc15cd13e19f6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Oct 2018 17:58:26 +0000 Subject: [PATCH 1016/1075] [WSO2 Release] [Jenkins #3184] [Release 4.1.14] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 968c53130..77889e0be 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.14 + 4.1.15-SNAPSHOT ../pom.xml From 7ff6629943b91ab57a68943e1d24cabeec151e09 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Fri, 19 Oct 2018 17:58:26 +0000 Subject: [PATCH 1017/1075] [WSO2 Release] [Jenkins #3184] [Release 4.1.14] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 96c82f0ee..55b54ed85 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.14 + 4.1.15-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.14 + 4.1.15-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 65604d8616f18fe54a42f8ff4b6b12ef3526cbd9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Oct 2018 06:40:17 +0000 Subject: [PATCH 1018/1075] [WSO2 Release] [Jenkins #3186] [Release 4.1.15] prepare release v4.1.15 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 81e2938d5..5b2308844 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.15-SNAPSHOT + 4.1.15 ../pom.xml From 830a9515f9d300602c326a4ebcc4fa46548b4a62 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Oct 2018 06:40:17 +0000 Subject: [PATCH 1019/1075] [WSO2 Release] [Jenkins #3186] [Release 4.1.15] prepare release v4.1.15 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 176df2307..4cd8f7a03 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.15-SNAPSHOT + 4.1.15 ../pom.xml From 537206714d580243f7b18aa3b0563e016f6c09c8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Oct 2018 06:40:17 +0000 Subject: [PATCH 1020/1075] [WSO2 Release] [Jenkins #3186] [Release 4.1.15] prepare release v4.1.15 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 77889e0be..4213a791f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.15-SNAPSHOT + 4.1.15 ../pom.xml From 12fb750b5902a9751c7987bc74dde2d2cc257201 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Oct 2018 06:40:17 +0000 Subject: [PATCH 1021/1075] [WSO2 Release] [Jenkins #3186] [Release 4.1.15] prepare release v4.1.15 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 55b54ed85..a4311bfea 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.15-SNAPSHOT + 4.1.15 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.15-SNAPSHOT + 4.1.15 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 5a866d808a59e9be93406568bae7d6902ca94df1 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Oct 2018 06:40:28 +0000 Subject: [PATCH 1022/1075] [WSO2 Release] [Jenkins #3186] [Release 4.1.15] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5b2308844..5b98d24da 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.15 + 4.1.16-SNAPSHOT ../pom.xml From a19fffd17fb848eb9e46b3fcc97bb13bcbb9cb24 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Oct 2018 06:40:28 +0000 Subject: [PATCH 1023/1075] [WSO2 Release] [Jenkins #3186] [Release 4.1.15] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4cd8f7a03..4b5c5e615 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.15 + 4.1.16-SNAPSHOT ../pom.xml From 8550b0b874ca6d1d91b46b305b3e47d8efe4927c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Oct 2018 06:40:28 +0000 Subject: [PATCH 1024/1075] [WSO2 Release] [Jenkins #3186] [Release 4.1.15] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4213a791f..7cdb99846 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.15 + 4.1.16-SNAPSHOT ../pom.xml From 15a633ac1a95f59a34e6205c26e5b955b6927b20 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Tue, 23 Oct 2018 06:40:28 +0000 Subject: [PATCH 1025/1075] [WSO2 Release] [Jenkins #3186] [Release 4.1.15] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a4311bfea..d8bb9cba1 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.15 + 4.1.16-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.15 + 4.1.16-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 2f04aa1a258eb04f14fdc799f5174b9d316107e9 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 05:47:15 +0000 Subject: [PATCH 1026/1075] [WSO2 Release] [Jenkins #3190] [Release 4.1.16] prepare release v4.1.16 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5b98d24da..e0bb363ac 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.16-SNAPSHOT + 4.1.16 ../pom.xml From d01d31befbd651621542822df9fcc441921b5917 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 05:47:15 +0000 Subject: [PATCH 1027/1075] [WSO2 Release] [Jenkins #3190] [Release 4.1.16] prepare release v4.1.16 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4b5c5e615..f2354b139 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.16-SNAPSHOT + 4.1.16 ../pom.xml From 618a9f0ef4a20f3745b20208c9db4b3c9e8d5912 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 05:47:15 +0000 Subject: [PATCH 1028/1075] [WSO2 Release] [Jenkins #3190] [Release 4.1.16] prepare release v4.1.16 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7cdb99846..56f35885b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.16-SNAPSHOT + 4.1.16 ../pom.xml From d0663ce34dfad4d5836bef80b7f410f9241257fe Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 05:47:15 +0000 Subject: [PATCH 1029/1075] [WSO2 Release] [Jenkins #3190] [Release 4.1.16] prepare release v4.1.16 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index d8bb9cba1..1e8e86170 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.16-SNAPSHOT + 4.1.16 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.16-SNAPSHOT + 4.1.16 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From a8ac883ec0d0f77998858b4ef0bd76bfe226c9bb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 05:47:27 +0000 Subject: [PATCH 1030/1075] [WSO2 Release] [Jenkins #3190] [Release 4.1.16] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e0bb363ac..76bbfb41e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.16 + 4.1.17-SNAPSHOT ../pom.xml From e0aa11025c7a3b61230de3d39dd6b099b0f31c3a Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 05:47:27 +0000 Subject: [PATCH 1031/1075] [WSO2 Release] [Jenkins #3190] [Release 4.1.16] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f2354b139..9b7d738b4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.16 + 4.1.17-SNAPSHOT ../pom.xml From c18151984c3df168506610b3c434bd194f944a41 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 05:47:27 +0000 Subject: [PATCH 1032/1075] [WSO2 Release] [Jenkins #3190] [Release 4.1.16] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 56f35885b..0954103ee 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.16 + 4.1.17-SNAPSHOT ../pom.xml From b9ab80fe737e35c6006eba8297156739de748558 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 05:47:27 +0000 Subject: [PATCH 1033/1075] [WSO2 Release] [Jenkins #3190] [Release 4.1.16] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 1e8e86170..411cb7ef0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.16 + 4.1.17-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.16 + 4.1.17-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 32d6270ca2d50396585528b140dcdc40248f86b6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 16:30:51 +0000 Subject: [PATCH 1034/1075] [WSO2 Release] [Jenkins #3192] [Release 4.1.17] prepare release v4.1.17 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 76bbfb41e..7e6a6a76a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.17-SNAPSHOT + 4.1.17 ../pom.xml From 58a0e75e355b115d1b910b41a33e21e023aafe2f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 16:30:51 +0000 Subject: [PATCH 1035/1075] [WSO2 Release] [Jenkins #3192] [Release 4.1.17] prepare release v4.1.17 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9b7d738b4..77f087802 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.17-SNAPSHOT + 4.1.17 ../pom.xml From 6925f06e15bf17598728b40eba3177c574b19abc Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 16:30:51 +0000 Subject: [PATCH 1036/1075] [WSO2 Release] [Jenkins #3192] [Release 4.1.17] prepare release v4.1.17 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0954103ee..568859fbf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.17-SNAPSHOT + 4.1.17 ../pom.xml From 70f3af1fcf2dce413e9c8d15dfe2b5878ccf38a3 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 16:30:51 +0000 Subject: [PATCH 1037/1075] [WSO2 Release] [Jenkins #3192] [Release 4.1.17] prepare release v4.1.17 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 411cb7ef0..99e8f2545 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.17-SNAPSHOT + 4.1.17 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.17-SNAPSHOT + 4.1.17 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9f8f6ec7a66d58475e74644c3656f57b61071d2b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 16:31:03 +0000 Subject: [PATCH 1038/1075] [WSO2 Release] [Jenkins #3192] [Release 4.1.17] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7e6a6a76a..f2c8acbee 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.17 + 4.1.18-SNAPSHOT ../pom.xml From 10f3c3881f1c8ecea106c4e5d5cebb09ae9ed604 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 16:31:03 +0000 Subject: [PATCH 1039/1075] [WSO2 Release] [Jenkins #3192] [Release 4.1.17] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 77f087802..4ef9e73ea 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.17 + 4.1.18-SNAPSHOT ../pom.xml From 8dac3930fbe3b5c0297ae7fd882e9f8bf1a97708 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 16:31:03 +0000 Subject: [PATCH 1040/1075] [WSO2 Release] [Jenkins #3192] [Release 4.1.17] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 568859fbf..ab849649f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.17 + 4.1.18-SNAPSHOT ../pom.xml From 1660bea91dd3f29fe5270411195cd43146c8e3b6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 16:31:03 +0000 Subject: [PATCH 1041/1075] [WSO2 Release] [Jenkins #3192] [Release 4.1.17] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 99e8f2545..c76dd7d31 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.17 + 4.1.18-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.17 + 4.1.18-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 40b8f62739e804c33e36d82a85e4efa99158aaf8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 19:46:29 +0000 Subject: [PATCH 1042/1075] [WSO2 Release] [Jenkins #3194] [Release 4.1.18] prepare release v4.1.18 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f2c8acbee..cb2d2d5ad 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.18-SNAPSHOT + 4.1.18 ../pom.xml From d97db3765e033b3272358c181483217f9d0447dd Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 19:46:29 +0000 Subject: [PATCH 1043/1075] [WSO2 Release] [Jenkins #3194] [Release 4.1.18] prepare release v4.1.18 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4ef9e73ea..c4c21807a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.18-SNAPSHOT + 4.1.18 ../pom.xml From 335fea450749d2428705baf2e20bb1919fd3215f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 19:46:29 +0000 Subject: [PATCH 1044/1075] [WSO2 Release] [Jenkins #3194] [Release 4.1.18] prepare release v4.1.18 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ab849649f..f0f9dfd6b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.18-SNAPSHOT + 4.1.18 ../pom.xml From 158b8601182897835453f16fe9bf026864678805 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 19:46:29 +0000 Subject: [PATCH 1045/1075] [WSO2 Release] [Jenkins #3194] [Release 4.1.18] prepare release v4.1.18 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index c76dd7d31..5c37ee1a9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.18-SNAPSHOT + 4.1.18 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.18-SNAPSHOT + 4.1.18 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From f134794bc9c976980f34c4b0a7775bd099677152 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 19:46:42 +0000 Subject: [PATCH 1046/1075] [WSO2 Release] [Jenkins #3194] [Release 4.1.18] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cb2d2d5ad..a0e02290d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.18 + 4.1.19-SNAPSHOT ../pom.xml From 8e80199872cdb72de70149de405aba646005e2ab Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 19:46:42 +0000 Subject: [PATCH 1047/1075] [WSO2 Release] [Jenkins #3194] [Release 4.1.18] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c4c21807a..56955aede 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.18 + 4.1.19-SNAPSHOT ../pom.xml From 4359a499317ac2cc325bb379c5ce0427a2d2853d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 19:46:42 +0000 Subject: [PATCH 1048/1075] [WSO2 Release] [Jenkins #3194] [Release 4.1.18] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f0f9dfd6b..804bd426d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.18 + 4.1.19-SNAPSHOT ../pom.xml From 6af667c17501aabad55d7135ae57c7a559908872 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 24 Oct 2018 19:46:42 +0000 Subject: [PATCH 1049/1075] [WSO2 Release] [Jenkins #3194] [Release 4.1.18] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5c37ee1a9..4919dc996 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.18 + 4.1.19-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.18 + 4.1.19-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 58802f5e9f50cb15ca14d56455d24c4dcb01973d Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 25 Oct 2018 09:10:34 +0000 Subject: [PATCH 1050/1075] [WSO2 Release] [Jenkins #3196] [Release 4.1.19] prepare release v4.1.19 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a0e02290d..c3bcb97a9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.19-SNAPSHOT + 4.1.19 ../pom.xml From 51024a8df27231ad81acd94fb8d576a1cf475c81 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 25 Oct 2018 09:10:34 +0000 Subject: [PATCH 1051/1075] [WSO2 Release] [Jenkins #3196] [Release 4.1.19] prepare release v4.1.19 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 56955aede..7b8918751 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.19-SNAPSHOT + 4.1.19 ../pom.xml From bd3eccd4d8c90b68caa10458ab8dd7d1a14aa27f Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 25 Oct 2018 09:10:34 +0000 Subject: [PATCH 1052/1075] [WSO2 Release] [Jenkins #3196] [Release 4.1.19] prepare release v4.1.19 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 804bd426d..520934ccd 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.19-SNAPSHOT + 4.1.19 ../pom.xml From 0d4c4fb0a8adab750c5e5440edf1702de23a3b3b Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 25 Oct 2018 09:10:34 +0000 Subject: [PATCH 1053/1075] [WSO2 Release] [Jenkins #3196] [Release 4.1.19] prepare release v4.1.19 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4919dc996..4338c79d6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.19-SNAPSHOT + 4.1.19 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.19-SNAPSHOT + 4.1.19 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 9f2cc275f0a19808b11c072b8f4bdb0117aa11a8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 25 Oct 2018 09:10:46 +0000 Subject: [PATCH 1054/1075] [WSO2 Release] [Jenkins #3196] [Release 4.1.19] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c3bcb97a9..b4859284c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.19 + 4.1.20-SNAPSHOT ../pom.xml From da28677aa93931735a3a49b6f026f2733cbba492 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 25 Oct 2018 09:10:46 +0000 Subject: [PATCH 1055/1075] [WSO2 Release] [Jenkins #3196] [Release 4.1.19] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7b8918751..8c74dac8d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.19 + 4.1.20-SNAPSHOT ../pom.xml From b2f492ba1a535af0858900de4d96096bbc0bcb62 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 25 Oct 2018 09:10:46 +0000 Subject: [PATCH 1056/1075] [WSO2 Release] [Jenkins #3196] [Release 4.1.19] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 520934ccd..4eb10e814 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.19 + 4.1.20-SNAPSHOT ../pom.xml From 6c2e08309dbf3d772753187e76f4cf6a2273caac Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Thu, 25 Oct 2018 09:10:46 +0000 Subject: [PATCH 1057/1075] [WSO2 Release] [Jenkins #3196] [Release 4.1.19] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 4338c79d6..f11a2ea53 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.19 + 4.1.20-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.19 + 4.1.20-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From c4d091367d605b6029891bb6506b3c767bc6ddf7 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 31 Oct 2018 06:09:58 +0000 Subject: [PATCH 1058/1075] [WSO2 Release] [Jenkins #3198] [Release 4.1.20] prepare release v4.1.20 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b4859284c..bd208d71b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.20-SNAPSHOT + 4.1.20 ../pom.xml From e195eb776c5c6be41c3b05dec622ec2f78e6f05c Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 31 Oct 2018 06:09:58 +0000 Subject: [PATCH 1059/1075] [WSO2 Release] [Jenkins #3198] [Release 4.1.20] prepare release v4.1.20 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8c74dac8d..22f5dad99 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.20-SNAPSHOT + 4.1.20 ../pom.xml From fc987e61eed02447c53c2476ed0783da342c6bfb Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 31 Oct 2018 06:09:58 +0000 Subject: [PATCH 1060/1075] [WSO2 Release] [Jenkins #3198] [Release 4.1.20] prepare release v4.1.20 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4eb10e814..4fe95ffdb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.20-SNAPSHOT + 4.1.20 ../pom.xml From 18b69085ee019fc45831685008eb0ee605816d62 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 31 Oct 2018 06:09:58 +0000 Subject: [PATCH 1061/1075] [WSO2 Release] [Jenkins #3198] [Release 4.1.20] prepare release v4.1.20 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index f11a2ea53..6005d6c15 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.20-SNAPSHOT + 4.1.20 ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.20-SNAPSHOT + 4.1.20 WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From e54a740a0825088781ec5b988ca6a2ff1364fa25 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 31 Oct 2018 06:10:10 +0000 Subject: [PATCH 1062/1075] [WSO2 Release] [Jenkins #3198] [Release 4.1.20] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index bd208d71b..b00e212b5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.20 + 4.1.21-SNAPSHOT ../pom.xml From 90bd853fa503c1fe95dc1d8a9edf88cd59e0eff8 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 31 Oct 2018 06:10:10 +0000 Subject: [PATCH 1063/1075] [WSO2 Release] [Jenkins #3198] [Release 4.1.20] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 22f5dad99..fea934676 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.20 + 4.1.21-SNAPSHOT ../pom.xml From 38757df21a3059499d6b481238a6eb9def7d7fe6 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 31 Oct 2018 06:10:10 +0000 Subject: [PATCH 1064/1075] [WSO2 Release] [Jenkins #3198] [Release 4.1.20] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4fe95ffdb..d9e16d967 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.20 + 4.1.21-SNAPSHOT ../pom.xml From 820f2b5bf69e0729ad23d32f86f75b6f9d8dd495 Mon Sep 17 00:00:00 2001 From: WSO2 Builder Date: Wed, 31 Oct 2018 06:10:10 +0000 Subject: [PATCH 1065/1075] [WSO2 Release] [Jenkins #3198] [Release 4.1.20] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6005d6c15..27aeb2fb5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,13 +20,13 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.20 + 4.1.21-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.20 + 4.1.21-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. From 66755d951c083b9c0de99099b2c7a0e221ebd6ce Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Thu, 16 Feb 2023 10:26:30 +0530 Subject: [PATCH 1066/1075] siddi device extension --- .../siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml | 0 .../extension/siddhi/device/AddNotificationFunctionProcessor.java | 0 .../extension/siddhi/device/AddOperationFunctionProcessor.java | 0 .../siddhi/device/GetDevicesOfStatusFunctionExecutor.java | 0 .../extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java | 0 .../siddhi/device/HasDevicesOfStatusFunctionExecutor.java | 0 .../extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java | 0 .../wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java | 0 .../wso2/extension/siddhi/device/IsInGroupFunctionExecutor.java | 0 .../extension/siddhi/device/client/OAuthRequestInterceptor.java | 0 .../siddhi/device/client/configs/SiddhiExtensionConfig.java | 0 .../siddhi/device/client/configs/SiddhiExtensionConfigReader.java | 0 .../wso2/extension/siddhi/device/client/dto/OAuthApplication.java | 0 .../wso2/extension/siddhi/device/client/dto/OperationRequest.java | 0 .../extension/siddhi/device/client/dto/RegistrationProfile.java | 0 .../siddhi/device/client/exception/APIMClientException.java | 0 .../siddhi/device/client/exception/APIMClientOAuthException.java | 0 .../client/exception/InvalidConfigurationStateException.java | 0 .../wso2/extension/siddhi/device/client/services/DCRService.java | 0 .../extension/siddhi/device/client/services/OperationService.java | 0 .../java/org/wso2/extension/siddhi/device/utils/ClientUtils.java | 0 .../java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java | 0 .../src}/main/resources/device.siddhiext | 0 .../wso2/extension/siddhi/device/BaseDeviceManagementTest.java | 0 .../java/org/wso2/extension/siddhi/device/ExtensionTestCase.java | 0 .../wso2/extension/siddhi/device/test/util/DataSourceConfig.java | 0 .../wso2/extension/siddhi/device/test/util/SiddhiTestHelper.java | 0 .../wso2/extension/siddhi/device/test/util/TestDataHolder.java | 0 .../siddhi/device/test/util/TestDeviceManagementService.java | 0 .../wso2/extension/siddhi/device/test/util/TestDeviceManager.java | 0 .../org/wso2/extension/siddhi/device/test/util/TestUtils.java | 0 .../src}/test/resources/carbon-home/dbscripts/h2.sql | 0 .../test/resources/carbon-home/repository/conf/axis2/axis2.xml | 0 .../resources/carbon-home/repository/conf/axis2/axis2_client.xml | 0 .../resources/carbon-home/repository/conf/axis2/tenant-axis2.xml | 0 .../src}/test/resources/carbon-home/repository/conf/carbon.xml | 0 .../test/resources/carbon-home/repository/conf/cdm-config.xml | 0 .../repository/conf/datasources/master-datasources.xml | 0 .../carbon-home/repository/conf/etc/bundle-config/README.txt | 0 .../repository/conf/etc/carboncontext-osgi-services.properties | 0 .../carbon-home/repository/conf/etc/config-validation.xml | 0 .../src}/test/resources/carbon-home/repository/conf/etc/jmx.xml | 0 .../test/resources/carbon-home/repository/conf/etc/launch.ini | 0 .../carbon-home/repository/conf/etc/logging-bridge.properties | 0 .../test/resources/carbon-home/repository/conf/etc/mime.mappings | 0 .../test/resources/carbon-home/repository/conf/etc/mime.types | 0 .../resources/carbon-home/repository/conf/etc/osgi-debug.options | 0 .../test/resources/carbon-home/repository/conf/log4j.properties | 0 .../src}/test/resources/carbon-home/repository/conf/registry.xml | 0 .../carbon-home/repository/conf/security/authenticators.xml | 0 .../repository/conf/tomcat/carbon/META-INF/context.xml | 0 .../carbon-home/repository/conf/tomcat/carbon/WEB-INF/web.xml | 0 .../carbon-home/repository/conf/tomcat/catalina-server.xml | 0 .../resources/carbon-home/repository/conf/tomcat/tomcat-users.xml | 0 .../test/resources/carbon-home/repository/conf/tomcat/web.xml | 0 .../src}/test/resources/carbon-home/repository/conf/user-mgt.xml | 0 .../src}/test/resources/config/datasource/data-source-config.xml | 0 .../src}/test/resources/log4j.properties | 0 .../src}/test/resources/sql/h2.sql | 0 .../src}/test/resources/testng.xml | 0 .../src}/test/resources/user-test/user-mgt-registry-test.xml | 0 61 files changed, 0 insertions(+), 0 deletions(-) rename pom.xml => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/AddOperationFunctionProcessor.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/IsInGroupFunctionExecutor.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/OAuthRequestInterceptor.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfig.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfigReader.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/dto/OAuthApplication.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/dto/OperationRequest.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/dto/RegistrationProfile.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientException.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientOAuthException.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/exception/InvalidConfigurationStateException.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/services/DCRService.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/client/services/OperationService.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/utils/ClientUtils.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/main/resources/device.siddhiext (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/java/org/wso2/extension/siddhi/device/test/util/DataSourceConfig.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/java/org/wso2/extension/siddhi/device/test/util/SiddhiTestHelper.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/dbscripts/h2.sql (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/axis2/axis2.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/axis2/axis2_client.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/axis2/tenant-axis2.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/carbon.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/cdm-config.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/datasources/master-datasources.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/etc/bundle-config/README.txt (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/etc/carboncontext-osgi-services.properties (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/etc/config-validation.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/etc/jmx.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/etc/launch.ini (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/etc/logging-bridge.properties (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/etc/mime.mappings (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/etc/mime.types (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/etc/osgi-debug.options (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/log4j.properties (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/registry.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/security/authenticators.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/tomcat/carbon/META-INF/context.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/tomcat/carbon/WEB-INF/web.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/tomcat/catalina-server.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/tomcat/tomcat-users.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/tomcat/web.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/carbon-home/repository/conf/user-mgt.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/config/datasource/data-source-config.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/log4j.properties (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/sql/h2.sql (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/testng.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src}/test/resources/user-test/user-mgt-registry-test.xml (100%) diff --git a/pom.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml similarity index 100% rename from pom.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml diff --git a/src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/AddNotificationFunctionProcessor.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/AddOperationFunctionProcessor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/AddOperationFunctionProcessor.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/AddOperationFunctionProcessor.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/AddOperationFunctionProcessor.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/IsInGroupFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/IsInGroupFunctionExecutor.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/IsInGroupFunctionExecutor.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/IsInGroupFunctionExecutor.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/OAuthRequestInterceptor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/OAuthRequestInterceptor.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/OAuthRequestInterceptor.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/OAuthRequestInterceptor.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfig.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfig.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfig.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfig.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfigReader.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfigReader.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfigReader.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/configs/SiddhiExtensionConfigReader.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/dto/OAuthApplication.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/dto/OAuthApplication.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/dto/OAuthApplication.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/dto/OAuthApplication.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/dto/OperationRequest.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/dto/OperationRequest.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/dto/OperationRequest.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/dto/OperationRequest.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/dto/RegistrationProfile.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/dto/RegistrationProfile.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/dto/RegistrationProfile.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/dto/RegistrationProfile.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientException.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientException.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientException.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientException.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientOAuthException.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientOAuthException.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientOAuthException.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/exception/APIMClientOAuthException.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/exception/InvalidConfigurationStateException.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/exception/InvalidConfigurationStateException.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/exception/InvalidConfigurationStateException.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/exception/InvalidConfigurationStateException.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/services/DCRService.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/services/DCRService.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/services/DCRService.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/services/DCRService.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/client/services/OperationService.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/services/OperationService.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/client/services/OperationService.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/client/services/OperationService.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/utils/ClientUtils.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/utils/ClientUtils.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/utils/ClientUtils.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/utils/ClientUtils.java diff --git a/src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/utils/DeviceUtils.java diff --git a/src/main/resources/device.siddhiext b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/resources/device.siddhiext similarity index 100% rename from src/main/resources/device.siddhiext rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/resources/device.siddhiext diff --git a/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java diff --git a/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/DataSourceConfig.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/DataSourceConfig.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/device/test/util/DataSourceConfig.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/DataSourceConfig.java diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/SiddhiTestHelper.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/SiddhiTestHelper.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/device/test/util/SiddhiTestHelper.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/SiddhiTestHelper.java diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDataHolder.java diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java diff --git a/src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestUtils.java diff --git a/src/test/resources/carbon-home/dbscripts/h2.sql b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/dbscripts/h2.sql similarity index 100% rename from src/test/resources/carbon-home/dbscripts/h2.sql rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/dbscripts/h2.sql diff --git a/src/test/resources/carbon-home/repository/conf/axis2/axis2.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/axis2/axis2.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/axis2/axis2.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/axis2/axis2.xml diff --git a/src/test/resources/carbon-home/repository/conf/axis2/axis2_client.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/axis2/axis2_client.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/axis2/axis2_client.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/axis2/axis2_client.xml diff --git a/src/test/resources/carbon-home/repository/conf/axis2/tenant-axis2.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/axis2/tenant-axis2.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/axis2/tenant-axis2.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/axis2/tenant-axis2.xml diff --git a/src/test/resources/carbon-home/repository/conf/carbon.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/carbon.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/carbon.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/carbon.xml diff --git a/src/test/resources/carbon-home/repository/conf/cdm-config.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/cdm-config.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/cdm-config.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/cdm-config.xml diff --git a/src/test/resources/carbon-home/repository/conf/datasources/master-datasources.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/datasources/master-datasources.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/datasources/master-datasources.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/datasources/master-datasources.xml diff --git a/src/test/resources/carbon-home/repository/conf/etc/bundle-config/README.txt b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/bundle-config/README.txt similarity index 100% rename from src/test/resources/carbon-home/repository/conf/etc/bundle-config/README.txt rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/bundle-config/README.txt diff --git a/src/test/resources/carbon-home/repository/conf/etc/carboncontext-osgi-services.properties b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/carboncontext-osgi-services.properties similarity index 100% rename from src/test/resources/carbon-home/repository/conf/etc/carboncontext-osgi-services.properties rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/carboncontext-osgi-services.properties diff --git a/src/test/resources/carbon-home/repository/conf/etc/config-validation.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/config-validation.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/etc/config-validation.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/config-validation.xml diff --git a/src/test/resources/carbon-home/repository/conf/etc/jmx.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/jmx.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/etc/jmx.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/jmx.xml diff --git a/src/test/resources/carbon-home/repository/conf/etc/launch.ini b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/launch.ini similarity index 100% rename from src/test/resources/carbon-home/repository/conf/etc/launch.ini rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/launch.ini diff --git a/src/test/resources/carbon-home/repository/conf/etc/logging-bridge.properties b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/logging-bridge.properties similarity index 100% rename from src/test/resources/carbon-home/repository/conf/etc/logging-bridge.properties rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/logging-bridge.properties diff --git a/src/test/resources/carbon-home/repository/conf/etc/mime.mappings b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/mime.mappings similarity index 100% rename from src/test/resources/carbon-home/repository/conf/etc/mime.mappings rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/mime.mappings diff --git a/src/test/resources/carbon-home/repository/conf/etc/mime.types b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/mime.types similarity index 100% rename from src/test/resources/carbon-home/repository/conf/etc/mime.types rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/mime.types diff --git a/src/test/resources/carbon-home/repository/conf/etc/osgi-debug.options b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/osgi-debug.options similarity index 100% rename from src/test/resources/carbon-home/repository/conf/etc/osgi-debug.options rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/etc/osgi-debug.options diff --git a/src/test/resources/carbon-home/repository/conf/log4j.properties b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/log4j.properties similarity index 100% rename from src/test/resources/carbon-home/repository/conf/log4j.properties rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/log4j.properties diff --git a/src/test/resources/carbon-home/repository/conf/registry.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/registry.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/registry.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/registry.xml diff --git a/src/test/resources/carbon-home/repository/conf/security/authenticators.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/security/authenticators.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/security/authenticators.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/security/authenticators.xml diff --git a/src/test/resources/carbon-home/repository/conf/tomcat/carbon/META-INF/context.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/tomcat/carbon/META-INF/context.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/tomcat/carbon/META-INF/context.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/tomcat/carbon/META-INF/context.xml diff --git a/src/test/resources/carbon-home/repository/conf/tomcat/carbon/WEB-INF/web.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/tomcat/carbon/WEB-INF/web.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/tomcat/carbon/WEB-INF/web.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/tomcat/carbon/WEB-INF/web.xml diff --git a/src/test/resources/carbon-home/repository/conf/tomcat/catalina-server.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/tomcat/catalina-server.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/tomcat/catalina-server.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/tomcat/catalina-server.xml diff --git a/src/test/resources/carbon-home/repository/conf/tomcat/tomcat-users.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/tomcat/tomcat-users.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/tomcat/tomcat-users.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/tomcat/tomcat-users.xml diff --git a/src/test/resources/carbon-home/repository/conf/tomcat/web.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/tomcat/web.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/tomcat/web.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/tomcat/web.xml diff --git a/src/test/resources/carbon-home/repository/conf/user-mgt.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/user-mgt.xml similarity index 100% rename from src/test/resources/carbon-home/repository/conf/user-mgt.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/user-mgt.xml diff --git a/src/test/resources/config/datasource/data-source-config.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/config/datasource/data-source-config.xml similarity index 100% rename from src/test/resources/config/datasource/data-source-config.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/config/datasource/data-source-config.xml diff --git a/src/test/resources/log4j.properties b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/log4j.properties similarity index 100% rename from src/test/resources/log4j.properties rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/log4j.properties diff --git a/src/test/resources/sql/h2.sql b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/sql/h2.sql similarity index 100% rename from src/test/resources/sql/h2.sql rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/sql/h2.sql diff --git a/src/test/resources/testng.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/testng.xml similarity index 100% rename from src/test/resources/testng.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/testng.xml diff --git a/src/test/resources/user-test/user-mgt-registry-test.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/user-test/user-mgt-registry-test.xml similarity index 100% rename from src/test/resources/user-test/user-mgt-registry-test.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/user-test/user-mgt-registry-test.xml From 500c48dd8f58bbb11a8c3f21980a2b31551c659f Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Thu, 16 Feb 2023 10:41:19 +0530 Subject: [PATCH 1067/1075] siddi execution component --- .../org.wso2.extension.siddhi.execution.json/pom.xml | 0 .../siddhi/execution/json/GetArrayFunctionExtension.java | 0 .../siddhi/execution/json/GetPropertyFunctionExtension.java | 0 .../src}/main/resources/json.siddhiext | 0 .../wso2/extension/siddhi/execution/json/ExtensionTestCase.java | 0 .../siddhi/execution/json/test/util/SiddhiTestHelper.java | 0 .../src}/test/resources/log4j.properties | 0 .../src}/test/resources/testng.xml | 0 8 files changed, 0 insertions(+), 0 deletions(-) rename pom.xml => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/main/resources/json.siddhiext (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/test/resources/log4j.properties (100%) rename {src => components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src}/test/resources/testng.xml (100%) diff --git a/pom.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml similarity index 100% rename from pom.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/java/org/wso2/extension/siddhi/execution/json/GetArrayFunctionExtension.java diff --git a/src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java similarity index 100% rename from src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/java/org/wso2/extension/siddhi/execution/json/GetPropertyFunctionExtension.java diff --git a/src/main/resources/json.siddhiext b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/resources/json.siddhiext similarity index 100% rename from src/main/resources/json.siddhiext rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/main/resources/json.siddhiext diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/java/org/wso2/extension/siddhi/execution/json/ExtensionTestCase.java diff --git a/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java similarity index 100% rename from src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/java/org/wso2/extension/siddhi/execution/json/test/util/SiddhiTestHelper.java diff --git a/src/test/resources/log4j.properties b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/resources/log4j.properties similarity index 100% rename from src/test/resources/log4j.properties rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/resources/log4j.properties diff --git a/src/test/resources/testng.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/resources/testng.xml similarity index 100% rename from src/test/resources/testng.xml rename to components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/src/test/resources/testng.xml From d2297853ea3b5ea31655220a7565d74f6bd2f9f7 Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Thu, 16 Feb 2023 13:41:30 +0530 Subject: [PATCH 1068/1075] fixed siddhi-extension component poms and build failures --- components/extensions/pom.xml | 1 + .../org.wso2.extension.siddhi.device/pom.xml | 6 +- .../GetDevicesOfStatusFunctionExecutor.java | 2 +- .../GetDevicesOfUserFunctionExecutor.java | 2 +- .../HasDevicesOfStatusFunctionExecutor.java | 2 +- .../HasDevicesOfUserFunctionExecutor.java | 2 +- .../device/IsEnrolledFunctionExecutor.java | 2 +- .../pom.xml | 2 +- .../extensions/siddhi-extensions/pom.xml | 59 +++++++++++++++++++ pom.xml | 9 +-- 10 files changed, 74 insertions(+), 13 deletions(-) create mode 100644 components/extensions/siddhi-extensions/pom.xml diff --git a/components/extensions/pom.xml b/components/extensions/pom.xml index f49a267a8..1538e5b95 100644 --- a/components/extensions/pom.xml +++ b/components/extensions/pom.xml @@ -36,6 +36,7 @@ cdmf-transport-adapters pull-notification-listeners + siddhi-extensions diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml index b00e212b5..b628ac59d 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.21-SNAPSHOT + 6.0.11-SNAPSHOT ../pom.xml @@ -92,8 +92,8 @@ jsr311-api - com.h2database.wso2 - h2-database-engine + org.wso2.orbit.com.h2database + h2 test diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java index 032021890..9407c37ce 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfStatusFunctionExecutor.java @@ -22,7 +22,7 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.json.JSONArray; import org.wso2.carbon.device.mgt.common.Device; -import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException; import org.wso2.carbon.device.mgt.common.EnrolmentInfo; import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; import org.wso2.extension.siddhi.device.utils.DeviceUtils; diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java index 27a82530e..82c278b25 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/GetDevicesOfUserFunctionExecutor.java @@ -22,7 +22,7 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.json.JSONArray; import org.wso2.carbon.device.mgt.common.Device; -import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException; import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; import org.wso2.extension.siddhi.device.utils.DeviceUtils; import org.wso2.siddhi.core.config.ExecutionPlanContext; diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java index 944394a1b..5f62c99a4 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfStatusFunctionExecutor.java @@ -21,7 +21,7 @@ package org.wso2.extension.siddhi.device; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.wso2.carbon.device.mgt.common.Device; -import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException; import org.wso2.carbon.device.mgt.common.EnrolmentInfo; import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; import org.wso2.extension.siddhi.device.utils.DeviceUtils; diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java index ffb72c7f6..1f5d6f664 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/HasDevicesOfUserFunctionExecutor.java @@ -22,7 +22,7 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.json.JSONArray; import org.wso2.carbon.device.mgt.common.Device; -import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException; import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; import org.wso2.extension.siddhi.device.utils.DeviceUtils; import org.wso2.siddhi.core.config.ExecutionPlanContext; diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java index f1893e33a..f57db2435 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/main/java/org/wso2/extension/siddhi/device/IsEnrolledFunctionExecutor.java @@ -21,7 +21,7 @@ package org.wso2.extension.siddhi.device; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.wso2.carbon.device.mgt.common.DeviceIdentifier; -import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException; import org.wso2.carbon.device.mgt.common.group.mgt.GroupManagementException; import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService; diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml index fea934676..f93434567 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 4.1.21-SNAPSHOT + 6.0.11-SNAPSHOT ../pom.xml diff --git a/components/extensions/siddhi-extensions/pom.xml b/components/extensions/siddhi-extensions/pom.xml new file mode 100644 index 000000000..72bd0f3c1 --- /dev/null +++ b/components/extensions/siddhi-extensions/pom.xml @@ -0,0 +1,59 @@ + + + + + + + org.wso2.carbon.devicemgt-plugins + extensions + 6.0.11-SNAPSHOT + ../pom.xml + + + 4.0.0 + siddhi-extensions + pom + WSO2 Carbon - Siddhi Extension + http://wso2.org + + + org.wso2.extension.siddhi.device + org.wso2.extension.siddhi.execution.json + + + + + + + org.apache.felix + maven-scr-plugin + 1.7.2 + + + generate-scr-scrdescriptor + + scr + + + + + + + + diff --git a/pom.xml b/pom.xml index ba4038ba4..f84972a58 100644 --- a/pom.xml +++ b/pom.xml @@ -535,9 +535,9 @@ - com.h2database.wso2 - h2-database-engine - ${orbit.h2.engine.version} + org.wso2.orbit.com.h2database + h2 + ${orbit.h2.version} org.apache.tomcat.wso2 @@ -1161,6 +1161,7 @@ 3.9.1.v20140110-1610 + 1.4.199.wso2v1 1.2.140.wso2v3 7.0.85.wso2v1 7.0.34.wso2v2 @@ -1287,7 +1288,7 @@ 9.3.1 [1.1.0, 2.0.0) 1.7 - 3.1.2 + 3.2.6 1.7.2 true From f25f36e4ebd803c5e359f75703c7ed8baae4be30 Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Thu, 16 Feb 2023 16:55:37 +0530 Subject: [PATCH 1069/1075] added feature for siddhi device --- .../org.wso2.extension.siddhi.device.feature/pom.xml | 0 .../src}/main/resources/build.properties | 0 .../src}/main/resources/conf/siddhi-integration.xml | 0 .../src}/main/resources/p2.inf | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename pom.xml => features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml (100%) rename {src => features/extensions-feature/org.wso2.extension.siddhi.device.feature/src}/main/resources/build.properties (100%) rename {src => features/extensions-feature/org.wso2.extension.siddhi.device.feature/src}/main/resources/conf/siddhi-integration.xml (100%) rename {src => features/extensions-feature/org.wso2.extension.siddhi.device.feature/src}/main/resources/p2.inf (100%) diff --git a/pom.xml b/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml similarity index 100% rename from pom.xml rename to features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml diff --git a/src/main/resources/build.properties b/features/extensions-feature/org.wso2.extension.siddhi.device.feature/src/main/resources/build.properties similarity index 100% rename from src/main/resources/build.properties rename to features/extensions-feature/org.wso2.extension.siddhi.device.feature/src/main/resources/build.properties diff --git a/src/main/resources/conf/siddhi-integration.xml b/features/extensions-feature/org.wso2.extension.siddhi.device.feature/src/main/resources/conf/siddhi-integration.xml similarity index 100% rename from src/main/resources/conf/siddhi-integration.xml rename to features/extensions-feature/org.wso2.extension.siddhi.device.feature/src/main/resources/conf/siddhi-integration.xml diff --git a/src/main/resources/p2.inf b/features/extensions-feature/org.wso2.extension.siddhi.device.feature/src/main/resources/p2.inf similarity index 100% rename from src/main/resources/p2.inf rename to features/extensions-feature/org.wso2.extension.siddhi.device.feature/src/main/resources/p2.inf From 19b17f2d145fd848ce5fd277bf287da4e606011b Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Thu, 16 Feb 2023 17:02:01 +0530 Subject: [PATCH 1070/1075] addded siddhi extension feature --- .../org.wso2.extension.siddhi.execution.json.feature/pom.xml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pom.xml => features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml (100%) diff --git a/pom.xml b/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml similarity index 100% rename from pom.xml rename to features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml From 608ebab422de6690ccbeeedc9e1c65687f82ce61 Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Thu, 16 Feb 2023 18:42:27 +0530 Subject: [PATCH 1071/1075] fix build failures --- .../org.wso2.carbon.device.mgt.mobile.android.api/pom.xml | 4 ++-- .../org.wso2.carbon.device.mgt.mobile.android/pom.xml | 4 ++-- .../org.wso2.extension.siddhi.device.feature/pom.xml | 2 +- .../org.wso2.extension.siddhi.execution.json.feature/pom.xml | 2 +- features/extensions-feature/pom.xml | 2 ++ .../org.wso2.carbon.device.mgt.mobile.android.feature/pom.xml | 4 ++-- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.api/pom.xml b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.api/pom.xml index b147ca4a1..6c14e7692 100644 --- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.api/pom.xml +++ b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android.api/pom.xml @@ -309,8 +309,8 @@ test - com.h2database.wso2 - h2-database-engine + org.wso2.orbit.com.h2database + h2 test diff --git a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android/pom.xml b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android/pom.xml index d5aa80a87..631ffa5ee 100644 --- a/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android/pom.xml +++ b/components/mobile-plugins/android-plugin/org.wso2.carbon.device.mgt.mobile.android/pom.xml @@ -172,8 +172,8 @@ jdbc-pool - com.h2database.wso2 - h2-database-engine + org.wso2.orbit.com.h2database + h2 test diff --git a/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml b/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml index d9e16d967..fef2732ab 100644 --- a/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml +++ b/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.21-SNAPSHOT + 6.0.11-SNAPSHOT ../pom.xml diff --git a/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml b/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml index 27aeb2fb5..df4df6582 100644 --- a/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml +++ b/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 4.1.21-SNAPSHOT + 6.0.11-SNAPSHOT ../pom.xml diff --git a/features/extensions-feature/pom.xml b/features/extensions-feature/pom.xml index 8edaf7a47..01766c6e2 100644 --- a/features/extensions-feature/pom.xml +++ b/features/extensions-feature/pom.xml @@ -37,6 +37,8 @@ org.wso2.carbon.device.mgt.notification.listener.feature + org.wso2.extension.siddhi.device.feature + org.wso2.extension.siddhi.execution.json.feature diff --git a/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/pom.xml b/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/pom.xml index 8b2b4c9c8..81f98336d 100644 --- a/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/pom.xml +++ b/features/mobile-plugins-feature/android-plugin-feature/org.wso2.carbon.device.mgt.mobile.android.feature/pom.xml @@ -41,8 +41,8 @@ org.wso2.carbon.device.mgt.mobile.android - com.h2database.wso2 - h2-database-engine + org.wso2.orbit.com.h2database + h2 org.wso2.carbon.devicemgt From 8f7e08b5efa2bdcd715f506eaf3fbcdde65fc720 Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Thu, 16 Feb 2023 18:53:40 +0530 Subject: [PATCH 1072/1075] fixed test compilation issues --- .../device/BaseDeviceManagementTest.java | 2 +- .../siddhi/device/ExtensionTestCase.java | 10 +++--- .../util/TestDeviceManagementService.java | 32 +++++++++++++++---- .../device/test/util/TestDeviceManager.java | 11 +++---- 4 files changed, 36 insertions(+), 19 deletions(-) diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java index ce6130c06..76b80c7ac 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java @@ -26,7 +26,7 @@ import org.testng.annotations.BeforeSuite; import org.w3c.dom.Document; import org.wso2.carbon.base.MultitenantConstants; import org.wso2.carbon.context.PrivilegedCarbonContext; -import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException; import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.core.dao.GroupManagementDAOFactory; import org.wso2.carbon.device.mgt.core.notification.mgt.dao.NotificationManagementDAOFactory; diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java index 607fcb537..403d0f436 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/ExtensionTestCase.java @@ -24,8 +24,8 @@ import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import org.wso2.carbon.device.mgt.common.Device; import org.wso2.carbon.device.mgt.common.DeviceIdentifier; -import org.wso2.carbon.device.mgt.common.DeviceManagementException; -import org.wso2.carbon.device.mgt.common.DeviceNotFoundException; +import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.exceptions.DeviceNotFoundException; import org.wso2.carbon.device.mgt.common.group.mgt.DeviceGroup; import org.wso2.carbon.device.mgt.common.group.mgt.GroupAlreadyExistException; import org.wso2.carbon.device.mgt.common.group.mgt.GroupManagementException; @@ -151,7 +151,7 @@ public class ExtensionTestCase extends BaseDeviceManagementTest { DeviceConfigurationManager.getInstance().getDeviceManagementConfig().setDeviceCacheConfiguration(configuration); List list = TestDataHolder.getDeviceIdentifiersList(DEVICE_TYPE); - DeviceGroup deviceGroup = groupManagementProviderService.getGroup(TestDataHolder.generateDummyGroupData(1).getName()); + DeviceGroup deviceGroup = groupManagementProviderService.getGroup(TestDataHolder.generateDummyGroupData(1).getName(), true); Assert.assertNotNull(deviceGroup); groupManagementProviderService.addDevices(deviceGroup.getGroupId(), list); } @@ -199,9 +199,9 @@ public class ExtensionTestCase extends BaseDeviceManagementTest { executionPlanRuntime.start(); DeviceIdentifier deviceIdentifier = TestDataHolder.getDeviceIdentifiersList(DEVICE_TYPE).get(0); inputHandler.send(new Object[]{groupManagementProviderService.getGroup( - TestDataHolder.generateDummyGroupData(1).getName()).getGroupId(), deviceIdentifier.getId(), deviceIdentifier.getType()}); + TestDataHolder.generateDummyGroupData(1).getName(), true).getGroupId(), deviceIdentifier.getId(), deviceIdentifier.getType()}); inputHandler.send(new Object[]{groupManagementProviderService.getGroup( - TestDataHolder.generateDummyGroupData(2).getName()).getGroupId(), deviceIdentifier.getId(), deviceIdentifier.getType()}); + TestDataHolder.generateDummyGroupData(2).getName(), true).getGroupId(), deviceIdentifier.getId(), deviceIdentifier.getType()}); SiddhiTestHelper.waitForEvents(100, 1, count, 10000); Assert.assertTrue(eventArrived); Assert.assertEquals(1, count.get()); diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java index 504f1b252..f90075775 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManagementService.java @@ -17,19 +17,17 @@ */ package org.wso2.extension.siddhi.device.test.util; -import org.wso2.carbon.device.mgt.common.DeviceManagementException; -import org.wso2.carbon.device.mgt.common.DeviceManager; -import org.wso2.carbon.device.mgt.common.DeviceStatusTaskPluginConfig; -import org.wso2.carbon.device.mgt.common.InitialOperationConfig; -import org.wso2.carbon.device.mgt.common.MonitoringOperation; -import org.wso2.carbon.device.mgt.common.OperationMonitoringTaskConfig; -import org.wso2.carbon.device.mgt.common.ProvisioningConfig; +import org.wso2.carbon.device.mgt.common.*; +import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException; import org.wso2.carbon.device.mgt.common.app.mgt.ApplicationManager; import org.wso2.carbon.device.mgt.common.general.GeneralConfig; +import org.wso2.carbon.device.mgt.common.invitation.mgt.DeviceEnrollmentInvitationDetails; +import org.wso2.carbon.device.mgt.common.license.mgt.License; import org.wso2.carbon.device.mgt.common.policy.mgt.PolicyMonitoringManager; import org.wso2.carbon.device.mgt.common.pull.notification.PullNotificationSubscriber; import org.wso2.carbon.device.mgt.common.push.notification.PushNotificationConfig; import org.wso2.carbon.device.mgt.common.spi.DeviceManagementService; +import org.wso2.carbon.device.mgt.common.type.mgt.DeviceTypePlatformDetails; import java.util.ArrayList; import java.util.List; @@ -114,4 +112,24 @@ public class TestDeviceManagementService implements DeviceManagementService { public GeneralConfig getGeneralConfig() { return null; } + + @java.lang.Override + public StartupOperationConfig getStartupOperationConfig() { + return null; + } + + @java.lang.Override + public DeviceTypePlatformDetails getDeviceTypePlatformDetails() { + return null; + } + + @java.lang.Override + public DeviceEnrollmentInvitationDetails getDeviceEnrollmentInvitationDetails() { + return null; + } + + @java.lang.Override + public License getLicenseConfig() { + return null; + } } diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java index 78197c0ce..fdf4c9e1b 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/test/util/TestDeviceManager.java @@ -17,7 +17,7 @@ package org.wso2.extension.siddhi.device.test.util; import org.wso2.carbon.device.mgt.common.Device; import org.wso2.carbon.device.mgt.common.DeviceIdentifier; -import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException; import org.wso2.carbon.device.mgt.common.DeviceManager; import org.wso2.carbon.device.mgt.common.EnrolmentInfo; import org.wso2.carbon.device.mgt.common.FeatureManager; @@ -105,11 +105,6 @@ public class TestDeviceManager implements DeviceManager { return false; } - @Override - public boolean isClaimable(DeviceIdentifier deviceId) throws DeviceManagementException { - return false; - } - @Override public boolean setStatus(DeviceIdentifier deviceId, String currentOwner, EnrolmentInfo.Status status) throws DeviceManagementException { @@ -131,4 +126,8 @@ public class TestDeviceManager implements DeviceManager { return false; } + @java.lang.Override + public void deleteDevices(java.util.List list) throws DeviceManagementException { + + } } From ff9cbfc814e8f90fd3ef9652c0816edc0e48a210 Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Thu, 16 Mar 2023 12:51:24 +0530 Subject: [PATCH 1073/1075] fixed build failure of siddi extensions --- .../org.wso2.extension.siddhi.device/pom.xml | 6 +- .../device/BaseDeviceManagementTest.java | 5 +- .../carbon-home/repository/conf/carbon.xml | 120 +++--- .../carbon-home/repository/conf/registry.xml | 58 +-- .../src/test/resources/sql/h2.sql | 364 +++++++++++++++--- .../user-test/user-mgt-registry-test.xml | 101 ++--- .../pom.xml | 2 +- .../extensions/siddhi-extensions/pom.xml | 2 +- .../pom.xml | 2 +- .../pom.xml | 3 +- pom.xml | 3 - 11 files changed, 418 insertions(+), 248 deletions(-) diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml index b628ac59d..cabeab7ae 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 6.0.11-SNAPSHOT + 6.0.12-SNAPSHOT ../pom.xml @@ -30,6 +30,10 @@ WSO2 Siddhi Execution Extension - Device management Core functionality as Siddhi extension http://wso2.org + + true + + org.wso2.carbon.devicemgt diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java index 76b80c7ac..8adabf3fb 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/java/org/wso2/extension/siddhi/device/BaseDeviceManagementTest.java @@ -18,8 +18,6 @@ */ package org.wso2.extension.siddhi.device; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; import org.apache.tomcat.jdbc.pool.PoolProperties; import org.testng.annotations.BeforeClass; import org.testng.annotations.BeforeSuite; @@ -29,6 +27,7 @@ import org.wso2.carbon.context.PrivilegedCarbonContext; import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException; import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory; import org.wso2.carbon.device.mgt.core.dao.GroupManagementDAOFactory; +import org.wso2.carbon.device.mgt.core.metadata.mgt.dao.MetadataManagementDAOFactory; import org.wso2.carbon.device.mgt.core.notification.mgt.dao.NotificationManagementDAOFactory; import org.wso2.carbon.device.mgt.core.operation.mgt.dao.OperationManagementDAOFactory; import org.wso2.carbon.device.mgt.core.util.DeviceManagerUtil; @@ -46,7 +45,6 @@ import java.sql.Statement; public abstract class BaseDeviceManagementTest { private DataSource dataSource; - private static final Log log = LogFactory.getLog(BaseDeviceManagementTest.class); @BeforeSuite public void setupDataSource() throws Exception { @@ -61,6 +59,7 @@ public abstract class BaseDeviceManagementTest { GroupManagementDAOFactory.init(dataSource); OperationManagementDAOFactory.init(dataSource); NotificationManagementDAOFactory.init(dataSource); + MetadataManagementDAOFactory.init(dataSource); } @BeforeClass diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/carbon.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/carbon.xml index f24ee57be..b52017981 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/carbon.xml +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/carbon.xml @@ -61,10 +61,10 @@ - + 8000 - - - - - 10500 + + + + + 10500 @@ -316,10 +316,10 @@ ${carbon.home}/repository/conf/axis2/axis2_client.xml true - - + + @@ -338,11 +338,11 @@ Default User Role - + - + --> + - - - - - - - - + + + + + + + + @@ -419,14 +419,14 @@ --> UserManager - - false + + false - - + + - + - default repository - ${p2.repo.url} + default repository + ${p2.repo.url} - - - - - true - - - - - - - true - + true + + + + + + true + diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/registry.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/registry.xml index c16502090..a226ae80a 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/registry.xml +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.device/src/test/resources/carbon-home/repository/conf/registry.xml @@ -1,7 +1,7 @@ - - - - - - - - false - - + + true - admin - - admin - admin - - everyone + admin + + admin + admin + + everyone false 500 - jdbc:h2:target/databasetest/CARBON_TEST - org.h2.Driver - 50 - 60000 - 5 + jdbc:h2:./target/databasetest/CARBON_TEST + org.h2.Driver + 50 + 60000 + 5 - - [\S]{5,30}$ - [\\S]{5,30} - SELECT * FROM UM_USER WHERE UM_USER_NAME=? AND UM_TENANT_ID=? - - - - - - - - - - - - - - - + + org.wso2.carbon.user.core.tenant.JDBCTenantManager + false + 100 + false + default SHA-256 true + true + true false - false - wso2.com - true + ^[\S]{5,30}$ + Password length should be between 5 to 30 characters + + ^[\S]{5,30}$ + [a-zA-Z0-9._-|//]{3,30}$ + ^[\S]{3,30}$ + ^[^~!#$;%^*+={}\\|\\\\<>,\'\"]{3,30}$ + ^[\S]{3,30}$ + true + 100 100 - - - INSERT INTO UM_ROLE (UM_ROLE_NAME, UM_TENANT_ID) VALUES (?, ?) - - - - - - - - - - - - - - - - - org.wso2.carbon.user.core.tenant.JDBCTenantManager - + false + false + true + , + true + + class="org.wso2.carbon.user.core.authorization.JDBCAuthorizationManager"> true - + login @@ -98,4 +78,3 @@ delegate-identity - diff --git a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml index f93434567..fbd5972e4 100644 --- a/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml +++ b/components/extensions/siddhi-extensions/org.wso2.extension.siddhi.execution.json/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins siddhi-extensions - 6.0.11-SNAPSHOT + 6.0.12-SNAPSHOT ../pom.xml diff --git a/components/extensions/siddhi-extensions/pom.xml b/components/extensions/siddhi-extensions/pom.xml index 72bd0f3c1..de53d1aa8 100644 --- a/components/extensions/siddhi-extensions/pom.xml +++ b/components/extensions/siddhi-extensions/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.devicemgt-plugins extensions - 6.0.11-SNAPSHOT + 6.0.12-SNAPSHOT ../pom.xml diff --git a/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml b/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml index fef2732ab..851f05f36 100644 --- a/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml +++ b/features/extensions-feature/org.wso2.extension.siddhi.device.feature/pom.xml @@ -20,7 +20,7 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 6.0.11-SNAPSHOT + 6.0.12-SNAPSHOT ../pom.xml diff --git a/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml b/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml index df4df6582..2066a5e0b 100644 --- a/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml +++ b/features/extensions-feature/org.wso2.extension.siddhi.execution.json.feature/pom.xml @@ -20,13 +20,12 @@ org.wso2.carbon.devicemgt-plugins extensions-feature - 6.0.11-SNAPSHOT + 6.0.12-SNAPSHOT ../pom.xml org.wso2.extension.siddhi.execution.json.feature pom - 4.1.21-SNAPSHOT WSO2 Siddhi Execution Extension - Json Feature http://wso2.org This feature contains Siddhi extension feature for changing a json string to individual properties. diff --git a/pom.xml b/pom.xml index 7dca82458..42a805d48 100644 --- a/pom.xml +++ b/pom.xml @@ -37,12 +37,9 @@ components/extensions components/mobile-plugins - - features/mobile-plugins-feature - features/extensions-feature From 0d090eb084a4cc382071e271e66e69b6fac2b43d Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Thu, 16 Mar 2023 13:42:02 +0530 Subject: [PATCH 1074/1075] moved device analytics artifacts to feature --- .../build.xml | 39 ------- .../pom.xml | 75 ------------- .../src/assembly/src.xml | 36 ------ .../artifact.xml | 21 ---- .../artifact.xml | 23 ---- .../artifact.xml | 22 ---- .../carbonapps/device_analytics/artifacts.xml | 36 ------ .../artifact.xml | 21 ---- .../artifact.xml | 22 ---- .../org.wso2.iot.operation_1.0.0/artifact.xml | 21 ---- components/analytics/iot-analytics/pom.xml | 5 +- components/analytics/pom.xml | 2 +- .../pom.xml | 106 +++++++++--------- .../WSO2IoT-DeviceInfo-Receiver_1.0.0.xml | 0 ...O2IoT-OperationResponse-Receiver_1.0.0.xml | 0 .../org.wso2.iot.DeviceInfoStream_1.0.0.json | 0 ...so2.iot.OperationResponseStream_1.0.0.json | 0 .../org.wso2.iot.operation_1.0.0.json | 0 .../WSO2IoT-Operation-ExecutionPlan.siddhiql | 0 .../src/main/resources/p2.inf | 18 ++- features/analytics-feature/pom.xml | 4 +- 21 files changed, 71 insertions(+), 380 deletions(-) delete mode 100644 components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/build.xml delete mode 100644 components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/pom.xml delete mode 100644 components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/assembly/src.xml delete mode 100644 components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-DeviceInfo-Receiver_1.0.0/artifact.xml delete mode 100644 components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-Operation-ExecutionPlan_1.0.0/artifact.xml delete mode 100644 components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-OperationResponse-Receiver_1.0.0/artifact.xml delete mode 100644 components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/artifacts.xml delete mode 100644 components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.DeviceInfoStream_1.0.0/artifact.xml delete mode 100644 components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.OperationResponseStream_1.0.0/artifact.xml delete mode 100644 components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.operation_1.0.0/artifact.xml rename {components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-DeviceInfo-Receiver_1.0.0 => features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventreceivers}/WSO2IoT-DeviceInfo-Receiver_1.0.0.xml (100%) rename {components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-OperationResponse-Receiver_1.0.0 => features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventreceivers}/WSO2IoT-OperationResponse-Receiver_1.0.0.xml (100%) rename {components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.DeviceInfoStream_1.0.0 => features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventstreams}/org.wso2.iot.DeviceInfoStream_1.0.0.json (100%) rename {components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.OperationResponseStream_1.0.0 => features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventstreams}/org.wso2.iot.OperationResponseStream_1.0.0.json (100%) rename {components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.operation_1.0.0 => features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventstreams}/org.wso2.iot.operation_1.0.0.json (100%) rename {components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-Operation-ExecutionPlan_1.0.0 => features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/executionplans}/WSO2IoT-Operation-ExecutionPlan.siddhiql (100%) diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/build.xml b/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/build.xml deleted file mode 100644 index ebf679b8f..000000000 --- a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/build.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/pom.xml b/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/pom.xml deleted file mode 100644 index 365ad97d2..000000000 --- a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/pom.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - org.wso2.carbon.devicemgt-plugins - iot-analytics - 6.0.0-SNAPSHOT - ../pom.xml - - - 4.0.0 - org.wso2.carbon.device.mgt.iot.analytics - WSO2 Carbon - IoT Server Analytics C-APP - pom - - - - - maven-antrun-plugin - 1.7 - - - process-resources - - - - - - - run - - - - - - maven-assembly-plugin - 2.5.5 - - ${project.artifactId}-${carbon.devicemgt.plugins.version} - false - - src/assembly/src.xml - - - - - create-archive - package - - single - - - - - - - - diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/assembly/src.xml b/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/assembly/src.xml deleted file mode 100644 index a5a375010..000000000 --- a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/assembly/src.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - src - - zip - - false - ${basedir}/src - - - ${basedir}/target/carbonapps - / - true - - - \ No newline at end of file diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-DeviceInfo-Receiver_1.0.0/artifact.xml b/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-DeviceInfo-Receiver_1.0.0/artifact.xml deleted file mode 100644 index e9e608f57..000000000 --- a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-DeviceInfo-Receiver_1.0.0/artifact.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - WSO2IoT-DeviceInfo-Receiver_1.0.0.xml - diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-Operation-ExecutionPlan_1.0.0/artifact.xml b/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-Operation-ExecutionPlan_1.0.0/artifact.xml deleted file mode 100644 index ae461dddf..000000000 --- a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-Operation-ExecutionPlan_1.0.0/artifact.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - WSO2IoT-Operation-ExecutionPlan.siddhiql - - diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-OperationResponse-Receiver_1.0.0/artifact.xml b/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-OperationResponse-Receiver_1.0.0/artifact.xml deleted file mode 100644 index 6acd0797f..000000000 --- a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-OperationResponse-Receiver_1.0.0/artifact.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - WSO2IoT-OperationResponse-Receiver_1.0.0.xml - diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/artifacts.xml b/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/artifacts.xml deleted file mode 100644 index baddee4b4..000000000 --- a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/artifacts.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.DeviceInfoStream_1.0.0/artifact.xml b/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.DeviceInfoStream_1.0.0/artifact.xml deleted file mode 100644 index 3594a8bf8..000000000 --- a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.DeviceInfoStream_1.0.0/artifact.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - org.wso2.iot.DeviceInfoStream_1.0.0.json - diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.OperationResponseStream_1.0.0/artifact.xml b/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.OperationResponseStream_1.0.0/artifact.xml deleted file mode 100644 index 23d9921e8..000000000 --- a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.OperationResponseStream_1.0.0/artifact.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - org.wso2.iot.OperationResponseStream_1.0.0.json - diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.operation_1.0.0/artifact.xml b/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.operation_1.0.0/artifact.xml deleted file mode 100644 index 2cc91e5d9..000000000 --- a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.operation_1.0.0/artifact.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - org.wso2.iot.operation_1.0.0.json - diff --git a/components/analytics/iot-analytics/pom.xml b/components/analytics/iot-analytics/pom.xml index 467fcaf2c..0b5ea22dc 100644 --- a/components/analytics/iot-analytics/pom.xml +++ b/components/analytics/iot-analytics/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.devicemgt-plugins analytics - 6.0.0-SNAPSHOT + 6.0.12-SNAPSHOT ../pom.xml @@ -33,8 +33,7 @@ http://wso2.org - org.wso2.carbon.device.mgt.iot.analytics - org.wso2.carbon.iot.geo.dashboard + diff --git a/components/analytics/pom.xml b/components/analytics/pom.xml index 8df45e52e..56af3b137 100644 --- a/components/analytics/pom.xml +++ b/components/analytics/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.devicemgt-plugins carbon-device-mgt-plugins-parent - 6.0.0-SNAPSHOT + 6.0.12-SNAPSHOT ../../pom.xml diff --git a/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml index bd51a078c..36b886d89 100644 --- a/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml +++ b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.devicemgt-plugins analytics-feature - 6.0.0-SNAPSHOT + 6.0.12-SNAPSHOT ../pom.xml @@ -36,58 +36,58 @@ - - org.apache.maven.plugins - maven-dependency-plugin - - - unpack - package - - unpack - - - - - org.wso2.carbon.devicemgt-plugins - org.wso2.carbon.device.mgt.iot.analytics - ${project.version} - zip - true - - ${project.build.directory}/maven-shared-archive-resources/carbonapps - - **/* - - - - - - - - maven-resources-plugin - - - copy-resources - generate-resources - - copy-resources - - - src/main/resources - - - resources - - build.properties - p2.inf - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + org.wso2.maven carbon-p2-plugin diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-DeviceInfo-Receiver_1.0.0/WSO2IoT-DeviceInfo-Receiver_1.0.0.xml b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventreceivers/WSO2IoT-DeviceInfo-Receiver_1.0.0.xml similarity index 100% rename from components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-DeviceInfo-Receiver_1.0.0/WSO2IoT-DeviceInfo-Receiver_1.0.0.xml rename to features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventreceivers/WSO2IoT-DeviceInfo-Receiver_1.0.0.xml diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-OperationResponse-Receiver_1.0.0/WSO2IoT-OperationResponse-Receiver_1.0.0.xml b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventreceivers/WSO2IoT-OperationResponse-Receiver_1.0.0.xml similarity index 100% rename from components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-OperationResponse-Receiver_1.0.0/WSO2IoT-OperationResponse-Receiver_1.0.0.xml rename to features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventreceivers/WSO2IoT-OperationResponse-Receiver_1.0.0.xml diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.DeviceInfoStream_1.0.0/org.wso2.iot.DeviceInfoStream_1.0.0.json b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventstreams/org.wso2.iot.DeviceInfoStream_1.0.0.json similarity index 100% rename from components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.DeviceInfoStream_1.0.0/org.wso2.iot.DeviceInfoStream_1.0.0.json rename to features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventstreams/org.wso2.iot.DeviceInfoStream_1.0.0.json diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.OperationResponseStream_1.0.0/org.wso2.iot.OperationResponseStream_1.0.0.json b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventstreams/org.wso2.iot.OperationResponseStream_1.0.0.json similarity index 100% rename from components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.OperationResponseStream_1.0.0/org.wso2.iot.OperationResponseStream_1.0.0.json rename to features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventstreams/org.wso2.iot.OperationResponseStream_1.0.0.json diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.operation_1.0.0/org.wso2.iot.operation_1.0.0.json b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventstreams/org.wso2.iot.operation_1.0.0.json similarity index 100% rename from components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/org.wso2.iot.operation_1.0.0/org.wso2.iot.operation_1.0.0.json rename to features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/eventstreams/org.wso2.iot.operation_1.0.0.json diff --git a/components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-Operation-ExecutionPlan_1.0.0/WSO2IoT-Operation-ExecutionPlan.siddhiql b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/executionplans/WSO2IoT-Operation-ExecutionPlan.siddhiql similarity index 100% rename from components/analytics/iot-analytics/org.wso2.carbon.device.mgt.iot.analytics/src/main/resources/carbonapps/device_analytics/WSO2IoT-Operation-ExecutionPlan_1.0.0/WSO2IoT-Operation-ExecutionPlan.siddhiql rename to features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/deployment/server/executionplans/WSO2IoT-Operation-ExecutionPlan.siddhiql diff --git a/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/p2.inf b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/p2.inf index 1a7837bcf..0846274b4 100644 --- a/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/p2.inf +++ b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/src/main/resources/p2.inf @@ -1,8 +1,16 @@ instructions.configure = \ -org.eclipse.equinox.p2.touchpoint.natives.mkdir(path:${installFolder}/../../resources/);\ -org.eclipse.equinox.p2.touchpoint.natives.mkdir(path:${installFolder}/../../resources/devicetypes/);\ -org.eclipse.equinox.p2.touchpoint.natives.mkdir(path:${installFolder}/../../resources/devicetypes/analytics/);\ -org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.iot.analytics_${feature.version}/carbonapps/,target:${installFolder}/../../resources/devicetypes/analytics/,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.mkdir(path:${installFolder}/../../deployment/server/carbonapps/);\ +org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.iot.analytics_${feature.version}/deployment/server/eventreceivers/WSO2IoT-DeviceInfo-Receiver_1.0.0.xml,target:${installFolder}/../../deployment/server/eventreceivers/WSO2IoT-DeviceInfo-Receiver_1.0.0.xml,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.iot.analytics_${feature.version}/deployment/server/eventreceivers/WSO2IoT-OperationResponse-Receiver_1.0.0.xml,target:${installFolder}/../../deployment/server/eventreceivers/WSO2IoT-OperationResponse-Receiver_1.0.0.xml,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.iot.analytics_${feature.version}/deployment/server/eventstreams/org.wso2.iot.DeviceInfoStream_1.0.0.json,target:${installFolder}/../../deployment/server/eventstreams/org.wso2.iot.DeviceInfoStream_1.0.0.json,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.iot.analytics_${feature.version}/deployment/server/eventstreams/org.wso2.iot.operation_1.0.0.json,target:${installFolder}/../../deployment/server/eventstreams/org.wso2.iot.operation_1.0.0.json,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.iot.analytics_${feature.version}/deployment/server/eventstreams/org.wso2.iot.OperationResponseStream_1.0.0.json,target:${installFolder}/../../deployment/server/eventstreams/org.wso2.iot.OperationResponseStream_1.0.0.json,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.copy(source:${installFolder}/../features/org.wso2.carbon.device.mgt.iot.analytics_${feature.version}/deployment/server/executionplans/WSO2IoT-Operation-ExecutionPlan.siddhiql,target:${installFolder}/../../deployment/server/executionplans/WSO2IoT-Operation-ExecutionPlan.siddhiql,overwrite:true);\ instructions.uninstall = \ -org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../resources/devicetypes/analytics/org.wso2.carbon.iot.device.analytics_1.0.0.car,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/eventreceivers/WSO2IoT-DeviceInfo-Receiver_1.0.0.xml,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/eventreceivers/WSO2IoT-OperationResponse-Receiver_1.0.0.xml,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/eventstreams/org.wso2.iot.DeviceInfoStream_1.0.0.json,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/eventstreams/org.wso2.iot.operation_1.0.0.json,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/eventstreams/org.wso2.iot.OperationResponseStream_1.0.0.json,overwrite:true);\ +org.eclipse.equinox.p2.touchpoint.natives.remove(path:${installFolder}/../../deployment/server/executionplans/WSO2IoT-Operation-ExecutionPlan.siddhiql,overwrite:true);\ diff --git a/features/analytics-feature/pom.xml b/features/analytics-feature/pom.xml index ea052c514..950072bce 100644 --- a/features/analytics-feature/pom.xml +++ b/features/analytics-feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.devicemgt-plugins carbon-device-mgt-plugins-parent - 6.0.0-SNAPSHOT + 6.0.12-SNAPSHOT ../../pom.xml @@ -34,7 +34,7 @@ org.wso2.carbon.device.mgt.iot.analytics.feature - org.wso2.carbon.iot.geo.dashboard.feature + From cf2304574b438d05f3783923c43b307d29f6b5b9 Mon Sep 17 00:00:00 2001 From: Amalka Subasinghe Date: Tue, 21 Mar 2023 11:12:02 +0530 Subject: [PATCH 1075/1075] fixed versions --- components/analytics/iot-analytics/pom.xml | 2 +- components/analytics/pom.xml | 2 +- .../org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml | 2 +- features/analytics-feature/pom.xml | 2 +- pom.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/components/analytics/iot-analytics/pom.xml b/components/analytics/iot-analytics/pom.xml index 0b5ea22dc..ecd17d9d2 100644 --- a/components/analytics/iot-analytics/pom.xml +++ b/components/analytics/iot-analytics/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.devicemgt-plugins analytics - 6.0.12-SNAPSHOT + 6.0.13-SNAPSHOT ../pom.xml diff --git a/components/analytics/pom.xml b/components/analytics/pom.xml index 56af3b137..f2465f50d 100644 --- a/components/analytics/pom.xml +++ b/components/analytics/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.devicemgt-plugins carbon-device-mgt-plugins-parent - 6.0.12-SNAPSHOT + 6.0.13-SNAPSHOT ../../pom.xml diff --git a/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml index 36b886d89..7ec9269db 100644 --- a/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml +++ b/features/analytics-feature/org.wso2.carbon.device.mgt.iot.analytics.feature/pom.xml @@ -23,7 +23,7 @@ org.wso2.carbon.devicemgt-plugins analytics-feature - 6.0.12-SNAPSHOT + 6.0.13-SNAPSHOT ../pom.xml diff --git a/features/analytics-feature/pom.xml b/features/analytics-feature/pom.xml index 950072bce..f457a6fe3 100644 --- a/features/analytics-feature/pom.xml +++ b/features/analytics-feature/pom.xml @@ -22,7 +22,7 @@ org.wso2.carbon.devicemgt-plugins carbon-device-mgt-plugins-parent - 6.0.12-SNAPSHOT + 6.0.13-SNAPSHOT ../../pom.xml diff --git a/pom.xml b/pom.xml index 89f5da1d5..a67bc7f28 100644 --- a/pom.xml +++ b/pom.xml @@ -38,7 +38,7 @@ components/extensions components/mobile-plugins - + features/analytics-feature features/mobile-plugins-feature features/extensions-feature