├── Jenkinsfile.unix ├── Jenkinsfile.win ├── LICENSE ├── README.md ├── assets ├── BPM │ └── .gitignore ├── IS │ ├── Packages │ │ └── Fibonachi │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── .settings │ │ │ └── com.softwareag.ide.eclipse.pld.bundle.builder.ui.prefs │ │ │ ├── manifest.bak │ │ │ ├── manifest.v3 │ │ │ ├── ns │ │ │ └── Fibonachi │ │ │ │ ├── node.idf │ │ │ │ └── services │ │ │ │ ├── getFibunachiNumber │ │ │ │ ├── flow.xml │ │ │ │ ├── flow.xml.bak │ │ │ │ └── node.ndf │ │ │ │ └── node.idf │ │ │ └── pub │ │ │ └── index.html │ └── Tests │ │ └── FibonachiTest │ │ ├── .classpath │ │ ├── .classpath.swp │ │ ├── .project │ │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ │ ├── bin │ │ └── .gitignore │ │ └── resources │ │ └── test │ │ └── xml │ │ ├── data │ │ ├── fibExpectedOutput.xml │ │ ├── fibWrongInput.xml │ │ ├── finInput.xml │ │ └── mockSubstractIntWrong.xml │ │ └── setup │ │ └── FibonachiTest.xml └── MWS │ └── .gitignore ├── build.xml └── project.properties /Jenkinsfile.unix: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2010 - 2013 Apama Ltd. 3 | * Copyright © 2013 - 2018 Software AG, Darmstadt, Germany and/or its licensors 4 | * 5 | * SPDX-License-Identifier: Apache-2.0 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | pipeline { 22 | agent any 23 | 24 | stages { 25 | stage('Build'){ 26 | steps { 27 | sh "${env.SAG_HOME}/common/lib/ant/bin/ant -DSAGHome=${env.SAG_HOME} -DSAG_CI_HOME=${env.SAG_CI_HOME} -DprojectName=${env.JOB_NAME} build" 28 | } 29 | } 30 | stage('Deploy') { 31 | steps { 32 | sh "${env.SAG_HOME}/common/lib/ant/bin/ant -DSAGHome=${env.SAG_HOME} -DSAG_CI_HOME=${env.SAG_CI_HOME} -DprojectName=${env.JOB_NAME} deploy" 33 | } 34 | } 35 | stage('Test') { 36 | steps { 37 | sh "${env.SAG_HOME}/common/lib/ant/bin/ant -DSAGHome=${env.SAG_HOME} -DSAG_CI_HOME=${env.SAG_CI_HOME} -DprojectName=${env.JOB_NAME} test" 38 | junit 'report/' 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /Jenkinsfile.win: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright © 2010 - 2013 Apama Ltd. 3 | * Copyright © 2013 - 2018 Software AG, Darmstadt, Germany and/or its licensors 4 | * 5 | * SPDX-License-Identifier: Apache-2.0 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | pipeline { 22 | agent any 23 | 24 | stages { 25 | stage('Build'){ 26 | steps { 27 | bat "${env.SAG_HOME}/common/lib/ant/bin/ant -DSAGHome=${env.SAG_HOME} -DSAG_CI_HOME=${env.SAG_CI_HOME} -DprojectName=${env.JOB_NAME} build" 28 | } 29 | } 30 | stage('Deploy') { 31 | steps { 32 | bat "${env.SAG_HOME}/common/lib/ant/bin/ant -DSAGHome=${env.SAG_HOME} -DSAG_CI_HOME=${env.SAG_CI_HOME} -DprojectName=${env.JOB_NAME} deploy" 33 | } 34 | } 35 | stage('Test') { 36 | steps { 37 | bat "${env.SAG_HOME}/common/lib/ant/bin/ant -DSAGHome=${env.SAG_HOME} -DSAG_CI_HOME=${env.SAG_CI_HOME} -DprojectName=${env.JOB_NAME} test" 38 | junit 'report/' 39 | } 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2017 SoftwareAG 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # webmethods-sample-project-layout 2 | Sample project layout for webMethods assets. This sample also demostrates CI quick set up together with https://github.com/SoftwareAG/sagdevops-ci-assets 3 | 4 | ## Jump Start with webMethods Structure 5 | The best way to start your webMethods project would be to fork this repo directly in github. This will allow you to directly have a set-up copy of layout that will be completely under your control. 6 | 7 | ## Description 8 | 9 | This sample webMethods project layout should serve as a template for organising webMethods projects. It contains demo Integration Server packages with flow services and wM Unit Tests that are covering those. 10 | Fork the repository to easily create fundament for you webMethods project. 11 | 12 | ## CI (continuous integration) 13 | 14 | Jenkinsfiles.win and Jenkinfiles.unix in the root of the project contain Jenkins Pipeline declaration. With these and our [DevOps asset library for 10.x versions](https://github.com/SoftwareAG/sagdevops-ci-assets) you will be able to set up you CI in a matter of minutes. 15 | ______________________ 16 | These tools are provided as-is and without warranty or support. They do not constitute part of the Software AG product suite. Users are free to use, fork and modify them, subject to the license agreement. While Software AG welcomes contributions, we cannot guarantee to include every contribution in the master project. 17 | ____________________ 18 | For more information you can Ask a Question in the [Tech Community Forums](https://tech.forums.softwareag.com/tags/c/forum/1/webmethods). 19 | 20 | You can find additional information in the [Software AG Tech Community](https://tech.forums.softwareag.com/tag/webmethods). 21 | ____________________ 22 | Contact us at [Tech Community](mailto:technologycommunity@softwareag.com?subject=Github/SoftwareAG) if you have any questions. 23 | -------------------------------------------------------------------------------- /assets/BPM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareAG/webmethods-sample-project-layout/e1d464cf8230e622318f9cd8c5f85a0502ae33b7/assets/BPM/.gitignore -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/.classpath: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Fibonachi 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | com.softwareag.is.vcsintegration.ISPackageBuilder 15 | 16 | 17 | 18 | 19 | 20 | com.softwareag.is.vcsintegration.nature 21 | org.eclipse.jdt.core.javanature 22 | 23 | 24 | -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/.settings/com.softwareag.ide.eclipse.pld.bundle.builder.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | project.version=1.0.0 3 | -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/manifest.bak: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | yes 5 | no 6 | 1.0 7 | 8 | 9 | 10 | 11 | 12 | yes 13 | 14 | -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/manifest.v3: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | yes 5 | no 6 | 2.0 7 | 8 | 9 | 10 | 11 | Default 12 | yes 13 | 14 | -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/ns/Fibonachi/node.idf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | interface 5 | Fibonachi 6 | false 7 | 8 | -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/ns/Fibonachi/services/getFibunachiNumber/flow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | record 24 | unknown 25 | false 26 | record 27 | 0 28 | true 29 | false 30 | false 31 | 32 | 33 | record 34 | unknown 35 | 36 | 37 | true 38 | false 39 | false 40 | 41 | false 42 | n 43 | string 44 | 0 45 | 46 | 47 | true 48 | false 49 | false 50 | 51 | 52 | unknown 53 | unknown 54 | false 55 | numOne 56 | string 57 | 0 58 | true 59 | false 60 | false 61 | 62 | 63 | unknown 64 | unknown 65 | false 66 | numTwo 67 | string 68 | 0 69 | true 70 | false 71 | false 72 | 73 | 74 | record 75 | unknown 76 | 77 | 78 | true 79 | false 80 | false 81 | 82 | false 83 | Untitled 84 | string 85 | 0 86 | 87 | 88 | true 89 | false 90 | false 91 | 92 | 93 | true 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | record 102 | unknown 103 | false 104 | record 105 | 0 106 | true 107 | false 108 | false 109 | 110 | 111 | true 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 1 123 | 124 | record 125 | unknown 126 | false 127 | numTwo 128 | string 129 | 0 130 | true 131 | false 132 | false 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 0 143 | 144 | unknown 145 | unknown 146 | false 147 | numOne 148 | string 149 | 0 150 | true 151 | false 152 | false 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | record 176 | unknown 177 | false 178 | record 179 | 0 180 | true 181 | false 182 | false 183 | 184 | 185 | record 186 | unknown 187 | 188 | 189 | true 190 | false 191 | false 192 | 193 | false 194 | n 195 | string 196 | 0 197 | 198 | 199 | true 200 | false 201 | false 202 | 203 | 204 | unknown 205 | unknown 206 | false 207 | numOne 208 | string 209 | 0 210 | true 211 | false 212 | false 213 | 214 | 215 | unknown 216 | unknown 217 | false 218 | numTwo 219 | string 220 | 0 221 | true 222 | false 223 | false 224 | 225 | 226 | unknown 227 | unknown 228 | false 229 | fibonachiNumber 230 | string 231 | 0 232 | true 233 | false 234 | false 235 | 236 | 237 | record 238 | unknown 239 | 240 | 241 | true 242 | false 243 | false 244 | 245 | false 246 | Untitled 247 | string 248 | 0 249 | 250 | 251 | true 252 | false 253 | false 254 | 255 | 256 | true 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | record 265 | unknown 266 | false 267 | record 268 | 0 269 | true 270 | false 271 | false 272 | 273 | 274 | true 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 0 286 | 287 | unknown 288 | unknown 289 | false 290 | fibonachiNumber 291 | string 292 | 0 293 | true 294 | false 295 | false 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | record 313 | unknown 314 | false 315 | clearPipelineInput 316 | record 317 | 0 318 | true 319 | false 320 | false 321 | 322 | 323 | unknown 324 | unknown 325 | false 326 | preserve 327 | string 328 | 1 329 | true 330 | true 331 | false 332 | false 333 | false 334 | 335 | 336 | true 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | record 345 | unknown 346 | false 347 | record 348 | 0 349 | true 350 | false 351 | false 352 | 353 | 354 | true 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | fibonachiNumber 367 | 368 | 369 | unknown 370 | unknown 371 | false 372 | preserve 373 | string 374 | 1 375 | true 376 | true 377 | false 378 | false 379 | false 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | record 392 | unknown 393 | false 394 | record 395 | 0 396 | true 397 | false 398 | false 399 | 400 | 401 | unknown 402 | unknown 403 | false 404 | preserve 405 | string 406 | 1 407 | true 408 | false 409 | false 410 | false 411 | 412 | 413 | record 414 | unknown 415 | 416 | 417 | true 418 | false 419 | false 420 | 421 | false 422 | n 423 | string 424 | 0 425 | 426 | 427 | true 428 | false 429 | false 430 | 431 | 432 | unknown 433 | unknown 434 | false 435 | numOne 436 | string 437 | 0 438 | true 439 | false 440 | false 441 | 442 | 443 | unknown 444 | unknown 445 | false 446 | numTwo 447 | string 448 | 0 449 | true 450 | false 451 | false 452 | 453 | 454 | unknown 455 | unknown 456 | false 457 | fibonachiNumber 458 | string 459 | 0 460 | true 461 | false 462 | false 463 | 464 | 465 | record 466 | unknown 467 | 468 | 469 | true 470 | false 471 | false 472 | 473 | false 474 | Untitled 475 | string 476 | 0 477 | 478 | 479 | true 480 | false 481 | false 482 | 483 | 484 | true 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | record 493 | unknown 494 | false 495 | record 496 | 0 497 | true 498 | false 499 | false 500 | 501 | 502 | true 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 | record 531 | unknown 532 | false 533 | record 534 | 0 535 | true 536 | false 537 | false 538 | 539 | 540 | record 541 | unknown 542 | 543 | 544 | true 545 | false 546 | false 547 | 548 | false 549 | n 550 | string 551 | 0 552 | 553 | 554 | true 555 | false 556 | false 557 | 558 | 559 | unknown 560 | unknown 561 | false 562 | numOne 563 | string 564 | 0 565 | true 566 | false 567 | false 568 | 569 | 570 | unknown 571 | unknown 572 | false 573 | numTwo 574 | string 575 | 0 576 | true 577 | false 578 | false 579 | 580 | 581 | unknown 582 | unknown 583 | false 584 | fibonachiNumber 585 | string 586 | 0 587 | true 588 | false 589 | false 590 | 591 | 592 | true 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | record 601 | unknown 602 | false 603 | record 604 | 0 605 | true 606 | false 607 | false 608 | 609 | 610 | true 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 1 622 | 623 | unknown 624 | unknown 625 | false 626 | fibonachiNumber 627 | string 628 | 0 629 | true 630 | false 631 | false 632 | 633 | 634 | 635 | 636 | 637 | 638 | 639 | 640 | 641 | 642 | 643 | 644 | 645 | 646 | 647 | 648 | record 649 | unknown 650 | false 651 | clearPipelineInput 652 | record 653 | 0 654 | true 655 | false 656 | false 657 | 658 | 659 | unknown 660 | unknown 661 | false 662 | preserve 663 | string 664 | 1 665 | true 666 | true 667 | false 668 | false 669 | false 670 | 671 | 672 | true 673 | 674 | 675 | 676 | 677 | 678 | 679 | 680 | record 681 | unknown 682 | false 683 | record 684 | 0 685 | true 686 | false 687 | false 688 | 689 | 690 | true 691 | 692 | 693 | 694 | 695 | 696 | 697 | 698 | 699 | 700 | 701 | 702 | fibonachiNumber 703 | 704 | 705 | unknown 706 | unknown 707 | false 708 | preserve 709 | string 710 | 1 711 | true 712 | true 713 | false 714 | false 715 | false 716 | 717 | 718 | 719 | 720 | 721 | 722 | 723 | 724 | 725 | 726 | 727 | record 728 | unknown 729 | false 730 | record 731 | 0 732 | true 733 | false 734 | false 735 | 736 | 737 | unknown 738 | unknown 739 | false 740 | preserve 741 | string 742 | 1 743 | true 744 | false 745 | false 746 | false 747 | 748 | 749 | record 750 | unknown 751 | 752 | 753 | true 754 | false 755 | false 756 | 757 | false 758 | n 759 | string 760 | 0 761 | 762 | 763 | true 764 | false 765 | false 766 | 767 | 768 | unknown 769 | unknown 770 | false 771 | numOne 772 | string 773 | 0 774 | true 775 | false 776 | false 777 | 778 | 779 | unknown 780 | unknown 781 | false 782 | numTwo 783 | string 784 | 0 785 | true 786 | false 787 | false 788 | 789 | 790 | unknown 791 | unknown 792 | false 793 | fibonachiNumber 794 | string 795 | 0 796 | true 797 | false 798 | false 799 | 800 | 801 | record 802 | unknown 803 | 804 | 805 | true 806 | false 807 | false 808 | 809 | false 810 | Untitled 811 | string 812 | 0 813 | 814 | 815 | true 816 | false 817 | false 818 | 819 | 820 | true 821 | 822 | 823 | 824 | 825 | 826 | 827 | 828 | record 829 | unknown 830 | false 831 | record 832 | 0 833 | true 834 | false 835 | false 836 | 837 | 838 | true 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 | record 877 | unknown 878 | false 879 | subtractIntsInput 880 | record 881 | 0 882 | IData 883 | true 884 | false 885 | false 886 | 887 | 888 | field 889 | unknown 890 | false 891 | num1 892 | string 893 | 0 894 | true 895 | false 896 | false 897 | 898 | 899 | field 900 | unknown 901 | false 902 | num2 903 | string 904 | 0 905 | true 906 | false 907 | false 908 | 909 | 910 | true 911 | 912 | 913 | 914 | 915 | 916 | 917 | 918 | record 919 | unknown 920 | false 921 | record 922 | 0 923 | IData 924 | true 925 | false 926 | false 927 | 928 | 929 | record 930 | unknown 931 | 932 | 933 | true 934 | false 935 | false 936 | 937 | false 938 | n 939 | string 940 | 0 941 | 942 | 943 | true 944 | false 945 | false 946 | 947 | 948 | unknown 949 | unknown 950 | false 951 | numOne 952 | string 953 | 0 954 | true 955 | false 956 | false 957 | 958 | 959 | unknown 960 | unknown 961 | false 962 | numTwo 963 | string 964 | 0 965 | true 966 | false 967 | false 968 | 969 | 970 | unknown 971 | unknown 972 | false 973 | fibonachiNumber 974 | string 975 | 0 976 | true 977 | false 978 | false 979 | 980 | 981 | true 982 | 983 | 984 | 985 | 986 | 987 | 988 | 989 | 990 | 991 | 992 | 993 | 994 | 995 | 2 996 | 997 | unknown 998 | unknown 999 | false 1000 | num2 1001 | string 1002 | 0 1003 | true 1004 | false 1005 | false 1006 | 1007 | 1008 | 1009 | 1010 | 1011 | 1012 | 1013 | 1014 | 1015 | 1016 | 1017 | record 1018 | unknown 1019 | false 1020 | record 1021 | 0 1022 | IData 1023 | true 1024 | false 1025 | false 1026 | 1027 | 1028 | unknown 1029 | unknown 1030 | false 1031 | num1 1032 | string 1033 | 0 1034 | true 1035 | false 1036 | false 1037 | 1038 | 1039 | unknown 1040 | unknown 1041 | false 1042 | num2 1043 | string 1044 | 0 1045 | true 1046 | false 1047 | false 1048 | 1049 | 1050 | record 1051 | unknown 1052 | 1053 | 1054 | true 1055 | false 1056 | false 1057 | 1058 | false 1059 | n 1060 | string 1061 | 0 1062 | 1063 | 1064 | true 1065 | false 1066 | false 1067 | 1068 | 1069 | unknown 1070 | unknown 1071 | false 1072 | numOne 1073 | string 1074 | 0 1075 | true 1076 | false 1077 | false 1078 | 1079 | 1080 | unknown 1081 | unknown 1082 | false 1083 | numTwo 1084 | string 1085 | 0 1086 | true 1087 | false 1088 | false 1089 | 1090 | 1091 | unknown 1092 | unknown 1093 | false 1094 | fibonachiNumber 1095 | string 1096 | 0 1097 | true 1098 | false 1099 | false 1100 | 1101 | 1102 | field 1103 | unknown 1104 | false 1105 | value 1106 | string 1107 | 0 1108 | true 1109 | false 1110 | false 1111 | 1112 | 1113 | true 1114 | 1115 | 1116 | 1117 | 1118 | 1119 | 1120 | 1121 | record 1122 | unknown 1123 | false 1124 | subtractIntsOutput 1125 | record 1126 | 0 1127 | IData 1128 | true 1129 | false 1130 | false 1131 | 1132 | 1133 | field 1134 | unknown 1135 | false 1136 | value 1137 | string 1138 | 0 1139 | true 1140 | false 1141 | false 1142 | 1143 | 1144 | true 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | record 1181 | unknown 1182 | false 1183 | addIntsInput 1184 | record 1185 | 0 1186 | true 1187 | false 1188 | false 1189 | 1190 | 1191 | unknown 1192 | unknown 1193 | false 1194 | num1 1195 | string 1196 | 0 1197 | true 1198 | false 1199 | false 1200 | 1201 | 1202 | unknown 1203 | unknown 1204 | false 1205 | num2 1206 | string 1207 | 0 1208 | true 1209 | false 1210 | false 1211 | 1212 | 1213 | true 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | record 1222 | unknown 1223 | false 1224 | record 1225 | 0 1226 | true 1227 | false 1228 | false 1229 | 1230 | 1231 | record 1232 | unknown 1233 | 1234 | 1235 | true 1236 | false 1237 | false 1238 | 1239 | false 1240 | n 1241 | string 1242 | 0 1243 | 1244 | 1245 | true 1246 | false 1247 | false 1248 | 1249 | 1250 | unknown 1251 | unknown 1252 | false 1253 | numOne 1254 | string 1255 | 0 1256 | true 1257 | false 1258 | false 1259 | 1260 | 1261 | unknown 1262 | unknown 1263 | false 1264 | numTwo 1265 | string 1266 | 0 1267 | true 1268 | false 1269 | false 1270 | 1271 | 1272 | unknown 1273 | unknown 1274 | false 1275 | fibonachiNumber 1276 | string 1277 | 0 1278 | true 1279 | false 1280 | false 1281 | 1282 | 1283 | unknown 1284 | unknown 1285 | false 1286 | $retries 1287 | string 1288 | 0 1289 | true 1290 | false 1291 | false 1292 | 1293 | 1294 | true 1295 | 1296 | 1297 | 1298 | 1299 | 1300 | 1301 | 1302 | 1303 | 1304 | 1305 | 1306 | 1307 | 1308 | 1309 | 1310 | 1311 | 1312 | 1313 | record 1314 | unknown 1315 | false 1316 | record 1317 | 0 1318 | true 1319 | false 1320 | false 1321 | 1322 | 1323 | unknown 1324 | unknown 1325 | false 1326 | num1 1327 | string 1328 | 0 1329 | true 1330 | false 1331 | false 1332 | 1333 | 1334 | unknown 1335 | unknown 1336 | false 1337 | num2 1338 | string 1339 | 0 1340 | true 1341 | false 1342 | false 1343 | 1344 | 1345 | record 1346 | unknown 1347 | 1348 | 1349 | true 1350 | false 1351 | false 1352 | 1353 | false 1354 | n 1355 | string 1356 | 0 1357 | 1358 | 1359 | true 1360 | false 1361 | false 1362 | 1363 | 1364 | unknown 1365 | unknown 1366 | false 1367 | numOne 1368 | string 1369 | 0 1370 | true 1371 | false 1372 | false 1373 | 1374 | 1375 | unknown 1376 | unknown 1377 | false 1378 | numTwo 1379 | string 1380 | 0 1381 | true 1382 | false 1383 | false 1384 | 1385 | 1386 | unknown 1387 | unknown 1388 | false 1389 | fibonachiNumber 1390 | string 1391 | 0 1392 | true 1393 | false 1394 | false 1395 | 1396 | 1397 | unknown 1398 | unknown 1399 | false 1400 | value 1401 | string 1402 | 0 1403 | true 1404 | false 1405 | false 1406 | 1407 | 1408 | true 1409 | 1410 | 1411 | 1412 | 1413 | 1414 | 1415 | 1416 | record 1417 | unknown 1418 | false 1419 | addIntsOutput 1420 | record 1421 | 0 1422 | true 1423 | false 1424 | false 1425 | 1426 | 1427 | unknown 1428 | unknown 1429 | false 1430 | value 1431 | string 1432 | 0 1433 | true 1434 | false 1435 | false 1436 | 1437 | 1438 | true 1439 | 1440 | 1441 | 1442 | 1443 | 1444 | 1445 | 1446 | 1447 | 1448 | 1449 | 1450 | 1451 | 1452 | 1453 | 1454 | 1455 | 1456 | 1457 | 1458 | 1459 | 1460 | 1461 | 1462 | record 1463 | unknown 1464 | false 1465 | record 1466 | 0 1467 | true 1468 | false 1469 | false 1470 | 1471 | 1472 | unknown 1473 | unknown 1474 | false 1475 | num1 1476 | string 1477 | 0 1478 | true 1479 | false 1480 | false 1481 | 1482 | 1483 | unknown 1484 | unknown 1485 | false 1486 | num2 1487 | string 1488 | 0 1489 | true 1490 | false 1491 | false 1492 | 1493 | 1494 | record 1495 | unknown 1496 | 1497 | 1498 | true 1499 | false 1500 | false 1501 | 1502 | false 1503 | n 1504 | string 1505 | 0 1506 | 1507 | 1508 | true 1509 | false 1510 | false 1511 | 1512 | 1513 | unknown 1514 | unknown 1515 | false 1516 | numOne 1517 | string 1518 | 0 1519 | true 1520 | false 1521 | false 1522 | 1523 | 1524 | unknown 1525 | unknown 1526 | false 1527 | numTwo 1528 | string 1529 | 0 1530 | true 1531 | false 1532 | false 1533 | 1534 | 1535 | unknown 1536 | unknown 1537 | false 1538 | fibonachiNumber 1539 | string 1540 | 0 1541 | true 1542 | false 1543 | false 1544 | 1545 | 1546 | unknown 1547 | unknown 1548 | false 1549 | value 1550 | string 1551 | 0 1552 | true 1553 | false 1554 | false 1555 | 1556 | 1557 | true 1558 | 1559 | 1560 | 1561 | 1562 | 1563 | 1564 | 1565 | record 1566 | unknown 1567 | false 1568 | record 1569 | 0 1570 | true 1571 | false 1572 | false 1573 | 1574 | 1575 | record 1576 | unknown 1577 | 1578 | 1579 | true 1580 | false 1581 | false 1582 | 1583 | false 1584 | n 1585 | string 1586 | 0 1587 | 1588 | 1589 | true 1590 | false 1591 | false 1592 | 1593 | 1594 | unknown 1595 | unknown 1596 | false 1597 | numOne 1598 | string 1599 | 0 1600 | true 1601 | false 1602 | false 1603 | 1604 | 1605 | unknown 1606 | unknown 1607 | false 1608 | numTwo 1609 | string 1610 | 0 1611 | true 1612 | false 1613 | false 1614 | 1615 | 1616 | unknown 1617 | unknown 1618 | false 1619 | fibonachiNumber 1620 | string 1621 | 0 1622 | true 1623 | false 1624 | false 1625 | 1626 | 1627 | unknown 1628 | unknown 1629 | false 1630 | value 1631 | string 1632 | 0 1633 | true 1634 | false 1635 | false 1636 | 1637 | 1638 | unknown 1639 | unknown 1640 | false 1641 | $retries 1642 | string 1643 | 0 1644 | true 1645 | false 1646 | false 1647 | 1648 | 1649 | true 1650 | 1651 | 1652 | 1653 | 1654 | 1655 | 1656 | 1657 | 1658 | 1659 | 1660 | 1661 | 1662 | 1663 | 1664 | 1665 | 1666 | 1667 | 1668 | 1669 | 1670 | 1671 | 1672 | 1673 | 1674 | record 1675 | unknown 1676 | false 1677 | clearPipelineInput 1678 | record 1679 | 0 1680 | IData 1681 | true 1682 | false 1683 | false 1684 | 1685 | 1686 | field 1687 | unknown 1688 | false 1689 | preserve 1690 | string 1691 | 1 1692 | true 1693 | true 1694 | false 1695 | false 1696 | false 1697 | 1698 | 1699 | true 1700 | 1701 | 1702 | 1703 | 1704 | 1705 | 1706 | 1707 | record 1708 | unknown 1709 | false 1710 | record 1711 | 0 1712 | IData 1713 | true 1714 | false 1715 | false 1716 | 1717 | 1718 | true 1719 | 1720 | 1721 | 1722 | 1723 | 1724 | 1725 | 1726 | 1727 | 1728 | 1729 | 1730 | fibonachiNumber 1731 | 1732 | 1733 | unknown 1734 | unknown 1735 | false 1736 | preserve 1737 | string 1738 | 1 1739 | true 1740 | true 1741 | false 1742 | false 1743 | false 1744 | 1745 | 1746 | 1747 | 1748 | 1749 | 1750 | 1751 | 1752 | 1753 | 1754 | -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/ns/Fibonachi/services/getFibunachiNumber/flow.xml.bak: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | record 15 | false 16 | record 17 | 0 18 | true 19 | false 20 | false 21 | 22 | 23 | record 24 | 25 | 26 | true 27 | false 28 | false 29 | 30 | false 31 | n 32 | string 33 | 0 34 | 35 | 36 | true 37 | false 38 | false 39 | 40 | 41 | unknown 42 | false 43 | numOne 44 | string 45 | 0 46 | true 47 | false 48 | false 49 | 50 | 51 | unknown 52 | false 53 | numTwo 54 | string 55 | 0 56 | true 57 | false 58 | false 59 | 60 | 61 | record 62 | 63 | 64 | true 65 | false 66 | false 67 | 68 | false 69 | Untitled 70 | string 71 | 0 72 | 73 | 74 | true 75 | false 76 | false 77 | 78 | 79 | true 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | record 88 | false 89 | record 90 | 0 91 | true 92 | false 93 | false 94 | 95 | 96 | true 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 1 108 | 109 | record 110 | false 111 | numTwo 112 | string 113 | 0 114 | true 115 | false 116 | false 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 0 127 | 128 | unknown 129 | false 130 | numOne 131 | string 132 | 0 133 | true 134 | false 135 | false 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | record 159 | false 160 | record 161 | 0 162 | true 163 | false 164 | false 165 | 166 | 167 | record 168 | 169 | 170 | true 171 | false 172 | false 173 | 174 | false 175 | n 176 | string 177 | 0 178 | 179 | 180 | true 181 | false 182 | false 183 | 184 | 185 | unknown 186 | false 187 | numOne 188 | string 189 | 0 190 | true 191 | false 192 | false 193 | 194 | 195 | unknown 196 | false 197 | numTwo 198 | string 199 | 0 200 | true 201 | false 202 | false 203 | 204 | 205 | unknown 206 | false 207 | fibonachiNumber 208 | string 209 | 0 210 | true 211 | false 212 | false 213 | 214 | 215 | record 216 | 217 | 218 | true 219 | false 220 | false 221 | 222 | false 223 | Untitled 224 | string 225 | 0 226 | 227 | 228 | true 229 | false 230 | false 231 | 232 | 233 | true 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | record 242 | false 243 | record 244 | 0 245 | true 246 | false 247 | false 248 | 249 | 250 | true 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 0 262 | 263 | unknown 264 | false 265 | fibonachiNumber 266 | string 267 | 0 268 | true 269 | false 270 | false 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | record 288 | false 289 | clearPipelineInput 290 | record 291 | 0 292 | true 293 | false 294 | false 295 | 296 | 297 | unknown 298 | false 299 | preserve 300 | string 301 | 1 302 | true 303 | true 304 | false 305 | false 306 | false 307 | 308 | 309 | true 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | record 318 | false 319 | record 320 | 0 321 | true 322 | false 323 | false 324 | 325 | 326 | true 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | fibonachiNumber 339 | 340 | 341 | unknown 342 | false 343 | preserve 344 | string 345 | 1 346 | true 347 | true 348 | false 349 | false 350 | false 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | record 363 | false 364 | record 365 | 0 366 | true 367 | false 368 | false 369 | 370 | 371 | unknown 372 | false 373 | preserve 374 | string 375 | 1 376 | true 377 | false 378 | false 379 | false 380 | 381 | 382 | record 383 | 384 | 385 | true 386 | false 387 | false 388 | 389 | false 390 | n 391 | string 392 | 0 393 | 394 | 395 | true 396 | false 397 | false 398 | 399 | 400 | unknown 401 | false 402 | numOne 403 | string 404 | 0 405 | true 406 | false 407 | false 408 | 409 | 410 | unknown 411 | false 412 | numTwo 413 | string 414 | 0 415 | true 416 | false 417 | false 418 | 419 | 420 | unknown 421 | false 422 | fibonachiNumber 423 | string 424 | 0 425 | true 426 | false 427 | false 428 | 429 | 430 | record 431 | 432 | 433 | true 434 | false 435 | false 436 | 437 | false 438 | Untitled 439 | string 440 | 0 441 | 442 | 443 | true 444 | false 445 | false 446 | 447 | 448 | true 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | record 457 | false 458 | record 459 | 0 460 | true 461 | false 462 | false 463 | 464 | 465 | true 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 | record 494 | false 495 | record 496 | 0 497 | true 498 | false 499 | false 500 | 501 | 502 | record 503 | 504 | 505 | true 506 | false 507 | false 508 | 509 | false 510 | n 511 | string 512 | 0 513 | 514 | 515 | true 516 | false 517 | false 518 | 519 | 520 | unknown 521 | false 522 | numOne 523 | string 524 | 0 525 | true 526 | false 527 | false 528 | 529 | 530 | unknown 531 | false 532 | numTwo 533 | string 534 | 0 535 | true 536 | false 537 | false 538 | 539 | 540 | unknown 541 | false 542 | fibonachiNumber 543 | string 544 | 0 545 | true 546 | false 547 | false 548 | 549 | 550 | true 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | record 559 | false 560 | record 561 | 0 562 | true 563 | false 564 | false 565 | 566 | 567 | true 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 1 579 | 580 | unknown 581 | false 582 | fibonachiNumber 583 | string 584 | 0 585 | true 586 | false 587 | false 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | record 605 | false 606 | clearPipelineInput 607 | record 608 | 0 609 | true 610 | false 611 | false 612 | 613 | 614 | unknown 615 | false 616 | preserve 617 | string 618 | 1 619 | true 620 | true 621 | false 622 | false 623 | false 624 | 625 | 626 | true 627 | 628 | 629 | 630 | 631 | 632 | 633 | 634 | record 635 | false 636 | record 637 | 0 638 | true 639 | false 640 | false 641 | 642 | 643 | true 644 | 645 | 646 | 647 | 648 | 649 | 650 | 651 | 652 | 653 | 654 | 655 | fibonachiNumber 656 | 657 | 658 | unknown 659 | false 660 | preserve 661 | string 662 | 1 663 | true 664 | true 665 | false 666 | false 667 | false 668 | 669 | 670 | 671 | 672 | 673 | 674 | 675 | 676 | 677 | 678 | 679 | record 680 | false 681 | record 682 | 0 683 | true 684 | false 685 | false 686 | 687 | 688 | unknown 689 | false 690 | preserve 691 | string 692 | 1 693 | true 694 | false 695 | false 696 | false 697 | 698 | 699 | record 700 | 701 | 702 | true 703 | false 704 | false 705 | 706 | false 707 | n 708 | string 709 | 0 710 | 711 | 712 | true 713 | false 714 | false 715 | 716 | 717 | unknown 718 | false 719 | numOne 720 | string 721 | 0 722 | true 723 | false 724 | false 725 | 726 | 727 | unknown 728 | false 729 | numTwo 730 | string 731 | 0 732 | true 733 | false 734 | false 735 | 736 | 737 | unknown 738 | false 739 | fibonachiNumber 740 | string 741 | 0 742 | true 743 | false 744 | false 745 | 746 | 747 | record 748 | 749 | 750 | true 751 | false 752 | false 753 | 754 | false 755 | Untitled 756 | string 757 | 0 758 | 759 | 760 | true 761 | false 762 | false 763 | 764 | 765 | true 766 | 767 | 768 | 769 | 770 | 771 | 772 | 773 | record 774 | false 775 | record 776 | 0 777 | true 778 | false 779 | false 780 | 781 | 782 | true 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 | record 821 | false 822 | subtractIntsInput 823 | record 824 | 0 825 | true 826 | false 827 | false 828 | 829 | 830 | unknown 831 | false 832 | num1 833 | string 834 | 0 835 | true 836 | false 837 | false 838 | 839 | 840 | unknown 841 | false 842 | num2 843 | string 844 | 0 845 | true 846 | false 847 | false 848 | 849 | 850 | true 851 | 852 | 853 | 854 | 855 | 856 | 857 | 858 | record 859 | false 860 | record 861 | 0 862 | true 863 | false 864 | false 865 | 866 | 867 | record 868 | 869 | 870 | true 871 | false 872 | false 873 | 874 | false 875 | n 876 | string 877 | 0 878 | 879 | 880 | true 881 | false 882 | false 883 | 884 | 885 | unknown 886 | false 887 | numOne 888 | string 889 | 0 890 | true 891 | false 892 | false 893 | 894 | 895 | unknown 896 | false 897 | numTwo 898 | string 899 | 0 900 | true 901 | false 902 | false 903 | 904 | 905 | unknown 906 | false 907 | fibonachiNumber 908 | string 909 | 0 910 | true 911 | false 912 | false 913 | 914 | 915 | true 916 | 917 | 918 | 919 | 920 | 921 | 922 | 923 | 924 | 925 | 926 | 927 | 928 | 929 | 2 930 | 931 | unknown 932 | false 933 | num2 934 | string 935 | 0 936 | true 937 | false 938 | false 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | record 951 | false 952 | record 953 | 0 954 | true 955 | false 956 | false 957 | 958 | 959 | unknown 960 | false 961 | num1 962 | string 963 | 0 964 | true 965 | false 966 | false 967 | 968 | 969 | unknown 970 | false 971 | num2 972 | string 973 | 0 974 | true 975 | false 976 | false 977 | 978 | 979 | record 980 | 981 | 982 | true 983 | false 984 | false 985 | 986 | false 987 | n 988 | string 989 | 0 990 | 991 | 992 | true 993 | false 994 | false 995 | 996 | 997 | unknown 998 | false 999 | numOne 1000 | string 1001 | 0 1002 | true 1003 | false 1004 | false 1005 | 1006 | 1007 | unknown 1008 | false 1009 | numTwo 1010 | string 1011 | 0 1012 | true 1013 | false 1014 | false 1015 | 1016 | 1017 | unknown 1018 | false 1019 | fibonachiNumber 1020 | string 1021 | 0 1022 | true 1023 | false 1024 | false 1025 | 1026 | 1027 | unknown 1028 | false 1029 | value 1030 | string 1031 | 0 1032 | true 1033 | false 1034 | false 1035 | 1036 | 1037 | true 1038 | 1039 | 1040 | 1041 | 1042 | 1043 | 1044 | 1045 | record 1046 | false 1047 | subtractIntsOutput 1048 | record 1049 | 0 1050 | true 1051 | false 1052 | false 1053 | 1054 | 1055 | unknown 1056 | false 1057 | value 1058 | string 1059 | 0 1060 | true 1061 | false 1062 | false 1063 | 1064 | 1065 | true 1066 | 1067 | 1068 | 1069 | 1070 | 1071 | 1072 | 1073 | 1074 | 1075 | 1076 | 1077 | 1078 | 1079 | 1080 | 1081 | 1082 | 1083 | 1084 | 1085 | 1086 | 1087 | 1088 | 1089 | 1090 | 1091 | 1092 | 1093 | 1094 | 1095 | 1096 | 1097 | 1098 | 1099 | 1100 | 1101 | record 1102 | false 1103 | addIntsInput 1104 | record 1105 | 0 1106 | true 1107 | false 1108 | false 1109 | 1110 | 1111 | unknown 1112 | false 1113 | num1 1114 | string 1115 | 0 1116 | true 1117 | false 1118 | false 1119 | 1120 | 1121 | unknown 1122 | false 1123 | num2 1124 | string 1125 | 0 1126 | true 1127 | false 1128 | false 1129 | 1130 | 1131 | true 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | record 1140 | false 1141 | record 1142 | 0 1143 | true 1144 | false 1145 | false 1146 | 1147 | 1148 | record 1149 | 1150 | 1151 | true 1152 | false 1153 | false 1154 | 1155 | false 1156 | n 1157 | string 1158 | 0 1159 | 1160 | 1161 | true 1162 | false 1163 | false 1164 | 1165 | 1166 | unknown 1167 | false 1168 | numOne 1169 | string 1170 | 0 1171 | true 1172 | false 1173 | false 1174 | 1175 | 1176 | unknown 1177 | false 1178 | numTwo 1179 | string 1180 | 0 1181 | true 1182 | false 1183 | false 1184 | 1185 | 1186 | unknown 1187 | false 1188 | fibonachiNumber 1189 | string 1190 | 0 1191 | true 1192 | false 1193 | false 1194 | 1195 | 1196 | unknown 1197 | false 1198 | $retries 1199 | string 1200 | 0 1201 | true 1202 | false 1203 | false 1204 | 1205 | 1206 | true 1207 | 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1224 | 1225 | record 1226 | false 1227 | record 1228 | 0 1229 | true 1230 | false 1231 | false 1232 | 1233 | 1234 | unknown 1235 | false 1236 | num1 1237 | string 1238 | 0 1239 | true 1240 | false 1241 | false 1242 | 1243 | 1244 | unknown 1245 | false 1246 | num2 1247 | string 1248 | 0 1249 | true 1250 | false 1251 | false 1252 | 1253 | 1254 | record 1255 | 1256 | 1257 | true 1258 | false 1259 | false 1260 | 1261 | false 1262 | n 1263 | string 1264 | 0 1265 | 1266 | 1267 | true 1268 | false 1269 | false 1270 | 1271 | 1272 | unknown 1273 | false 1274 | numOne 1275 | string 1276 | 0 1277 | true 1278 | false 1279 | false 1280 | 1281 | 1282 | unknown 1283 | false 1284 | numTwo 1285 | string 1286 | 0 1287 | true 1288 | false 1289 | false 1290 | 1291 | 1292 | unknown 1293 | false 1294 | fibonachiNumber 1295 | string 1296 | 0 1297 | true 1298 | false 1299 | false 1300 | 1301 | 1302 | unknown 1303 | false 1304 | value 1305 | string 1306 | 0 1307 | true 1308 | false 1309 | false 1310 | 1311 | 1312 | true 1313 | 1314 | 1315 | 1316 | 1317 | 1318 | 1319 | 1320 | record 1321 | false 1322 | addIntsOutput 1323 | record 1324 | 0 1325 | true 1326 | false 1327 | false 1328 | 1329 | 1330 | unknown 1331 | false 1332 | value 1333 | string 1334 | 0 1335 | true 1336 | false 1337 | false 1338 | 1339 | 1340 | true 1341 | 1342 | 1343 | 1344 | 1345 | 1346 | 1347 | 1348 | 1349 | 1350 | 1351 | 1352 | 1353 | 1354 | 1355 | 1356 | 1357 | 1358 | 1359 | 1360 | 1361 | 1362 | 1363 | 1364 | record 1365 | false 1366 | record 1367 | 0 1368 | true 1369 | false 1370 | false 1371 | 1372 | 1373 | unknown 1374 | false 1375 | num1 1376 | string 1377 | 0 1378 | true 1379 | false 1380 | false 1381 | 1382 | 1383 | unknown 1384 | false 1385 | num2 1386 | string 1387 | 0 1388 | true 1389 | false 1390 | false 1391 | 1392 | 1393 | record 1394 | 1395 | 1396 | true 1397 | false 1398 | false 1399 | 1400 | false 1401 | n 1402 | string 1403 | 0 1404 | 1405 | 1406 | true 1407 | false 1408 | false 1409 | 1410 | 1411 | unknown 1412 | false 1413 | numOne 1414 | string 1415 | 0 1416 | true 1417 | false 1418 | false 1419 | 1420 | 1421 | unknown 1422 | false 1423 | numTwo 1424 | string 1425 | 0 1426 | true 1427 | false 1428 | false 1429 | 1430 | 1431 | unknown 1432 | false 1433 | fibonachiNumber 1434 | string 1435 | 0 1436 | true 1437 | false 1438 | false 1439 | 1440 | 1441 | unknown 1442 | false 1443 | value 1444 | string 1445 | 0 1446 | true 1447 | false 1448 | false 1449 | 1450 | 1451 | true 1452 | 1453 | 1454 | 1455 | 1456 | 1457 | 1458 | 1459 | record 1460 | false 1461 | record 1462 | 0 1463 | true 1464 | false 1465 | false 1466 | 1467 | 1468 | record 1469 | 1470 | 1471 | true 1472 | false 1473 | false 1474 | 1475 | false 1476 | n 1477 | string 1478 | 0 1479 | 1480 | 1481 | true 1482 | false 1483 | false 1484 | 1485 | 1486 | unknown 1487 | false 1488 | numOne 1489 | string 1490 | 0 1491 | true 1492 | false 1493 | false 1494 | 1495 | 1496 | unknown 1497 | false 1498 | numTwo 1499 | string 1500 | 0 1501 | true 1502 | false 1503 | false 1504 | 1505 | 1506 | unknown 1507 | false 1508 | fibonachiNumber 1509 | string 1510 | 0 1511 | true 1512 | false 1513 | false 1514 | 1515 | 1516 | unknown 1517 | false 1518 | value 1519 | string 1520 | 0 1521 | true 1522 | false 1523 | false 1524 | 1525 | 1526 | unknown 1527 | false 1528 | $retries 1529 | string 1530 | 0 1531 | true 1532 | false 1533 | false 1534 | 1535 | 1536 | true 1537 | 1538 | 1539 | 1540 | 1541 | 1542 | 1543 | 1544 | 1545 | 1546 | 1547 | 1548 | 1549 | 1550 | 1551 | 1552 | 1553 | 1554 | 1555 | 1556 | 1557 | 1558 | 1559 | 1560 | 1561 | record 1562 | false 1563 | clearPipelineInput 1564 | record 1565 | 0 1566 | true 1567 | false 1568 | false 1569 | 1570 | 1571 | unknown 1572 | false 1573 | preserve 1574 | string 1575 | 1 1576 | true 1577 | true 1578 | false 1579 | false 1580 | false 1581 | 1582 | 1583 | true 1584 | 1585 | 1586 | 1587 | 1588 | 1589 | 1590 | 1591 | record 1592 | false 1593 | record 1594 | 0 1595 | true 1596 | false 1597 | false 1598 | 1599 | 1600 | true 1601 | 1602 | 1603 | 1604 | 1605 | 1606 | 1607 | 1608 | 1609 | 1610 | 1611 | 1612 | fibonachiNumber 1613 | 1614 | 1615 | unknown 1616 | false 1617 | preserve 1618 | string 1619 | 1 1620 | true 1621 | true 1622 | false 1623 | false 1624 | false 1625 | 1626 | 1627 | 1628 | 1629 | 1630 | 1631 | 1632 | 1633 | 1634 | 1635 | -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/ns/Fibonachi/services/getFibunachiNumber/node.ndf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | flow 5 | default 6 | java 3.5 7 | 8 | 9 | record 10 | unknown 11 | 12 | false 13 | record 14 | 0 15 | IData 16 | true 17 | false 18 | false 19 | 20 | 21 | record 22 | unknown 23 | 24 | 25 | true 26 | false 27 | false 28 | 29 | false 30 | n 31 | string 32 | 0 33 | 34 | 35 | true 36 | false 37 | false 38 | 39 | 40 | true 41 | 42 | 43 | record 44 | unknown 45 | 46 | false 47 | record 48 | 0 49 | IData 50 | true 51 | false 52 | false 53 | 54 | 55 | record 56 | unknown 57 | 58 | 59 | true 60 | false 61 | false 62 | 63 | false 64 | fibonachiNumber 65 | string 66 | 0 67 | 68 | 69 | true 70 | false 71 | false 72 | 73 | 74 | true 75 | 76 | 77 | 78 | no 79 | no 80 | no 81 | 15 82 | 1 83 | off 84 | no 85 | $null 86 | 87 | no 88 | 0 89 | 0 90 | none 91 | none 92 | 0 93 | 94 | 95 | 96 | 0 97 | false 98 | false 99 | true 100 | 101 | 1 102 | 103 | true 104 | false 105 | 106 | -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/ns/Fibonachi/services/node.idf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | interface 5 | Fibonachi.services 6 | false 7 | 8 | -------------------------------------------------------------------------------- /assets/IS/Packages/Fibonachi/pub/index.html: -------------------------------------------------------------------------------- 1 | 2 |

Welcome to the Home Page for the Fibonachi Package.

-------------------------------------------------------------------------------- /assets/IS/Tests/FibonachiTest/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/IS/Tests/FibonachiTest/.classpath.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareAG/webmethods-sample-project-layout/e1d464cf8230e622318f9cd8c5f85a0502ae33b7/assets/IS/Tests/FibonachiTest/.classpath.swp -------------------------------------------------------------------------------- /assets/IS/Tests/FibonachiTest/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | FibonachiTest 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /assets/IS/Tests/FibonachiTest/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu Jan 10 14:25:20 CET 2013 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.6 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.6 13 | -------------------------------------------------------------------------------- /assets/IS/Tests/FibonachiTest/bin/.gitignore: -------------------------------------------------------------------------------- 1 | /PackageTest/ 2 | /test/ 3 | -------------------------------------------------------------------------------- /assets/IS/Tests/FibonachiTest/resources/test/xml/data/fibExpectedOutput.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 8 15 | 16 | 17 | -------------------------------------------------------------------------------- /assets/IS/Tests/FibonachiTest/resources/test/xml/data/fibWrongInput.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | -1 15 | 16 | 17 | -------------------------------------------------------------------------------- /assets/IS/Tests/FibonachiTest/resources/test/xml/data/finInput.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 6 15 | 16 | 17 | -------------------------------------------------------------------------------- /assets/IS/Tests/FibonachiTest/resources/test/xml/data/mockSubstractIntWrong.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 5 15 | 16 | 17 | -------------------------------------------------------------------------------- /assets/IS/Tests/FibonachiTest/resources/test/xml/setup/FibonachiTest.xml: -------------------------------------------------------------------------------- 1 | 2 | 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 | -------------------------------------------------------------------------------- /assets/MWS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoftwareAG/webmethods-sample-project-layout/e1d464cf8230e622318f9cd8c5f85a0502ae33b7/assets/MWS/.gitignore -------------------------------------------------------------------------------- /build.xml: -------------------------------------------------------------------------------- 1 | 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 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | #CI Project Layout 2 | #mofidy only if you diviate from the standard structure 3 | 4 | #Asset paths 5 | # Use slash "/" as path separator. Example: Use "C:/SoftwareAG", instead of "C:\SoftwareAG". 6 | isPackages=./assets/IS/Packages 7 | isTests=./assets/IS/Tests 8 | isConfigDir=./assets/IS/config 9 | bpmProjects=./assets/BPM/ 10 | mwsProjects=./assets/MWS/ 11 | rulesProjects=./assets/Rules/ 12 | #Should always be named UniversalMessaging 13 | umExport=./assets/UniversalMessaging 14 | 15 | 16 | 17 | 18 | 19 | --------------------------------------------------------------------------------