diff --git a/dist/Handles.mpk b/dist/Handles.mpk index b6e0c61..ee7c399 100644 Binary files a/dist/Handles.mpk and b/dist/Handles.mpk differ diff --git a/node_modules/grunt-newer/.cache/copy/deployment/timestamp b/node_modules/grunt-newer/.cache/copy/deployment/timestamp index 5e88c32..6652d94 100644 --- a/node_modules/grunt-newer/.cache/copy/deployment/timestamp +++ b/node_modules/grunt-newer/.cache/copy/deployment/timestamp @@ -1 +1 @@ -1478036213563 \ No newline at end of file +1479244894805 \ No newline at end of file diff --git a/node_modules/grunt-newer/.cache/copy/mpks/timestamp b/node_modules/grunt-newer/.cache/copy/mpks/timestamp index 36a220a..f1aaf15 100644 --- a/node_modules/grunt-newer/.cache/copy/mpks/timestamp +++ b/node_modules/grunt-newer/.cache/copy/mpks/timestamp @@ -1 +1 @@ -1478036213599 \ No newline at end of file +1479244894825 \ No newline at end of file diff --git a/src/Handles/Handles.xml b/src/Handles/Handles.xml index c899ecf..5c3ca64 100644 --- a/src/Handles/Handles.xml +++ b/src/Handles/Handles.xml @@ -1,7 +1,7 @@ Handles - The description of this widget. + Slider with two (or more handles) @@ -22,7 +22,7 @@ The size of the interval between slider steps. - Lower Handle + Lower Handle Attribute Slider Settings Entity Attribute (decimal) coupled with the lower handle of the slider. @@ -30,12 +30,60 @@ - Upper Handle + Upper Handle Attribute Slider Settings Entity Attribute (decimal) coupled with the upper handle of the slider. + + Display Value Labels + Slider Settings + Set true to display the handle's value in a label. + + + Direction + Slider Settings + Configure the slider to increase left-to-right/top-to-bottom or right-to-left/bottom-to-top. + + Left-to-right / Top-to-bottom + Right-to-left / Bottom-to-top + + + + Orientation + Slider Settings + Configure the orientation of the slider. +If Vertical, be sure to select the correct Direction value for your purposes. +Also if Vertical, height must be manually set in the widget css (class .noUi-vertical) + + Horizontal + Vertical + + + + + Enforce Minimum Range + Advanced Settings + Set true to enforce a minimum size for the range between handles + + + Minimum Range + Advanced Settings + Size of the minimum range; takes effect only if Enforce Minimum Range is true. + + + Enforce Maximum Range + Advanced Settings + Set true to enforce a maximum size for the range between handles + + + Maximum Range + Advanced Settings + Size of the maximum range; takes effect only if Enforce Maximum Range is true. + + + diff --git a/src/Handles/widget/Handles.js b/src/Handles/widget/Handles.js index b5bc0be..4d42147 100644 --- a/src/Handles/widget/Handles.js +++ b/src/Handles/widget/Handles.js @@ -33,10 +33,14 @@ define([ "dojo/text", "dojo/html", "dojo/_base/event", + "dojo/query", "Handles/lib/nouislider", "dojo/text!Handles/widget/template/Handles.html" ], function (declare, _WidgetBase, _TemplatedMixin, dom, dojoDom, dojoProp, dojoGeometry, dojoClass, dojoStyle, dojoConstruct, dojoArray, dojoLang, dojoText, dojoHtml, dojoEvent, + + dojoQuery, + noUiSlider, widgetTemplate) { "use strict"; @@ -54,12 +58,21 @@ define([ sliderStep : "", handleAttr0 : "", handleAttr1 : "", + testProperty : "", + enforceMargin : false, + marginSize : null, + enforceLimit : false, + limitSize : null, + direction : "", + orientation : "", + toolTips : false, // Internal variables. Non-primitives created in the prototype are shared between all widget instances. _handles: null, _contextObj: null, _alertDiv: null, _readOnly: false, + _sliderSettings: null, // dojo.declare.constructor is called to construct the widget instance. Implement to initialize non-primitive properties. constructor: function () { @@ -71,13 +84,22 @@ define([ postCreate: function () { logger.debug(this.id + ".postCreate"); + this._sliderSettings = { + start: [this.sliderMax * 0.25, this.sliderMax * 0.75], + step: this.sliderStep, + connect: true, + range: { 'min': this.sliderMin, 'max': this.sliderMax }, + behaviour: 'drag-tap' + }; + this._updateRendering(); - noUiSlider.create(this.domTarget, { - start: [this.sliderMax * 0.25, this.sliderMax * 0.75], - step: this.sliderStep, - connect: true, - range: { 'min': this.sliderMin, 'max': this.sliderMax } - }); + + this._setDirectionAndOrientation(); + this._setMarginAndLimit(); + this._toggleTooltips(); + this._buildPips(); + + noUiSlider.create(this.domTarget, this._sliderSettings); this._setupEvents(); }, @@ -92,7 +114,7 @@ define([ if(this._contextObj.get(this.handleAttr0) == 0 && this._contextObj.get(this.handleAttr1) == 0) { this._contextObj.set(this.handleAttr0, this.domTarget.noUiSlider.get()[0]); - this._contextObj.set(this.handleAttr1, this.domTarget.noUiSlider.get()[1]); + this._contextObj.set(this.handleAttr1, this.domTarget.noUiSlider.get()[1]); } else { this.domTarget.noUiSlider.set( [this._contextObj.get(this.handleAttr0), this._contextObj.get(this.handleAttr1)] ); } @@ -132,7 +154,6 @@ define([ logger.debug(this.id + "._setupEvents"); var self = this; self.domTarget.noUiSlider.on('slide', function() { - console.log("listener is firing"); self._contextObj.set(self.handleAttr0, self.domTarget.noUiSlider.get()[0]); self._contextObj.set(self.handleAttr1, self.domTarget.noUiSlider.get()[1]); }); @@ -225,7 +246,49 @@ define([ this._handles = [ objectHandle, attrHandle, validationHandle ]; } + }, + + // Set the direction and orientation of the sliderMin + _setDirectionAndOrientation: function() { + console.log('set direction and orientation'); + if (this.direction == 'rtl') { + this._sliderSettings.direction = this.direction + }; + if (this.orientation == 'vertical') { + this._sliderSettings.orientation = this.orientation + }; + }, + + // Set the margin and limit (minimum and maximum separation between handles) + _setMarginAndLimit: function() { + console.log('set margin...') + if ( (this.enforceMargin && this.marginSize != null) ) { + this._sliderSettings.margin = this.marginSize + }; + if ( (this.enforceLimit && this.limitSize != null) ) { + this._sliderSettings.limit = this.limitSize + }; + }, + + // Toogle display of values on the handles + _toggleTooltips: function() { + console.log('set tool tips...') + if ( (this.toolTips) ) { + this._sliderSettings.tooltips = [true, true]; + } + }, + + // If steps are >= 25% of the range, render pips + _buildPips: function() { + console.log('build pips...') + if ( (this.sliderMax-this.sliderMin) / this.sliderStep <= 4 ) { + this._sliderSettings.pips = { + mode: 'steps', density: this.sliderStep + } + } } + + }); }); diff --git a/src/Handles/widget/ui/Handles.css b/src/Handles/widget/ui/Handles.css index 5b22adb..b49b7f3 100644 --- a/src/Handles/widget/ui/Handles.css +++ b/src/Handles/widget/ui/Handles.css @@ -92,6 +92,7 @@ } .noUi-vertical { width: 18px; + height: 400px; } .noUi-vertical .noUi-handle { width: 28px; diff --git a/test/Test.mpr b/test/Test.mpr index fffa8ca..f460f6a 100644 Binary files a/test/Test.mpr and b/test/Test.mpr differ diff --git a/test/deployment/build_core.xml b/test/deployment/build_core.xml index 4f06989..ea0a67d 100644 --- a/test/deployment/build_core.xml +++ b/test/deployment/build_core.xml @@ -1,5 +1,5 @@  - + Ant buildfile for deployment. Generated by the Mendix Business Modeler. diff --git a/test/deployment/data/database/20161114_150729_database_commands.sql b/test/deployment/data/database/20161114_150729_database_commands.sql new file mode 100644 index 0000000..a88f190 --- /dev/null +++ b/test/deployment/data/database/20161114_150729_database_commands.sql @@ -0,0 +1,207 @@ +CREATE TABLE "testsuite$entity_2" ( + "id" BIGINT NOT NULL, + PRIMARY KEY("id")); +INSERT INTO "mendixsystem$entity" ("id", +"entity_name", +"table_name") + VALUES ('774c68d7-d12c-49c6-a095-f6d4848d2bca', +'TestSuite.Entity_2', +'testsuite$entity_2'); +CREATE TABLE "testsuite$entity_2_color" ( + "testsuite$entity_2id" BIGINT NOT NULL, + "testsuite$colorid" BIGINT NOT NULL, + PRIMARY KEY("testsuite$entity_2id","testsuite$colorid")); +CREATE INDEX "idx_testsuite$entity_2_color_testsuite$color_testsuite$entity_2" ON "testsuite$entity_2_color" + ("testsuite$colorid","testsuite$entity_2id"); +INSERT INTO "mendixsystem$association" ("id", +"association_name", +"table_name", +"parent_entity_id", +"child_entity_id", +"parent_column_name", +"child_column_name", +"index_name") + VALUES ('9c90205c-5e6b-4be3-a7ee-b5ffcd7f5789', +'TestSuite.Entity_2_Color', +'testsuite$entity_2_color', +'774c68d7-d12c-49c6-a095-f6d4848d2bca', +'0ab9d4f4-ef25-43c5-9291-8ef27e0062f9', +'testsuite$entity_2id', +'testsuite$colorid', +'idx_testsuite$entity_2_color_testsuite$color_testsuite$entity_2'); +CREATE TABLE "testsuite$entity" ( + "id" BIGINT NOT NULL, + PRIMARY KEY("id")); +INSERT INTO "mendixsystem$entity" ("id", +"entity_name", +"table_name") + VALUES ('dcb65bb6-718e-4bca-bb34-ff9ee119136b', +'TestSuite.Entity', +'testsuite$entity'); +CREATE TABLE "testsuite$entity_3" ( + "id" BIGINT NOT NULL, + PRIMARY KEY("id")); +INSERT INTO "mendixsystem$entity" ("id", +"entity_name", +"table_name") + VALUES ('4923ae57-6e7f-45e2-9b01-6d6b6eea265a', +'TestSuite.Entity_3', +'testsuite$entity_3'); +CREATE TABLE "testsuite$entity_3_color" ( + "testsuite$entity_3id" BIGINT NOT NULL, + "testsuite$colorid" BIGINT NOT NULL, + PRIMARY KEY("testsuite$entity_3id","testsuite$colorid")); +CREATE INDEX "idx_testsuite$entity_3_color_testsuite$color_testsuite$entity_3" ON "testsuite$entity_3_color" + ("testsuite$colorid","testsuite$entity_3id"); +INSERT INTO "mendixsystem$association" ("id", +"association_name", +"table_name", +"parent_entity_id", +"child_entity_id", +"parent_column_name", +"child_column_name", +"index_name") + VALUES ('c964bfa6-d806-4a78-9dc6-0b7722912ea5', +'TestSuite.Entity_3_Color', +'testsuite$entity_3_color', +'4923ae57-6e7f-45e2-9b01-6d6b6eea265a', +'0ab9d4f4-ef25-43c5-9291-8ef27e0062f9', +'testsuite$entity_3id', +'testsuite$colorid', +'idx_testsuite$entity_3_color_testsuite$color_testsuite$entity_3'); +CREATE TABLE "testsuite$color" ( + "id" BIGINT NOT NULL, + "isprimary" BOOLEAN NULL, + "rangemin" DECIMAL(28, 8) NULL, + "rangemax" DECIMAL(28, 8) NULL, + "ral" INT NULL, + "colorcode" VARCHAR_IGNORECASE(200) NULL, + "name" VARCHAR_IGNORECASE(200) NULL, + PRIMARY KEY("id")); +INSERT INTO "mendixsystem$entity" ("id", +"entity_name", +"table_name") + VALUES ('0ab9d4f4-ef25-43c5-9291-8ef27e0062f9', +'TestSuite.Color', +'testsuite$color'); +INSERT INTO "mendixsystem$attribute" ("id", +"entity_id", +"attribute_name", +"column_name", +"type", +"length", +"default_value", +"is_auto_number") + VALUES ('6daf0494-c79c-4964-95a1-bed51236ee4f', +'0ab9d4f4-ef25-43c5-9291-8ef27e0062f9', +'IsPrimary', +'isprimary', +10, +200, +'false', +false); +INSERT INTO "mendixsystem$attribute" ("id", +"entity_id", +"attribute_name", +"column_name", +"type", +"length", +"default_value", +"is_auto_number") + VALUES ('5fffc892-a0c1-4712-a812-eb1256660861', +'0ab9d4f4-ef25-43c5-9291-8ef27e0062f9', +'RangeMin', +'rangemin', +5, +200, +'0', +false); +INSERT INTO "mendixsystem$attribute" ("id", +"entity_id", +"attribute_name", +"column_name", +"type", +"length", +"default_value", +"is_auto_number") + VALUES ('4dd195b6-c5a5-4167-9c6b-668fcb99e530', +'0ab9d4f4-ef25-43c5-9291-8ef27e0062f9', +'RangeMax', +'rangemax', +5, +200, +'0', +false); +INSERT INTO "mendixsystem$attribute" ("id", +"entity_id", +"attribute_name", +"column_name", +"type", +"length", +"default_value", +"is_auto_number") + VALUES ('a40a0209-9195-4c1c-a3d5-6d39c50d30c8', +'0ab9d4f4-ef25-43c5-9291-8ef27e0062f9', +'RAL', +'ral', +3, +200, +'2003', +false); +INSERT INTO "mendixsystem$attribute" ("id", +"entity_id", +"attribute_name", +"column_name", +"type", +"length", +"default_value", +"is_auto_number") + VALUES ('54557d58-e2ca-4fb1-9cd4-16683e1e8a1b', +'0ab9d4f4-ef25-43c5-9291-8ef27e0062f9', +'ColorCode', +'colorcode', +30, +200, +'#FF7514', +false); +INSERT INTO "mendixsystem$attribute" ("id", +"entity_id", +"attribute_name", +"column_name", +"type", +"length", +"default_value", +"is_auto_number") + VALUES ('6ed9bbed-84c3-4189-bedf-0e82f1b99c11', +'0ab9d4f4-ef25-43c5-9291-8ef27e0062f9', +'Name', +'name', +30, +200, +'Pastel orange', +false); +CREATE TABLE "testsuite$color_entity" ( + "testsuite$colorid" BIGINT NOT NULL, + "testsuite$entityid" BIGINT NOT NULL, + PRIMARY KEY("testsuite$colorid","testsuite$entityid")); +CREATE INDEX "idx_testsuite$color_entity_testsuite$entity_testsuite$color" ON "testsuite$color_entity" + ("testsuite$entityid","testsuite$colorid"); +INSERT INTO "mendixsystem$association" ("id", +"association_name", +"table_name", +"parent_entity_id", +"child_entity_id", +"parent_column_name", +"child_column_name", +"index_name") + VALUES ('47cca560-cd85-40ba-8f9f-87e7c93ba180', +'TestSuite.Color_Entity', +'testsuite$color_entity', +'0ab9d4f4-ef25-43c5-9291-8ef27e0062f9', +'dcb65bb6-718e-4bca-bb34-ff9ee119136b', +'testsuite$colorid', +'testsuite$entityid', +'idx_testsuite$color_entity_testsuite$entity_testsuite$color'); +UPDATE "mendixsystem$version" + SET "versionnumber" = '4.0.7', +"lastsyncdate" = '20161114 15:07:28'; diff --git a/test/deployment/data/database/hsqldb/default/default.lck b/test/deployment/data/database/hsqldb/default/default.lck deleted file mode 100644 index 6fb784d..0000000 Binary files a/test/deployment/data/database/hsqldb/default/default.lck and /dev/null differ diff --git a/test/deployment/data/database/hsqldb/default/default.log b/test/deployment/data/database/hsqldb/default/default.log deleted file mode 100644 index 037bd73..0000000 --- a/test/deployment/data/database/hsqldb/default/default.log +++ /dev/null @@ -1,57 +0,0 @@ -/*C2*/SET SCHEMA PUBLIC -DELETE FROM "mendixsystem$version" WHERE "versionnumber"='4.0.7' -INSERT INTO "mendixsystem$version" VALUES('4.0.7','2016-10-28 13:47:48.564000','2.0.1','unversioned','Test') -COMMIT -/*C3*/SET SCHEMA PUBLIC -DELETE FROM "system$userrole" WHERE "id"=3096224743817217 -INSERT INTO "system$userrole" VALUES(3096224743817217,'8dd52bfa-6d7e-453b-b506-303c0a3d9567','','Administrator') -DELETE FROM "system$userrole" WHERE "id"=3096224743817218 -INSERT INTO "system$userrole" VALUES(3096224743817218,'53f5d6fa-6da9-4a71-b011-454ec052cce8','','User') -COMMIT -DELETE FROM "mendixsystem$entityidentifier" WHERE "id"='d4154981-8dac-4150-aec5-efa3ef62a7a2' -INSERT INTO "mendixsystem$entityidentifier" VALUES('d4154981-8dac-4150-aec5-efa3ef62a7a2',3,1301) -COMMIT -INSERT INTO "system$xasinstance" VALUES(844424930133169,'1377e5f9-b647-4106-84b6-079f5852bb99','2016-11-01 21:37:10.994000','2016-11-01 21:37:10.904000',NULL,NULL,NULL) -COMMIT -INSERT INTO "system$clustermanager" VALUES(2814749767106561,844424930133169) -COMMIT -DELETE FROM "system$statistics" WHERE "id"=2814749767106561 -INSERT INTO "system$statistics" VALUES(2814749767106561,'2016-10-28 17:47:49.753000','2016-11-01 21:37:11.042000',2,0,0) -COMMIT -DELETE FROM "mendixsystem$entityidentifier" WHERE "id"='282e2e60-88a5-469d-84a5-ba8d9151644f' -INSERT INTO "mendixsystem$entityidentifier" VALUES('282e2e60-88a5-469d-84a5-ba8d9151644f',2,1301) -COMMIT -INSERT INTO "system$user" VALUES(562949953422513,'2016-11-01 21:37:18.207000',TRUE,'2016-11-01 21:37:18.207000','2016-11-01 21:37:18.343000',FALSE,TRUE,0,FALSE,'Anonymous_52132cda-6aca-4137-9af9-604a0631d8ea','{BCrypt}$2a$10$Egysa3Cs2VWgtrUuZA8tou5i.hktq0Cjnlak0V1vY2LJpfZ.Bs4M.','System.User',562949953422513,NULL) -INSERT INTO "system$user_language" VALUES(562949953422513,4503599627370497) -INSERT INTO "system$userroles" VALUES(562949953422513,3096224743817217) -COMMIT -DELETE FROM "system$user" WHERE "id"=562949953422513 -INSERT INTO "system$user" VALUES(562949953422513,'2016-11-01 21:37:18.207000',TRUE,'2016-11-01 21:37:18.207000','2016-11-01 21:37:18.365000',FALSE,TRUE,0,FALSE,'Anonymous_52132cda-6aca-4137-9af9-604a0631d8ea','{BCrypt}$2a$10$Egysa3Cs2VWgtrUuZA8tou5i.hktq0Cjnlak0V1vY2LJpfZ.Bs4M.','System.User',562949953422513,NULL) -COMMIT -/*C4*/SET SCHEMA PUBLIC -DELETE FROM "mendixsystem$entityidentifier" WHERE "id"='0ab9d4f4-ef25-43c5-9291-8ef27e0062f9' -INSERT INTO "mendixsystem$entityidentifier" VALUES('0ab9d4f4-ef25-43c5-9291-8ef27e0062f9',13,1101) -COMMIT -DELETE FROM "system$xasinstance" WHERE "id"=844424930133169 -INSERT INTO "system$xasinstance" VALUES(844424930133169,'1377e5f9-b647-4106-84b6-079f5852bb99','2016-11-01 21:37:10.994000','2016-11-01 21:42:11.090000',NULL,NULL,NULL) -COMMIT -DELETE FROM "system$statistics" WHERE "id"=2814749767106561 -INSERT INTO "system$statistics" VALUES(2814749767106561,'2016-10-28 17:47:49.753000','2016-11-01 21:42:11.128000',2,0,0) -COMMIT -/*C2*/DISCONNECT -/*C4*/DELETE FROM "system$xasinstance" WHERE "id"=844424930133169 -INSERT INTO "system$xasinstance" VALUES(844424930133169,'1377e5f9-b647-4106-84b6-079f5852bb99','2016-11-01 21:37:10.994000','2016-11-01 21:47:11.156000',NULL,NULL,NULL) -COMMIT -DELETE FROM "system$statistics" WHERE "id"=2814749767106561 -INSERT INTO "system$statistics" VALUES(2814749767106561,'2016-10-28 17:47:49.753000','2016-11-01 21:47:11.191000',2,0,0) -COMMIT -DELETE FROM "system$xasinstance" WHERE "id"=844424930133169 -INSERT INTO "system$xasinstance" VALUES(844424930133169,'1377e5f9-b647-4106-84b6-079f5852bb99','2016-11-01 21:37:10.994000','2016-11-01 21:52:11.212000',NULL,NULL,NULL) -COMMIT -DELETE FROM "system$statistics" WHERE "id"=2814749767106561 -INSERT INTO "system$statistics" VALUES(2814749767106561,'2016-10-28 17:47:49.753000','2016-11-01 21:52:11.249000',2,0,0) -COMMIT -DELETE FROM "system$user" WHERE "id"=562949953422513 -DELETE FROM "system$user_language" WHERE "system$userid"=562949953422513 AND "system$languageid"=4503599627370497 -DELETE FROM "system$userroles" WHERE "system$userid"=562949953422513 AND "system$userroleid"=3096224743817217 -COMMIT diff --git a/test/deployment/data/database/hsqldb/default/default.properties b/test/deployment/data/database/hsqldb/default/default.properties index 4b2c8db..5959802 100644 --- a/test/deployment/data/database/hsqldb/default/default.properties +++ b/test/deployment/data/database/hsqldb/default/default.properties @@ -1,4 +1,4 @@ #HSQL Database Engine 2.3.2 -#Tue Nov 01 17:37:10 EDT 2016 +#Tue Nov 15 16:22:02 EST 2016 version=2.3.2 -modified=yes +modified=no diff --git a/test/deployment/data/database/hsqldb/default/default.script b/test/deployment/data/database/hsqldb/default/default.script index 0559517..39a14c8 100644 --- a/test/deployment/data/database/hsqldb/default/default.script +++ b/test/deployment/data/database/hsqldb/default/default.script @@ -83,6 +83,16 @@ CREATE INDEX "idx_system$session_user_system$user_system$session" ON PUBLIC."sys CREATE MEMORY TABLE PUBLIC."system$image"("id" BIGINT NOT NULL PRIMARY KEY,"publicthumbnailpath" VARCHAR(500) COLLATE SQL_TEXT_UCC) CREATE MEMORY TABLE PUBLIC."administration$account"("id" BIGINT NOT NULL PRIMARY KEY,"fullname" VARCHAR(200) COLLATE SQL_TEXT_UCC) CREATE MEMORY TABLE PUBLIC."system$language"("id" BIGINT NOT NULL PRIMARY KEY,"description" VARCHAR(200) COLLATE SQL_TEXT_UCC,"code" VARCHAR(20) COLLATE SQL_TEXT_UCC) +CREATE MEMORY TABLE PUBLIC."testsuite$entity_2"("id" BIGINT NOT NULL PRIMARY KEY) +CREATE MEMORY TABLE PUBLIC."testsuite$entity_2_color"("testsuite$entity_2id" BIGINT NOT NULL,"testsuite$colorid" BIGINT NOT NULL,PRIMARY KEY("testsuite$entity_2id","testsuite$colorid")) +CREATE INDEX "idx_testsuite$entity_2_color_testsuite$color_testsuite$entity_2" ON PUBLIC."testsuite$entity_2_color"("testsuite$colorid","testsuite$entity_2id") +CREATE MEMORY TABLE PUBLIC."testsuite$entity"("id" BIGINT NOT NULL PRIMARY KEY) +CREATE MEMORY TABLE PUBLIC."testsuite$entity_3"("id" BIGINT NOT NULL PRIMARY KEY) +CREATE MEMORY TABLE PUBLIC."testsuite$entity_3_color"("testsuite$entity_3id" BIGINT NOT NULL,"testsuite$colorid" BIGINT NOT NULL,PRIMARY KEY("testsuite$entity_3id","testsuite$colorid")) +CREATE INDEX "idx_testsuite$entity_3_color_testsuite$color_testsuite$entity_3" ON PUBLIC."testsuite$entity_3_color"("testsuite$colorid","testsuite$entity_3id") +CREATE MEMORY TABLE PUBLIC."testsuite$color"("id" BIGINT NOT NULL PRIMARY KEY,"isprimary" BOOLEAN,"rangemin" DECIMAL(28,8),"rangemax" DECIMAL(28,8),"ral" INTEGER,"colorcode" VARCHAR(200) COLLATE SQL_TEXT_UCC,"name" VARCHAR(200) COLLATE SQL_TEXT_UCC) +CREATE MEMORY TABLE PUBLIC."testsuite$color_entity"("testsuite$colorid" BIGINT NOT NULL,"testsuite$entityid" BIGINT NOT NULL,PRIMARY KEY("testsuite$colorid","testsuite$entityid")) +CREATE INDEX "idx_testsuite$color_entity_testsuite$entity_testsuite$color" ON PUBLIC."testsuite$color_entity"("testsuite$entityid","testsuite$colorid") ALTER SEQUENCE SYSTEM_LOBS.LOB_ID RESTART WITH 1 ALTER SEQUENCE PUBLIC."system$filedocument_fileid_mxseq" RESTART WITH 1 ALTER SEQUENCE PUBLIC."system$filedocument___filename___mxseq" RESTART WITH 1 @@ -96,18 +106,22 @@ GRANT DBA TO SA SET SCHEMA SYSTEM_LOBS INSERT INTO BLOCKS VALUES(0,2147483647,0) SET SCHEMA PUBLIC +INSERT INTO "mendixsystem$entity" VALUES('0ab9d4f4-ef25-43c5-9291-8ef27e0062f9','TestSuite.Color','testsuite$color',NULL) INSERT INTO "mendixsystem$entity" VALUES('170ce49d-f29c-4fac-99a6-b55e8a3aeb39','System.FileDocument','system$filedocument',NULL) INSERT INTO "mendixsystem$entity" VALUES('282e2e60-88a5-469d-84a5-ba8d9151644f','System.User','system$user',NULL) INSERT INTO "mendixsystem$entity" VALUES('3078a23e-13b2-4a9b-84e4-2881fdee53c6','Administration.Account','administration$account','282e2e60-88a5-469d-84a5-ba8d9151644f') INSERT INTO "mendixsystem$entity" VALUES('37827192-315d-4ab6-85b8-f626f866ea76','System.Image','system$image','170ce49d-f29c-4fac-99a6-b55e8a3aeb39') INSERT INTO "mendixsystem$entity" VALUES('37f9fd49-5318-4c63-9a51-f761779b202f','System.Session','system$session',NULL) INSERT INTO "mendixsystem$entity" VALUES('3b6f5ca3-28d6-4581-b26e-7ce5bd0e6eeb','System.PrivateFileDocument','system$privatefiledocument','170ce49d-f29c-4fac-99a6-b55e8a3aeb39') +INSERT INTO "mendixsystem$entity" VALUES('4923ae57-6e7f-45e2-9b01-6d6b6eea265a','TestSuite.Entity_3','testsuite$entity_3',NULL) INSERT INTO "mendixsystem$entity" VALUES('4babd4c0-b903-4cb4-b1af-e59c4a5fcf3d','System.Thumbnail','system$thumbnail','170ce49d-f29c-4fac-99a6-b55e8a3aeb39') INSERT INTO "mendixsystem$entity" VALUES('685df5a6-1e02-49bb-a0b5-5a55c5e8313d','System.ScheduledEventInformation','system$scheduledeventinformation',NULL) INSERT INTO "mendixsystem$entity" VALUES('76805df3-dede-435f-92a6-d6525c68a693','System.Language','system$language',NULL) +INSERT INTO "mendixsystem$entity" VALUES('774c68d7-d12c-49c6-a095-f6d4848d2bca','TestSuite.Entity_2','testsuite$entity_2',NULL) INSERT INTO "mendixsystem$entity" VALUES('7f7c72af-1ab7-4bf9-bed6-16db5c8fcf6f','System.TimeZone','system$timezone',NULL) INSERT INTO "mendixsystem$entity" VALUES('92ef30a6-de04-423c-84fd-a21e9b9eeae2','System.UserRole','system$userrole',NULL) INSERT INTO "mendixsystem$entity" VALUES('d4154981-8dac-4150-aec5-efa3ef62a7a2','System.XASInstance','system$xasinstance',NULL) +INSERT INTO "mendixsystem$entity" VALUES('dcb65bb6-718e-4bca-bb34-ff9ee119136b','TestSuite.Entity','testsuite$entity',NULL) INSERT INTO "mendixsystem$entity" VALUES('efabe590-d3e2-4b24-9c39-836a367d217f','System.Statistics','system$statistics',NULL) INSERT INTO "mendixsystem$attribute" VALUES('040db5be-7810-48b3-a569-516191e8803d','282e2e60-88a5-469d-84a5-ba8d9151644f','LastLogin','lastlogin',20,200,'',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('0c2b42ef-02bd-3783-bf55-02a92f4275c7','37f9fd49-5318-4c63-9a51-f761779b202f','createdDate','createddate',20,0,'',FALSE) @@ -131,12 +145,17 @@ INSERT INTO "mendixsystem$attribute" VALUES('42eb180e-36df-4325-8b97-dec1e16f0e9 INSERT INTO "mendixsystem$attribute" VALUES('4359850e-675d-49db-a25c-d78ee530dc33','d4154981-8dac-4150-aec5-efa3ef62a7a2','PartnerName','partnername',30,200,'',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('444cda15-e7f4-43e7-a8d3-69c06081d868','efabe590-d3e2-4b24-9c39-836a367d217f','LastUpdate','lastupdate',20,200,'',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('4c9627fb-3b64-4239-95eb-f51fb8d3f2b3','170ce49d-f29c-4fac-99a6-b55e8a3aeb39','HasContents','hascontents',10,200,'false',FALSE) +INSERT INTO "mendixsystem$attribute" VALUES('4dd195b6-c5a5-4167-9c6b-668fcb99e530','0ab9d4f4-ef25-43c5-9291-8ef27e0062f9','RangeMax','rangemax',5,200,'0',FALSE) +INSERT INTO "mendixsystem$attribute" VALUES('54557d58-e2ca-4fb1-9cd4-16683e1e8a1b','0ab9d4f4-ef25-43c5-9291-8ef27e0062f9','ColorCode','colorcode',30,200,'#FF7514',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('5fecca4d-0f28-484d-9fe7-1afde250b07d','170ce49d-f29c-4fac-99a6-b55e8a3aeb39','DeleteAfterDownload','deleteafterdownload',10,200,'false',FALSE) +INSERT INTO "mendixsystem$attribute" VALUES('5fffc892-a0c1-4712-a812-eb1256660861','0ab9d4f4-ef25-43c5-9291-8ef27e0062f9','RangeMin','rangemin',5,200,'0',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('651e7007-7fcd-43b3-a918-a0de81de34bf','685df5a6-1e02-49bb-a0b5-5a55c5e8313d','StartTime','starttime',20,200,'',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('65b02632-d981-3a1c-8ec5-2a36fe6fd7d8','d4154981-8dac-4150-aec5-efa3ef62a7a2','createdDate','createddate',20,0,'',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('69acb4a2-be26-4cc5-902a-a8591d357510','282e2e60-88a5-469d-84a5-ba8d9151644f','Name','name',30,100,'',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('6abafab4-6a96-46c0-9475-b72cc4d3ffd6','7f7c72af-1ab7-4bf9-bed6-16db5c8fcf6f','Code','code',30,50,'',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('6d2a7545-4e52-4c5d-ac02-0b8211d0585f','685df5a6-1e02-49bb-a0b5-5a55c5e8313d','Status','status',40,200,'',FALSE) +INSERT INTO "mendixsystem$attribute" VALUES('6daf0494-c79c-4964-95a1-bed51236ee4f','0ab9d4f4-ef25-43c5-9291-8ef27e0062f9','IsPrimary','isprimary',10,200,'false',FALSE) +INSERT INTO "mendixsystem$attribute" VALUES('6ed9bbed-84c3-4189-bedf-0e82f1b99c11','0ab9d4f4-ef25-43c5-9291-8ef27e0062f9','Name','name',30,200,'Pastel orange',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('7ca1bcd3-9355-472f-9e3f-4440366297d6','d4154981-8dac-4150-aec5-efa3ef62a7a2','CustomerName','customername',30,200,'',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('84845531-dbd9-4e00-8afb-c2adc08699bb','282e2e60-88a5-469d-84a5-ba8d9151644f','FailedLogins','failedlogins',3,200,'0',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('8655b482-0ac3-31db-8289-b05f505b77cb','170ce49d-f29c-4fac-99a6-b55e8a3aeb39','createdDate','createddate',20,0,'',FALSE) @@ -148,6 +167,7 @@ INSERT INTO "mendixsystem$attribute" VALUES('96445370-6fed-11e4-9803-0800200c9a6 INSERT INTO "mendixsystem$attribute" VALUES('9c09d4eb-9c9c-303e-951e-8c3ea32db37a','282e2e60-88a5-469d-84a5-ba8d9151644f','createdDate','createddate',20,0,'',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('a02027b1-e24d-49fc-9b3f-ade644070879','170ce49d-f29c-4fac-99a6-b55e8a3aeb39','__FileName__','__filename__',0,200,'1',TRUE) INSERT INTO "mendixsystem$attribute" VALUES('a33fbc53-ecf5-46c5-bad2-a364686e19dc','92ef30a6-de04-423c-84fd-a21e9b9eeae2','Description','description',30,1000,'',FALSE) +INSERT INTO "mendixsystem$attribute" VALUES('a40a0209-9195-4c1c-a3d5-6d39c50d30c8','0ab9d4f4-ef25-43c5-9291-8ef27e0062f9','RAL','ral',3,200,'2003',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('b22d0982-fbee-43a7-8d20-c200d319a3e5','282e2e60-88a5-469d-84a5-ba8d9151644f','Active','active',10,200,'true',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('b51ea62a-1838-3f74-9c5f-07b5b5a92a45','170ce49d-f29c-4fac-99a6-b55e8a3aeb39','submetaobjectname','submetaobjectname',30,255,'System.FileDocument',FALSE) INSERT INTO "mendixsystem$attribute" VALUES('c2dd7e10-28b4-304c-9ddf-104be6be9cde','282e2e60-88a5-469d-84a5-ba8d9151644f','submetaobjectname','submetaobjectname',30,255,'System.User',FALSE) @@ -182,41 +202,50 @@ INSERT INTO "mendixsystem$association" VALUES('07738295-23fe-3fc1-832b-ed18b2272 INSERT INTO "mendixsystem$association" VALUES('1442c9da-d4ae-3cf5-b3c0-6c878743e4e5','System.owner','system$owner','170ce49d-f29c-4fac-99a6-b55e8a3aeb39','282e2e60-88a5-469d-84a5-ba8d9151644f','id','system$owner',NULL,NULL) INSERT INTO "mendixsystem$association" VALUES('1adca745-c7a9-44ff-92bb-5d41cb2a1743','System.grantableRoles','system$grantableroles','92ef30a6-de04-423c-84fd-a21e9b9eeae2','92ef30a6-de04-423c-84fd-a21e9b9eeae2','system$userroleid1','system$userroleid2',NULL,'idx_system$grantableroles_system$userrole_system$userrole') INSERT INTO "mendixsystem$association" VALUES('3dbea779-c8af-467e-a957-140c313ac1b7','System.Thumbnail_Image','system$thumbnail_image','4babd4c0-b903-4cb4-b1af-e59c4a5fcf3d','37827192-315d-4ab6-85b8-f626f866ea76','system$thumbnailid','system$imageid',NULL,'idx_system$thumbnail_image_system$image_system$thumbnail') +INSERT INTO "mendixsystem$association" VALUES('47cca560-cd85-40ba-8f9f-87e7c93ba180','TestSuite.Color_Entity','testsuite$color_entity','0ab9d4f4-ef25-43c5-9291-8ef27e0062f9','dcb65bb6-718e-4bca-bb34-ff9ee119136b','testsuite$colorid','testsuite$entityid',NULL,'idx_testsuite$color_entity_testsuite$entity_testsuite$color') INSERT INTO "mendixsystem$association" VALUES('546aaff5-62e1-40ce-ab45-d40d0a0478f1','System.Session_User','system$session_user','37f9fd49-5318-4c63-9a51-f761779b202f','282e2e60-88a5-469d-84a5-ba8d9151644f','system$sessionid','system$userid',NULL,'idx_system$session_user_system$user_system$session') INSERT INTO "mendixsystem$association" VALUES('6013226d-aeae-3cd2-acec-d95d8bd5c3ad','System.changedBy','system$changedby','282e2e60-88a5-469d-84a5-ba8d9151644f','282e2e60-88a5-469d-84a5-ba8d9151644f','id','system$changedby',NULL,NULL) INSERT INTO "mendixsystem$association" VALUES('6adaf137-4299-435e-9475-a871a4f21471','System.UserRoles','system$userroles','282e2e60-88a5-469d-84a5-ba8d9151644f','92ef30a6-de04-423c-84fd-a21e9b9eeae2','system$userid','system$userroleid',NULL,'idx_system$userroles_system$userrole_system$user') INSERT INTO "mendixsystem$association" VALUES('956c1382-b9fc-3367-b0b2-cb67ee9ef13f','System.changedBy','system$changedby','170ce49d-f29c-4fac-99a6-b55e8a3aeb39','282e2e60-88a5-469d-84a5-ba8d9151644f','id','system$changedby',NULL,NULL) +INSERT INTO "mendixsystem$association" VALUES('9c90205c-5e6b-4be3-a7ee-b5ffcd7f5789','TestSuite.Entity_2_Color','testsuite$entity_2_color','774c68d7-d12c-49c6-a095-f6d4848d2bca','0ab9d4f4-ef25-43c5-9291-8ef27e0062f9','testsuite$entity_2id','testsuite$colorid',NULL,'idx_testsuite$entity_2_color_testsuite$color_testsuite$entity_2') INSERT INTO "mendixsystem$association" VALUES('bab4a1ab-7d40-47d5-8f21-fc99d089211d','System.User_TimeZone','system$user_timezone','282e2e60-88a5-469d-84a5-ba8d9151644f','7f7c72af-1ab7-4bf9-bed6-16db5c8fcf6f','system$userid','system$timezoneid',NULL,'idx_system$user_timezone_system$timezone_system$user') +INSERT INTO "mendixsystem$association" VALUES('c964bfa6-d806-4a78-9dc6-0b7722912ea5','TestSuite.Entity_3_Color','testsuite$entity_3_color','4923ae57-6e7f-45e2-9b01-6d6b6eea265a','0ab9d4f4-ef25-43c5-9291-8ef27e0062f9','testsuite$entity_3id','testsuite$colorid',NULL,'idx_testsuite$entity_3_color_testsuite$color_testsuite$entity_3') INSERT INTO "mendixsystem$association" VALUES('d9eb2a5f-b448-4a73-b179-4141ab51e622','System.ClusterManager','system$clustermanager','efabe590-d3e2-4b24-9c39-836a367d217f','d4154981-8dac-4150-aec5-efa3ef62a7a2','system$statisticsid','system$xasinstanceid',NULL,'idx_system$clustermanager_system$xasinstance_system$statistics') -INSERT INTO "mendixsystem$version" VALUES('4.0.7','2016-10-28 13:47:48.564000','2.0.1','unversioned','Test') +INSERT INTO "mendixsystem$version" VALUES('4.0.7','2016-11-14 15:07:28.098000','2.0.1','unversioned','Test') INSERT INTO "mendixsystem$sequence" VALUES('system$filedocument_fileid_mxseq','0f81688b-e719-4204-8f86-8fcd664a0992',1,0) INSERT INTO "mendixsystem$sequence" VALUES('system$filedocument___filename___mxseq','a02027b1-e24d-49fc-9b3f-ade644070879',1,0) -INSERT INTO "mendixsystem$entityidentifier" VALUES('0ab9d4f4-ef25-43c5-9291-8ef27e0062f9',13,1001) +INSERT INTO "mendixsystem$entityidentifier" VALUES('0ab9d4f4-ef25-43c5-9291-8ef27e0062f9',13,3101) INSERT INTO "mendixsystem$entityidentifier" VALUES('170ce49d-f29c-4fac-99a6-b55e8a3aeb39',1,1) -INSERT INTO "mendixsystem$entityidentifier" VALUES('282e2e60-88a5-469d-84a5-ba8d9151644f',2,1201) +INSERT INTO "mendixsystem$entityidentifier" VALUES('282e2e60-88a5-469d-84a5-ba8d9151644f',2,3301) INSERT INTO "mendixsystem$entityidentifier" VALUES('3078a23e-13b2-4a9b-84e4-2881fdee53c6',15,1) INSERT INTO "mendixsystem$entityidentifier" VALUES('37827192-315d-4ab6-85b8-f626f866ea76',14,1) INSERT INTO "mendixsystem$entityidentifier" VALUES('37f9fd49-5318-4c63-9a51-f761779b202f',12,1) INSERT INTO "mendixsystem$entityidentifier" VALUES('3b6f5ca3-28d6-4581-b26e-7ce5bd0e6eeb',8,1) +INSERT INTO "mendixsystem$entityidentifier" VALUES('4923ae57-6e7f-45e2-9b01-6d6b6eea265a',20,1) INSERT INTO "mendixsystem$entityidentifier" VALUES('4babd4c0-b903-4cb4-b1af-e59c4a5fcf3d',4,1) INSERT INTO "mendixsystem$entityidentifier" VALUES('4beaee07-595a-4371-bbe4-7d86875f0ebb',6,1) INSERT INTO "mendixsystem$entityidentifier" VALUES('685df5a6-1e02-49bb-a0b5-5a55c5e8313d',5,1) INSERT INTO "mendixsystem$entityidentifier" VALUES('761a7054-7794-4799-8986-2e6cd68a53fd',17,1) INSERT INTO "mendixsystem$entityidentifier" VALUES('76805df3-dede-435f-92a6-d6525c68a693',16,101) +INSERT INTO "mendixsystem$entityidentifier" VALUES('774c68d7-d12c-49c6-a095-f6d4848d2bca',18,1) INSERT INTO "mendixsystem$entityidentifier" VALUES('7f7c72af-1ab7-4bf9-bed6-16db5c8fcf6f',9,601) INSERT INTO "mendixsystem$entityidentifier" VALUES('92ef30a6-de04-423c-84fd-a21e9b9eeae2',11,101) INSERT INTO "mendixsystem$entityidentifier" VALUES('ce3860ff-2093-42cd-b462-8da7485fc01e',7,1) -INSERT INTO "mendixsystem$entityidentifier" VALUES('d4154981-8dac-4150-aec5-efa3ef62a7a2',3,1201) +INSERT INTO "mendixsystem$entityidentifier" VALUES('d4154981-8dac-4150-aec5-efa3ef62a7a2',3,3401) +INSERT INTO "mendixsystem$entityidentifier" VALUES('dcb65bb6-718e-4bca-bb34-ff9ee119136b',19,1) INSERT INTO "mendixsystem$entityidentifier" VALUES('efabe590-d3e2-4b24-9c39-836a367d217f',10,101) INSERT INTO "system$user" VALUES(562949953421613,'2016-10-28 19:27:52.225000',TRUE,'2016-10-28 19:27:52.225000','2016-10-28 19:27:52.379000',FALSE,TRUE,0,FALSE,'Anonymous_0303fd94-3540-4d85-b0cc-1397d8f716ed','{BCrypt}$2a$10$YUKLgLGIg7XJwVRyUV9JkOWZG7oWJFdrPU3fHyNZ6pWzOK49aVNJe','System.User',562949953421613,NULL) INSERT INTO "system$user" VALUES(562949953421614,'2016-10-28 19:29:22.871000',TRUE,'2016-10-28 19:29:22.871000','2016-10-28 19:29:22.992000',FALSE,TRUE,0,FALSE,'Anonymous_e2ddb133-2f64-4812-a4a3-f7a73fc9edd6','{BCrypt}$2a$10$6WH.lhs226rAST4u.d57f..i5eKa8isYoD6/KbaZ6xIvbUEeQEgL.','System.User',562949953421614,NULL) INSERT INTO "system$user" VALUES(562949953422013,'2016-10-31 15:49:17.100000',TRUE,'2016-10-31 15:49:17.100000','2016-10-31 15:49:17.267000',FALSE,TRUE,0,FALSE,'Anonymous_acb18273-2fbb-4d87-b46c-e3a77db7dd44','{BCrypt}$2a$10$iUa97/xn7xQCmuecjiuZc.twJhs91vO3UUqu0bWd9eyjZGnvuzk3u','System.User',562949953422013,NULL) +INSERT INTO "system$user" VALUES(562949953423113,'2016-11-14 22:45:25.525000',TRUE,'2016-11-14 22:45:25.525000','2016-11-14 22:45:25.706000',FALSE,TRUE,0,FALSE,'Anonymous_9d26a5c9-9800-4a5f-9fd8-8ba29fc8320b','{BCrypt}$2a$10$Hf015ZQAHxQED.a4UWTIe.njrw9wuj5xoFnTgxy128vpa0eAmd/ny','System.User',562949953423113,NULL) INSERT INTO "system$user_language" VALUES(562949953421613,4503599627370497) INSERT INTO "system$user_language" VALUES(562949953421614,4503599627370497) INSERT INTO "system$user_language" VALUES(562949953422013,4503599627370497) +INSERT INTO "system$user_language" VALUES(562949953423113,4503599627370497) INSERT INTO "system$userroles" VALUES(562949953421613,3096224743817217) INSERT INTO "system$userroles" VALUES(562949953421614,3096224743817217) INSERT INTO "system$userroles" VALUES(562949953422013,3096224743817217) +INSERT INTO "system$userroles" VALUES(562949953423113,3096224743817217) INSERT INTO "system$timezone" VALUES(2533274790395905,'(GMT+00:00) Abidjan',0,'Africa/Abidjan') INSERT INTO "system$timezone" VALUES(2533274790395906,'(GMT+00:00) Accra',0,'Africa/Accra') INSERT INTO "system$timezone" VALUES(2533274790395907,'(GMT+03:00) Addis Ababa',10800000,'Africa/Addis_Ababa') @@ -721,7 +750,7 @@ INSERT INTO "system$timezone" VALUES(2533274790396405,'(GMT-07:00) Mountain',-25 INSERT INTO "system$timezone" VALUES(2533274790396406,'(GMT-08:00) Pacific',-28800000,'US/Pacific') INSERT INTO "system$timezone" VALUES(2533274790396407,'(GMT-08:00) Pacific-New',-28800000,'US/Pacific-New') INSERT INTO "system$timezone" VALUES(2533274790396408,'(GMT-11:00) Samoa',-39600000,'US/Samoa') -INSERT INTO "system$statistics" VALUES(2814749767106561,'2016-10-28 17:47:49.753000','2016-11-01 15:27:24.950000',2,0,0) +INSERT INTO "system$statistics" VALUES(2814749767106561,'2016-10-28 17:47:49.753000','2016-11-15 21:18:01.315000',2,0,0) INSERT INTO "system$userrole" VALUES(3096224743817217,'8dd52bfa-6d7e-453b-b506-303c0a3d9567','','Administrator') INSERT INTO "system$userrole" VALUES(3096224743817218,'53f5d6fa-6da9-4a71-b011-454ec052cce8','','User') INSERT INTO "system$grantableroles" VALUES(3096224743817217,3096224743817217) diff --git a/test/deployment/data/security.policy b/test/deployment/data/security.policy index 003d441..4f074cc 100644 --- a/test/deployment/data/security.policy +++ b/test/deployment/data/security.policy @@ -14,9 +14,9 @@ ALLOW { (java.lang.RuntimePermission "modifyThread" "") (java.lang.RuntimePermission "setContextClassLoader") (java.lang.RuntimePermission "setFactory") - (java.io.FilePermission "C:/Users/mch/Desktop/Widgeting/Handles/test/deployment/data/tmp/-" "read,write,delete,execute") - (java.io.FilePermission "C:/Users/mch/Desktop/Widgeting/Handles/test/deployment/model/resources/-" "read") - (java.io.FilePermission "C:/Users/mch/Desktop/Widgeting/Handles/test/deployment/model/lib/-" "read") + (java.io.FilePermission "C:/Users/mch/Documents/GitHub/Handles/test/deployment/data/tmp/-" "read,write,delete,execute") + (java.io.FilePermission "C:/Users/mch/Documents/GitHub/Handles/test/deployment/model/resources/-" "read") + (java.io.FilePermission "C:/Users/mch/Documents/GitHub/Handles/test/deployment/model/lib/-" "read") (java.net.NetPermission "getProxySelector" "") (java.net.NetPermission "specifyStreamHandler" "") (java.security.SecurityPermission "insertProvider.BC" "") diff --git a/test/deployment/log/build_core_compile_log.txt b/test/deployment/log/build_core_compile_log.txt index 692df8b..847ee99 100644 --- a/test/deployment/log/build_core_compile_log.txt +++ b/test/deployment/log/build_core_compile_log.txt @@ -1,8 +1,8 @@ -Buildfile: C:\Users\mch\Desktop\Widgeting\Handles\test\deployment\build_core.xml +Buildfile: C:\Users\mch\Documents\GitHub\Handles\test\deployment\build_core.xml compile: - [javac] Compiling 2 source files to C:\Users\mch\Desktop\Widgeting\Handles\test\deployment\run\bin - [javac] Note: C:\Users\mch\Desktop\Widgeting\Handles\test\javasource\com\mendix\core\Core.java uses unchecked or unsafe operations. + [javac] Compiling 2 source files to C:\Users\mch\Documents\GitHub\Handles\test\deployment\run\bin + [javac] Note: C:\Users\mch\Documents\GitHub\Handles\test\javasource\com\mendix\core\Core.java uses unchecked or unsafe operations. [javac] Note: Recompile with -Xlint:unchecked for details. build: @@ -12,10 +12,10 @@ build: [bnd] Use Import/Export Package directive -split-package:=(merge-first|merge-last|error|first) to get rid of this warning [bnd] Package found in [Jar:mxruntime, Jar:run] [bnd] Class path [Jar:biz.aQute.bnd.annotation, Jar:org.scala-lang.scala-library, Jar:datastorage-api, Jar:json, Jar:logging, Jar:m2ee-api, Jar:mxruntime, Jar:integration, Jar:osgi.cmpn, Jar:webui, Jar:javax.servlet, Jar:run] - [bnd] # project (project.jar) 42 + [bnd] # project (project.jar) 47 BUILD SUCCESSFUL -Total time: 1 second +Total time: 2 seconds diff --git a/test/deployment/log/build_core_deploy_log.txt b/test/deployment/log/build_core_deploy_log.txt index 6a242c7..364f50b 100644 --- a/test/deployment/log/build_core_deploy_log.txt +++ b/test/deployment/log/build_core_deploy_log.txt @@ -1,7 +1,7 @@ -Buildfile: C:\Users\mch\Desktop\Widgeting\Handles\test\deployment\build_core.xml +Buildfile: C:\Users\mch\Documents\GitHub\Handles\test\deployment\build_core.xml deploy: - [unzip] Expanding: C:\Program Files\Mendix\5.19.0\modeler\deployment.mxz into C:\Users\mch\Desktop\Widgeting\Handles\test\deployment + [unzip] Expanding: C:\Program Files\Mendix\5.19.0\modeler\deployment.mxz into C:\Users\mch\Documents\GitHub\Handles\test\deployment BUILD SUCCESSFUL Total time: 0 seconds diff --git a/test/deployment/log/m2ee_log.txt b/test/deployment/log/m2ee_log.txt index 6971a9f..e7db904 100644 --- a/test/deployment/log/m2ee_log.txt +++ b/test/deployment/log/m2ee_log.txt @@ -1,4 +1 @@ ShellTUI: Unable to read from stdin...exiting. - --> - diff --git a/test/deployment/model/bundles/i18n.jar b/test/deployment/model/bundles/i18n.jar index 4ca2668..b64efa4 100644 Binary files a/test/deployment/model/bundles/i18n.jar and b/test/deployment/model/bundles/i18n.jar differ diff --git a/test/deployment/model/bundles/project.jar b/test/deployment/model/bundles/project.jar index 8729643..5ee69db 100644 Binary files a/test/deployment/model/bundles/project.jar and b/test/deployment/model/bundles/project.jar differ diff --git a/test/deployment/model/model.mdp b/test/deployment/model/model.mdp index cf986a1..0695b78 100644 Binary files a/test/deployment/model/model.mdp and b/test/deployment/model/model.mdp differ diff --git a/test/deployment/run/bin/testsuite/proxies/Color$MemberNames.class b/test/deployment/run/bin/testsuite/proxies/Color$MemberNames.class index 403c612..e756be0 100644 Binary files a/test/deployment/run/bin/testsuite/proxies/Color$MemberNames.class and b/test/deployment/run/bin/testsuite/proxies/Color$MemberNames.class differ diff --git a/test/deployment/run/bin/testsuite/proxies/Color.class b/test/deployment/run/bin/testsuite/proxies/Color.class index 5a87741..322530a 100644 Binary files a/test/deployment/run/bin/testsuite/proxies/Color.class and b/test/deployment/run/bin/testsuite/proxies/Color.class differ diff --git a/test/deployment/run/bin/testsuite/proxies/Entity.class b/test/deployment/run/bin/testsuite/proxies/Entity.class new file mode 100644 index 0000000..9e797ba Binary files /dev/null and b/test/deployment/run/bin/testsuite/proxies/Entity.class differ diff --git a/test/deployment/run/bin/testsuite/proxies/Entity_2$MemberNames.class b/test/deployment/run/bin/testsuite/proxies/Entity_2$MemberNames.class new file mode 100644 index 0000000..9533fc3 Binary files /dev/null and b/test/deployment/run/bin/testsuite/proxies/Entity_2$MemberNames.class differ diff --git a/test/deployment/run/bin/testsuite/proxies/Entity_2.class b/test/deployment/run/bin/testsuite/proxies/Entity_2.class new file mode 100644 index 0000000..2a83fce Binary files /dev/null and b/test/deployment/run/bin/testsuite/proxies/Entity_2.class differ diff --git a/test/deployment/run/bin/testsuite/proxies/Entity_3$MemberNames.class b/test/deployment/run/bin/testsuite/proxies/Entity_3$MemberNames.class new file mode 100644 index 0000000..3a6ce04 Binary files /dev/null and b/test/deployment/run/bin/testsuite/proxies/Entity_3$MemberNames.class differ diff --git a/test/deployment/run/bin/testsuite/proxies/Entity_3.class b/test/deployment/run/bin/testsuite/proxies/Entity_3.class new file mode 100644 index 0000000..b9c0320 Binary files /dev/null and b/test/deployment/run/bin/testsuite/proxies/Entity_3.class differ diff --git a/test/deployment/run/felixcache/bundle0/security/cpa.txt b/test/deployment/run/felixcache/bundle0/security/cpa.txt index 7eb35eb..dde2127 100644 --- a/test/deployment/run/felixcache/bundle0/security/cpa.txt +++ b/test/deployment/run/felixcache/bundle0/security/cpa.txt @@ -1,4 +1,4 @@ -#Tue Nov 01 17:37:06 EDT 2016 +#Tue Nov 15 15:32:56 EST 2016 2-AllPermission\ to\ everything\ except\ project\ bundle=ALLOW { [org.osgi.service.condpermadmin.BundleLocationCondition "*project.jar" "\!"] (java.security.AllPermission) } "AllPermission to everything except project bundle" -1-Permissions\ for\ the\ project\ bundle=ALLOW { [org.osgi.service.condpermadmin.BundleLocationCondition "*project.jar"] (org.osgi.framework.AdminPermission "*" "*") (org.osgi.framework.PackagePermission "*" "exportonly,import") (org.osgi.framework.ServicePermission "*" "get,register") (org.osgi.framework.BundlePermission "*" "provide,require, host,fragment") (org.osgi.service.event.TopicPermission "*" "publish,subscribe") (java.lang.reflect.ReflectPermission "suppressAccessChecks") (java.lang.RuntimePermission "accessClassInPackage.com.sun.org.apache.xerces.internal.*" "") (java.lang.RuntimePermission "accessClassInPackage.sun.misc" "") (java.lang.RuntimePermission "accessDeclaredMembers") (java.lang.RuntimePermission "getProtectionDomain") (java.lang.RuntimePermission "getClassLoader") (java.lang.RuntimePermission "modifyThread" "") (java.lang.RuntimePermission "setContextClassLoader") (java.lang.RuntimePermission "setFactory") (java.io.FilePermission "C\:/Users/mch/Desktop/Widgeting/Handles/test/deployment/data/tmp/-" "read,write,delete,execute") (java.io.FilePermission "C\:/Users/mch/Desktop/Widgeting/Handles/test/deployment/model/resources/-" "read") (java.io.FilePermission "C\:/Users/mch/Desktop/Widgeting/Handles/test/deployment/model/lib/-" "read") (java.net.NetPermission "getProxySelector" "") (java.net.NetPermission "specifyStreamHandler" "") (java.security.SecurityPermission "insertProvider.BC" "") (java.security.SecurityPermission "putProviderProperty.BC" "") (java.util.logging.LoggingPermission "control" "") (java.util.PropertyPermission "com.google.gdata.DisableCookieHandler" "read") (java.util.PropertyPermission "com.sun.jersey.core.util.ReaderWriter.BufferSize" "read") (java.util.PropertyPermission "com.sun.xml.fastinfoset.parser.buffer-size" "read") (java.util.PropertyPermission "com.sun.xml.fastinfoset.parser.string-interning" "read") (java.util.PropertyPermission "com.sun.xml.fastinfoset.serializer.character-encoding-scheme" "read") (java.util.PropertyPermission "file.encoding" "read") (java.util.PropertyPermission "file.separator" "read") (java.util.PropertyPermission "glyphlist_ext" "read") (java.util.PropertyPermission "HSSFRow.ColInitialCapacity" "read") (java.util.PropertyPermission "HSSFSheet.RowInitialCapacity" "read") (java.util.PropertyPermission "HSSFWorkbook.SheetInitialCapacity" "read") (java.util.PropertyPermission "hornetq.version.property.filename" "read") (java.util.PropertyPermission "http.strictPostRedirect" "read") (java.util.PropertyPermission "https.cipherSuites" "read") (java.util.PropertyPermission "https.protocols" "read") (java.util.PropertyPermission "http\://java.sun.com/xml/dom/properties/ancestor-check" "read") (java.util.PropertyPermission "ical4j.*" "read,write") (java.util.PropertyPermission "imgscalr.*" "read,write") (java.util.PropertyPermission "java.home" "read") (java.util.PropertyPermission "java.io.tmpdir" "read") (java.util.PropertyPermission "java.protocol.handler.pkgs" "read, write") (java.util.PropertyPermission "java.specification.version" "read") (java.util.PropertyPermission "java.vendor" "read") (java.util.PropertyPermission "java.vendor.url" "read") (java.util.PropertyPermission "java.version" "read") (java.util.PropertyPermission "java.vm.name" "read") (java.util.PropertyPermission "java.vm.vendor" "read") (java.util.PropertyPermission "java.vm.version" "read") (java.util.PropertyPermission "javax.net.ssl.keyStore" "write") (java.util.PropertyPermission "javax.net.ssl.keyStorePassword" "read,write") (java.util.PropertyPermission "javax.net.ssl.trustStore" "read,write") (java.util.PropertyPermission "javax.net.ssl.trustStorePassword" "read,write") (java.util.PropertyPermission "jco.destinations.dir" "read") (java.util.PropertyPermission "line.separator" "read,write") (java.util.PropertyPermission "mail.smtp.auth" "read,write") (java.util.PropertyPermission "mail.smtp.host" "read,write") (java.util.PropertyPermission "mail.smtp.password" "read,write") (java.util.PropertyPermission "mail.smtp.port" "read,write") (java.util.PropertyPermission "mail.smtp.starttls.enable" "read,write") (java.util.PropertyPermission "mail.smtp.user" "read,write") (java.util.PropertyPermission "mapAnyUriToUri" "read") (java.util.PropertyPermission "mustache.compile" "read,write") (java.util.PropertyPermission "mustache.debug" "read,write") (java.util.PropertyPermission "nd.org.xml.sax.parser read" "read,write") (java.util.PropertyPermission "nd.org.xml.sax.parser" "read,write") (java.util.PropertyPermission "net.fortuna.*" "read,write") (java.util.PropertyPermission "org.apache.*" "read,write") (java.util.PropertyPermission "org.bouncycastle.pkcs1.strict" "read") (java.util.PropertyPermission "org.glassfish.web.rfc2109_cookie_names_enforced" "read") (java.util.PropertyPermission "org.hornetq.opt.directblast" "read") (java.util.PropertyPermission "org.hornetq.ssl.keyStoreProvider" "read") (java.util.PropertyPermission "org.hornetq.ssl.trustStoreProvider" "read") (java.util.PropertyPermission "org.imgscalr.*" "read,write") (java.util.PropertyPermission "org.jboss.netty.debug" "read") (java.util.PropertyPermission "org.postgresql.forceBinary" "read") (java.util.PropertyPermission "org.springframework.*" "read write") (java.util.PropertyPermission "org.owasp.*" "read,write") (java.util.PropertyPermission "org.xml.sax.parser" "read,write") (java.util.PropertyPermission "os.arch" "read") (java.util.PropertyPermission "os.name" "read") (java.util.PropertyPermission "os.version" "read") (java.util.PropertyPermission "path.separator" "read") (java.util.PropertyPermission "pdftextstripper.drop" "read") (java.util.PropertyPermission "pdftextstripper.indent" "read") (java.util.PropertyPermission "poi.keep.tmp.files" "read") (java.util.PropertyPermission "saaj.lazy.contentlength" "read") (java.util.PropertyPermission "ssl.KeyManagerFactory.algorithm" "read,write") (java.util.PropertyPermission "smack.disabledClasses" "read,write") (java.util.PropertyPermission "smack.provider.file" "read,write") (java.util.PropertyPermission "sun.arch.data.model" "read,write") (java.util.PropertyPermission "twitter4j.http.httpClient" "read,write") (java.util.PropertyPermission "twitter4j.loggerFactory" "read,write") (java.util.PropertyPermission "user.dir" "read") (java.util.PropertyPermission "webdriver.remote.shorten_log_messages" "read") (java.net.SocketPermission "*" "connect, accept") (java.net.SocketPermission "localhost\:0" "listen,resolve") (javax.xml.bind.JAXBPermission "setDatatypeConverter") (org.bouncycastle.jce.ProviderConfigurationPermission "BC" "ecImplicitlyCA, threadLocalEcImplicitlyCA") } "Permissions for the project bundle" +1-Permissions\ for\ the\ project\ bundle=ALLOW { [org.osgi.service.condpermadmin.BundleLocationCondition "*project.jar"] (org.osgi.framework.AdminPermission "*" "*") (org.osgi.framework.PackagePermission "*" "exportonly,import") (org.osgi.framework.ServicePermission "*" "get,register") (org.osgi.framework.BundlePermission "*" "provide,require, host,fragment") (org.osgi.service.event.TopicPermission "*" "publish,subscribe") (java.lang.reflect.ReflectPermission "suppressAccessChecks") (java.lang.RuntimePermission "accessClassInPackage.com.sun.org.apache.xerces.internal.*" "") (java.lang.RuntimePermission "accessClassInPackage.sun.misc" "") (java.lang.RuntimePermission "accessDeclaredMembers") (java.lang.RuntimePermission "getProtectionDomain") (java.lang.RuntimePermission "getClassLoader") (java.lang.RuntimePermission "modifyThread" "") (java.lang.RuntimePermission "setContextClassLoader") (java.lang.RuntimePermission "setFactory") (java.io.FilePermission "C\:/Users/mch/Documents/GitHub/Handles/test/deployment/data/tmp/-" "read,write,delete,execute") (java.io.FilePermission "C\:/Users/mch/Documents/GitHub/Handles/test/deployment/model/resources/-" "read") (java.io.FilePermission "C\:/Users/mch/Documents/GitHub/Handles/test/deployment/model/lib/-" "read") (java.net.NetPermission "getProxySelector" "") (java.net.NetPermission "specifyStreamHandler" "") (java.security.SecurityPermission "insertProvider.BC" "") (java.security.SecurityPermission "putProviderProperty.BC" "") (java.util.logging.LoggingPermission "control" "") (java.util.PropertyPermission "com.google.gdata.DisableCookieHandler" "read") (java.util.PropertyPermission "com.sun.jersey.core.util.ReaderWriter.BufferSize" "read") (java.util.PropertyPermission "com.sun.xml.fastinfoset.parser.buffer-size" "read") (java.util.PropertyPermission "com.sun.xml.fastinfoset.parser.string-interning" "read") (java.util.PropertyPermission "com.sun.xml.fastinfoset.serializer.character-encoding-scheme" "read") (java.util.PropertyPermission "file.encoding" "read") (java.util.PropertyPermission "file.separator" "read") (java.util.PropertyPermission "glyphlist_ext" "read") (java.util.PropertyPermission "HSSFRow.ColInitialCapacity" "read") (java.util.PropertyPermission "HSSFSheet.RowInitialCapacity" "read") (java.util.PropertyPermission "HSSFWorkbook.SheetInitialCapacity" "read") (java.util.PropertyPermission "hornetq.version.property.filename" "read") (java.util.PropertyPermission "http.strictPostRedirect" "read") (java.util.PropertyPermission "https.cipherSuites" "read") (java.util.PropertyPermission "https.protocols" "read") (java.util.PropertyPermission "http\://java.sun.com/xml/dom/properties/ancestor-check" "read") (java.util.PropertyPermission "ical4j.*" "read,write") (java.util.PropertyPermission "imgscalr.*" "read,write") (java.util.PropertyPermission "java.home" "read") (java.util.PropertyPermission "java.io.tmpdir" "read") (java.util.PropertyPermission "java.protocol.handler.pkgs" "read, write") (java.util.PropertyPermission "java.specification.version" "read") (java.util.PropertyPermission "java.vendor" "read") (java.util.PropertyPermission "java.vendor.url" "read") (java.util.PropertyPermission "java.version" "read") (java.util.PropertyPermission "java.vm.name" "read") (java.util.PropertyPermission "java.vm.vendor" "read") (java.util.PropertyPermission "java.vm.version" "read") (java.util.PropertyPermission "javax.net.ssl.keyStore" "write") (java.util.PropertyPermission "javax.net.ssl.keyStorePassword" "read,write") (java.util.PropertyPermission "javax.net.ssl.trustStore" "read,write") (java.util.PropertyPermission "javax.net.ssl.trustStorePassword" "read,write") (java.util.PropertyPermission "jco.destinations.dir" "read") (java.util.PropertyPermission "line.separator" "read,write") (java.util.PropertyPermission "mail.smtp.auth" "read,write") (java.util.PropertyPermission "mail.smtp.host" "read,write") (java.util.PropertyPermission "mail.smtp.password" "read,write") (java.util.PropertyPermission "mail.smtp.port" "read,write") (java.util.PropertyPermission "mail.smtp.starttls.enable" "read,write") (java.util.PropertyPermission "mail.smtp.user" "read,write") (java.util.PropertyPermission "mapAnyUriToUri" "read") (java.util.PropertyPermission "mustache.compile" "read,write") (java.util.PropertyPermission "mustache.debug" "read,write") (java.util.PropertyPermission "nd.org.xml.sax.parser read" "read,write") (java.util.PropertyPermission "nd.org.xml.sax.parser" "read,write") (java.util.PropertyPermission "net.fortuna.*" "read,write") (java.util.PropertyPermission "org.apache.*" "read,write") (java.util.PropertyPermission "org.bouncycastle.pkcs1.strict" "read") (java.util.PropertyPermission "org.glassfish.web.rfc2109_cookie_names_enforced" "read") (java.util.PropertyPermission "org.hornetq.opt.directblast" "read") (java.util.PropertyPermission "org.hornetq.ssl.keyStoreProvider" "read") (java.util.PropertyPermission "org.hornetq.ssl.trustStoreProvider" "read") (java.util.PropertyPermission "org.imgscalr.*" "read,write") (java.util.PropertyPermission "org.jboss.netty.debug" "read") (java.util.PropertyPermission "org.postgresql.forceBinary" "read") (java.util.PropertyPermission "org.springframework.*" "read write") (java.util.PropertyPermission "org.owasp.*" "read,write") (java.util.PropertyPermission "org.xml.sax.parser" "read,write") (java.util.PropertyPermission "os.arch" "read") (java.util.PropertyPermission "os.name" "read") (java.util.PropertyPermission "os.version" "read") (java.util.PropertyPermission "path.separator" "read") (java.util.PropertyPermission "pdftextstripper.drop" "read") (java.util.PropertyPermission "pdftextstripper.indent" "read") (java.util.PropertyPermission "poi.keep.tmp.files" "read") (java.util.PropertyPermission "saaj.lazy.contentlength" "read") (java.util.PropertyPermission "ssl.KeyManagerFactory.algorithm" "read,write") (java.util.PropertyPermission "smack.disabledClasses" "read,write") (java.util.PropertyPermission "smack.provider.file" "read,write") (java.util.PropertyPermission "sun.arch.data.model" "read,write") (java.util.PropertyPermission "twitter4j.http.httpClient" "read,write") (java.util.PropertyPermission "twitter4j.loggerFactory" "read,write") (java.util.PropertyPermission "user.dir" "read") (java.util.PropertyPermission "webdriver.remote.shorten_log_messages" "read") (java.net.SocketPermission "*" "connect, accept") (java.net.SocketPermission "localhost\:0" "listen,resolve") (javax.xml.bind.JAXBPermission "setDatatypeConverter") (org.bouncycastle.jce.ProviderConfigurationPermission "BC" "ecImplicitlyCA, threadLocalEcImplicitlyCA") } "Permissions for the project bundle" 0-Management\ Agent\ Policy=ALLOW { [org.osgi.service.condpermadmin.BundleLocationCondition "file\:/C\:/Program%20Files/Mendix/5.19.0/runtime/bundles/mxruntime.jar"] (java.security.AllPermission "*" "*") } "Management Agent Policy" diff --git a/test/deployment/run/felixcache/bundle1/bundle.info b/test/deployment/run/felixcache/bundle1/bundle.info index b66b3e5..f8a694e 100644 --- a/test/deployment/run/felixcache/bundle1/bundle.info +++ b/test/deployment/run/felixcache/bundle1/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/appcontainer.jar 32 1 -1478036223183 +1479241973261 0 diff --git a/test/deployment/run/felixcache/bundle10/bundle.info b/test/deployment/run/felixcache/bundle10/bundle.info index a28c037..3807b2f 100644 --- a/test/deployment/run/felixcache/bundle10/bundle.info +++ b/test/deployment/run/felixcache/bundle10/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.google.guava.jar 32 1 -1478036223372 +1479241973476 0 diff --git a/test/deployment/run/felixcache/bundle100/bundle.info b/test/deployment/run/felixcache/bundle100/bundle.info index 39273cb..fa0d181 100644 --- a/test/deployment/run/felixcache/bundle100/bundle.info +++ b/test/deployment/run/felixcache/bundle100/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/slf4j.api.jar 32 1 -1478036225158 +1479241975212 0 diff --git a/test/deployment/run/felixcache/bundle101/bundle.info b/test/deployment/run/felixcache/bundle101/bundle.info index 2294b4b..53333c0 100644 --- a/test/deployment/run/felixcache/bundle101/bundle.info +++ b/test/deployment/run/felixcache/bundle101/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/storage-api.jar 32 1 -1478036225172 +1479241975224 0 diff --git a/test/deployment/run/felixcache/bundle102/bundle.info b/test/deployment/run/felixcache/bundle102/bundle.info index e9a4bc7..b2cafb5 100644 --- a/test/deployment/run/felixcache/bundle102/bundle.info +++ b/test/deployment/run/felixcache/bundle102/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/storage-localfilesystem.jar 32 1 -1478036225185 +1479241975237 0 diff --git a/test/deployment/run/felixcache/bundle103/bundle.info b/test/deployment/run/felixcache/bundle103/bundle.info index 4d12f85..596dc1b 100644 --- a/test/deployment/run/felixcache/bundle103/bundle.info +++ b/test/deployment/run/felixcache/bundle103/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/storage-s3.jar 32 1 -1478036225199 +1479241975251 0 diff --git a/test/deployment/run/felixcache/bundle104/bundle.info b/test/deployment/run/felixcache/bundle104/bundle.info index 9054623..eb01e9f 100644 --- a/test/deployment/run/felixcache/bundle104/bundle.info +++ b/test/deployment/run/felixcache/bundle104/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/webui.jar 32 1 -1478036225211 +1479241975264 0 diff --git a/test/deployment/run/felixcache/bundle105/bundle.info b/test/deployment/run/felixcache/bundle105/bundle.info index 3d05aec..725b0f6 100644 --- a/test/deployment/run/felixcache/bundle105/bundle.info +++ b/test/deployment/run/felixcache/bundle105/bundle.info @@ -2,5 +2,5 @@ file:model/bundles/project.jar 32 1 -1478036225408 +1479241975455 0 diff --git a/test/deployment/run/felixcache/bundle105/version0.0/bundle.jar b/test/deployment/run/felixcache/bundle105/version0.0/bundle.jar index 8729643..5ee69db 100644 Binary files a/test/deployment/run/felixcache/bundle105/version0.0/bundle.jar and b/test/deployment/run/felixcache/bundle105/version0.0/bundle.jar differ diff --git a/test/deployment/run/felixcache/bundle106/bundle.info b/test/deployment/run/felixcache/bundle106/bundle.info index e83512f..3e8887e 100644 --- a/test/deployment/run/felixcache/bundle106/bundle.info +++ b/test/deployment/run/felixcache/bundle106/bundle.info @@ -2,5 +2,5 @@ file:model/bundles/i18n.jar 2 2 -1478036225420 +1479241975466 0 diff --git a/test/deployment/run/felixcache/bundle106/version0.0/bundle.jar b/test/deployment/run/felixcache/bundle106/version0.0/bundle.jar index 4ca2668..b64efa4 100644 Binary files a/test/deployment/run/felixcache/bundle106/version0.0/bundle.jar and b/test/deployment/run/felixcache/bundle106/version0.0/bundle.jar differ diff --git a/test/deployment/run/felixcache/bundle11/bundle.info b/test/deployment/run/felixcache/bundle11/bundle.info index e7876f5..4fa3c02 100644 --- a/test/deployment/run/felixcache/bundle11/bundle.info +++ b/test/deployment/run/felixcache/bundle11/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mendix.jaxp.ri.jar 32 1 -1478036223392 +1479241973497 0 diff --git a/test/deployment/run/felixcache/bundle12/bundle.info b/test/deployment/run/felixcache/bundle12/bundle.info index 8c64b62..7c7862e 100644 --- a/test/deployment/run/felixcache/bundle12/bundle.info +++ b/test/deployment/run/felixcache/bundle12/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mendix.jbcrypt.jar 32 1 -1478036223424 +1479241973529 0 diff --git a/test/deployment/run/felixcache/bundle13/bundle.info b/test/deployment/run/felixcache/bundle13/bundle.info index d08630a..22f3086 100644 --- a/test/deployment/run/felixcache/bundle13/bundle.info +++ b/test/deployment/run/felixcache/bundle13/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mendix.metadata-extractor.jar 32 1 -1478036223439 +1479241973540 0 diff --git a/test/deployment/run/felixcache/bundle14/bundle.info b/test/deployment/run/felixcache/bundle14/bundle.info index 95a2753..5a400d8 100644 --- a/test/deployment/run/felixcache/bundle14/bundle.info +++ b/test/deployment/run/felixcache/bundle14/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mendix.ojdbc7.jar 32 1 -1478036223457 +1479241973552 0 diff --git a/test/deployment/run/felixcache/bundle15/bundle.info b/test/deployment/run/felixcache/bundle15/bundle.info index 27654ff..18cafa6 100644 --- a/test/deployment/run/felixcache/bundle15/bundle.info +++ b/test/deployment/run/felixcache/bundle15/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mendix.smack.jar 32 1 -1478036223487 +1479241973577 0 diff --git a/test/deployment/run/felixcache/bundle16/bundle.info b/test/deployment/run/felixcache/bundle16/bundle.info index f71fced..cff109f 100644 --- a/test/deployment/run/felixcache/bundle16/bundle.info +++ b/test/deployment/run/felixcache/bundle16/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mendix.sqljdbc4.jar 32 1 -1478036223509 +1479241973599 0 diff --git a/test/deployment/run/felixcache/bundle17/bundle.info b/test/deployment/run/felixcache/bundle17/bundle.info index 1535305..3f6f893 100644 --- a/test/deployment/run/felixcache/bundle17/bundle.info +++ b/test/deployment/run/felixcache/bundle17/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mendix.user-agent-utils.jar 32 1 -1478036223533 +1479241973620 0 diff --git a/test/deployment/run/felixcache/bundle18/bundle.info b/test/deployment/run/felixcache/bundle18/bundle.info index ba2e370..193795f 100644 --- a/test/deployment/run/felixcache/bundle18/bundle.info +++ b/test/deployment/run/felixcache/bundle18/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mendix.vt-password.jar 32 1 -1478036223550 +1479241973631 0 diff --git a/test/deployment/run/felixcache/bundle19/bundle.info b/test/deployment/run/felixcache/bundle19/bundle.info index 8b1514b..2f8db99 100644 --- a/test/deployment/run/felixcache/bundle19/bundle.info +++ b/test/deployment/run/felixcache/bundle19/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mendix.webservices-rt.jar 32 1 -1478036223569 +1479241973644 0 diff --git a/test/deployment/run/felixcache/bundle2/bundle.info b/test/deployment/run/felixcache/bundle2/bundle.info index b44d220..254405f 100644 --- a/test/deployment/run/felixcache/bundle2/bundle.info +++ b/test/deployment/run/felixcache/bundle2/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/biz.aQute.bnd.annotation.jar 32 1 -1478036223205 +1479241973287 0 diff --git a/test/deployment/run/felixcache/bundle20/bundle.info b/test/deployment/run/felixcache/bundle20/bundle.info index 69b1382..87e34b6 100644 --- a/test/deployment/run/felixcache/bundle20/bundle.info +++ b/test/deployment/run/felixcache/bundle20/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mendix.xmpcore.jar 32 1 -1478036223629 +1479241973702 0 diff --git a/test/deployment/run/felixcache/bundle21/bundle.info b/test/deployment/run/felixcache/bundle21/bundle.info index 75cd5ff..901f32c 100644 --- a/test/deployment/run/felixcache/bundle21/bundle.info +++ b/test/deployment/run/felixcache/bundle21/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.mongodb.jar 32 1 -1478036223645 +1479241973718 0 diff --git a/test/deployment/run/felixcache/bundle22/bundle.info b/test/deployment/run/felixcache/bundle22/bundle.info index 500bf83..7e55bab 100644 --- a/test/deployment/run/felixcache/bundle22/bundle.info +++ b/test/deployment/run/felixcache/bundle22/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.springsource.com.lowagie.text.jar 32 1 -1478036223661 +1479241973734 0 diff --git a/test/deployment/run/felixcache/bundle23/bundle.info b/test/deployment/run/felixcache/bundle23/bundle.info index 8d26141..aa5dd7f 100644 --- a/test/deployment/run/felixcache/bundle23/bundle.info +++ b/test/deployment/run/felixcache/bundle23/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.springsource.javax.transaction.jar 32 1 -1478036223679 +1479241973751 0 diff --git a/test/deployment/run/felixcache/bundle24/bundle.info b/test/deployment/run/felixcache/bundle24/bundle.info index ddd65dc..0627566 100644 --- a/test/deployment/run/felixcache/bundle24/bundle.info +++ b/test/deployment/run/felixcache/bundle24/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.springsource.javax.xml.soap.jar 32 1 -1478036223692 +1479241973765 0 diff --git a/test/deployment/run/felixcache/bundle25/bundle.info b/test/deployment/run/felixcache/bundle25/bundle.info index 15d9935..dedb83e 100644 --- a/test/deployment/run/felixcache/bundle25/bundle.info +++ b/test/deployment/run/felixcache/bundle25/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.sun.mail.javax.mail.jar 32 1 -1478036223707 +1479241973797 0 diff --git a/test/deployment/run/felixcache/bundle26/bundle.info b/test/deployment/run/felixcache/bundle26/bundle.info index e3e7d06..9488ca7 100644 --- a/test/deployment/run/felixcache/bundle26/bundle.info +++ b/test/deployment/run/felixcache/bundle26/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.sun.xml.bind.jar 32 1 -1478036223726 +1479241973815 0 diff --git a/test/deployment/run/felixcache/bundle27/bundle.info b/test/deployment/run/felixcache/bundle27/bundle.info index 72c2863..b9ffc6f 100644 --- a/test/deployment/run/felixcache/bundle27/bundle.info +++ b/test/deployment/run/felixcache/bundle27/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.typesafe.akka.actor.jar 32 1 -1478036223749 +1479241973838 0 diff --git a/test/deployment/run/felixcache/bundle28/bundle.info b/test/deployment/run/felixcache/bundle28/bundle.info index 7396e2c..1e405c9 100644 --- a/test/deployment/run/felixcache/bundle28/bundle.info +++ b/test/deployment/run/felixcache/bundle28/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.typesafe.akka.slf4j.jar 32 1 -1478036223773 +1479241973858 0 diff --git a/test/deployment/run/felixcache/bundle29/bundle.info b/test/deployment/run/felixcache/bundle29/bundle.info index 8da6008..ababa1f 100644 --- a/test/deployment/run/felixcache/bundle29/bundle.info +++ b/test/deployment/run/felixcache/bundle29/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.typesafe.akka.testkit.jar 32 1 -1478036223789 +1479241973872 0 diff --git a/test/deployment/run/felixcache/bundle3/bundle.info b/test/deployment/run/felixcache/bundle3/bundle.info index b2225f8..afd9b99 100644 --- a/test/deployment/run/felixcache/bundle3/bundle.info +++ b/test/deployment/run/felixcache/bundle3/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/biz.aQute.bndlib.jar 32 1 -1478036223216 +1479241973300 0 diff --git a/test/deployment/run/felixcache/bundle30/bundle.info b/test/deployment/run/felixcache/bundle30/bundle.info index 2add3ec..6dd4605 100644 --- a/test/deployment/run/felixcache/bundle30/bundle.info +++ b/test/deployment/run/felixcache/bundle30/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.typesafe.config.jar 32 1 -1478036223805 +1479241973885 0 diff --git a/test/deployment/run/felixcache/bundle31/bundle.info b/test/deployment/run/felixcache/bundle31/bundle.info index faacfa8..62291a6 100644 --- a/test/deployment/run/felixcache/bundle31/bundle.info +++ b/test/deployment/run/felixcache/bundle31/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/configuration.jar 32 1 -1478036223821 +1479241973897 0 diff --git a/test/deployment/run/felixcache/bundle32/bundle.info b/test/deployment/run/felixcache/bundle32/bundle.info index e3bac96..8d2ad03 100644 --- a/test/deployment/run/felixcache/bundle32/bundle.info +++ b/test/deployment/run/felixcache/bundle32/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/connectionbus.jar 32 1 -1478036223834 +1479241973909 0 diff --git a/test/deployment/run/felixcache/bundle33/bundle.info b/test/deployment/run/felixcache/bundle33/bundle.info index f9343a6..488745e 100644 --- a/test/deployment/run/felixcache/bundle33/bundle.info +++ b/test/deployment/run/felixcache/bundle33/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/datastorage-api.jar 32 1 -1478036223852 +1479241973925 0 diff --git a/test/deployment/run/felixcache/bundle34/bundle.info b/test/deployment/run/felixcache/bundle34/bundle.info index 6e23387..e5d0a25 100644 --- a/test/deployment/run/felixcache/bundle34/bundle.info +++ b/test/deployment/run/felixcache/bundle34/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/datastorage-utils.jar 32 1 -1478036223866 +1479241973936 0 diff --git a/test/deployment/run/felixcache/bundle35/bundle.info b/test/deployment/run/felixcache/bundle35/bundle.info index d8ea458..fe8456a 100644 --- a/test/deployment/run/felixcache/bundle35/bundle.info +++ b/test/deployment/run/felixcache/bundle35/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/datastorage.jar 32 1 -1478036223885 +1479241973949 0 diff --git a/test/deployment/run/felixcache/bundle36/bundle.info b/test/deployment/run/felixcache/bundle36/bundle.info index 0752746..99fde27 100644 --- a/test/deployment/run/felixcache/bundle36/bundle.info +++ b/test/deployment/run/felixcache/bundle36/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/documentexporter.jar 32 1 -1478036223904 +1479241973962 0 diff --git a/test/deployment/run/felixcache/bundle37/bundle.info b/test/deployment/run/felixcache/bundle37/bundle.info index b5b2afe..3a0ebe1 100644 --- a/test/deployment/run/felixcache/bundle37/bundle.info +++ b/test/deployment/run/felixcache/bundle37/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/integration.jar 32 1 -1478036223929 +1479241973982 0 diff --git a/test/deployment/run/felixcache/bundle38/bundle.info b/test/deployment/run/felixcache/bundle38/bundle.info index e16e603..7d2a001 100644 --- a/test/deployment/run/felixcache/bundle38/bundle.info +++ b/test/deployment/run/felixcache/bundle38/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/jackson-core-asl.jar 32 1 -1478036223948 +1479241973999 0 diff --git a/test/deployment/run/felixcache/bundle39/bundle.info b/test/deployment/run/felixcache/bundle39/bundle.info index 8d99d7e..a7f9cd8 100644 --- a/test/deployment/run/felixcache/bundle39/bundle.info +++ b/test/deployment/run/felixcache/bundle39/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/javax.servlet.jar 32 1 -1478036223965 +1479241974012 0 diff --git a/test/deployment/run/felixcache/bundle4/bundle.info b/test/deployment/run/felixcache/bundle4/bundle.info index 82d1e2c..47d8371 100644 --- a/test/deployment/run/felixcache/bundle4/bundle.info +++ b/test/deployment/run/felixcache/bundle4/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/ch.qos.logback.classic.jar 32 1 -1478036223232 +1479241973320 0 diff --git a/test/deployment/run/felixcache/bundle40/bundle.info b/test/deployment/run/felixcache/bundle40/bundle.info index 9b7f2a3..7a17d09 100644 --- a/test/deployment/run/felixcache/bundle40/bundle.info +++ b/test/deployment/run/felixcache/bundle40/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/jaxb-api.jar 32 1 -1478036223984 +1479241974032 0 diff --git a/test/deployment/run/felixcache/bundle41/bundle.info b/test/deployment/run/felixcache/bundle41/bundle.info index 3021be5..3c22133 100644 --- a/test/deployment/run/felixcache/bundle41/bundle.info +++ b/test/deployment/run/felixcache/bundle41/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/jcl.over.slf4j.jar 32 1 -1478036223999 +1479241974044 0 diff --git a/test/deployment/run/felixcache/bundle42/bundle.info b/test/deployment/run/felixcache/bundle42/bundle.info index 0a40ce9..e68fefd 100644 --- a/test/deployment/run/felixcache/bundle42/bundle.info +++ b/test/deployment/run/felixcache/bundle42/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/joda-time.jar 32 1 -1478036224009 +1479241974055 0 diff --git a/test/deployment/run/felixcache/bundle43/bundle.info b/test/deployment/run/felixcache/bundle43/bundle.info index a3ae81d..ebef0bb 100644 --- a/test/deployment/run/felixcache/bundle43/bundle.info +++ b/test/deployment/run/felixcache/bundle43/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/json.jar 32 1 -1478036224024 +1479241974069 0 diff --git a/test/deployment/run/felixcache/bundle44/bundle.info b/test/deployment/run/felixcache/bundle44/bundle.info index 298ffe8..d18e45a 100644 --- a/test/deployment/run/felixcache/bundle44/bundle.info +++ b/test/deployment/run/felixcache/bundle44/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/logging.jar 32 1 -1478036224036 +1479241974081 0 diff --git a/test/deployment/run/felixcache/bundle45/bundle.info b/test/deployment/run/felixcache/bundle45/bundle.info index bd9c786..d90b2f1 100644 --- a/test/deployment/run/felixcache/bundle45/bundle.info +++ b/test/deployment/run/felixcache/bundle45/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/m2ee-api.jar 32 1 -1478036224048 +1479241974092 0 diff --git a/test/deployment/run/felixcache/bundle46/bundle.info b/test/deployment/run/felixcache/bundle46/bundle.info index f8af814..1473280 100644 --- a/test/deployment/run/felixcache/bundle46/bundle.info +++ b/test/deployment/run/felixcache/bundle46/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/mxruntime.jar 32 1 -1478036224062 +1479241974103 0 diff --git a/test/deployment/run/felixcache/bundle47/bundle.info b/test/deployment/run/felixcache/bundle47/bundle.info index 8df397a..94dd604 100644 --- a/test/deployment/run/felixcache/bundle47/bundle.info +++ b/test/deployment/run/felixcache/bundle47/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.commons.codec.jar 32 1 -1478036224085 +1479241974129 0 diff --git a/test/deployment/run/felixcache/bundle48/bundle.info b/test/deployment/run/felixcache/bundle48/bundle.info index 85e1876..76190e7 100644 --- a/test/deployment/run/felixcache/bundle48/bundle.info +++ b/test/deployment/run/felixcache/bundle48/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.commons.collections.jar 32 1 -1478036224096 +1479241974141 0 diff --git a/test/deployment/run/felixcache/bundle49/bundle.info b/test/deployment/run/felixcache/bundle49/bundle.info index 79f2989..013d4cc 100644 --- a/test/deployment/run/felixcache/bundle49/bundle.info +++ b/test/deployment/run/felixcache/bundle49/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.commons.collections4.jar 32 1 -1478036224108 +1479241974155 0 diff --git a/test/deployment/run/felixcache/bundle5/bundle.info b/test/deployment/run/felixcache/bundle5/bundle.info index 73343ce..e1a549b 100644 --- a/test/deployment/run/felixcache/bundle5/bundle.info +++ b/test/deployment/run/felixcache/bundle5/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/ch.qos.logback.core.jar 32 1 -1478036223249 +1479241973339 0 diff --git a/test/deployment/run/felixcache/bundle50/bundle.info b/test/deployment/run/felixcache/bundle50/bundle.info index af93636..2e759db 100644 --- a/test/deployment/run/felixcache/bundle50/bundle.info +++ b/test/deployment/run/felixcache/bundle50/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.commons.dbcp2.jar 32 1 -1478036224121 +1479241974171 0 diff --git a/test/deployment/run/felixcache/bundle51/bundle.info b/test/deployment/run/felixcache/bundle51/bundle.info index a3d784c..80ec428 100644 --- a/test/deployment/run/felixcache/bundle51/bundle.info +++ b/test/deployment/run/felixcache/bundle51/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.commons.fileupload.jar 32 1 -1478036224131 +1479241974186 0 diff --git a/test/deployment/run/felixcache/bundle52/bundle.info b/test/deployment/run/felixcache/bundle52/bundle.info index 305a409..558621a 100644 --- a/test/deployment/run/felixcache/bundle52/bundle.info +++ b/test/deployment/run/felixcache/bundle52/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.commons.io.jar 32 1 -1478036224141 +1479241974201 0 diff --git a/test/deployment/run/felixcache/bundle53/bundle.info b/test/deployment/run/felixcache/bundle53/bundle.info index 670e3e6..eca15f4 100644 --- a/test/deployment/run/felixcache/bundle53/bundle.info +++ b/test/deployment/run/felixcache/bundle53/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.commons.lang3.jar 32 1 -1478036224151 +1479241974215 0 diff --git a/test/deployment/run/felixcache/bundle54/bundle.info b/test/deployment/run/felixcache/bundle54/bundle.info index ce590ac..eab9bdd 100644 --- a/test/deployment/run/felixcache/bundle54/bundle.info +++ b/test/deployment/run/felixcache/bundle54/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.commons.logging.jar 32 1 -1478036224163 +1479241974230 0 diff --git a/test/deployment/run/felixcache/bundle55/bundle.info b/test/deployment/run/felixcache/bundle55/bundle.info index a1d588e..e7067fc 100644 --- a/test/deployment/run/felixcache/bundle55/bundle.info +++ b/test/deployment/run/felixcache/bundle55/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.commons.pool2.jar 32 1 -1478036224174 +1479241974246 0 diff --git a/test/deployment/run/felixcache/bundle56/bundle.info b/test/deployment/run/felixcache/bundle56/bundle.info index 59029b0..6991068 100644 --- a/test/deployment/run/felixcache/bundle56/bundle.info +++ b/test/deployment/run/felixcache/bundle56/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.felix.eventadmin.jar 32 1 -1478036224184 +1479241974259 0 diff --git a/test/deployment/run/felixcache/bundle57/bundle.info b/test/deployment/run/felixcache/bundle57/bundle.info index 0bf71ca..6cb61ab 100644 --- a/test/deployment/run/felixcache/bundle57/bundle.info +++ b/test/deployment/run/felixcache/bundle57/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.felix.framework.security.jar 2 1 -1478036224195 +1479241974272 0 diff --git a/test/deployment/run/felixcache/bundle58/bundle.info b/test/deployment/run/felixcache/bundle58/bundle.info index 1046581..357aea9 100644 --- a/test/deployment/run/felixcache/bundle58/bundle.info +++ b/test/deployment/run/felixcache/bundle58/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.felix.log.jar 32 1 -1478036224247 +1479241974329 0 diff --git a/test/deployment/run/felixcache/bundle59/bundle.info b/test/deployment/run/felixcache/bundle59/bundle.info index 6a88672..a0984ea 100644 --- a/test/deployment/run/felixcache/bundle59/bundle.info +++ b/test/deployment/run/felixcache/bundle59/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.felix.scr.jar 32 1 -1478036224271 +1479241974356 0 diff --git a/test/deployment/run/felixcache/bundle6/bundle.info b/test/deployment/run/felixcache/bundle6/bundle.info index eb9963c..59e4196 100644 --- a/test/deployment/run/felixcache/bundle6/bundle.info +++ b/test/deployment/run/felixcache/bundle6/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.amazonaws.aws-java-sdk-osgi.jar 32 1 -1478036223266 +1479241973356 0 diff --git a/test/deployment/run/felixcache/bundle60/bundle.info b/test/deployment/run/felixcache/bundle60/bundle.info index 81a3df0..6324b33 100644 --- a/test/deployment/run/felixcache/bundle60/bundle.info +++ b/test/deployment/run/felixcache/bundle60/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.felix.shell.jar 32 1 -1478036224291 +1479241974383 0 diff --git a/test/deployment/run/felixcache/bundle61/bundle.info b/test/deployment/run/felixcache/bundle61/bundle.info index a7adc75..741178f 100644 --- a/test/deployment/run/felixcache/bundle61/bundle.info +++ b/test/deployment/run/felixcache/bundle61/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.felix.shell.tui.jar 32 1 -1478036224305 +1479241974401 0 diff --git a/test/deployment/run/felixcache/bundle62/bundle.info b/test/deployment/run/felixcache/bundle62/bundle.info index 034ba69..3eec657 100644 --- a/test/deployment/run/felixcache/bundle62/bundle.info +++ b/test/deployment/run/felixcache/bundle62/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.httpcomponents.httpclient.jar 32 1 -1478036224320 +1479241974415 0 diff --git a/test/deployment/run/felixcache/bundle63/bundle.info b/test/deployment/run/felixcache/bundle63/bundle.info index 5260d83..2e8e464 100644 --- a/test/deployment/run/felixcache/bundle63/bundle.info +++ b/test/deployment/run/felixcache/bundle63/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.httpcomponents.httpcore.jar 32 1 -1478036224364 +1479241974436 0 diff --git a/test/deployment/run/felixcache/bundle64/bundle.info b/test/deployment/run/felixcache/bundle64/bundle.info index bb15c2d..d48a344 100644 --- a/test/deployment/run/felixcache/bundle64/bundle.info +++ b/test/deployment/run/felixcache/bundle64/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.james.apache-mime4j-core.jar 32 1 -1478036224383 +1479241974452 0 diff --git a/test/deployment/run/felixcache/bundle65/bundle.info b/test/deployment/run/felixcache/bundle65/bundle.info index 391218d..6d199b0 100644 --- a/test/deployment/run/felixcache/bundle65/bundle.info +++ b/test/deployment/run/felixcache/bundle65/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.antlr-runtime.jar 32 1 -1478036224400 +1479241974465 0 diff --git a/test/deployment/run/felixcache/bundle66/bundle.info b/test/deployment/run/felixcache/bundle66/bundle.info index c262462..5018859 100644 --- a/test/deployment/run/felixcache/bundle66/bundle.info +++ b/test/deployment/run/felixcache/bundle66/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.avalon-framework.jar 32 1 -1478036224415 +1479241974477 0 diff --git a/test/deployment/run/felixcache/bundle67/bundle.info b/test/deployment/run/felixcache/bundle67/bundle.info index e51f4d9..7ea1103 100644 --- a/test/deployment/run/felixcache/bundle67/bundle.info +++ b/test/deployment/run/felixcache/bundle67/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.batik.jar 32 1 -1478036224427 +1479241974488 0 diff --git a/test/deployment/run/felixcache/bundle68/bundle.info b/test/deployment/run/felixcache/bundle68/bundle.info index 7a06a5f..a58125e 100644 --- a/test/deployment/run/felixcache/bundle68/bundle.info +++ b/test/deployment/run/felixcache/bundle68/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.bcpg-jdk16.jar 32 1 -1478036224453 +1479241974514 0 diff --git a/test/deployment/run/felixcache/bundle69/bundle.info b/test/deployment/run/felixcache/bundle69/bundle.info index dba6aaa..a0396a0 100644 --- a/test/deployment/run/felixcache/bundle69/bundle.info +++ b/test/deployment/run/felixcache/bundle69/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.bcprov-jdk16.jar 32 1 -1478036224487 +1479241974547 0 diff --git a/test/deployment/run/felixcache/bundle7/bundle.info b/test/deployment/run/felixcache/bundle7/bundle.info index fbff6ba..2dea827 100644 --- a/test/deployment/run/felixcache/bundle7/bundle.info +++ b/test/deployment/run/felixcache/bundle7/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.fasterxml.jackson.core.jackson-annotations.jar 32 1 -1478036223333 +1479241973438 0 diff --git a/test/deployment/run/felixcache/bundle70/bundle.info b/test/deployment/run/felixcache/bundle70/bundle.info index 96e6b2a..52e8399 100644 --- a/test/deployment/run/felixcache/bundle70/bundle.info +++ b/test/deployment/run/felixcache/bundle70/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.commons-codec.jar 32 1 -1478036224543 +1479241974607 0 diff --git a/test/deployment/run/felixcache/bundle71/bundle.info b/test/deployment/run/felixcache/bundle71/bundle.info index e363cab..c65be96 100644 --- a/test/deployment/run/felixcache/bundle71/bundle.info +++ b/test/deployment/run/felixcache/bundle71/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.fop.jar 32 1 -1478036224559 +1479241974621 0 diff --git a/test/deployment/run/felixcache/bundle72/bundle.info b/test/deployment/run/felixcache/bundle72/bundle.info index c6a0770..a5d32ec 100644 --- a/test/deployment/run/felixcache/bundle72/bundle.info +++ b/test/deployment/run/felixcache/bundle72/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.jdom.jar 32 1 -1478036224595 +1479241974654 0 diff --git a/test/deployment/run/felixcache/bundle73/bundle.info b/test/deployment/run/felixcache/bundle73/bundle.info index db39c4d..0469581 100644 --- a/test/deployment/run/felixcache/bundle73/bundle.info +++ b/test/deployment/run/felixcache/bundle73/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.jsr305.jar 32 1 -1478036224610 +1479241974670 0 diff --git a/test/deployment/run/felixcache/bundle74/bundle.info b/test/deployment/run/felixcache/bundle74/bundle.info index 56ec8db..81e5459 100644 --- a/test/deployment/run/felixcache/bundle74/bundle.info +++ b/test/deployment/run/felixcache/bundle74/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.wsdl4j.jar 32 1 -1478036224623 +1479241974684 0 diff --git a/test/deployment/run/felixcache/bundle75/bundle.info b/test/deployment/run/felixcache/bundle75/bundle.info index 247986c..a6cfcbf 100644 --- a/test/deployment/run/felixcache/bundle75/bundle.info +++ b/test/deployment/run/felixcache/bundle75/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.xalan.jar 32 1 -1478036224639 +1479241974700 0 diff --git a/test/deployment/run/felixcache/bundle76/bundle.info b/test/deployment/run/felixcache/bundle76/bundle.info index aa8f0ee..18072ab 100644 --- a/test/deployment/run/felixcache/bundle76/bundle.info +++ b/test/deployment/run/felixcache/bundle76/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.xerces.jar 32 1 -1478036224667 +1479241974728 0 diff --git a/test/deployment/run/felixcache/bundle77/bundle.info b/test/deployment/run/felixcache/bundle77/bundle.info index 09ea1a0..6e3b9f2 100644 --- a/test/deployment/run/felixcache/bundle77/bundle.info +++ b/test/deployment/run/felixcache/bundle77/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.xmlbeans.jar 32 1 -1478036224688 +1479241974747 0 diff --git a/test/deployment/run/felixcache/bundle78/bundle.info b/test/deployment/run/felixcache/bundle78/bundle.info index 291b902..a2c8408 100644 --- a/test/deployment/run/felixcache/bundle78/bundle.info +++ b/test/deployment/run/felixcache/bundle78/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.xmlgraphics-commons.jar 32 1 -1478036224715 +1479241974776 0 diff --git a/test/deployment/run/felixcache/bundle79/bundle.info b/test/deployment/run/felixcache/bundle79/bundle.info index 907fe19..7d7a6bb 100644 --- a/test/deployment/run/felixcache/bundle79/bundle.info +++ b/test/deployment/run/felixcache/bundle79/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.servicemix.bundles.xmlresolver.jar 32 1 -1478036224734 +1479241974795 0 diff --git a/test/deployment/run/felixcache/bundle8/bundle.info b/test/deployment/run/felixcache/bundle8/bundle.info index 24a4c32..dad479c 100644 --- a/test/deployment/run/felixcache/bundle8/bundle.info +++ b/test/deployment/run/felixcache/bundle8/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.fasterxml.jackson.core.jackson-core.jar 32 1 -1478036223346 +1479241973450 0 diff --git a/test/deployment/run/felixcache/bundle80/bundle.info b/test/deployment/run/felixcache/bundle80/bundle.info index d657fd7..d0fd6d5 100644 --- a/test/deployment/run/felixcache/bundle80/bundle.info +++ b/test/deployment/run/felixcache/bundle80/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.ws.commons.axiom.axiom-api.jar 32 1 -1478036224750 +1479241974810 0 diff --git a/test/deployment/run/felixcache/bundle81/bundle.info b/test/deployment/run/felixcache/bundle81/bundle.info index ee5ef2a..9b5431d 100644 --- a/test/deployment/run/felixcache/bundle81/bundle.info +++ b/test/deployment/run/felixcache/bundle81/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.ws.commons.axiom.axiom-dom.jar 32 1 -1478036224768 +1479241974826 0 diff --git a/test/deployment/run/felixcache/bundle82/bundle.info b/test/deployment/run/felixcache/bundle82/bundle.info index a4a0d8d..50bc774 100644 --- a/test/deployment/run/felixcache/bundle82/bundle.info +++ b/test/deployment/run/felixcache/bundle82/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.apache.ws.commons.axiom.axiom-impl.jar 32 1 -1478036224784 +1479241974842 0 diff --git a/test/deployment/run/felixcache/bundle83/bundle.info b/test/deployment/run/felixcache/bundle83/bundle.info index f584023..c67456d 100644 --- a/test/deployment/run/felixcache/bundle83/bundle.info +++ b/test/deployment/run/felixcache/bundle83/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.eclipse.jetty.continuation.jar 32 1 -1478036224800 +1479241974856 0 diff --git a/test/deployment/run/felixcache/bundle84/bundle.info b/test/deployment/run/felixcache/bundle84/bundle.info index 68a7e97..dbc7a30 100644 --- a/test/deployment/run/felixcache/bundle84/bundle.info +++ b/test/deployment/run/felixcache/bundle84/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.eclipse.jetty.http.jar 32 1 -1478036224814 +1479241974869 0 diff --git a/test/deployment/run/felixcache/bundle85/bundle.info b/test/deployment/run/felixcache/bundle85/bundle.info index 16927d3..abedb7a 100644 --- a/test/deployment/run/felixcache/bundle85/bundle.info +++ b/test/deployment/run/felixcache/bundle85/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.eclipse.jetty.io.jar 32 1 -1478036224831 +1479241974883 0 diff --git a/test/deployment/run/felixcache/bundle86/bundle.info b/test/deployment/run/felixcache/bundle86/bundle.info index 3d8202e..bd6766e 100644 --- a/test/deployment/run/felixcache/bundle86/bundle.info +++ b/test/deployment/run/felixcache/bundle86/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.eclipse.jetty.security.jar 32 1 -1478036224845 +1479241974898 0 diff --git a/test/deployment/run/felixcache/bundle87/bundle.info b/test/deployment/run/felixcache/bundle87/bundle.info index b29ee1e..9130332 100644 --- a/test/deployment/run/felixcache/bundle87/bundle.info +++ b/test/deployment/run/felixcache/bundle87/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.eclipse.jetty.server.jar 32 1 -1478036224861 +1479241974913 0 diff --git a/test/deployment/run/felixcache/bundle88/bundle.info b/test/deployment/run/felixcache/bundle88/bundle.info index 7a0661b..2410e13 100644 --- a/test/deployment/run/felixcache/bundle88/bundle.info +++ b/test/deployment/run/felixcache/bundle88/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.eclipse.jetty.servlet.jar 32 1 -1478036224878 +1479241974932 0 diff --git a/test/deployment/run/felixcache/bundle89/bundle.info b/test/deployment/run/felixcache/bundle89/bundle.info index ba568eb..589e71c 100644 --- a/test/deployment/run/felixcache/bundle89/bundle.info +++ b/test/deployment/run/felixcache/bundle89/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.eclipse.jetty.util.jar 32 1 -1478036224898 +1479241974951 0 diff --git a/test/deployment/run/felixcache/bundle9/bundle.info b/test/deployment/run/felixcache/bundle9/bundle.info index c7aca5a..561b31a 100644 --- a/test/deployment/run/felixcache/bundle9/bundle.info +++ b/test/deployment/run/felixcache/bundle9/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/com.fasterxml.jackson.core.jackson-databind.jar 32 1 -1478036223357 +1479241973461 0 diff --git a/test/deployment/run/felixcache/bundle90/bundle.info b/test/deployment/run/felixcache/bundle90/bundle.info index c630963..b01357c 100644 --- a/test/deployment/run/felixcache/bundle90/bundle.info +++ b/test/deployment/run/felixcache/bundle90/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.glassfish.metro.webservices-api-osgi.jar 32 1 -1478036224924 +1479241974975 0 diff --git a/test/deployment/run/felixcache/bundle91/bundle.info b/test/deployment/run/felixcache/bundle91/bundle.info index 26c3b29..6457b0e 100644 --- a/test/deployment/run/felixcache/bundle91/bundle.info +++ b/test/deployment/run/felixcache/bundle91/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.hsqldb.hsqldb.jar 32 1 -1478036224943 +1479241974994 0 diff --git a/test/deployment/run/felixcache/bundle92/bundle.info b/test/deployment/run/felixcache/bundle92/bundle.info index 696e6ac..0b1d9b0 100644 --- a/test/deployment/run/felixcache/bundle92/bundle.info +++ b/test/deployment/run/felixcache/bundle92/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.mariadb.jdbc.jar 32 1 -1478036224968 +1479241975017 0 diff --git a/test/deployment/run/felixcache/bundle93/bundle.info b/test/deployment/run/felixcache/bundle93/bundle.info index 9114026..2ad2895 100644 --- a/test/deployment/run/felixcache/bundle93/bundle.info +++ b/test/deployment/run/felixcache/bundle93/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.postgresql.jdbc41.jar 32 1 -1478036224985 +1479241975034 0 diff --git a/test/deployment/run/felixcache/bundle94/bundle.info b/test/deployment/run/felixcache/bundle94/bundle.info index b3c0531..e907c0c 100644 --- a/test/deployment/run/felixcache/bundle94/bundle.info +++ b/test/deployment/run/felixcache/bundle94/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.scala-lang.modules.scala-parser-combinators.jar 32 1 -1478036225006 +1479241975053 0 diff --git a/test/deployment/run/felixcache/bundle95/bundle.info b/test/deployment/run/felixcache/bundle95/bundle.info index baacf0f..8bb0fbd 100644 --- a/test/deployment/run/felixcache/bundle95/bundle.info +++ b/test/deployment/run/felixcache/bundle95/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.scala-lang.modules.scala-xml.jar 32 1 -1478036225027 +1479241975069 0 diff --git a/test/deployment/run/felixcache/bundle96/bundle.info b/test/deployment/run/felixcache/bundle96/bundle.info index 21222ee..a797522 100644 --- a/test/deployment/run/felixcache/bundle96/bundle.info +++ b/test/deployment/run/felixcache/bundle96/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.scala-lang.scala-library.jar 32 1 -1478036225049 +1479241975088 0 diff --git a/test/deployment/run/felixcache/bundle97/bundle.info b/test/deployment/run/felixcache/bundle97/bundle.info index 7f1b660..dd87446 100644 --- a/test/deployment/run/felixcache/bundle97/bundle.info +++ b/test/deployment/run/felixcache/bundle97/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/org.scala-lang.scala-reflect.jar 32 1 -1478036225096 +1479241975134 0 diff --git a/test/deployment/run/felixcache/bundle98/bundle.info b/test/deployment/run/felixcache/bundle98/bundle.info index f8273a4..89e840b 100644 --- a/test/deployment/run/felixcache/bundle98/bundle.info +++ b/test/deployment/run/felixcache/bundle98/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/osgi.cmpn.jar 32 1 -1478036225127 +1479241975180 0 diff --git a/test/deployment/run/felixcache/bundle99/bundle.info b/test/deployment/run/felixcache/bundle99/bundle.info index 23a543f..052b2b9 100644 --- a/test/deployment/run/felixcache/bundle99/bundle.info +++ b/test/deployment/run/felixcache/bundle99/bundle.info @@ -2,5 +2,5 @@ file:/C:/Program%20Files/Mendix/5.19.0/runtime/bundles/queryparser.jar 32 1 -1478036225146 +1479241975198 0 diff --git a/test/deployment/web/components.json b/test/deployment/web/components.json index 99e6c85..9ae8978 100644 --- a/test/deployment/web/components.json +++ b/test/deployment/web/components.json @@ -1 +1 @@ -{"files":{"css":["lib/bootstrap/css/bootstrap.min.css","mxclientsystem/mxui/ui/mxui.css","css/theme.css"],"js":["mxclientsystem/mxui/mxui.js"]},"cachebust":"636136186170567001","offline":false} \ No newline at end of file +{"files":{"css":["lib/bootstrap/css/bootstrap.min.css","mxclientsystem/mxui/ui/mxui.css","css/theme.css"],"js":["mxclientsystem/mxui/mxui.js"]},"cachebust":"636148207702740555","offline":false} \ No newline at end of file diff --git a/test/deployment/web/index-console-rtl.html b/test/deployment/web/index-console-rtl.html index 1df185a..b8d4850 100644 --- a/test/deployment/web/index-console-rtl.html +++ b/test/deployment/web/index-console-rtl.html @@ -5,10 +5,10 @@ Mendix 5 - - - - + + + +
@@ -17,11 +17,11 @@ isDebug: true, useCustomLogger: true, baseUrl: "mxclientsystem/dojo/", - cacheBust: "636136186170567001", + cacheBust: "636148207702740555", ltrRedirect: "index-console.html" }; - - + + diff --git a/test/deployment/web/index-console.html b/test/deployment/web/index-console.html index edfba44..aea3ca9 100644 --- a/test/deployment/web/index-console.html +++ b/test/deployment/web/index-console.html @@ -5,9 +5,9 @@ Mendix 5 - - - + + +
@@ -16,11 +16,11 @@ isDebug: true, useCustomLogger: true, baseUrl: "mxclientsystem/dojo/", - cacheBust: "636136186170567001", + cacheBust: "636148207702740555", rtlRedirect: "index-console-rtl.html" }; - - + + diff --git a/test/deployment/web/index-phone-preview.html b/test/deployment/web/index-phone-preview.html index 169d28f..567956b 100644 --- a/test/deployment/web/index-phone-preview.html +++ b/test/deployment/web/index-phone-preview.html @@ -3,7 +3,7 @@ Mendix 5 - Phone preview - +
diff --git a/test/deployment/web/index-rtl.html b/test/deployment/web/index-rtl.html index 31c890b..42d7565 100644 --- a/test/deployment/web/index-rtl.html +++ b/test/deployment/web/index-rtl.html @@ -5,20 +5,20 @@ Mendix 5 - - - - + + + +
- + diff --git a/test/deployment/web/index-tablet-preview.html b/test/deployment/web/index-tablet-preview.html index 82430a6..7e155df 100644 --- a/test/deployment/web/index-tablet-preview.html +++ b/test/deployment/web/index-tablet-preview.html @@ -3,7 +3,7 @@ Mendix 5 - Tablet preview - +
diff --git a/test/deployment/web/index.html b/test/deployment/web/index.html index 7c90f75..7d02159 100644 --- a/test/deployment/web/index.html +++ b/test/deployment/web/index.html @@ -5,19 +5,19 @@ Mendix 5 - - - + + +
- + diff --git a/test/deployment/web/login.html b/test/deployment/web/login.html index ac8299f..d7df5ef 100644 --- a/test/deployment/web/login.html +++ b/test/deployment/web/login.html @@ -5,8 +5,8 @@ Mendix 5 - Login - - + + - - + + diff --git a/test/deployment/web/pages/en_US/Administration/Account_Edit.page.xml b/test/deployment/web/pages/en_US/Administration/Account_Edit.page.xml index 4dc6cfe..302b25a 100644 --- a/test/deployment/web/pages/en_US/Administration/Account_Edit.page.xml +++ b/test/deployment/web/pages/en_US/Administration/Account_Edit.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Administration/Account_New.page.xml b/test/deployment/web/pages/en_US/Administration/Account_New.page.xml index 1b6cd2a..e190e2e 100644 --- a/test/deployment/web/pages/en_US/Administration/Account_New.page.xml +++ b/test/deployment/web/pages/en_US/Administration/Account_New.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Administration/Account_Overview.page.xml b/test/deployment/web/pages/en_US/Administration/Account_Overview.page.xml index 3b4732c..ec81736 100644 --- a/test/deployment/web/pages/en_US/Administration/Account_Overview.page.xml +++ b/test/deployment/web/pages/en_US/Administration/Account_Overview.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Administration/ActiveSessions.page.xml b/test/deployment/web/pages/en_US/Administration/ActiveSessions.page.xml index 00e3e7f..fc81197 100644 --- a/test/deployment/web/pages/en_US/Administration/ActiveSessions.page.xml +++ b/test/deployment/web/pages/en_US/Administration/ActiveSessions.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Administration/ChangeMyPasswordForm.page.xml b/test/deployment/web/pages/en_US/Administration/ChangeMyPasswordForm.page.xml index 0e8dad9..376bb1d 100644 --- a/test/deployment/web/pages/en_US/Administration/ChangeMyPasswordForm.page.xml +++ b/test/deployment/web/pages/en_US/Administration/ChangeMyPasswordForm.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Administration/ChangePasswordForm.page.xml b/test/deployment/web/pages/en_US/Administration/ChangePasswordForm.page.xml index 4a3edef..ec9f0f1 100644 --- a/test/deployment/web/pages/en_US/Administration/ChangePasswordForm.page.xml +++ b/test/deployment/web/pages/en_US/Administration/ChangePasswordForm.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Administration/MyAccount.page.xml b/test/deployment/web/pages/en_US/Administration/MyAccount.page.xml index 03eec4d..1d6d787 100644 --- a/test/deployment/web/pages/en_US/Administration/MyAccount.page.xml +++ b/test/deployment/web/pages/en_US/Administration/MyAccount.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Administration/RuntimeStatistics.page.xml b/test/deployment/web/pages/en_US/Administration/RuntimeStatistics.page.xml index 4a76ab0..d507386 100644 --- a/test/deployment/web/pages/en_US/Administration/RuntimeStatistics.page.xml +++ b/test/deployment/web/pages/en_US/Administration/RuntimeStatistics.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Administration/ScheduledEvents.page.xml b/test/deployment/web/pages/en_US/Administration/ScheduledEvents.page.xml index 6ef0d9b..627da45 100644 --- a/test/deployment/web/pages/en_US/Administration/ScheduledEvents.page.xml +++ b/test/deployment/web/pages/en_US/Administration/ScheduledEvents.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Administration/UserRole_Select.page.xml b/test/deployment/web/pages/en_US/Administration/UserRole_Select.page.xml index c560a7f..2edb0bf 100644 --- a/test/deployment/web/pages/en_US/Administration/UserRole_Select.page.xml +++ b/test/deployment/web/pages/en_US/Administration/UserRole_Select.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Layouts/DesktopLayout.layout.xml b/test/deployment/web/pages/en_US/Layouts/DesktopLayout.layout.xml index a901d0f..6348c7a 100644 --- a/test/deployment/web/pages/en_US/Layouts/DesktopLayout.layout.xml +++ b/test/deployment/web/pages/en_US/Layouts/DesktopLayout.layout.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Layouts/SidebarLayout.layout.xml b/test/deployment/web/pages/en_US/Layouts/SidebarLayout.layout.xml index df6197f..9f7aa64 100644 --- a/test/deployment/web/pages/en_US/Layouts/SidebarLayout.layout.xml +++ b/test/deployment/web/pages/en_US/Layouts/SidebarLayout.layout.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/Layouts/SidebarPhoneLayout.layout.xml b/test/deployment/web/pages/en_US/Layouts/SidebarPhoneLayout.layout.xml index 44318a0..7ba96dc 100644 --- a/test/deployment/web/pages/en_US/Layouts/SidebarPhoneLayout.layout.xml +++ b/test/deployment/web/pages/en_US/Layouts/SidebarPhoneLayout.layout.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/DataView_Editable.page.xml b/test/deployment/web/pages/en_US/TestSuite/DataView_Editable.page.xml index 4ded05f..845b35f 100644 --- a/test/deployment/web/pages/en_US/TestSuite/DataView_Editable.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/DataView_Editable.page.xml @@ -1 +1 @@ -

DataView_Editable

Widget behaviour

Attributes used

\ No newline at end of file +

DataView_Editable

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/DataView_NewEdit.page.xml b/test/deployment/web/pages/en_US/TestSuite/DataView_NewEdit.page.xml index d2e8efd..e4e63a1 100644 --- a/test/deployment/web/pages/en_US/TestSuite/DataView_NewEdit.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/DataView_NewEdit.page.xml @@ -1 +1 @@ -

DataView_NewEdit

\ No newline at end of file +

DataView_NewEdit

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/DataView_ReadOnly.page.xml b/test/deployment/web/pages/en_US/TestSuite/DataView_ReadOnly.page.xml index 33f2dec..773ce72 100644 --- a/test/deployment/web/pages/en_US/TestSuite/DataView_ReadOnly.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/DataView_ReadOnly.page.xml @@ -1 +1 @@ -

DataView_ReadOnly

Widget behaviour

Attributes used

\ No newline at end of file +

DataView_ReadOnly

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/DataView_Validation.page.xml b/test/deployment/web/pages/en_US/TestSuite/DataView_Validation.page.xml index dadc812..33ed033 100644 --- a/test/deployment/web/pages/en_US/TestSuite/DataView_Validation.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/DataView_Validation.page.xml @@ -1 +1 @@ -

DataView_Validation

Widget behaviour

Attributes used

\ No newline at end of file +

DataView_Validation

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/Event_RefreshInClient.page.xml b/test/deployment/web/pages/en_US/TestSuite/Event_RefreshInClient.page.xml index a90ce93..93e80a7 100644 --- a/test/deployment/web/pages/en_US/TestSuite/Event_RefreshInClient.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/Event_RefreshInClient.page.xml @@ -1 +1 @@ -

DataView_RefreshInClient

Widget behaviour

Attributes used

\ No newline at end of file +

DataView_RefreshInClient

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/Event_Update.page.xml b/test/deployment/web/pages/en_US/TestSuite/Event_Update.page.xml index be3cb47..dec3707 100644 --- a/test/deployment/web/pages/en_US/TestSuite/Event_Update.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/Event_Update.page.xml @@ -1 +1 @@ -

Event_Update

Widget behaviour

Attributes used

\ No newline at end of file +

Event_Update

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/ListView_Editable.page.xml b/test/deployment/web/pages/en_US/TestSuite/ListView_Editable.page.xml index 593060d..2531fe2 100644 --- a/test/deployment/web/pages/en_US/TestSuite/ListView_Editable.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/ListView_Editable.page.xml @@ -1 +1 @@ -

ListView_Editable

\ No newline at end of file +

ListView_Editable

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/ListView_ReadOnly.page.xml b/test/deployment/web/pages/en_US/TestSuite/ListView_ReadOnly.page.xml index c0fa619..00ac75a 100644 --- a/test/deployment/web/pages/en_US/TestSuite/ListView_ReadOnly.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/ListView_ReadOnly.page.xml @@ -1 +1 @@ -

ListView_ReadOnly

\ No newline at end of file +

ListView_ReadOnly

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/ListeningDataView.page.xml b/test/deployment/web/pages/en_US/TestSuite/ListeningDataView.page.xml index 732c0e5..7775390 100644 --- a/test/deployment/web/pages/en_US/TestSuite/ListeningDataView.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/ListeningDataView.page.xml @@ -1 +1 @@ -

ListeningDataView_Editable

\ No newline at end of file +

ListeningDataView_Editable

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/ListeningDataView_DeselectGrid.page.xml b/test/deployment/web/pages/en_US/TestSuite/ListeningDataView_DeselectGrid.page.xml index 8d675ca..87fce43 100644 --- a/test/deployment/web/pages/en_US/TestSuite/ListeningDataView_DeselectGrid.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/ListeningDataView_DeselectGrid.page.xml @@ -1 +1 @@ -

ListeningDataView_Destroy

\ No newline at end of file +

ListeningDataView_Destroy

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/ListeningDataView_ReadOnly.page.xml b/test/deployment/web/pages/en_US/TestSuite/ListeningDataView_ReadOnly.page.xml index d35092c..d304c7a 100644 --- a/test/deployment/web/pages/en_US/TestSuite/ListeningDataView_ReadOnly.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/ListeningDataView_ReadOnly.page.xml @@ -1 +1 @@ -

ListeningDataView_ReadOnly

\ No newline at end of file +

ListeningDataView_ReadOnly

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_Editable.page.xml b/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_Editable.page.xml index 42d187c..507b9fc 100644 --- a/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_Editable.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_Editable.page.xml @@ -1 +1 @@ -

Widget behaviour

Attributes used

\ No newline at end of file +

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_ReadOnly.page.xml b/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_ReadOnly.page.xml index 2195180..fa32834 100644 --- a/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_ReadOnly.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_ReadOnly.page.xml @@ -1 +1 @@ -

Widget behaviour

Attributes used

\ No newline at end of file +

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_Validation.page.xml b/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_Validation.page.xml index a8882d5..450262a 100644 --- a/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_Validation.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/Phone_DataView_Validation.page.xml @@ -1 +1 @@ -

Widget behaviour

Attributes used

\ No newline at end of file +

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/Phone_Event_OnClick.page.xml b/test/deployment/web/pages/en_US/TestSuite/Phone_Event_OnClick.page.xml index 368defe..8cbe2a7 100644 --- a/test/deployment/web/pages/en_US/TestSuite/Phone_Event_OnClick.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/Phone_Event_OnClick.page.xml @@ -1 +1 @@ -

Widget behaviour

\ No newline at end of file +

Widget behaviour

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/Phone_Event_RefreshInClient.page.xml b/test/deployment/web/pages/en_US/TestSuite/Phone_Event_RefreshInClient.page.xml index 910658f..6dc8297 100644 --- a/test/deployment/web/pages/en_US/TestSuite/Phone_Event_RefreshInClient.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/Phone_Event_RefreshInClient.page.xml @@ -1 +1 @@ -

Widget behaviour

Attributes used

\ No newline at end of file +

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/Phone_Event_Update.page.xml b/test/deployment/web/pages/en_US/TestSuite/Phone_Event_Update.page.xml index 369b64e..7cf396b 100644 --- a/test/deployment/web/pages/en_US/TestSuite/Phone_Event_Update.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/Phone_Event_Update.page.xml @@ -1 +1 @@ -

Widget behaviour

Attributes used

\ No newline at end of file +

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/Phone_ListView_Editable.page.xml b/test/deployment/web/pages/en_US/TestSuite/Phone_ListView_Editable.page.xml index 82bf5f1..a349731 100644 --- a/test/deployment/web/pages/en_US/TestSuite/Phone_ListView_Editable.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/Phone_ListView_Editable.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/Phone_ListView_ReadOnly.page.xml b/test/deployment/web/pages/en_US/TestSuite/Phone_ListView_ReadOnly.page.xml index 9b990f8..0e022b4 100644 --- a/test/deployment/web/pages/en_US/TestSuite/Phone_ListView_ReadOnly.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/Phone_ListView_ReadOnly.page.xml @@ -1 +1 @@ -
\ No newline at end of file +
\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/TabContainer.page.xml b/test/deployment/web/pages/en_US/TestSuite/TabContainer.page.xml index 62b934d..8d10b03 100644 --- a/test/deployment/web/pages/en_US/TestSuite/TabContainer.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/TabContainer.page.xml @@ -1 +1 @@ -

TabContainer

Widget behaviour

Attributes used

\ No newline at end of file +

TabContainer

Widget behaviour

Attributes used

\ No newline at end of file diff --git a/test/deployment/web/pages/en_US/TestSuite/TemplateGrid.page.xml b/test/deployment/web/pages/en_US/TestSuite/TemplateGrid.page.xml index 000f329..ae5276d 100644 --- a/test/deployment/web/pages/en_US/TestSuite/TemplateGrid.page.xml +++ b/test/deployment/web/pages/en_US/TestSuite/TemplateGrid.page.xml @@ -1 +1 @@ -

TemplateGrid

\ No newline at end of file +

TemplateGrid

\ No newline at end of file diff --git a/test/deployment/web/widgets/Handles/Handles.xml b/test/deployment/web/widgets/Handles/Handles.xml index c899ecf..5c3ca64 100644 --- a/test/deployment/web/widgets/Handles/Handles.xml +++ b/test/deployment/web/widgets/Handles/Handles.xml @@ -1,7 +1,7 @@ Handles - The description of this widget. + Slider with two (or more handles) @@ -22,7 +22,7 @@ The size of the interval between slider steps. - Lower Handle + Lower Handle Attribute Slider Settings Entity Attribute (decimal) coupled with the lower handle of the slider. @@ -30,12 +30,60 @@ - Upper Handle + Upper Handle Attribute Slider Settings Entity Attribute (decimal) coupled with the upper handle of the slider. + + Display Value Labels + Slider Settings + Set true to display the handle's value in a label. + + + Direction + Slider Settings + Configure the slider to increase left-to-right/top-to-bottom or right-to-left/bottom-to-top. + + Left-to-right / Top-to-bottom + Right-to-left / Bottom-to-top + + + + Orientation + Slider Settings + Configure the orientation of the slider. +If Vertical, be sure to select the correct Direction value for your purposes. +Also if Vertical, height must be manually set in the widget css (class .noUi-vertical) + + Horizontal + Vertical + + + + + Enforce Minimum Range + Advanced Settings + Set true to enforce a minimum size for the range between handles + + + Minimum Range + Advanced Settings + Size of the minimum range; takes effect only if Enforce Minimum Range is true. + + + Enforce Maximum Range + Advanced Settings + Set true to enforce a maximum size for the range between handles + + + Maximum Range + Advanced Settings + Size of the maximum range; takes effect only if Enforce Maximum Range is true. + + + diff --git a/test/deployment/web/widgets/Handles/widget/Handles.js b/test/deployment/web/widgets/Handles/widget/Handles.js index b5bc0be..4d42147 100644 --- a/test/deployment/web/widgets/Handles/widget/Handles.js +++ b/test/deployment/web/widgets/Handles/widget/Handles.js @@ -33,10 +33,14 @@ define([ "dojo/text", "dojo/html", "dojo/_base/event", + "dojo/query", "Handles/lib/nouislider", "dojo/text!Handles/widget/template/Handles.html" ], function (declare, _WidgetBase, _TemplatedMixin, dom, dojoDom, dojoProp, dojoGeometry, dojoClass, dojoStyle, dojoConstruct, dojoArray, dojoLang, dojoText, dojoHtml, dojoEvent, + + dojoQuery, + noUiSlider, widgetTemplate) { "use strict"; @@ -54,12 +58,21 @@ define([ sliderStep : "", handleAttr0 : "", handleAttr1 : "", + testProperty : "", + enforceMargin : false, + marginSize : null, + enforceLimit : false, + limitSize : null, + direction : "", + orientation : "", + toolTips : false, // Internal variables. Non-primitives created in the prototype are shared between all widget instances. _handles: null, _contextObj: null, _alertDiv: null, _readOnly: false, + _sliderSettings: null, // dojo.declare.constructor is called to construct the widget instance. Implement to initialize non-primitive properties. constructor: function () { @@ -71,13 +84,22 @@ define([ postCreate: function () { logger.debug(this.id + ".postCreate"); + this._sliderSettings = { + start: [this.sliderMax * 0.25, this.sliderMax * 0.75], + step: this.sliderStep, + connect: true, + range: { 'min': this.sliderMin, 'max': this.sliderMax }, + behaviour: 'drag-tap' + }; + this._updateRendering(); - noUiSlider.create(this.domTarget, { - start: [this.sliderMax * 0.25, this.sliderMax * 0.75], - step: this.sliderStep, - connect: true, - range: { 'min': this.sliderMin, 'max': this.sliderMax } - }); + + this._setDirectionAndOrientation(); + this._setMarginAndLimit(); + this._toggleTooltips(); + this._buildPips(); + + noUiSlider.create(this.domTarget, this._sliderSettings); this._setupEvents(); }, @@ -92,7 +114,7 @@ define([ if(this._contextObj.get(this.handleAttr0) == 0 && this._contextObj.get(this.handleAttr1) == 0) { this._contextObj.set(this.handleAttr0, this.domTarget.noUiSlider.get()[0]); - this._contextObj.set(this.handleAttr1, this.domTarget.noUiSlider.get()[1]); + this._contextObj.set(this.handleAttr1, this.domTarget.noUiSlider.get()[1]); } else { this.domTarget.noUiSlider.set( [this._contextObj.get(this.handleAttr0), this._contextObj.get(this.handleAttr1)] ); } @@ -132,7 +154,6 @@ define([ logger.debug(this.id + "._setupEvents"); var self = this; self.domTarget.noUiSlider.on('slide', function() { - console.log("listener is firing"); self._contextObj.set(self.handleAttr0, self.domTarget.noUiSlider.get()[0]); self._contextObj.set(self.handleAttr1, self.domTarget.noUiSlider.get()[1]); }); @@ -225,7 +246,49 @@ define([ this._handles = [ objectHandle, attrHandle, validationHandle ]; } + }, + + // Set the direction and orientation of the sliderMin + _setDirectionAndOrientation: function() { + console.log('set direction and orientation'); + if (this.direction == 'rtl') { + this._sliderSettings.direction = this.direction + }; + if (this.orientation == 'vertical') { + this._sliderSettings.orientation = this.orientation + }; + }, + + // Set the margin and limit (minimum and maximum separation between handles) + _setMarginAndLimit: function() { + console.log('set margin...') + if ( (this.enforceMargin && this.marginSize != null) ) { + this._sliderSettings.margin = this.marginSize + }; + if ( (this.enforceLimit && this.limitSize != null) ) { + this._sliderSettings.limit = this.limitSize + }; + }, + + // Toogle display of values on the handles + _toggleTooltips: function() { + console.log('set tool tips...') + if ( (this.toolTips) ) { + this._sliderSettings.tooltips = [true, true]; + } + }, + + // If steps are >= 25% of the range, render pips + _buildPips: function() { + console.log('build pips...') + if ( (this.sliderMax-this.sliderMin) / this.sliderStep <= 4 ) { + this._sliderSettings.pips = { + mode: 'steps', density: this.sliderStep + } + } } + + }); }); diff --git a/test/deployment/web/widgets/Handles/widget/ui/Handles.css b/test/deployment/web/widgets/Handles/widget/ui/Handles.css index 5b22adb..b49b7f3 100644 --- a/test/deployment/web/widgets/Handles/widget/ui/Handles.css +++ b/test/deployment/web/widgets/Handles/widget/ui/Handles.css @@ -92,6 +92,7 @@ } .noUi-vertical { width: 18px; + height: 400px; } .noUi-vertical .noUi-handle { width: 28px; diff --git a/test/deployment/web/widgets/widgets.css b/test/deployment/web/widgets/widgets.css index 459033e..fe4ad02 100644 --- a/test/deployment/web/widgets/widgets.css +++ b/test/deployment/web/widgets/widgets.css @@ -92,6 +92,7 @@ } .noUi-vertical { width: 18px; + height: 400px; } .noUi-vertical .noUi-handle { width: 28px; diff --git a/test/javasource/testsuite/proxies/Color.java b/test/javasource/testsuite/proxies/Color.java index e379ace..fe77665 100644 --- a/test/javasource/testsuite/proxies/Color.java +++ b/test/javasource/testsuite/proxies/Color.java @@ -28,7 +28,9 @@ public enum MemberNames IsPrimary("IsPrimary"), ColorCode("ColorCode"), RangeMin("RangeMin"), - RangeMax("RangeMax"); + RangeMax("RangeMax"), + Color_Entity("TestSuite.Color_Entity"), + Entity_3_Color("TestSuite.Entity_3_Color"); private java.lang.String metaName; @@ -84,6 +86,14 @@ public static testsuite.proxies.Color load(com.mendix.systemwideinterfaces.core. return testsuite.proxies.Color.initialize(context, mendixObject); } + public static java.util.List load(com.mendix.systemwideinterfaces.core.IContext context, java.lang.String xpathConstraint) throws com.mendix.core.CoreException + { + java.util.List result = new java.util.ArrayList(); + for (com.mendix.systemwideinterfaces.core.IMendixObject obj : com.mendix.core.Core.retrieveXPathQuery(context, "//TestSuite.Color" + xpathConstraint)) + result.add(testsuite.proxies.Color.initialize(context, obj)); + return result; + } + /** * Commit the changes made on this proxy object. */ @@ -331,6 +341,95 @@ public final void setRangeMax(com.mendix.systemwideinterfaces.core.IContext cont getMendixObject().setValue(context, MemberNames.RangeMax.toString(), rangemax); } + /** + * @return value of Color_Entity + */ + public final testsuite.proxies.Entity getColor_Entity() throws com.mendix.core.CoreException + { + return getColor_Entity(getContext()); + } + + /** + * @param context + * @return value of Color_Entity + */ + public final testsuite.proxies.Entity getColor_Entity(com.mendix.systemwideinterfaces.core.IContext context) throws com.mendix.core.CoreException + { + testsuite.proxies.Entity result = null; + com.mendix.systemwideinterfaces.core.IMendixIdentifier identifier = getMendixObject().getValue(context, MemberNames.Color_Entity.toString()); + if (identifier != null) + result = testsuite.proxies.Entity.load(context, identifier); + return result; + } + + /** + * Set value of Color_Entity + * @param color_entity + */ + public final void setColor_Entity(testsuite.proxies.Entity color_entity) + { + setColor_Entity(getContext(), color_entity); + } + + /** + * Set value of Color_Entity + * @param context + * @param color_entity + */ + public final void setColor_Entity(com.mendix.systemwideinterfaces.core.IContext context, testsuite.proxies.Entity color_entity) + { + if (color_entity == null) + getMendixObject().setValue(context, MemberNames.Color_Entity.toString(), null); + else + getMendixObject().setValue(context, MemberNames.Color_Entity.toString(), color_entity.getMendixObject().getId()); + } + + /** + * @return value of Entity_3_Color + */ + public final java.util.List getEntity_3_Color() throws com.mendix.core.CoreException + { + return getEntity_3_Color(getContext()); + } + + /** + * @param context + * @return value of Entity_3_Color + */ + @SuppressWarnings("unchecked") + public final java.util.List getEntity_3_Color(com.mendix.systemwideinterfaces.core.IContext context) throws com.mendix.core.CoreException + { + java.util.List result = new java.util.ArrayList(); + Object valueObject = getMendixObject().getValue(context, MemberNames.Entity_3_Color.toString()); + if (valueObject == null) + return result; + for (com.mendix.systemwideinterfaces.core.IMendixObject mendixObject : com.mendix.core.Core.retrieveIdList(context, (java.util.List) valueObject)) + result.add(testsuite.proxies.Entity_3.initialize(context, mendixObject)); + return result; + } + + /** + * Set value of Entity_3_Color + * @param entity_3_color + */ + public final void setEntity_3_Color(java.util.List entity_3_color) + { + setEntity_3_Color(getContext(), entity_3_color); + } + + /** + * Set value of Entity_3_Color + * @param context + * @param entity_3_color + */ + public final void setEntity_3_Color(com.mendix.systemwideinterfaces.core.IContext context, java.util.List entity_3_color) + { + java.util.List identifiers = new java.util.ArrayList(); + for (testsuite.proxies.Entity_3 proxyObject : entity_3_color) + identifiers.add(proxyObject.getMendixObject().getId()); + getMendixObject().setValue(context, MemberNames.Entity_3_Color.toString(), identifiers); + } + /** * @return the IMendixObject instance of this proxy for use in the Core interface. */ diff --git a/test/javasource/testsuite/proxies/Entity.java b/test/javasource/testsuite/proxies/Entity.java new file mode 100644 index 0000000..2c717ea --- /dev/null +++ b/test/javasource/testsuite/proxies/Entity.java @@ -0,0 +1,153 @@ +// This file was generated by Mendix Business Modeler. +// +// WARNING: Code you write here will be lost the next time you deploy the project. + +package testsuite.proxies; + +/** + * + */ +public class Entity +{ + private final com.mendix.systemwideinterfaces.core.IMendixObject entityMendixObject; + + private final com.mendix.systemwideinterfaces.core.IContext context; + + /** + * Internal name of this entity + */ + public static final java.lang.String entityName = "TestSuite.Entity"; + + public Entity(com.mendix.systemwideinterfaces.core.IContext context) + { + this(context, com.mendix.core.Core.instantiate(context, "TestSuite.Entity")); + } + + protected Entity(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixObject entityMendixObject) + { + if (entityMendixObject == null) + throw new java.lang.IllegalArgumentException("The given object cannot be null."); + if (!com.mendix.core.Core.isSubClassOf("TestSuite.Entity", entityMendixObject.getType())) + throw new java.lang.IllegalArgumentException("The given object is not a TestSuite.Entity"); + + this.entityMendixObject = entityMendixObject; + this.context = context; + } + + /** + * @deprecated Use 'Entity.load(IContext, IMendixIdentifier)' instead. + */ + @Deprecated + public static testsuite.proxies.Entity initialize(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixIdentifier mendixIdentifier) throws com.mendix.core.CoreException + { + return testsuite.proxies.Entity.load(context, mendixIdentifier); + } + + /** + * Initialize a proxy using context (recommended). This context will be used for security checking when the get- and set-methods without context parameters are called. + * The get- and set-methods with context parameter should be used when for instance sudo access is necessary (IContext.getSudoContext() can be used to obtain sudo access). + */ + public static testsuite.proxies.Entity initialize(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixObject mendixObject) + { + return new testsuite.proxies.Entity(context, mendixObject); + } + + public static testsuite.proxies.Entity load(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixIdentifier mendixIdentifier) throws com.mendix.core.CoreException + { + com.mendix.systemwideinterfaces.core.IMendixObject mendixObject = com.mendix.core.Core.retrieveId(context, mendixIdentifier); + return testsuite.proxies.Entity.initialize(context, mendixObject); + } + + public static java.util.List load(com.mendix.systemwideinterfaces.core.IContext context, java.lang.String xpathConstraint) throws com.mendix.core.CoreException + { + java.util.List result = new java.util.ArrayList(); + for (com.mendix.systemwideinterfaces.core.IMendixObject obj : com.mendix.core.Core.retrieveXPathQuery(context, "//TestSuite.Entity" + xpathConstraint)) + result.add(testsuite.proxies.Entity.initialize(context, obj)); + return result; + } + + /** + * Commit the changes made on this proxy object. + */ + public final void commit() throws com.mendix.core.CoreException + { + com.mendix.core.Core.commit(context, getMendixObject()); + } + + /** + * Commit the changes made on this proxy object using the specified context. + */ + public final void commit(com.mendix.systemwideinterfaces.core.IContext context) throws com.mendix.core.CoreException + { + com.mendix.core.Core.commit(context, getMendixObject()); + } + + /** + * Delete the object. + */ + public final void delete() + { + com.mendix.core.Core.delete(context, getMendixObject()); + } + + /** + * Delete the object using the specified context. + */ + public final void delete(com.mendix.systemwideinterfaces.core.IContext context) + { + com.mendix.core.Core.delete(context, getMendixObject()); + } + /** + * @return the IMendixObject instance of this proxy for use in the Core interface. + */ + public final com.mendix.systemwideinterfaces.core.IMendixObject getMendixObject() + { + return entityMendixObject; + } + + /** + * @return the IContext instance of this proxy, or null if no IContext instance was specified at initialization. + */ + public final com.mendix.systemwideinterfaces.core.IContext getContext() + { + return context; + } + + @Override + public boolean equals(Object obj) + { + if (obj == this) + return true; + + if (obj != null && getClass().equals(obj.getClass())) + { + final testsuite.proxies.Entity that = (testsuite.proxies.Entity) obj; + return getMendixObject().equals(that.getMendixObject()); + } + return false; + } + + @Override + public int hashCode() + { + return getMendixObject().hashCode(); + } + + /** + * @return String name of this class + */ + public static java.lang.String getType() + { + return "TestSuite.Entity"; + } + + /** + * @return String GUID from this object, format: ID_0000000000 + * @deprecated Use getMendixObject().getId().toLong() to get a unique identifier for this object. + */ + @Deprecated + public java.lang.String getGUID() + { + return "ID_" + getMendixObject().getId().toLong(); + } +} diff --git a/test/javasource/testsuite/proxies/Entity_2.java b/test/javasource/testsuite/proxies/Entity_2.java new file mode 100644 index 0000000..a05f932 --- /dev/null +++ b/test/javasource/testsuite/proxies/Entity_2.java @@ -0,0 +1,217 @@ +// This file was generated by Mendix Business Modeler. +// +// WARNING: Code you write here will be lost the next time you deploy the project. + +package testsuite.proxies; + +/** + * + */ +public class Entity_2 +{ + private final com.mendix.systemwideinterfaces.core.IMendixObject entity_2MendixObject; + + private final com.mendix.systemwideinterfaces.core.IContext context; + + /** + * Internal name of this entity + */ + public static final java.lang.String entityName = "TestSuite.Entity_2"; + + /** + * Enum describing members of this entity + */ + public enum MemberNames + { + Entity_2_Color("TestSuite.Entity_2_Color"); + + private java.lang.String metaName; + + MemberNames(java.lang.String s) + { + metaName = s; + } + + @Override + public java.lang.String toString() + { + return metaName; + } + } + + public Entity_2(com.mendix.systemwideinterfaces.core.IContext context) + { + this(context, com.mendix.core.Core.instantiate(context, "TestSuite.Entity_2")); + } + + protected Entity_2(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixObject entity_2MendixObject) + { + if (entity_2MendixObject == null) + throw new java.lang.IllegalArgumentException("The given object cannot be null."); + if (!com.mendix.core.Core.isSubClassOf("TestSuite.Entity_2", entity_2MendixObject.getType())) + throw new java.lang.IllegalArgumentException("The given object is not a TestSuite.Entity_2"); + + this.entity_2MendixObject = entity_2MendixObject; + this.context = context; + } + + /** + * @deprecated Use 'Entity_2.load(IContext, IMendixIdentifier)' instead. + */ + @Deprecated + public static testsuite.proxies.Entity_2 initialize(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixIdentifier mendixIdentifier) throws com.mendix.core.CoreException + { + return testsuite.proxies.Entity_2.load(context, mendixIdentifier); + } + + /** + * Initialize a proxy using context (recommended). This context will be used for security checking when the get- and set-methods without context parameters are called. + * The get- and set-methods with context parameter should be used when for instance sudo access is necessary (IContext.getSudoContext() can be used to obtain sudo access). + */ + public static testsuite.proxies.Entity_2 initialize(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixObject mendixObject) + { + return new testsuite.proxies.Entity_2(context, mendixObject); + } + + public static testsuite.proxies.Entity_2 load(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixIdentifier mendixIdentifier) throws com.mendix.core.CoreException + { + com.mendix.systemwideinterfaces.core.IMendixObject mendixObject = com.mendix.core.Core.retrieveId(context, mendixIdentifier); + return testsuite.proxies.Entity_2.initialize(context, mendixObject); + } + + public static java.util.List load(com.mendix.systemwideinterfaces.core.IContext context, java.lang.String xpathConstraint) throws com.mendix.core.CoreException + { + java.util.List result = new java.util.ArrayList(); + for (com.mendix.systemwideinterfaces.core.IMendixObject obj : com.mendix.core.Core.retrieveXPathQuery(context, "//TestSuite.Entity_2" + xpathConstraint)) + result.add(testsuite.proxies.Entity_2.initialize(context, obj)); + return result; + } + + /** + * Commit the changes made on this proxy object. + */ + public final void commit() throws com.mendix.core.CoreException + { + com.mendix.core.Core.commit(context, getMendixObject()); + } + + /** + * Commit the changes made on this proxy object using the specified context. + */ + public final void commit(com.mendix.systemwideinterfaces.core.IContext context) throws com.mendix.core.CoreException + { + com.mendix.core.Core.commit(context, getMendixObject()); + } + + /** + * Delete the object. + */ + public final void delete() + { + com.mendix.core.Core.delete(context, getMendixObject()); + } + + /** + * Delete the object using the specified context. + */ + public final void delete(com.mendix.systemwideinterfaces.core.IContext context) + { + com.mendix.core.Core.delete(context, getMendixObject()); + } + /** + * @return value of Entity_2_Color + */ + public final testsuite.proxies.Color getEntity_2_Color() throws com.mendix.core.CoreException + { + return getEntity_2_Color(getContext()); + } + + /** + * @param context + * @return value of Entity_2_Color + */ + public final testsuite.proxies.Color getEntity_2_Color(com.mendix.systemwideinterfaces.core.IContext context) throws com.mendix.core.CoreException + { + testsuite.proxies.Color result = null; + com.mendix.systemwideinterfaces.core.IMendixIdentifier identifier = getMendixObject().getValue(context, MemberNames.Entity_2_Color.toString()); + if (identifier != null) + result = testsuite.proxies.Color.load(context, identifier); + return result; + } + + /** + * Set value of Entity_2_Color + * @param entity_2_color + */ + public final void setEntity_2_Color(testsuite.proxies.Color entity_2_color) + { + setEntity_2_Color(getContext(), entity_2_color); + } + + /** + * Set value of Entity_2_Color + * @param context + * @param entity_2_color + */ + public final void setEntity_2_Color(com.mendix.systemwideinterfaces.core.IContext context, testsuite.proxies.Color entity_2_color) + { + if (entity_2_color == null) + getMendixObject().setValue(context, MemberNames.Entity_2_Color.toString(), null); + else + getMendixObject().setValue(context, MemberNames.Entity_2_Color.toString(), entity_2_color.getMendixObject().getId()); + } + + /** + * @return the IMendixObject instance of this proxy for use in the Core interface. + */ + public final com.mendix.systemwideinterfaces.core.IMendixObject getMendixObject() + { + return entity_2MendixObject; + } + + /** + * @return the IContext instance of this proxy, or null if no IContext instance was specified at initialization. + */ + public final com.mendix.systemwideinterfaces.core.IContext getContext() + { + return context; + } + + @Override + public boolean equals(Object obj) + { + if (obj == this) + return true; + + if (obj != null && getClass().equals(obj.getClass())) + { + final testsuite.proxies.Entity_2 that = (testsuite.proxies.Entity_2) obj; + return getMendixObject().equals(that.getMendixObject()); + } + return false; + } + + @Override + public int hashCode() + { + return getMendixObject().hashCode(); + } + + /** + * @return String name of this class + */ + public static java.lang.String getType() + { + return "TestSuite.Entity_2"; + } + + /** + * @return String GUID from this object, format: ID_0000000000 + * @deprecated Use getMendixObject().getId().toLong() to get a unique identifier for this object. + */ + @Deprecated + public java.lang.String getGUID() + { + return "ID_" + getMendixObject().getId().toLong(); + } +} diff --git a/test/javasource/testsuite/proxies/Entity_3.java b/test/javasource/testsuite/proxies/Entity_3.java new file mode 100644 index 0000000..5982952 --- /dev/null +++ b/test/javasource/testsuite/proxies/Entity_3.java @@ -0,0 +1,220 @@ +// This file was generated by Mendix Business Modeler. +// +// WARNING: Code you write here will be lost the next time you deploy the project. + +package testsuite.proxies; + +/** + * + */ +public class Entity_3 +{ + private final com.mendix.systemwideinterfaces.core.IMendixObject entity_3MendixObject; + + private final com.mendix.systemwideinterfaces.core.IContext context; + + /** + * Internal name of this entity + */ + public static final java.lang.String entityName = "TestSuite.Entity_3"; + + /** + * Enum describing members of this entity + */ + public enum MemberNames + { + Entity_3_Color("TestSuite.Entity_3_Color"); + + private java.lang.String metaName; + + MemberNames(java.lang.String s) + { + metaName = s; + } + + @Override + public java.lang.String toString() + { + return metaName; + } + } + + public Entity_3(com.mendix.systemwideinterfaces.core.IContext context) + { + this(context, com.mendix.core.Core.instantiate(context, "TestSuite.Entity_3")); + } + + protected Entity_3(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixObject entity_3MendixObject) + { + if (entity_3MendixObject == null) + throw new java.lang.IllegalArgumentException("The given object cannot be null."); + if (!com.mendix.core.Core.isSubClassOf("TestSuite.Entity_3", entity_3MendixObject.getType())) + throw new java.lang.IllegalArgumentException("The given object is not a TestSuite.Entity_3"); + + this.entity_3MendixObject = entity_3MendixObject; + this.context = context; + } + + /** + * @deprecated Use 'Entity_3.load(IContext, IMendixIdentifier)' instead. + */ + @Deprecated + public static testsuite.proxies.Entity_3 initialize(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixIdentifier mendixIdentifier) throws com.mendix.core.CoreException + { + return testsuite.proxies.Entity_3.load(context, mendixIdentifier); + } + + /** + * Initialize a proxy using context (recommended). This context will be used for security checking when the get- and set-methods without context parameters are called. + * The get- and set-methods with context parameter should be used when for instance sudo access is necessary (IContext.getSudoContext() can be used to obtain sudo access). + */ + public static testsuite.proxies.Entity_3 initialize(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixObject mendixObject) + { + return new testsuite.proxies.Entity_3(context, mendixObject); + } + + public static testsuite.proxies.Entity_3 load(com.mendix.systemwideinterfaces.core.IContext context, com.mendix.systemwideinterfaces.core.IMendixIdentifier mendixIdentifier) throws com.mendix.core.CoreException + { + com.mendix.systemwideinterfaces.core.IMendixObject mendixObject = com.mendix.core.Core.retrieveId(context, mendixIdentifier); + return testsuite.proxies.Entity_3.initialize(context, mendixObject); + } + + public static java.util.List load(com.mendix.systemwideinterfaces.core.IContext context, java.lang.String xpathConstraint) throws com.mendix.core.CoreException + { + java.util.List result = new java.util.ArrayList(); + for (com.mendix.systemwideinterfaces.core.IMendixObject obj : com.mendix.core.Core.retrieveXPathQuery(context, "//TestSuite.Entity_3" + xpathConstraint)) + result.add(testsuite.proxies.Entity_3.initialize(context, obj)); + return result; + } + + /** + * Commit the changes made on this proxy object. + */ + public final void commit() throws com.mendix.core.CoreException + { + com.mendix.core.Core.commit(context, getMendixObject()); + } + + /** + * Commit the changes made on this proxy object using the specified context. + */ + public final void commit(com.mendix.systemwideinterfaces.core.IContext context) throws com.mendix.core.CoreException + { + com.mendix.core.Core.commit(context, getMendixObject()); + } + + /** + * Delete the object. + */ + public final void delete() + { + com.mendix.core.Core.delete(context, getMendixObject()); + } + + /** + * Delete the object using the specified context. + */ + public final void delete(com.mendix.systemwideinterfaces.core.IContext context) + { + com.mendix.core.Core.delete(context, getMendixObject()); + } + /** + * @return value of Entity_3_Color + */ + public final java.util.List getEntity_3_Color() throws com.mendix.core.CoreException + { + return getEntity_3_Color(getContext()); + } + + /** + * @param context + * @return value of Entity_3_Color + */ + @SuppressWarnings("unchecked") + public final java.util.List getEntity_3_Color(com.mendix.systemwideinterfaces.core.IContext context) throws com.mendix.core.CoreException + { + java.util.List result = new java.util.ArrayList(); + Object valueObject = getMendixObject().getValue(context, MemberNames.Entity_3_Color.toString()); + if (valueObject == null) + return result; + for (com.mendix.systemwideinterfaces.core.IMendixObject mendixObject : com.mendix.core.Core.retrieveIdList(context, (java.util.List) valueObject)) + result.add(testsuite.proxies.Color.initialize(context, mendixObject)); + return result; + } + + /** + * Set value of Entity_3_Color + * @param entity_3_color + */ + public final void setEntity_3_Color(java.util.List entity_3_color) + { + setEntity_3_Color(getContext(), entity_3_color); + } + + /** + * Set value of Entity_3_Color + * @param context + * @param entity_3_color + */ + public final void setEntity_3_Color(com.mendix.systemwideinterfaces.core.IContext context, java.util.List entity_3_color) + { + java.util.List identifiers = new java.util.ArrayList(); + for (testsuite.proxies.Color proxyObject : entity_3_color) + identifiers.add(proxyObject.getMendixObject().getId()); + getMendixObject().setValue(context, MemberNames.Entity_3_Color.toString(), identifiers); + } + + /** + * @return the IMendixObject instance of this proxy for use in the Core interface. + */ + public final com.mendix.systemwideinterfaces.core.IMendixObject getMendixObject() + { + return entity_3MendixObject; + } + + /** + * @return the IContext instance of this proxy, or null if no IContext instance was specified at initialization. + */ + public final com.mendix.systemwideinterfaces.core.IContext getContext() + { + return context; + } + + @Override + public boolean equals(Object obj) + { + if (obj == this) + return true; + + if (obj != null && getClass().equals(obj.getClass())) + { + final testsuite.proxies.Entity_3 that = (testsuite.proxies.Entity_3) obj; + return getMendixObject().equals(that.getMendixObject()); + } + return false; + } + + @Override + public int hashCode() + { + return getMendixObject().hashCode(); + } + + /** + * @return String name of this class + */ + public static java.lang.String getType() + { + return "TestSuite.Entity_3"; + } + + /** + * @return String GUID from this object, format: ID_0000000000 + * @deprecated Use getMendixObject().getId().toLong() to get a unique identifier for this object. + */ + @Deprecated + public java.lang.String getGUID() + { + return "ID_" + getMendixObject().getId().toLong(); + } +} diff --git a/test/test.launch b/test/test.launch index 0a48d48..17dd66b 100644 --- a/test/test.launch +++ b/test/test.launch @@ -11,7 +11,7 @@ - + @@ -27,6 +27,6 @@ - - + + \ No newline at end of file diff --git a/test/widgets/Handles.mpk b/test/widgets/Handles.mpk index b6e0c61..ee7c399 100644 Binary files a/test/widgets/Handles.mpk and b/test/widgets/Handles.mpk differ