-
Notifications
You must be signed in to change notification settings - Fork 1
/
openthinclient-manager.install4j
1355 lines (1339 loc) · 79 KB
/
openthinclient-manager.install4j
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<install4j version="8.0.11" transformSequenceNumber="8">
<directoryPresets config="./i18n" />
<application name="${i18n:productName}" applicationId="0362-1488-8516-0646" mediaDir="./build/installers/" lzmaCompression="true" shortName="openthinclient" publisher="openthinclient gmbh" publisherWeb="https://openthinclient.com" version="${compiler:manager.version}" allPathsRelative="true" macVolumeId="b687a6bd30377c64" javaMinVersion="1.8" javaMaxVersion="11" jdkMode="jdk" jdkName="JDK 1.8">
<languages>
<principalLanguage id="en" customLocalizationFile="./i18n/en.utf8" />
<additionalLanguages>
<language id="de" customLocalizationFile="./i18n/de.utf8" />
</additionalLanguages>
</languages>
<variables>
<variable name="manager.version" />
<variable name="launcher.name" value="openthinclient-manager" />
<variable name="manager.home.dirname" value="${compiler:sys.shortName}" />
<variable name="manager.home.basepath" />
</variables>
<jreBundles jdkProviderId="AdoptOpenJDK" release="openjdk11/jdk-11.0.23+9" />
</application>
<files defaultOverwriteMode="1">
<mountPoints>
<mountPoint id="55" />
</mountPoints>
<entries>
<dirEntry mountPoint="55" file="./build/dist/" overwriteMode="1" uninstallMode="2" overrideFileMode="true" overrideOverwriteMode="true" overrideUninstallMode="true" subDirectory="openthinclient-manager" overrideDirMode="true" />
</entries>
</files>
<launchers>
<launcher name="openthinclient-manager" id="66" excludeFromMenu="true">
<executable name="${compiler:launcher.name}" executableDir="bin" redirectStderr="false" executableMode="service" singleInstance="true" executionLevel="requireAdministrator" dpiAware="false" />
<java mainClass="org.openthinclient.manager.standalone.ManagerStandaloneServerApplication" vmParameters="-Dmanager.home=${installer:manager.home} -Dlogging.file=${installer:manager.home}/logs/openthinclient-manager.log" preferredVM="server">
<classPath>
<scanDirectory location="lib" failOnError="false" />
</classPath>
</java>
<macStaticAssociationActions mode="selected" />
</launcher>
<launcher name="managerctl" id="370" excludeFromMenu="true">
<executable name="managerctl" executableDir="bin" redirectStderr="false" executableMode="console" dpiAware="false" />
<java mainClass="org.openthinclient.runtime.control.ManagerControlApplication" vmParameters="-Dlogging.level.=INFO -Dmanager.home=${installer:manager.home}">
<classPath>
<scanDirectory location="lib" failOnError="false" />
</classPath>
<vmOptions>
<options version=""9*"" line="--add-modules java.xml.bind" />
</vmOptions>
</java>
<macStaticAssociationActions mode="selected" />
</launcher>
</launchers>
<installerGui autoUpdateDescriptorUrl="http://archive.openthinclient.org/openthinclient/installer/updates.xml" autoUpdateBaseUrl="${compiler:manager.version}">
<staticMembers script="static String bytesAsGB(long bytes) {
 return bytes/1024/1024/1024 + " GB";
}

static String bytesAsMB(long bytes) {
 return bytes/1024/1024 + " MB";
}" />
<applications>
<application id="installer" beanClass="com.install4j.runtime.beans.applications.InstallerApplication" launchInNewProcess="false">
<serializedBean>
<property name="customIconImageFiles">
<add>
<object class="com.install4j.api.beans.ExternalFile">
<string>./ico/openthinclient_manager-128.png</string>
</object>
</add>
</property>
<property name="useCustomIcon" type="boolean" value="true" />
<property name="vmParameters" type="string">-Dinstall4j.keepLog=true</property>
</serializedBean>
<variables>
<variable name="service.start" value="true" valueClass="boolean" registerForResponseFile="true" responseFileComment="The following variable defines, whether or not the service shall be started during the installation." hidden="false" />
<variable name="manager.home" valueClass="string" registerForResponseFile="true" responseFileComment="The working directory of the openthinclient manager" hidden="false" />
</variables>
<startup>
<screen id="1" beanClass="com.install4j.runtime.beans.screens.StartupScreen" rollbackBarrierExitCode="0">
<actions>
<action id="13" beanClass="com.install4j.runtime.beans.actions.misc.RequestPrivilegesAction" actionElevationType="none">
<serializedBean>
<property name="failIfNotRootUnix" type="boolean" value="true" />
<property name="obtainIfAdminMac" type="boolean" value="true" />
<property name="obtainIfNormalMac" type="boolean" value="true" />
<property name="obtainIfNormalWin" type="boolean" value="true" />
</serializedBean>
</action>
</actions>
</screen>
</startup>
<screens>
<screen id="2" beanClass="com.install4j.runtime.beans.screens.WelcomeScreen" styleId="978">
<actions>
<action id="3" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" multiExec="true">
<serializedBean>
<property name="excludedVariables" type="array" elementType="string" length="2">
<element index="0">sys.installationDir</element>
<element index="1">service.start</element>
</property>
</serializedBean>
<condition>context.getBooleanVariable("sys.confirmedUpdateInstallation")</condition>
</action>
</actions>
<formComponents>
<formComponent id="377" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
<serializedBean>
<property name="labelText" type="string">${form:welcomeMessage}</property>
</serializedBean>
<visibilityScript>!context.isConsole()</visibilityScript>
</formComponent>
<formComponent id="378" beanClass="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent">
<serializedBean>
<property name="consoleScript">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">String message = context.getMessage("ConsoleWelcomeLabel", context.getApplicationName());
return console.askOkCancel(message, true);
</property>
</object>
</property>
</serializedBean>
</formComponent>
<formComponent id="379" beanClass="com.install4j.runtime.beans.formcomponents.UpdateAlertComponent" useExternalParametrization="true" externalParametrizationName="Update Alert" externalParametrizationMode="include">
<externalParametrizationPropertyNames>
<propertyName>updateCheck</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
<formComponent id="380" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetTop="20">
<serializedBean>
<property name="labelText" type="string">${i18n:ClickNext}</property>
</serializedBean>
</formComponent>
</formComponents>
</screen>
<screen id="4" beanClass="com.install4j.runtime.beans.screens.InstallationDirectoryScreen">
<condition>!context.getBooleanVariable("sys.confirmedUpdateInstallation")</condition>
<actions>
<action id="5" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" multiExec="true">
<serializedBean>
<property name="excludedVariables" type="array" elementType="string" length="2">
<element index="0">sys.installationDir</element>
<element index="1">service.start</element>
</property>
</serializedBean>
<condition>context.getVariable("sys.responseFile") == null</condition>
</action>
<action id="1563" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction" rollbackBarrierExitCode="0">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">import com.install4j.api.Util;
import java.nio.file.Paths;
String managerHome = (String)context.getVariable("manager.home");
if(managerHome != null && !managerHome.trim().equals("")) {
return managerHome;
}
String basepath;
if(Util.isWindows()) {
basepath = (String)context.getVariable("sys.localAppdataDir");
} else {
basepath = (String)context.getCompilerVariable("manager.home.basepath");
}
return Paths.get(basepath, (String)context.getCompilerVariable("manager.home.dirname"));
</property>
</object>
</property>
<property name="variableName" type="string">manager.home</property>
</serializedBean>
</action>
</actions>
<formComponents>
<formComponent id="384" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetBottom="25">
<serializedBean>
<property name="labelText" type="string">${i18n:SelectDirLabel(${compiler:sys.fullName})}</property>
</serializedBean>
</formComponent>
<formComponent id="385" beanClass="com.install4j.runtime.beans.formcomponents.InstallationDirectoryChooserComponent" useExternalParametrization="true" externalParametrizationName="Installation Directory Chooser" externalParametrizationMode="include">
<serializedBean>
<property name="requestFocus" type="boolean" value="true" />
</serializedBean>
<externalParametrizationPropertyNames>
<propertyName>suggestAppDir</propertyName>
<propertyName>validateApplicationId</propertyName>
<propertyName>existingDirWarning</propertyName>
<propertyName>checkWritable</propertyName>
<propertyName>manualEntryAllowed</propertyName>
<propertyName>checkFreeSpace</propertyName>
<propertyName>showRequiredDiskSpace</propertyName>
<propertyName>showFreeDiskSpace</propertyName>
<propertyName>allowSpacesOnUnix</propertyName>
<propertyName>validationScript</propertyName>
<propertyName>standardValidation</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
</formComponents>
</screen>
<screen name="Directory selection" id="182" beanClass="com.install4j.runtime.beans.screens.FormScreen">
<serializedBean>
<property name="subTitle" type="string">${i18n:selectHomeDirectorySubtitle}</property>
<property name="title" type="string">${i18n:selectHomeDirectoryTitle}</property>
</serializedBean>
<formComponents>
<formComponent id="389" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetBottom="25" useExternalParametrization="true" externalParametrizationName="Header" externalParametrizationMode="include">
<serializedBean>
<property name="hideIfBlank" type="boolean" value="true" />
</serializedBean>
<visibilityScript>!context.isConsole()</visibilityScript>
<externalParametrizationPropertyNames>
<propertyName>labelText</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
<formComponent id="390" beanClass="com.install4j.runtime.beans.formcomponents.DirectoryChooserComponent" useExternalParametrization="true" externalParametrizationName="Directory" externalParametrizationMode="include">
<serializedBean>
<property name="directoryDescription" type="string">${i18n:selectHomeDirectoryDescription}</property>
<property name="initialFile" type="string">${installer:manager.home}</property>
<property name="nextOnEnter" type="boolean" value="true" />
<property name="onlyWritable" type="boolean" value="true" />
<property name="validationScript">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">// Verify selected path for Manager-Home
import java.nio.file.Files;
import java.nio.file.Path;
Path path = file.toPath();
File flagFile = new File(file, ".otc-manager-home.meta");
if(!flagFile.exists()) {
if (path.startsWith(context.getInstallationDirectory().toString())) {
Util.showErrorMessage(context.getMessage("selectHomeDirectoryInInstallDirectory"));
return false;
}
if (Files.isDirectory(path) && Files.list(path).findAny().isPresent()) {
Util.showErrorMessage(context.getMessage("selectHomeDirectoryNotEmpty"));
return false;
}
long freeDiskSpace = SystemInfo.getFreeDiskSpace(file);
// 6GB are required on the data disk
final long requiredDiskSpace = 6L * 1024L * 1024L * 1024L;
if (freeDiskSpace < requiredDiskSpace) {
Util.showErrorMessage(context.getMessage("selectHomeDirectoryNotEnoughSpace"));
return false;
}
}
return true;</property>
</object>
</property>
<property name="variableName" type="string">manager.home</property>
</serializedBean>
<externalParametrizationPropertyNames>
<propertyName>directoryDescription</propertyName>
<propertyName>initialFile</propertyName>
<propertyName>standardDirectoryName</propertyName>
<propertyName>variableName</propertyName>
<propertyName>allowSpacesOnUnix</propertyName>
<propertyName>manualEntryAllowed</propertyName>
<propertyName>validationScript</propertyName>
<propertyName>standardValidation</propertyName>
<propertyName>allowSpacesOnUnix</propertyName>
<propertyName>onlyWritable</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
</formComponents>
</screen>
<screen id="6" beanClass="com.install4j.runtime.beans.screens.ComponentsScreen" enabled="false">
<formComponents>
<formComponent id="393" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
<serializedBean>
<property name="labelText" type="string">${i18n:SelectComponentsLabel2}</property>
</serializedBean>
<visibilityScript>!context.isConsole()</visibilityScript>
</formComponent>
<formComponent id="394" beanClass="com.install4j.runtime.beans.formcomponents.ComponentSelectorComponent" useExternalParametrization="true" externalParametrizationName="Installation Components" externalParametrizationMode="include">
<serializedBean>
<property name="fillVertical" type="boolean" value="true" />
</serializedBean>
<externalParametrizationPropertyNames>
<propertyName>selectionChangedScript</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
</formComponents>
</screen>
<screen id="7" beanClass="com.install4j.runtime.beans.screens.StandardProgramGroupScreen" enabled="false">
<serializedBean>
<property name="programGroupName" type="string">${compiler:sys.fullName}</property>
</serializedBean>
<condition>!context.getBooleanVariable("sys.confirmedUpdateInstallation")</condition>
</screen>
<screen id="8" beanClass="com.install4j.runtime.beans.screens.InstallationScreen" rollbackBarrier="true">
<actions>
<action name="Update service" id="1718" beanClass="com.install4j.runtime.beans.actions.services.InstallServiceAction" actionElevationType="elevated">
<serializedBean>
<property name="autoStart" type="boolean" value="false" />
<property name="description" type="string">Temporary service definition to ensure proper shutdown while updating.</property>
<property name="executable">
<object class="java.io.File">
<string>bin/managerctl</string>
</object>
</property>
<property name="launcherId" type="string">66</property>
<property name="macosIdentifier" type="string">org.openthinclient.manager.ManagerRuntimeStandalone</property>
<property name="restartOnFailure" type="boolean" value="true" />
<property name="serviceName" type="string">obentinklient</property>
<property name="windowsDisplayName" type="string">${i18n:productName}</property>
</serializedBean>
<condition>context.isUpdateInstallation() && com.install4j.api.Util.isLinux()
/*
Updating service is only necessary on Linux (where previous versions of i4j
produced a .service file that shuts down the installer when stopping the
manager (thus preventing the update).
*/</condition>
</action>
<action id="645" beanClass="com.install4j.runtime.beans.actions.services.StopServiceAction" actionElevationType="elevated">
<serializedBean>
<property name="launcherId" type="string">66</property>
</serializedBean>
</action>
<action name="Stop service directly" id="1327" beanClass="com.install4j.runtime.beans.actions.misc.RunExecutableAction" commentSet="true" comment="Ensure that the server shuts down.

The previous step might have failed (e.g. due to a broken / deleted service). This step explicitly calls the launcher that is used by the service.

We still keep the previous step in order to try to disable any possible restart logic from a service." actionElevationType="elevated" rollbackBarrierExitCode="0">
<serializedBean>
<property name="arguments" type="array" elementType="string" length="1">
<element index="0">stop</element>
</property>
<property name="executable">
<object class="java.io.File">
<string>${compiler:launcher.name}</string>
</object>
</property>
<property name="logArguments" type="boolean" value="true" />
<property name="wait" type="boolean" value="true" />
<property name="workingDirectory">
<object class="java.io.File">
<string>${installer:sys.installationDir}/bin</string>
</object>
</property>
</serializedBean>
</action>
<action id="545" beanClass="com.install4j.runtime.beans.actions.UninstallPreviousAction" actionElevationType="none">
<condition>context.isUnattended() || context.getBooleanVariable("sys.confirmedUpdateInstallation")</condition>
</action>
<action name="Empty ./lib" id="744" beanClass="com.install4j.runtime.beans.actions.control.RunScriptAction" actionElevationType="elevated">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">com.install4j.runtime.installer.helper.fileinst.FileInstaller fileInstaller = com.install4j.runtime.installer.helper.fileinst.FileInstaller.getInstance();
File libDir = new File(context.getInstallationDirectory(), "/lib");
if(libDir.exists()) {
for(File file : libDir.listFiles()) {
if (file.exists()) {
fileInstaller.deleteFile(file);
}
}
}
return true;</property>
</object>
</property>
</serializedBean>
</action>
<action id="9" beanClass="com.install4j.runtime.beans.actions.InstallFilesAction" actionElevationType="elevated" failureStrategy="quit" errorMessage="${i18n:FileCorrupted}" />
<action id="1184" beanClass="com.install4j.runtime.beans.actions.services.InstallServiceAction" actionElevationType="elevated">
<serializedBean>
<property name="additionalSystemdEntries" type="string">[Service]
LimitNOFILE=infinity</property>
<property name="executable">
<object class="java.io.File">
<string>bin/openthinclient-manager</string>
</object>
</property>
<property name="launcherId" type="string">66</property>
<property name="macosIdentifier" type="string">org.openthinclient.manager.ManagerRuntimeStandalone</property>
<property name="restartOnFailure" type="boolean" value="true" />
<property name="windowsDisplayName" type="string">${i18n:productName}</property>
</serializedBean>
</action>
<action id="10" beanClass="com.install4j.runtime.beans.actions.desktop.CreateProgramGroupAction" actionElevationType="elevated">
<serializedBean>
<property name="addDefaultLauncherLinks" type="boolean" value="false" />
<property name="programGroupEntryConfigs">
<add>
<object class="com.install4j.runtime.beans.screens.components.ProgramGroupUrlConfig">
<property name="iconFile">
<object class="com.install4j.api.beans.ExternalFile">
<string>./ico/openthinclient_manager.ico</string>
</object>
</property>
<property name="name" type="string">openthinclient Management Console</property>
<property name="url" type="string">http://localhost:8080</property>
</object>
</add>
<add>
<object class="com.install4j.runtime.beans.screens.components.ProgramGroupUrlConfig">
<property name="iconFile">
<object class="com.install4j.api.beans.ExternalFile">
<string>./ico/openthinclient_manager.ico</string>
</object>
</property>
<property name="name" type="string">openthinclient Documentation</property>
<property name="url" type="string">https://wiki.openthinclient.org</property>
</object>
</add>
<add>
<object class="com.install4j.runtime.beans.screens.components.ProgramGroupUrlConfig">
<property name="iconFile">
<object class="com.install4j.api.beans.ExternalFile">
<string>./ico/openthinclient_manager.ico</string>
</object>
</property>
<property name="name" type="string">openthinclient Professional Support</property>
<property name="url" type="string">https://openthinclient.com</property>
</object>
</add>
</property>
<property name="programGroupName" type="string">openthinclient</property>
<property name="uninstallerMenuName" type="string">${i18n:UninstallerMenuEntry(${compiler:sys.fullName})}</property>
</serializedBean>
<condition>!context.getBooleanVariable("sys.programGroupDisabled")</condition>
</action>
<action id="11" beanClass="com.install4j.runtime.beans.actions.desktop.RegisterAddRemoveAction" actionElevationType="elevated">
<serializedBean>
<property name="itemName" type="string">${compiler:sys.fullName} ${compiler:sys.version}</property>
</serializedBean>
</action>
<action name="Create Manager Home Directory" id="842" beanClass="com.install4j.runtime.beans.actions.control.RunScriptAction">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">// Create empty Manager-Home and flag file
try {
String managerHomePath = (String)context.getVariable("manager.home");
File managerHome = new File(managerHomePath);
managerHome.mkdirs();
(new File(managerHome, ".otc-manager-home.meta")).createNewFile();
} catch (Exception e) {
Util.showMessage("Creation of the manager home directory failed");
Util.dumpVariables(context);
Util.printAnnotatedStackTrace(e);
}
return true;</property>
</object>
</property>
</serializedBean>
</action>
</actions>
<formComponents>
<formComponent id="844" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent">
<serializedBean>
<property name="initialStatusMessage" type="string">${i18n:WizardPreparing}</property>
</serializedBean>
</formComponent>
</formComponents>
</screen>
<screen name="Display progress" id="266" beanClass="com.install4j.runtime.beans.screens.FormScreen">
<serializedBean>
<property name="subTitle" type="string">${i18n:waitForServerSubtitle}</property>
<property name="title" type="string">${i18n:waitForServerTitle}</property>
</serializedBean>
<condition>context.getBooleanVariable("service.start")</condition>
<postActivation>context.getWizardContext().setControlButtonVisible(ControlButtonType.NEXT, false);
context.getWizardContext().setControlButtonVisible(ControlButtonType.PREVIOUS, false);
context.goForward(1, true, true);
</postActivation>
<actions>
<action id="116" beanClass="com.install4j.runtime.beans.actions.services.StartServiceAction" actionElevationType="elevated" failureStrategy="askRetryQuit" errorMessage="${i18n:startServerError}">
<serializedBean>
<property name="launcherId" type="string">66</property>
</serializedBean>
<condition>context.getBooleanVariable("service.start")</condition>
</action>
<action id="228" beanClass="com.install4j.runtime.beans.actions.net.WaitForHttpServerAction" errorMessage="${i18n:waitForServerError}">
<serializedBean>
<property name="acceptAllResponseCodes" type="boolean" value="true" />
<property name="timeout" type="int" value="180" />
<property name="url" type="string">http://localhost:8080/</property>
</serializedBean>
<condition>context.getBooleanVariable("service.start")</condition>
</action>
</actions>
<formComponents>
<formComponent id="849" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent" useExternalParametrization="true" externalParametrizationName="Directory" externalParametrizationMode="include">
<serializedBean>
<property name="initialStatusMessage" type="string">${i18n:waitForServerInitialMessage}</property>
</serializedBean>
<externalParametrizationPropertyNames>
<propertyName>statusVisible</propertyName>
<propertyName>initialStatusMessage</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
</formComponents>
</screen>
<screen id="12" beanClass="com.install4j.runtime.beans.screens.FinishedScreen" styleId="978" finishScreen="true">
<formComponents>
<formComponent id="853" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetBottom="10">
<serializedBean>
<property name="labelText" type="string">${form:finishedMessage}</property>
</serializedBean>
</formComponent>
<formComponent id="157" beanClass="com.install4j.runtime.beans.formcomponents.HyperlinkLabelComponent">
<serializedBean>
<property name="hyperlinkText" type="string">Management Console</property>
<property name="url" type="string">http://localhost:8080/</property>
</serializedBean>
<visibilityScript>!java.awt.GraphicsEnvironment.isHeadless() && java.awt.Desktop.getDesktop().isSupported(java.awt.Desktop.Action.BROWSE)</visibilityScript>
</formComponent>
<formComponent id="427" beanClass="com.install4j.runtime.beans.formcomponents.MultilineHtmlLabelComponent">
<serializedBean>
<property name="labelHtml" type="string"><html>
Open the Managment Console at<br/>
<code>http://localhost:8080/</code>
</html></property>
</serializedBean>
<visibilityScript>!java.awt.GraphicsEnvironment.isHeadless() && !java.awt.Desktop.getDesktop().isSupported(java.awt.Desktop.Action.BROWSE)</visibilityScript>
</formComponent>
</formComponents>
</screen>
</screens>
</application>
<application id="uninstaller" beanClass="com.install4j.runtime.beans.applications.UninstallerApplication" launchInNewProcess="false">
<serializedBean>
<property name="customMacosExecutableName" type="string">${i18n:UninstallerMenuEntry(${compiler:sys.shortName}))}</property>
<property name="useCustomMacosExecutableName" type="boolean" value="true" />
</serializedBean>
<startup>
<screen id="14" beanClass="com.install4j.runtime.beans.screens.StartupScreen" rollbackBarrierExitCode="0">
<actions>
<action id="20" beanClass="com.install4j.runtime.beans.actions.misc.LoadResponseFileAction" />
<action id="21" beanClass="com.install4j.runtime.beans.actions.misc.RequireInstallerPrivilegesAction" actionElevationType="none" />
<action id="115" beanClass="com.install4j.runtime.beans.actions.misc.RequestPrivilegesAction" actionElevationType="none">
<serializedBean>
<property name="failIfNotRootUnix" type="boolean" value="true" />
<property name="obtainIfAdminMac" type="boolean" value="true" />
<property name="obtainIfNormalMac" type="boolean" value="true" />
<property name="obtainIfNormalWin" type="boolean" value="true" />
</serializedBean>
</action>
</actions>
</screen>
</startup>
<screens>
<screen id="15" beanClass="com.install4j.runtime.beans.screens.UninstallWelcomeScreen" styleId="978">
<formComponents>
<formComponent id="860" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetBottom="10">
<serializedBean>
<property name="labelText" type="string">${form:welcomeMessage}</property>
</serializedBean>
<visibilityScript>!context.isConsole()</visibilityScript>
</formComponent>
<formComponent id="861" beanClass="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent">
<serializedBean>
<property name="consoleScript">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">String message = context.getMessage("ConfirmUninstall", context.getApplicationName());
return console.askYesNo(message, true);
</property>
</object>
</property>
</serializedBean>
</formComponent>
</formComponents>
</screen>
<screen id="16" beanClass="com.install4j.runtime.beans.screens.UninstallationScreen">
<actions>
<action id="114" beanClass="com.install4j.runtime.beans.actions.services.StopServiceAction" actionElevationType="elevated">
<serializedBean>
<property name="launcherId" type="string">66</property>
</serializedBean>
</action>
<action id="17" beanClass="com.install4j.runtime.beans.actions.UninstallFilesAction" actionElevationType="elevated" />
</actions>
<formComponents>
<formComponent id="866" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent">
<serializedBean>
<property name="initialStatusMessage" type="string">${i18n:UninstallerPreparing}</property>
</serializedBean>
</formComponent>
</formComponents>
</screen>
<screen id="19" beanClass="com.install4j.runtime.beans.screens.UninstallFailureScreen" finishScreen="true" />
<screen id="18" beanClass="com.install4j.runtime.beans.screens.UninstallSuccessScreen" styleId="978" finishScreen="true">
<formComponents>
<formComponent id="869" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" insetBottom="10">
<serializedBean>
<property name="labelText" type="string">${form:successMessage}</property>
</serializedBean>
</formComponent>
</formComponents>
</screen>
</screens>
</application>
<application name="Standalone updater" id="464" beanClass="com.install4j.runtime.beans.applications.CustomApplication" launchInNewProcess="false">
<serializedBean>
<property name="customIconImageFiles">
<add>
<object class="com.install4j.api.beans.ExternalFile">
<string>${compiler:sys.install4jHome}/resource/updater_16.png</string>
</object>
</add>
<add>
<object class="com.install4j.api.beans.ExternalFile">
<string>${compiler:sys.install4jHome}/resource/updater_32.png</string>
</object>
</add>
<add>
<object class="com.install4j.api.beans.ExternalFile">
<string>${compiler:sys.install4jHome}/resource/updater_48.png</string>
</object>
</add>
<add>
<object class="com.install4j.api.beans.ExternalFile">
<string>${compiler:sys.install4jHome}/resource/updater_128.png</string>
</object>
</add>
<add>
<object class="com.install4j.api.beans.ExternalFile">
<string>${compiler:sys.install4jHome}/resource/updater_256.png</string>
</object>
</add>
</property>
<property name="executableDirectory">
<object class="java.io.File">
<string>support</string>
</object>
</property>
<property name="executableName" type="string">update-check</property>
<property name="useCustomIcon" type="boolean" value="true" />
<property name="windowTitle" type="string">${i18n:updater.WindowTitle("${compiler:sys.fullName}")}</property>
</serializedBean>
<startup>
<screen id="465" beanClass="com.install4j.runtime.beans.screens.StartupScreen" rollbackBarrierExitCode="0" />
</startup>
<screens>
<screen name="Welcome" id="466" beanClass="com.install4j.runtime.beans.screens.FormScreen" styleId="978">
<serializedBean>
<property name="title" type="string">${i18n:updater.WelcomeTitle("${compiler:sys.fullName}")}</property>
</serializedBean>
<formComponents>
<formComponent id="874" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" useExternalParametrization="true" externalParametrizationName="Header" externalParametrizationMode="include">
<serializedBean>
<property name="hideIfBlank" type="boolean" value="true" />
<property name="labelText" type="string">${i18n:updater.WelcomeInfoText("${compiler:sys.fullName}")}</property>
</serializedBean>
<visibilityScript>!context.isConsole()</visibilityScript>
<externalParametrizationPropertyNames>
<propertyName>labelText</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
</formComponents>
</screen>
<screen name="Check for update" id="467" beanClass="com.install4j.runtime.beans.screens.FormScreen">
<serializedBean>
<property name="subTitle" type="string">${i18n:updater.CheckForUpdateSubtitle}</property>
<property name="title" type="string">${i18n:updater.CheckForUpdateTitle}</property>
</serializedBean>
<postActivation>context.getWizardContext().setControlButtonVisible(ControlButtonType.NEXT, false);
context.getWizardContext().setControlButtonVisible(ControlButtonType.PREVIOUS, false);
context.goForward(1, true, true);
</postActivation>
<actions>
<action id="468" beanClass="com.install4j.runtime.beans.actions.control.SetProgressAction" actionElevationType="none">
<serializedBean>
<property name="progressChangeType" type="enum" class="com.install4j.runtime.beans.actions.control.ProgressChangeType" value="SET_INDETERMINATE" />
</serializedBean>
</action>
<action id="469" beanClass="com.install4j.runtime.beans.actions.update.CheckForUpdateAction" actionElevationType="none" failureStrategy="quit">
<serializedBean>
<property name="url" type="string">${installer:updatesUrl?:${compiler:sys.updatesUrl}}</property>
<property name="variable" type="string">updateDescriptor</property>
</serializedBean>
</action>
<action id="470" beanClass="com.install4j.runtime.beans.actions.control.SleepAction" actionElevationType="none" />
<action name="Update descriptor entry" id="471" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">((UpdateDescriptor)context.getVariable("updateDescriptor")).getPossibleUpdateEntry()</property>
</object>
</property>
<property name="variableName" type="string">updateDescriptorEntry</property>
</serializedBean>
</action>
<group name="Update available" id="472" beanClass="com.install4j.runtime.beans.groups.ActionGroup">
<serializedBean>
<property name="conditionExpression">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">context.getVariable("updateDescriptorEntry") != null</property>
</object>
</property>
</serializedBean>
<beans>
<action name="New version" id="473" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">((UpdateDescriptorEntry)context.getVariable("updateDescriptorEntry")).getNewVersion()</property>
</object>
</property>
<property name="variableName" type="string">updaterNewVersion</property>
</serializedBean>
</action>
<action name="Download size" id="474" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">((UpdateDescriptorEntry)context.getVariable("updateDescriptorEntry")).getFileSizeVerbose()</property>
</object>
</property>
<property name="variableName" type="string">updaterDownloadSize</property>
</serializedBean>
</action>
<action name="Comment" id="475" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">((UpdateDescriptorEntry)context.getVariable("updateDescriptorEntry")).getComment()</property>
</object>
</property>
<property name="variableName" type="string">updaterComment</property>
</serializedBean>
</action>
<action name="Download URL" id="476" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">((UpdateDescriptorEntry)context.getVariable("updateDescriptorEntry")).getURL().toExternalForm()</property>
</object>
</property>
<property name="variableName" type="string">updaterDownloadUrl</property>
</serializedBean>
</action>
<action name="Archive" id="477" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">((UpdateDescriptorEntry)context.getVariable("updateDescriptorEntry")).isArchive() ? Boolean.TRUE : Boolean.FALSE</property>
</object>
</property>
<property name="variableName" type="string">isArchive</property>
</serializedBean>
</action>
</beans>
</group>
</actions>
<formComponents>
<formComponent id="888" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent" useExternalParametrization="true" externalParametrizationName="Directory" externalParametrizationMode="include">
<serializedBean>
<property name="initialStatusMessage" type="string">${i18n:updater.CheckForUpdateLabel}</property>
</serializedBean>
<externalParametrizationPropertyNames>
<propertyName>statusVisible</propertyName>
<propertyName>initialStatusMessage</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
</formComponents>
</screen>
<group name="Up to date" id="479" beanClass="com.install4j.runtime.beans.groups.ScreenGroup">
<serializedBean>
<property name="conditionExpression">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">context.getVariable("updateDescriptorEntry") == null</property>
</object>
</property>
</serializedBean>
<beans>
<screen name="Up to date notification" id="480" beanClass="com.install4j.runtime.beans.screens.FormScreen" styleId="978" finishScreen="true">
<serializedBean>
<property name="title" type="string">${i18n:updater.UpToDateTitle}</property>
</serializedBean>
<actions>
<action id="1469" beanClass="com.install4j.runtime.beans.actions.control.RunScriptAction" rollbackBarrierExitCode="0">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">if(context.isUnattended()) {
context.finish(107);
}
return true;</property>
</object>
</property>
</serializedBean>
</action>
</actions>
<formComponents>
<formComponent id="892" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" useExternalParametrization="true" externalParametrizationName="Header" externalParametrizationMode="include">
<serializedBean>
<property name="hideIfBlank" type="boolean" value="true" />
<property name="labelText" type="string">${i18n:updater.UpToDateInfoText("${compiler:sys.fullName}")}</property>
</serializedBean>
<visibilityScript>!context.isConsole()</visibilityScript>
<externalParametrizationPropertyNames>
<propertyName>labelText</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
</formComponents>
</screen>
</beans>
</group>
<group name="Update available" id="481" beanClass="com.install4j.runtime.beans.groups.ScreenGroup">
<serializedBean>
<property name="conditionExpression">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">context.getVariable("updateDescriptorEntry") != null</property>
</object>
</property>
</serializedBean>
<beans>
<screen name="New version available" id="482" beanClass="com.install4j.runtime.beans.screens.FormScreen">
<serializedBean>
<property name="subTitle" type="string">${i18n:updater.NewVersionAvailableSubtitle("${compiler:sys.fullName}")}</property>
<property name="title" type="string">${i18n:updater.NewVersionAvailableTitle}</property>
</serializedBean>
<formComponents>
<formComponent id="483" beanClass="com.install4j.runtime.beans.formcomponents.KeyValuePairComponent">
<serializedBean>
<property name="labelText" type="string">${i18n:updater.CurrentVersionLabel}</property>
<property name="valueLabelColor">
<object class="java.awt.Color">
<int>128</int>
<int>0</int>
<int>0</int>
<int>255</int>
</object>
</property>
<property name="valueLabelFont">
<object class="java.awt.Font">
<string>dialog</string>
<int>1</int>
<int>0</int>
</object>
</property>
<property name="valueLabelFontType" type="enum" class="com.install4j.runtime.beans.formcomponents.FontType" value="CUSTOM" />
<property name="valueLabelText" type="string">${installer:sys.version}</property>
</serializedBean>
</formComponent>
<group id="484" beanClass="com.install4j.runtime.beans.groups.HorizontalFormComponentGroup">
<beans>
<formComponent id="485" beanClass="com.install4j.runtime.beans.formcomponents.KeyValuePairComponent">
<serializedBean>
<property name="labelText" type="string">${i18n:updater.NewVersionLabel}</property>
<property name="valueLabelColor">
<object class="java.awt.Color">
<int>0</int>
<int>128</int>
<int>0</int>
<int>255</int>
</object>
</property>
<property name="valueLabelFont">
<object class="java.awt.Font">
<string>dialog</string>
<int>1</int>
<int>0</int>
</object>
</property>
<property name="valueLabelFontType" type="enum" class="com.install4j.runtime.beans.formcomponents.FontType" value="CUSTOM" />
<property name="valueLabelText" type="string">${installer:updaterNewVersion}</property>
</serializedBean>
</formComponent>
<formComponent id="486" beanClass="com.install4j.runtime.beans.formcomponents.HyperlinkActionLabelComponent" insetLeft="5">
<serializedBean>
<property name="actionScript">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">context.goForward(1, false, false);</property>
</object>
</property>
<property name="hyperlinkText" type="string">${i18n:updater.ShowComments}</property>
</serializedBean>
<visibilityScript> ((String)context.getVariable("updaterComment")).length() > 0</visibilityScript>
</formComponent>
</beans>
</group>
<formComponent id="487" beanClass="com.install4j.runtime.beans.formcomponents.SpacerComponent" />
<formComponent id="488" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent">
<serializedBean>
<property name="labelText" type="string">${i18n:updater.DownloadLocationLabel}</property>
</serializedBean>
</formComponent>
<formComponent id="489" beanClass="com.install4j.runtime.beans.formcomponents.DirectoryChooserComponent">
<serializedBean>
<property name="initialFile" type="string">${installer:sys.downloadsDir}</property>
<property name="labelText" type="string">${i18n:updater.DownloadToLabel}</property>
<property name="manualEntryAllowed" type="boolean" value="false" />
<property name="variableName" type="string">updaterDownloadLocation</property>
</serializedBean>
</formComponent>
<formComponent id="490" beanClass="com.install4j.runtime.beans.formcomponents.KeyValuePairComponent">
<serializedBean>
<property name="labelText" type="string">${i18n:updater.DownloadSizeLabel}</property>
<property name="valueLabelText" type="string">${installer:updaterDownloadSize}</property>
</serializedBean>
</formComponent>
</formComponents>
</screen>
<screen name="Update message" id="491" beanClass="com.install4j.runtime.beans.screens.FormScreen">
<serializedBean>
<property name="scrollable" type="boolean" value="false" />
<property name="subTitle" type="string">${i18n:updater.CommentsSubTitle}</property>
<property name="title" type="string">${i18n:updater.CommentsTitle}</property>
</serializedBean>
<condition>false // This screen is only shown if the user clicks the "Show comments" hyperlink label in the previous screen.
</condition>
<validation>if (context.isConsole()) {
context.goBackInHistory(1);
}
return true;</validation>
<preActivation>WizardContext wizardContext = context.getWizardContext();
wizardContext.setNextButtonVisible(false);
wizardContext.setCancelButtonVisible(false);</preActivation>
<formComponents>
<formComponent id="906" beanClass="com.install4j.runtime.beans.formcomponents.MultilineLabelComponent" useExternalParametrization="true" externalParametrizationName="Header" externalParametrizationMode="include">
<serializedBean>
<property name="hideIfBlank" type="boolean" value="true" />
<property name="labelText" type="string">${i18n:updater.CommentsLabel}</property>
</serializedBean>
<visibilityScript>!context.isConsole()</visibilityScript>
<externalParametrizationPropertyNames>
<propertyName>labelText</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
<formComponent id="907" beanClass="com.install4j.runtime.beans.formcomponents.HtmlDisplayFormComponent" useExternalParametrization="true" externalParametrizationName="HTML display" externalParametrizationMode="include">
<serializedBean>
<property name="displayedText" type="string">${installer:updaterComment}</property>
<property name="fillVertical" type="boolean" value="true" />
<property name="textSource" type="enum" class="com.install4j.runtime.beans.screens.components.TextSource" value="DIRECT" />
</serializedBean>
<externalParametrizationPropertyNames>
<propertyName>textSource</propertyName>
<propertyName>displayedText</propertyName>
<propertyName>displayedTextFile</propertyName>
<propertyName>variableName</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
<formComponent id="908" beanClass="com.install4j.runtime.beans.formcomponents.ConsoleHandlerFormComponent">
<serializedBean>
<property name="consoleScript">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">console.waitForEnter();
return true;
</property>
</object>
</property>
</serializedBean>
</formComponent>
</formComponents>
</screen>
<screen name="Download new version" id="492" beanClass="com.install4j.runtime.beans.screens.FormScreen">
<serializedBean>
<property name="subTitle" type="string">${i18n:updater.DownloadSubTitle}</property>
<property name="title" type="string">${i18n:updater.DownloadTitle}</property>
</serializedBean>
<postActivation>context.getWizardContext().setControlButtonVisible(ControlButtonType.NEXT, false);
context.getWizardContext().setControlButtonVisible(ControlButtonType.PREVIOUS, false);
context.goForward(1, true, true);
</postActivation>
<actions>
<action name="Download location" id="493" beanClass="com.install4j.runtime.beans.actions.control.SetVariableAction">
<serializedBean>
<property name="script">
<object class="com.install4j.api.beans.ScriptProperty">
<property name="value" type="string">context.getVariable("updaterDownloadLocation") + File.separator + ((UpdateDescriptorEntry)context.getVariable("updateDescriptorEntry")).getFileName()</property>
</object>
</property>
<property name="variableName" type="string">updaterDownloadFile</property>
</serializedBean>
</action>
<action id="494" beanClass="com.install4j.runtime.beans.actions.net.DownloadFileAction" actionElevationType="elevated" failureStrategy="quit">
<serializedBean>
<property name="targetFile">
<object class="java.io.File">
<string>${installer:updaterDownloadFile}</string>
</object>
</property>
<property name="url" type="string">${installer:updaterDownloadUrl}</property>
</serializedBean>
</action>
<action id="495" beanClass="com.install4j.runtime.beans.actions.files.SetModeAction" actionElevationType="elevated">
<serializedBean>
<property name="files" type="array" class="java.io.File" length="1">
<element index="0">
<object class="java.io.File">
<string>${installer:updaterDownloadFile}</string>
</object>
</element>
</property>
<property name="mode" type="string">755</property>
</serializedBean>
</action>
</actions>
<formComponents>
<formComponent id="914" beanClass="com.install4j.runtime.beans.formcomponents.ProgressComponent" useExternalParametrization="true" externalParametrizationName="Directory" externalParametrizationMode="include">
<externalParametrizationPropertyNames>
<propertyName>statusVisible</propertyName>
<propertyName>initialStatusMessage</propertyName>
</externalParametrizationPropertyNames>
</formComponent>
</formComponents>
</screen>
<screen name="Finish" id="497" beanClass="com.install4j.runtime.beans.screens.FormScreen" styleId="978" finishScreen="true">
<serializedBean>
<property name="title" type="string">${i18n:updater.FinishTitle}</property>
</serializedBean>