From c994d7f783632a9cf6c9e19621a37eb4e8f3dd1a Mon Sep 17 00:00:00 2001 From: David Green Date: Sat, 26 Mar 2016 11:57:32 -0700 Subject: [PATCH] Apply Apache License 2.0 --- LICENSE | 202 +++++++++++++++ greensopinion.finance.application/pom.xml | 16 ++ greensopinion.finance.services/pom.xml | 16 ++ .../finance/services/AboutService.java | 15 +- .../finance/services/GreenBeans.java | 17 +- .../finance/services/ImportFilesService.java | 17 +- .../finance/services/ValidationException.java | 17 +- .../services/ValidationPreconditions.java | 17 +- .../services/application/Constants.java | 17 +- .../finance/services/application/Main.java | 17 +- .../services/application/MainScene.java | 17 +- .../services/application/SceneModule.java | 17 +- .../services/application/ServiceLocator.java | 17 +- .../application/WebApplicationRegion.java | 17 +- .../services/bridge/ConsoleBridge.java | 17 +- .../finance/services/bridge/WebInvoker.java | 17 +- .../finance/services/demo/Demo.java | 17 +- .../finance/services/domain/Categories.java | 17 +- .../services/domain/CategoriesService.java | 17 +- .../services/domain/CategorizerService.java | 17 +- .../finance/services/domain/Category.java | 17 +- .../services/domain/EncryptorSettings.java | 17 +- .../services/domain/EntityEventSupport.java | 17 +- .../services/domain/EntityListener.java | 17 +- .../finance/services/domain/MatchRule.java | 17 +- .../finance/services/domain/Settings.java | 17 +- .../services/domain/SettingsService.java | 17 +- .../finance/services/domain/Transaction.java | 17 +- .../finance/services/domain/Transactions.java | 17 +- .../services/domain/TransactionsService.java | 17 +- .../services/encryption/EncryptionModule.java | 15 +- .../services/encryption/Encryptor.java | 17 +- .../encryption/EncryptorListener.java | 15 +- .../encryption/EncryptorProviderService.java | 17 +- .../services/encryption/EncryptorService.java | 15 +- .../InvalidMasterPasswordException.java | 17 +- .../MasterPasswordChangeSupport.java | 15 +- .../finance/services/logging/AppLogging.java | 17 +- .../services/logging/LogConfigurator.java | 17 +- .../services/logging/LoggingModule.java | 17 +- .../CategoriesPersistenceService.java | 17 +- .../persistence/CategoriesTypeAdapter.java | 17 +- .../persistence/ConfigurationModule.java | 17 +- .../persistence/ConfigurationService.java | 17 +- .../persistence/DataDirectoryLocator.java | 15 +- .../services/persistence/DateTypeAdapter.java | 17 +- .../persistence/PersistenceGsonProvider.java | 17 +- .../persistence/PersistenceService.java | 17 +- .../SettingsPersistenceService.java | 17 +- .../TransactionsPersistenceService.java | 17 +- .../persistence/TransactionsTypeAdapter.java | 17 +- ...gorySummaryAmountDescendingComparator.java | 17 +- .../services/reports/ReportsService.java | 17 +- .../transaction/EntityReferences.java | 17 +- .../InvalidFileFormatException.java | 17 +- .../InvalidTransactionException.java | 17 +- .../services/transaction/LookAheadReader.java | 15 +- .../transaction/OfxTransactionReader.java | 15 +- .../services/transaction/SgmlReader.java | 17 +- .../transaction/TransactionNormalizer.java | 17 +- .../finance/services/web/AboutWebService.java | 17 +- .../services/web/CategoryWebService.java | 17 +- .../web/EncryptionSettingsWebService.java | 15 +- .../finance/services/web/EulaWebService.java | 17 +- .../finance/services/web/GsonWebRenderer.java | 17 +- .../services/web/ImportFilesWebService.java | 17 +- .../services/web/ReportsWebService.java | 17 +- .../services/web/TransactionsWebService.java | 17 +- .../finance/services/web/WebGsonProvider.java | 17 +- .../services/web/WebServiceModule.java | 17 +- .../services/web/dispatch/Handler.java | 17 +- .../services/web/dispatch/Invoker.java | 17 +- .../services/web/dispatch/MatchResult.java | 17 +- .../web/dispatch/NotFoundException.java | 17 +- .../services/web/dispatch/WebDispatch.java | 15 ++ .../services/web/dispatch/WebPath.java | 17 +- .../services/web/dispatch/WebRequest.java | 17 +- .../services/web/dispatch/WebResponse.java | 17 +- .../finance/services/web/model/About.java | 17 +- .../services/web/model/CategoryModel.java | 17 +- .../services/web/model/CategoryRuleModel.java | 17 +- .../services/web/model/CategorySummary.java | 17 +- .../web/model/EncryptionSettings.java | 17 +- .../finance/services/web/model/Eula.java | 17 +- .../services/web/model/ExceptionContent.java | 17 +- .../web/model/ExpensesByCategoryReport.java | 17 +- .../services/web/model/FileImport.java | 17 +- .../services/web/model/FileSelection.java | 17 +- .../web/model/IncomeVersusExpensesReport.java | 17 +- .../web/model/NewEncryptionSettings.java | 17 +- .../services/web/model/PeriodDetails.java | 17 +- .../web/model/PeriodTransactions.java | 17 +- .../finance/services/web/model/Report.java | 17 +- .../web/model/ResetEncryptionSettings.java | 15 +- .../services/web/model/TransactionModel.java | 17 +- .../services/web/model/UserEulaStatus.java | 17 +- .../finance/services/web/model/eula.html | 211 +++++++++++++--- .../finance/services/web/model/eula.md | 231 +++++++++++++----- .../finance/services/AboutServiceTest.java | 15 ++ .../services/AbstractIntegrationTest.java | 15 +- .../services/ImportFilesServiceTest.java | 17 +- .../finance/services/InjectorAsserts.java | 15 +- .../finance/services/TestResources.java | 17 +- .../services/ValidationExceptionTest.java | 17 +- .../services/ValidationPreconditionsTest.java | 17 +- .../services/application/ConstantsTest.java | 17 +- .../services/application/SceneModuleTest.java | 15 +- .../application/ServiceLocatorTest.java | 17 +- .../services/bridge/WebInvokerTest.java | 17 +- .../domain/CategoriesServiceTest.java | 17 +- .../services/domain/CategoriesTest.java | 17 +- .../domain/CategorizerServiceTest.java | 17 +- .../finance/services/domain/CategoryTest.java | 17 +- .../domain/DomainIntegrationTest.java | 15 +- .../domain/EncryptorSettingsTest.java | 17 +- .../domain/EntityEventSupportTest.java | 17 +- .../services/domain/MatchRuleTest.java | 17 +- .../finance/services/domain/SettingsTest.java | 17 +- .../services/domain/TransactionTest.java | 17 +- .../domain/TransactionsServiceTest.java | 17 +- .../services/domain/TransactionsTest.java | 17 +- .../ChangeMasterPasswordIntegrationTest.java | 15 +- .../encryption/EncryptionModuleTest.java | 15 +- .../EncryptorProviderServiceTest.java | 17 +- .../encryption/EncryptorServiceTest.java | 15 +- .../services/encryption/EncryptorTest.java | 17 +- .../MasterPasswordChangeSupportTest.java | 15 +- .../CategoriesPersistenceServiceTest.java | 17 +- .../persistence/ConfigurationModuleTest.java | 17 +- .../persistence/ConfigurationServiceTest.java | 17 +- .../persistence/DataDirectoryLocatorTest.java | 15 +- .../persistence/DataGsonProviderTest.java | 17 +- .../persistence/DateTypeAdapterTest.java | 17 +- .../MockEncryptorProviderService.java | 17 +- .../MockPersistenceGsonProvider.java | 17 +- .../PersistenceGsonProviderTest.java | 17 +- .../persistence/PersistenceServiceTest.java | 17 +- .../SettingsPersistenceServiceTest.java | 17 +- .../TransactionsPersistenceServiceTest.java | 17 +- ...SummaryAmountDescendingComparatorTest.java | 17 +- .../services/reports/ReportsServiceTest.java | 17 +- .../transaction/EntityReferencesTest.java | 17 +- .../transaction/LookAheadReaderTest.java | 15 +- .../services/transaction/MockTransaction.java | 17 +- .../transaction/OfxTransactionReaderTest.java | 15 +- .../services/transaction/SgmlReaderTest.java | 17 +- .../TransactionNormalizerTest.java | 17 +- .../services/web/CategoryWebServiceTest.java | 17 +- .../web/EncryptionSettingsWebServiceTest.java | 15 +- .../services/web/EulaWebServiceTest.java | 17 +- .../web/TransactionsWebServiceTest.java | 17 +- .../services/web/WebServiceModuleTest.java | 17 +- .../services/web/dispatch/HandlerTest.java | 17 +- .../services/web/dispatch/InvokerTest.java | 17 +- .../web/dispatch/WebDispatchTest.java | 15 ++ .../services/web/dispatch/WebPathTest.java | 17 +- .../services/web/dispatch/WebRequestTest.java | 17 +- .../web/dispatch/WebResponseTest.java | 17 +- .../services/web/model/CategoryModelTest.java | 17 +- .../web/model/ExceptionContentTest.java | 17 +- .../web/model/TransactionModelTest.java | 17 +- greensopinion.finance.ui/Gruntfile.js | 15 ++ greensopinion.finance.ui/app/scripts/app.js | 17 +- .../app/scripts/common/errorModel.js | 17 +- .../app/scripts/controllers/about.js | 17 +- .../app/scripts/controllers/categories.js | 17 +- .../scripts/controllers/category-dialog.js | 17 +- .../app/scripts/controllers/encryption.js | 15 +- .../app/scripts/controllers/eula-agreement.js | 17 +- .../app/scripts/controllers/help/help.js | 17 +- .../app/scripts/controllers/import.js | 17 +- .../app/scripts/controllers/month-detail.js | 17 +- .../app/scripts/controllers/reports.js | 17 +- .../app/scripts/controllers/transactions.js | 17 +- .../controllers/transactionsListing.js | 17 +- .../app/scripts/directives/help.js | 17 +- .../app/scripts/directives/mainmenu.js | 17 +- .../app/scripts/directives/toast.js | 17 +- .../app/scripts/directives/tooltip.js | 17 +- .../app/scripts/services/aboutService.js | 17 +- .../app/scripts/services/categoryService.js | 17 +- .../services/encryptionSettingsService.js | 15 +- .../app/scripts/services/errorService.js | 17 +- .../app/scripts/services/eulaService.js | 17 +- .../app/scripts/services/importService.js | 17 +- .../scripts/services/initializationService.js | 17 +- .../app/scripts/services/money.js | 17 +- .../app/scripts/services/reportService.js | 17 +- .../app/scripts/services/rest.js | 17 +- .../app/scripts/services/toastService.js | 17 +- .../scripts/services/transactionService.js | 17 +- greensopinion.finance.ui/assembly.xml | 16 ++ greensopinion.finance.ui/pom.xml | 18 +- greensopinion.finance.ui/test/karma.conf.js | 17 +- .../test/mock/mockRest.js | 17 +- .../test/spec/common/errorModel.spec.js | 17 +- .../test/spec/controllers/about.spec.js | 17 +- .../test/spec/controllers/categories.spec.js | 17 +- .../spec/controllers/category-dialog.spec.js | 17 +- .../test/spec/controllers/encryption.spec.js | 15 +- .../spec/controllers/eula-agreement.spec.js | 17 +- .../test/spec/controllers/help/help.spec.js | 17 +- .../test/spec/controllers/import.spec.js | 17 +- .../spec/controllers/month-detail.spec.js | 17 +- .../test/spec/controllers/reports.spec.js | 17 +- .../spec/controllers/transactions.spec.js | 17 +- .../controllers/transactionsListing.spec.js | 17 +- .../test/spec/directives/help.spec.js | 17 +- .../test/spec/directives/mainmenu.spec.js | 17 +- .../test/spec/directives/toast.spec.js | 17 +- .../test/spec/services/aboutService.spec.js | 17 +- .../spec/services/categoryService.spec.js | 17 +- .../encryptionSettingsService.spec.js | 15 +- .../test/spec/services/errorService.spec.js | 17 +- .../test/spec/services/eulaService.spec.js | 17 +- .../test/spec/services/importService.spec.js | 17 +- .../services/initializationService.spec.js | 17 +- .../test/spec/services/money.js | 17 +- .../test/spec/services/reportService.spec.js | 17 +- .../test/spec/services/toastService.spec.js | 17 +- .../spec/services/transactionService.spec.js | 17 +- greensopinion.finance.web/pom.xml | 16 ++ .../finance/services/web/Application.java | 17 +- .../finance/services/web/CorHeaderFilter.java | 17 +- .../finance/services/web/WebServerRunner.java | 17 +- 225 files changed, 3441 insertions(+), 914 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..d645695 --- /dev/null +++ b/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/greensopinion.finance.application/pom.xml b/greensopinion.finance.application/pom.xml index c3cf1aa..c0848f3 100644 --- a/greensopinion.finance.application/pom.xml +++ b/greensopinion.finance.application/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/greensopinion.finance.services/pom.xml b/greensopinion.finance.services/pom.xml index 5a331d6..4be46cd 100644 --- a/greensopinion.finance.services/pom.xml +++ b/greensopinion.finance.services/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/AboutService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/AboutService.java index 611542f..45d0b52 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/AboutService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/AboutService.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/GreenBeans.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/GreenBeans.java index 05a7d88..a9fb960 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/GreenBeans.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/GreenBeans.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ImportFilesService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ImportFilesService.java index 9f3a70e..70618d5 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ImportFilesService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ImportFilesService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ValidationException.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ValidationException.java index 5b2b4c7..53db33d 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ValidationException.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ValidationException.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ValidationPreconditions.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ValidationPreconditions.java index ea2f986..be8c1c0 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ValidationPreconditions.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/ValidationPreconditions.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/Constants.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/Constants.java index 7f398c8..f615751 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/Constants.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/Constants.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.application; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/Main.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/Main.java index b69d08b..13d12c0 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/Main.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/Main.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.application; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/MainScene.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/MainScene.java index 3356248..8f94e40 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/MainScene.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/MainScene.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.application; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/SceneModule.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/SceneModule.java index 90f5e83..f5ce9d2 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/SceneModule.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/SceneModule.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.application; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/ServiceLocator.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/ServiceLocator.java index 17c9424..114686e 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/ServiceLocator.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/ServiceLocator.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.application; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/WebApplicationRegion.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/WebApplicationRegion.java index 787ca00..a213a8d 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/WebApplicationRegion.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/application/WebApplicationRegion.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.application; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/bridge/ConsoleBridge.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/bridge/ConsoleBridge.java index 6de08ff..0bf7c22 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/bridge/ConsoleBridge.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/bridge/ConsoleBridge.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.bridge; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/bridge/WebInvoker.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/bridge/WebInvoker.java index ef3d64c..dc7e10d 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/bridge/WebInvoker.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/bridge/WebInvoker.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.bridge; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/demo/Demo.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/demo/Demo.java index 8a58b11..0672e35 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/demo/Demo.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/demo/Demo.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.demo; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Categories.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Categories.java index 629cea9..0ccbedb 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Categories.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Categories.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/CategoriesService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/CategoriesService.java index 0d8e395..5bf75f2 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/CategoriesService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/CategoriesService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/CategorizerService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/CategorizerService.java index bc94980..a196883 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/CategorizerService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/CategorizerService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Category.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Category.java index 3d111b7..9393155 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Category.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Category.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EncryptorSettings.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EncryptorSettings.java index 6708d5f..8c65f5e 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EncryptorSettings.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EncryptorSettings.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EntityEventSupport.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EntityEventSupport.java index 85f4a28..e1f4b61 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EntityEventSupport.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EntityEventSupport.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EntityListener.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EntityListener.java index 172a014..c65c699 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EntityListener.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/EntityListener.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/MatchRule.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/MatchRule.java index 8d039d0..6d655ed 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/MatchRule.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/MatchRule.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Settings.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Settings.java index fe1863b..56fe2fb 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Settings.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Settings.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/SettingsService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/SettingsService.java index 265bb6b..9180837 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/SettingsService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/SettingsService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Transaction.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Transaction.java index 90d193e..05db00b 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Transaction.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Transaction.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Transactions.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Transactions.java index e0f7815..007d213 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Transactions.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/Transactions.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/TransactionsService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/TransactionsService.java index 05d9bf1..41b6da9 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/TransactionsService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/domain/TransactionsService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptionModule.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptionModule.java index 9ee09e9..5df4620 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptionModule.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptionModule.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/Encryptor.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/Encryptor.java index 884bf1f..43a8fd8 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/Encryptor.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/Encryptor.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorListener.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorListener.java index 389cc70..a829a63 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorListener.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorListener.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorProviderService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorProviderService.java index ac1a5a3..533cdd8 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorProviderService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorProviderService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorService.java index 017eae2..4e1b9a2 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/EncryptorService.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/InvalidMasterPasswordException.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/InvalidMasterPasswordException.java index 932b6a3..b78887b 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/InvalidMasterPasswordException.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/InvalidMasterPasswordException.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/MasterPasswordChangeSupport.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/MasterPasswordChangeSupport.java index 3979834..f884c50 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/MasterPasswordChangeSupport.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/encryption/MasterPasswordChangeSupport.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/AppLogging.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/AppLogging.java index f869038..69d175e 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/AppLogging.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/AppLogging.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.logging; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/LogConfigurator.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/LogConfigurator.java index 1851aa8..1fe58c3 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/LogConfigurator.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/LogConfigurator.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.logging; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/LoggingModule.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/LoggingModule.java index fbfe3df..4bee6ff 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/LoggingModule.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/logging/LoggingModule.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.logging; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/CategoriesPersistenceService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/CategoriesPersistenceService.java index 9688ae8..c6746c0 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/CategoriesPersistenceService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/CategoriesPersistenceService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/CategoriesTypeAdapter.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/CategoriesTypeAdapter.java index 3066465..3ab1df1 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/CategoriesTypeAdapter.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/CategoriesTypeAdapter.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/ConfigurationModule.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/ConfigurationModule.java index 2dee6ea..a4600da 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/ConfigurationModule.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/ConfigurationModule.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/ConfigurationService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/ConfigurationService.java index b848b98..761f435 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/ConfigurationService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/ConfigurationService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/DataDirectoryLocator.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/DataDirectoryLocator.java index d6af0c2..187a9e7 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/DataDirectoryLocator.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/DataDirectoryLocator.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/DateTypeAdapter.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/DateTypeAdapter.java index fb60e94..da6182f 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/DateTypeAdapter.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/DateTypeAdapter.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/PersistenceGsonProvider.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/PersistenceGsonProvider.java index 64106da..b3dab7a 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/PersistenceGsonProvider.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/PersistenceGsonProvider.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/PersistenceService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/PersistenceService.java index 98dd688..19fb38d 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/PersistenceService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/PersistenceService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/SettingsPersistenceService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/SettingsPersistenceService.java index 2b85011..501e999 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/SettingsPersistenceService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/SettingsPersistenceService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/TransactionsPersistenceService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/TransactionsPersistenceService.java index 8a64b44..029eeec 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/TransactionsPersistenceService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/TransactionsPersistenceService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/TransactionsTypeAdapter.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/TransactionsTypeAdapter.java index bff107d..4f9fb4e 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/TransactionsTypeAdapter.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/persistence/TransactionsTypeAdapter.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/reports/CategorySummaryAmountDescendingComparator.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/reports/CategorySummaryAmountDescendingComparator.java index 5e38278..be0d2cd 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/reports/CategorySummaryAmountDescendingComparator.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/reports/CategorySummaryAmountDescendingComparator.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.reports; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/reports/ReportsService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/reports/ReportsService.java index 3106916..9a36e5f 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/reports/ReportsService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/reports/ReportsService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.reports; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/EntityReferences.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/EntityReferences.java index 9802d8d..8b261bf 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/EntityReferences.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/EntityReferences.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/InvalidFileFormatException.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/InvalidFileFormatException.java index d0c88fc..be9bf39 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/InvalidFileFormatException.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/InvalidFileFormatException.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/InvalidTransactionException.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/InvalidTransactionException.java index ff4cdd3..e4e7d18 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/InvalidTransactionException.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/InvalidTransactionException.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/LookAheadReader.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/LookAheadReader.java index 504d19f..6527f4a 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/LookAheadReader.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/LookAheadReader.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/OfxTransactionReader.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/OfxTransactionReader.java index 30b821d..2055063 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/OfxTransactionReader.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/OfxTransactionReader.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/SgmlReader.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/SgmlReader.java index 460ece1..5c6a0b7 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/SgmlReader.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/SgmlReader.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/TransactionNormalizer.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/TransactionNormalizer.java index 505f0fd..bc2efa1 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/TransactionNormalizer.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/transaction/TransactionNormalizer.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/AboutWebService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/AboutWebService.java index 9934635..5bc0a7b 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/AboutWebService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/AboutWebService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/CategoryWebService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/CategoryWebService.java index 291e378..52e672a 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/CategoryWebService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/CategoryWebService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/EncryptionSettingsWebService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/EncryptionSettingsWebService.java index 87d63a6..45a7202 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/EncryptionSettingsWebService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/EncryptionSettingsWebService.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/EulaWebService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/EulaWebService.java index 5a46662..087cffa 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/EulaWebService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/EulaWebService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/GsonWebRenderer.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/GsonWebRenderer.java index 7b14d9c..9b7b31a 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/GsonWebRenderer.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/GsonWebRenderer.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/ImportFilesWebService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/ImportFilesWebService.java index 5419c91..ce3bfb5 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/ImportFilesWebService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/ImportFilesWebService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/ReportsWebService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/ReportsWebService.java index f1a9f9b..d614c3e 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/ReportsWebService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/ReportsWebService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/TransactionsWebService.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/TransactionsWebService.java index 563fc87..4954cc7 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/TransactionsWebService.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/TransactionsWebService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/WebGsonProvider.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/WebGsonProvider.java index 2ca5d90..f8bf298 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/WebGsonProvider.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/WebGsonProvider.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/WebServiceModule.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/WebServiceModule.java index 1f57c93..9802ae2 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/WebServiceModule.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/WebServiceModule.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/Handler.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/Handler.java index dcbd348..5c90573 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/Handler.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/Handler.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/Invoker.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/Invoker.java index e96e0eb..9c3d61d 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/Invoker.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/Invoker.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/MatchResult.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/MatchResult.java index df8fdf3..515929c 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/MatchResult.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/MatchResult.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/NotFoundException.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/NotFoundException.java index 5a09584..3c59a98 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/NotFoundException.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/NotFoundException.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebDispatch.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebDispatch.java index 6895887..cbf16f5 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebDispatch.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebDispatch.java @@ -1,3 +1,18 @@ +/******************************************************************************* + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *******************************************************************************/ package greensopinion.finance.services.web.dispatch; import static com.google.common.base.Preconditions.checkNotNull; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebPath.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebPath.java index c12cbcb..b882688 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebPath.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebPath.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebRequest.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebRequest.java index 3aa2902..068e29b 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebRequest.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebRequest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebResponse.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebResponse.java index 66fb747..fb410ca 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebResponse.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/dispatch/WebResponse.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/About.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/About.java index 7783042..f11e187 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/About.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/About.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategoryModel.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategoryModel.java index d54b17c..014fa92 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategoryModel.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategoryModel.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategoryRuleModel.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategoryRuleModel.java index 901f54d..90aedff 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategoryRuleModel.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategoryRuleModel.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategorySummary.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategorySummary.java index 3ed690f..fdb3ab8 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategorySummary.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/CategorySummary.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/EncryptionSettings.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/EncryptionSettings.java index a9f95ca..22bf0da 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/EncryptionSettings.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/EncryptionSettings.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/Eula.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/Eula.java index f0543e6..b47c034 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/Eula.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/Eula.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ExceptionContent.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ExceptionContent.java index 416cb97..e93e411 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ExceptionContent.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ExceptionContent.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ExpensesByCategoryReport.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ExpensesByCategoryReport.java index 9199403..5d97fd3 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ExpensesByCategoryReport.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ExpensesByCategoryReport.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/FileImport.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/FileImport.java index 6e7eee6..a7f0c1a 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/FileImport.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/FileImport.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/FileSelection.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/FileSelection.java index 839f867..b275e2f 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/FileSelection.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/FileSelection.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/IncomeVersusExpensesReport.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/IncomeVersusExpensesReport.java index 0ead4d5..3fc95c7 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/IncomeVersusExpensesReport.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/IncomeVersusExpensesReport.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/NewEncryptionSettings.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/NewEncryptionSettings.java index 23f616e..0fc1508 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/NewEncryptionSettings.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/NewEncryptionSettings.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/PeriodDetails.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/PeriodDetails.java index f286f77..b4f7ec9 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/PeriodDetails.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/PeriodDetails.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/PeriodTransactions.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/PeriodTransactions.java index 16d883f..b2715fb 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/PeriodTransactions.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/PeriodTransactions.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/Report.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/Report.java index 6c2adea..d0fa6b8 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/Report.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/Report.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ResetEncryptionSettings.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ResetEncryptionSettings.java index baa4f10..b376a2b 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ResetEncryptionSettings.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/ResetEncryptionSettings.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/TransactionModel.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/TransactionModel.java index cd5bef2..5fc4f57 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/TransactionModel.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/TransactionModel.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/UserEulaStatus.java b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/UserEulaStatus.java index 89b782e..df9ed42 100644 --- a/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/UserEulaStatus.java +++ b/greensopinion.finance.services/src/main/java/greensopinion/finance/services/web/model/UserEulaStatus.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/main/resources/greensopinion/finance/services/web/model/eula.html b/greensopinion.finance.services/src/main/resources/greensopinion/finance/services/web/model/eula.html index 0683632..5f5dbdc 100644 --- a/greensopinion.finance.services/src/main/resources/greensopinion/finance/services/web/model/eula.html +++ b/greensopinion.finance.services/src/main/resources/greensopinion/finance/services/web/model/eula.html @@ -1,32 +1,179 @@ -
-

END USER LICENSE AGREEMENT

-

IMPORTANT: PLEASE READ THIS LICENSE CAREFULLY BEFORE USING THIS SOFTWARE.

-

1. LICENSE

-

By receiving, opening the file package, and/or using Green Beans ("Software") containing this software, you agree that this End User License Agreement (“EULA”) is a legally binding and valid contract and agree to be bound by it. You agree to abide by the intellectual property laws applicable to this EULA and all of the terms and conditions applicable to this EULA, - Unless you have a different license agreement signed by David Green your use of Green Beans indicates your acceptance of this license agreement and warranty.

-

Subject to the terms of this Agreement, David Green grants to you a limited, non-exclusive, non-transferable license (this “License”), without right to sub-license, to use Green Beans in accordance with this Agreement and any other written agreement with David Green related to Green Beans. David Green does not transfer the title of Green Beans to you; the license granted to you is not a sale. This EULA is a binding legal agreement between you and David Green. - If you do not agree to be bound by this agreement, you will remove Green Beans from your computer now and, if applicable, promptly return to David Green by mail all copies of Green Beans and related documentation and packaging in your possession.

-

2. DISTRIBUTION

-

Green Beans and the license herein granted shall not be copied, shared, distributed, re-sold, offered for re-sale, transferred or sub-licensed in whole or in part except that you may make one copy for archive purposes only.

-

3. USER AGREEMENT

-

3.1 Use

-

Your license to use Green Beans is limited to the number of licenses purchased by you. You shall not allow others to use, copy or evaluate copies of Green Beans.

-

3.2 Use Restrictions

-

You shall use Green Beans in compliance with all applicable laws and not for any unlawful purpose. - Each licensed copy of Green Beans may be used on one single computer location by one user. Use of Green Beans means that you have loaded, installed, or run Green Beans on a computer or similar device. If you install Green Beans onto a multi-user platform, server or network, each and every individual user of Green Beans must be licensed separately.

-

You may make one copy of Green Beans for backup purposes, providing you only have one copy installed on one computer being used by one person. Other users may not use your copy of Green Beans. The assignment, sublicense, networking, sale, or distribution of copies of Green Beans are strictly forbidden without the prior written consent of David Green. It is a violation of this agreement to assign, sell, share, loan, rent, lease, borrow, network or transfer the use of Green Beans.

- -

This Software contains copyrighted material, trade secrets and other proprietary material. You shall not, and shall not attempt to, modify, reverse engineer, disassemble or decompile Green Beans. Nor can you create any derivative works or other works that are based upon or derived from Green Beans in whole or in part.

-

David Green retains sole and exclusive ownership of all right, title and interest in and to Green Beans and all Intellectual Property rights relating thereto.

-

Copyright law and international copyright treaty provisions protect all parts of Green Beans, products and services. No program, code, part, image, audio sample, or text may be copied or used in any way by the user except as intended within the bounds of the single user program. All rights not expressly granted hereunder are reserved for David Green.

-

3.4 Limitation of Liability and Indemnity

-

You will indemnify, hold harmless and defend David Green, its employees, agents and distributors against any and all claims, proceedings, demands, expenses and costs resulting from or in any way connected with your use of David Green's Software.

-

In no event will David Green, its employees, agents or distributors be liable for any consequential, incidental, indirect, special or punitive damages whatsoever including, without limitation, damages for loss of profits, loss of use, business interruption, loss of information or data, or pecuniary loss, in connection with or arising out of or related to this EULA, Green Beans or the use or inability to use Green Beans or the furnishing, performance or use of any other matters hereunder whether based upon contract, tort, negligence or any other cause whatsoever.

-

David Green's entire liability is limited to the reimbursement of the purchase price of the Software (maximum being the lesser of the amount paid by you and the suggested retail price as listed by David Green). Such reimbursement will be paid to you upon the return to David Green of the product, all copies, registration papers and manuals, and all related materials (the “Copyright Material”). The return of the Copyright Material to David Green and the payment to you of reimbursement will constitute a transfer of license from you back to David Green.

-

3.5 Warranties

-

Except as expressly stated herein, David Green makes no representation or warranties in respect of this Software and expressly excludes all other warranties, express or implied, oral or written, including, without limitation, any implied warranties of merchantable quality or fitness for a particular purpose.

-

3.6 Governing Law

-

This Agreement shall be governed by and construed in accordance with the laws of British Columbia and of Canada applicable in British Columbia. You hereby irrevocably attorn and submit to the jurisdiction of the Supreme Court of British Columbia. If any provision herein shall be deemed or found to be unlawful, void or otherwise unenforceable, then that provision shall be deemed to have been severed from this EULA provided that such severance shall not affect the validity and enforceability of any other provisions herein.

-

3.7 Termination

-

Any failure to comply with the terms and conditions of this Agreement will result in automatic and immediate termination of this License. Upon termination of this License granted for any reason, you agree to immediately cease use of Green Beans and destroy all copies of Green Beans supplied under this Agreement. All liability incurred by you arising from or in connection with this EULA shall survive the expiration or termination of this License.

-
\ No newline at end of file + + + + + +
+Apache License
+Version 2.0, January 2004
+http://www.apache.org/licenses/
+
+ +

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

+
    +
  1. +

    Definitions.

    +

    "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document.

    +

    "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License.

    +

    "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity.

    +

    "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License.

    +

    "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files.

    +

    "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types.

    +

    "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below).

    +

    "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof.

    +

    "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution."

    +

    "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work.

    +
  2. +
  3. +

    Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form.

    +
  4. +
  5. +

    Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed.

    +
  6. +
  7. +

    Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions:

    +

    (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and

    +

    (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and

    +

    (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and

    +

    (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License.

    +

    You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License.

    +
  8. +
  9. +

    Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions.

    +
  10. +
  11. +

    Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file.

    +
  12. +
  13. +

    Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License.

    +
  14. +
  15. +

    Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages.

    +
  16. +
  17. +

    Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability.

    +
  18. +
+ + \ No newline at end of file diff --git a/greensopinion.finance.services/src/main/resources/greensopinion/finance/services/web/model/eula.md b/greensopinion.finance.services/src/main/resources/greensopinion/finance/services/web/model/eula.md index 82ad80a..380f18e 100644 --- a/greensopinion.finance.services/src/main/resources/greensopinion/finance/services/web/model/eula.md +++ b/greensopinion.finance.services/src/main/resources/greensopinion/finance/services/web/model/eula.md @@ -1,56 +1,177 @@ -## END USER LICENSE AGREEMENT -IMPORTANT: PLEASE READ THIS LICENSE CAREFULLY BEFORE USING THIS SOFTWARE. - -### 1. LICENSE - -By receiving, opening the file package, and/or using Green Beans ("Software") containing this software, you agree that this End User License Agreement (“EULA”) is a legally binding and valid contract and agree to be bound by it. You agree to abide by the intellectual property laws applicable to this EULA and all of the terms and conditions applicable to this EULA, -Unless you have a different license agreement signed by David Green your use of Green Beans indicates your acceptance of this license agreement and warranty. - -Subject to the terms of this Agreement, David Green grants to you a limited, non-exclusive, non-transferable license (this “License”), without right to sub-license, to use Green Beans in accordance with this Agreement and any other written agreement with David Green related to Green Beans. David Green does not transfer the title of Green Beans to you; the license granted to you is not a sale. This EULA is a binding legal agreement between you and David Green. -If you do not agree to be bound by this agreement, you will remove Green Beans from your computer now and, if applicable, promptly return to David Green by mail all copies of Green Beans and related documentation and packaging in your possession. - -### 2. DISTRIBUTION - -Green Beans and the license herein granted shall not be copied, shared, distributed, re-sold, offered for re-sale, transferred or sub-licensed in whole or in part except that you may make one copy for archive purposes only. - -### 3. USER AGREEMENT - -#### 3.1 Use - -Your license to use Green Beans is limited to the number of licenses purchased by you. You shall not allow others to use, copy or evaluate copies of Green Beans. - -#### 3.2 Use Restrictions - -You shall use Green Beans in compliance with all applicable laws and not for any unlawful purpose. -Each licensed copy of Green Beans may be used on one single computer location by one user. Use of Green Beans means that you have loaded, installed, or run Green Beans on a computer or similar device. If you install Green Beans onto a multi-user platform, server or network, each and every individual user of Green Beans must be licensed separately. - -You may make one copy of Green Beans for backup purposes, providing you only have one copy installed on one computer being used by one person. Other users may not use your copy of Green Beans. The assignment, sublicense, networking, sale, or distribution of copies of Green Beans are strictly forbidden without the prior written consent of David Green. It is a violation of this agreement to assign, sell, share, loan, rent, lease, borrow, network or transfer the use of Green Beans. - -#### 3.3 Copyright Restriction - -This Software contains copyrighted material, trade secrets and other proprietary material. You shall not, and shall not attempt to, modify, reverse engineer, disassemble or decompile Green Beans. Nor can you create any derivative works or other works that are based upon or derived from Green Beans in whole or in part. - -David Green retains sole and exclusive ownership of all right, title and interest in and to Green Beans and all Intellectual Property rights relating thereto. - -Copyright law and international copyright treaty provisions protect all parts of Green Beans, products and services. No program, code, part, image, audio sample, or text may be copied or used in any way by the user except as intended within the bounds of the single user program. All rights not expressly granted hereunder are reserved for David Green. - -#### 3.4 Limitation of Liability and Indemnity - -You will indemnify, hold harmless and defend David Green, its employees, agents and distributors against any and all claims, proceedings, demands, expenses and costs resulting from or in any way connected with your use of David Green's Software. - -In no event will David Green, its employees, agents or distributors be liable for any consequential, incidental, indirect, special or punitive damages whatsoever including, without limitation, damages for loss of profits, loss of use, business interruption, loss of information or data, or pecuniary loss, in connection with or arising out of or related to this EULA, Green Beans or the use or inability to use Green Beans or the furnishing, performance or use of any other matters hereunder whether based upon contract, tort, negligence or any other cause whatsoever. - -David Green's entire liability is limited to the reimbursement of the purchase price of the Software (maximum being the lesser of the amount paid by you and the suggested retail price as listed by David Green). Such reimbursement will be paid to you upon the return to David Green of the product, all copies, registration papers and manuals, and all related materials (the “Copyright Material”). The return of the Copyright Material to David Green and the payment to you of reimbursement will constitute a transfer of license from you back to David Green. - -#### 3.5 Warranties - -Except as expressly stated herein, David Green makes no representation or warranties in respect of this Software and expressly excludes all other warranties, express or implied, oral or written, including, without limitation, any implied warranties of merchantable quality or fitness for a particular purpose. - -#### 3.6 Governing Law - -This Agreement shall be governed by and construed in accordance with the laws of British Columbia and of Canada applicable in British Columbia. You hereby irrevocably attorn and submit to the jurisdiction of the Supreme Court of British Columbia. If any provision herein shall be deemed or found to be unlawful, void or otherwise unenforceable, then that provision shall be deemed to have been severed from this EULA provided that such severance shall not affect the validity and enforceability of any other provisions herein. - -#### 3.7 Termination - -Any failure to comply with the terms and conditions of this Agreement will result in automatic and immediate termination of this License. Upon termination of this License granted for any reason, you agree to immediately cease use of Green Beans and destroy all copies of Green Beans supplied under this Agreement. All liability incurred by you arising from or in connection with this EULA shall survive the expiration or termination of this License. \ No newline at end of file +
+Apache License
+Version 2.0, January 2004
+http://www.apache.org/licenses/
+
+ +#### TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/AboutServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/AboutServiceTest.java index 034aaf1..975f0b4 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/AboutServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/AboutServiceTest.java @@ -1,3 +1,18 @@ +/******************************************************************************* + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *******************************************************************************/ package greensopinion.finance.services; import static org.junit.Assert.assertEquals; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/AbstractIntegrationTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/AbstractIntegrationTest.java index 3ae1433..56ed6c3 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/AbstractIntegrationTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/AbstractIntegrationTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ImportFilesServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ImportFilesServiceTest.java index 68d8195..9d54b32 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ImportFilesServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ImportFilesServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/InjectorAsserts.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/InjectorAsserts.java index 8a328ff..e43753b 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/InjectorAsserts.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/InjectorAsserts.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/TestResources.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/TestResources.java index 7fa77b9..ea5e05c 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/TestResources.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/TestResources.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ValidationExceptionTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ValidationExceptionTest.java index c0b396d..fa526dc 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ValidationExceptionTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ValidationExceptionTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ValidationPreconditionsTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ValidationPreconditionsTest.java index 7c89965..f915a1b 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ValidationPreconditionsTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/ValidationPreconditionsTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/ConstantsTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/ConstantsTest.java index 40df167..af3428d 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/ConstantsTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/ConstantsTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.application; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/SceneModuleTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/SceneModuleTest.java index 6c522b0..46c3f8e 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/SceneModuleTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/SceneModuleTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.application; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/ServiceLocatorTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/ServiceLocatorTest.java index 06f06eb..8c30ec8 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/ServiceLocatorTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/application/ServiceLocatorTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.application; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/bridge/WebInvokerTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/bridge/WebInvokerTest.java index 33e5e7e..673c988 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/bridge/WebInvokerTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/bridge/WebInvokerTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.bridge; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoriesServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoriesServiceTest.java index 74521a7..fcfa967 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoriesServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoriesServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoriesTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoriesTest.java index fd0eb77..6853862 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoriesTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoriesTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategorizerServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategorizerServiceTest.java index 3d85733..db10541 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategorizerServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategorizerServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoryTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoryTest.java index 7d9c965..578f15e 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoryTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/CategoryTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/DomainIntegrationTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/DomainIntegrationTest.java index cb9b50f..633bfa5 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/DomainIntegrationTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/DomainIntegrationTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/EncryptorSettingsTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/EncryptorSettingsTest.java index 8bb20f2..5d5089c 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/EncryptorSettingsTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/EncryptorSettingsTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/EntityEventSupportTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/EntityEventSupportTest.java index 164bf41..2cea093 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/EntityEventSupportTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/EntityEventSupportTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/MatchRuleTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/MatchRuleTest.java index cf24dfd..eeb9ce5 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/MatchRuleTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/MatchRuleTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/SettingsTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/SettingsTest.java index 4744ca3..95bda4a 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/SettingsTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/SettingsTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionTest.java index ab9e7a2..720d517 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionsServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionsServiceTest.java index 7811609..45e13ba 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionsServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionsServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionsTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionsTest.java index 405fab3..3ebab8b 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionsTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/domain/TransactionsTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.domain; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/ChangeMasterPasswordIntegrationTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/ChangeMasterPasswordIntegrationTest.java index 223691e..c1efb61 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/ChangeMasterPasswordIntegrationTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/ChangeMasterPasswordIntegrationTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptionModuleTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptionModuleTest.java index ab2531b..6b022fe 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptionModuleTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptionModuleTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorProviderServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorProviderServiceTest.java index 3b74bd2..2f0a0fd 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorProviderServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorProviderServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorServiceTest.java index 01c7e35..27847e8 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorTest.java index ac58e58..b07b541 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/EncryptorTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/MasterPasswordChangeSupportTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/MasterPasswordChangeSupportTest.java index 85ac25f..8b4d114 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/MasterPasswordChangeSupportTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/encryption/MasterPasswordChangeSupportTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.encryption; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/CategoriesPersistenceServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/CategoriesPersistenceServiceTest.java index c7bda67..837136f 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/CategoriesPersistenceServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/CategoriesPersistenceServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/ConfigurationModuleTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/ConfigurationModuleTest.java index cc954a6..7bfb7ae 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/ConfigurationModuleTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/ConfigurationModuleTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/ConfigurationServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/ConfigurationServiceTest.java index 424b0c6..64f7961 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/ConfigurationServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/ConfigurationServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DataDirectoryLocatorTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DataDirectoryLocatorTest.java index 67eedcd..f545054 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DataDirectoryLocatorTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DataDirectoryLocatorTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DataGsonProviderTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DataGsonProviderTest.java index 83a77ef..73ee8f8 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DataGsonProviderTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DataGsonProviderTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DateTypeAdapterTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DateTypeAdapterTest.java index df25c9b..bc0b6e5 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DateTypeAdapterTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/DateTypeAdapterTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/MockEncryptorProviderService.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/MockEncryptorProviderService.java index c41b88c..e03c807 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/MockEncryptorProviderService.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/MockEncryptorProviderService.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/MockPersistenceGsonProvider.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/MockPersistenceGsonProvider.java index 41dc4d9..362636c 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/MockPersistenceGsonProvider.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/MockPersistenceGsonProvider.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/PersistenceGsonProviderTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/PersistenceGsonProviderTest.java index 8cb72c5..5478010 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/PersistenceGsonProviderTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/PersistenceGsonProviderTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/PersistenceServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/PersistenceServiceTest.java index 9f4b460..b5b5890 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/PersistenceServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/PersistenceServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/SettingsPersistenceServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/SettingsPersistenceServiceTest.java index 28f6524..0a174e9 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/SettingsPersistenceServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/SettingsPersistenceServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/TransactionsPersistenceServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/TransactionsPersistenceServiceTest.java index 4a850be..23307be 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/TransactionsPersistenceServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/persistence/TransactionsPersistenceServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.persistence; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/reports/CategorySummaryAmountDescendingComparatorTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/reports/CategorySummaryAmountDescendingComparatorTest.java index 535854f..11245a1 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/reports/CategorySummaryAmountDescendingComparatorTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/reports/CategorySummaryAmountDescendingComparatorTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.reports; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/reports/ReportsServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/reports/ReportsServiceTest.java index b8341dc..cb1c048 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/reports/ReportsServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/reports/ReportsServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.reports; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/EntityReferencesTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/EntityReferencesTest.java index 7994ea6..ae91adb 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/EntityReferencesTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/EntityReferencesTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/LookAheadReaderTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/LookAheadReaderTest.java index 7ed0ff6..15c58bb 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/LookAheadReaderTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/LookAheadReaderTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/MockTransaction.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/MockTransaction.java index 2650430..5410680 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/MockTransaction.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/MockTransaction.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/OfxTransactionReaderTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/OfxTransactionReaderTest.java index 3f62429..3be3958 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/OfxTransactionReaderTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/OfxTransactionReaderTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/SgmlReaderTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/SgmlReaderTest.java index e00367e..880b4d7 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/SgmlReaderTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/SgmlReaderTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/TransactionNormalizerTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/TransactionNormalizerTest.java index e2964a6..c39817a 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/TransactionNormalizerTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/transaction/TransactionNormalizerTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.transaction; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/CategoryWebServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/CategoryWebServiceTest.java index cd9bf00..eca672c 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/CategoryWebServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/CategoryWebServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/EncryptionSettingsWebServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/EncryptionSettingsWebServiceTest.java index b16ea3b..38e7480 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/EncryptionSettingsWebServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/EncryptionSettingsWebServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/EulaWebServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/EulaWebServiceTest.java index 1b05b7b..e46b638 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/EulaWebServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/EulaWebServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/TransactionsWebServiceTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/TransactionsWebServiceTest.java index 477d660..f1971ca 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/TransactionsWebServiceTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/TransactionsWebServiceTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/WebServiceModuleTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/WebServiceModuleTest.java index 1638931..9369ddd 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/WebServiceModuleTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/WebServiceModuleTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/HandlerTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/HandlerTest.java index 28c4348..ca3f838 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/HandlerTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/HandlerTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/InvokerTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/InvokerTest.java index 6997fe7..841dc27 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/InvokerTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/InvokerTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebDispatchTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebDispatchTest.java index b3decd1..27a39f4 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebDispatchTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebDispatchTest.java @@ -1,3 +1,18 @@ +/******************************************************************************* + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *******************************************************************************/ package greensopinion.finance.services.web.dispatch; import static org.junit.Assert.assertEquals; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebPathTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebPathTest.java index bb689d8..fa7dae9 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebPathTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebPathTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebRequestTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebRequestTest.java index dd415c3..2971fd3 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebRequestTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebRequestTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebResponseTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebResponseTest.java index 1c5ba2f..3756946 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebResponseTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/dispatch/WebResponseTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.dispatch; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/CategoryModelTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/CategoryModelTest.java index cf5e5e1..09caa2c 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/CategoryModelTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/CategoryModelTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/ExceptionContentTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/ExceptionContentTest.java index d78747d..c0d55c3 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/ExceptionContentTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/ExceptionContentTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/TransactionModelTest.java b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/TransactionModelTest.java index e356588..47f5ca6 100644 --- a/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/TransactionModelTest.java +++ b/greensopinion.finance.services/src/test/java/greensopinion/finance/services/web/model/TransactionModelTest.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web.model; diff --git a/greensopinion.finance.ui/Gruntfile.js b/greensopinion.finance.ui/Gruntfile.js index 2e5f092..9f17c8d 100644 --- a/greensopinion.finance.ui/Gruntfile.js +++ b/greensopinion.finance.ui/Gruntfile.js @@ -1,3 +1,18 @@ +/******************************************************************************* + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + *******************************************************************************/ // Generated on 2016-01-16 using generator-angular 0.15.1 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/app.js b/greensopinion.finance.ui/app/scripts/app.js index 6597d81..fafc666 100644 --- a/greensopinion.finance.ui/app/scripts/app.js +++ b/greensopinion.finance.ui/app/scripts/app.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/common/errorModel.js b/greensopinion.finance.ui/app/scripts/common/errorModel.js index b85e2da..658d04b 100644 --- a/greensopinion.finance.ui/app/scripts/common/errorModel.js +++ b/greensopinion.finance.ui/app/scripts/common/errorModel.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/about.js b/greensopinion.finance.ui/app/scripts/controllers/about.js index ea48d89..65f23a7 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/about.js +++ b/greensopinion.finance.ui/app/scripts/controllers/about.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/categories.js b/greensopinion.finance.ui/app/scripts/controllers/categories.js index 471d14d..1f18858 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/categories.js +++ b/greensopinion.finance.ui/app/scripts/controllers/categories.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/category-dialog.js b/greensopinion.finance.ui/app/scripts/controllers/category-dialog.js index c91cfa3..e922971 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/category-dialog.js +++ b/greensopinion.finance.ui/app/scripts/controllers/category-dialog.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/encryption.js b/greensopinion.finance.ui/app/scripts/controllers/encryption.js index 5158584..a2816df 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/encryption.js +++ b/greensopinion.finance.ui/app/scripts/controllers/encryption.js @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/eula-agreement.js b/greensopinion.finance.ui/app/scripts/controllers/eula-agreement.js index aae7245..bdb962f 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/eula-agreement.js +++ b/greensopinion.finance.ui/app/scripts/controllers/eula-agreement.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/help/help.js b/greensopinion.finance.ui/app/scripts/controllers/help/help.js index 6a74324..f5f6125 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/help/help.js +++ b/greensopinion.finance.ui/app/scripts/controllers/help/help.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/import.js b/greensopinion.finance.ui/app/scripts/controllers/import.js index 69f817f..bf9e6e7 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/import.js +++ b/greensopinion.finance.ui/app/scripts/controllers/import.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/month-detail.js b/greensopinion.finance.ui/app/scripts/controllers/month-detail.js index 0e5b5ff..8d550f5 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/month-detail.js +++ b/greensopinion.finance.ui/app/scripts/controllers/month-detail.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/reports.js b/greensopinion.finance.ui/app/scripts/controllers/reports.js index e2b4e95..01ea0ec 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/reports.js +++ b/greensopinion.finance.ui/app/scripts/controllers/reports.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/transactions.js b/greensopinion.finance.ui/app/scripts/controllers/transactions.js index 4f46f89..98e413e 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/transactions.js +++ b/greensopinion.finance.ui/app/scripts/controllers/transactions.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/controllers/transactionsListing.js b/greensopinion.finance.ui/app/scripts/controllers/transactionsListing.js index 3256a1a..28251af 100644 --- a/greensopinion.finance.ui/app/scripts/controllers/transactionsListing.js +++ b/greensopinion.finance.ui/app/scripts/controllers/transactionsListing.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/directives/help.js b/greensopinion.finance.ui/app/scripts/directives/help.js index d99a787..62c6ed1 100644 --- a/greensopinion.finance.ui/app/scripts/directives/help.js +++ b/greensopinion.finance.ui/app/scripts/directives/help.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/directives/mainmenu.js b/greensopinion.finance.ui/app/scripts/directives/mainmenu.js index b66bf0e..f4e143f 100644 --- a/greensopinion.finance.ui/app/scripts/directives/mainmenu.js +++ b/greensopinion.finance.ui/app/scripts/directives/mainmenu.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/directives/toast.js b/greensopinion.finance.ui/app/scripts/directives/toast.js index 24ce8b0..a5797ce 100644 --- a/greensopinion.finance.ui/app/scripts/directives/toast.js +++ b/greensopinion.finance.ui/app/scripts/directives/toast.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/directives/tooltip.js b/greensopinion.finance.ui/app/scripts/directives/tooltip.js index e0b7a68..4a5a86c 100644 --- a/greensopinion.finance.ui/app/scripts/directives/tooltip.js +++ b/greensopinion.finance.ui/app/scripts/directives/tooltip.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/aboutService.js b/greensopinion.finance.ui/app/scripts/services/aboutService.js index ae38866..1a6afea 100644 --- a/greensopinion.finance.ui/app/scripts/services/aboutService.js +++ b/greensopinion.finance.ui/app/scripts/services/aboutService.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/categoryService.js b/greensopinion.finance.ui/app/scripts/services/categoryService.js index 1f12c4b..7193929 100644 --- a/greensopinion.finance.ui/app/scripts/services/categoryService.js +++ b/greensopinion.finance.ui/app/scripts/services/categoryService.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/encryptionSettingsService.js b/greensopinion.finance.ui/app/scripts/services/encryptionSettingsService.js index 6055b88..3fb0014 100644 --- a/greensopinion.finance.ui/app/scripts/services/encryptionSettingsService.js +++ b/greensopinion.finance.ui/app/scripts/services/encryptionSettingsService.js @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/errorService.js b/greensopinion.finance.ui/app/scripts/services/errorService.js index bf31ff3..b1421c6 100644 --- a/greensopinion.finance.ui/app/scripts/services/errorService.js +++ b/greensopinion.finance.ui/app/scripts/services/errorService.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/eulaService.js b/greensopinion.finance.ui/app/scripts/services/eulaService.js index 2d163f5..86c753d 100644 --- a/greensopinion.finance.ui/app/scripts/services/eulaService.js +++ b/greensopinion.finance.ui/app/scripts/services/eulaService.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/importService.js b/greensopinion.finance.ui/app/scripts/services/importService.js index 5107156..87ce0d0 100644 --- a/greensopinion.finance.ui/app/scripts/services/importService.js +++ b/greensopinion.finance.ui/app/scripts/services/importService.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/initializationService.js b/greensopinion.finance.ui/app/scripts/services/initializationService.js index 074a043..89a3a31 100644 --- a/greensopinion.finance.ui/app/scripts/services/initializationService.js +++ b/greensopinion.finance.ui/app/scripts/services/initializationService.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/money.js b/greensopinion.finance.ui/app/scripts/services/money.js index 98a5ec7..633a4c4 100644 --- a/greensopinion.finance.ui/app/scripts/services/money.js +++ b/greensopinion.finance.ui/app/scripts/services/money.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/reportService.js b/greensopinion.finance.ui/app/scripts/services/reportService.js index 11f84e1..f10b556 100644 --- a/greensopinion.finance.ui/app/scripts/services/reportService.js +++ b/greensopinion.finance.ui/app/scripts/services/reportService.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/rest.js b/greensopinion.finance.ui/app/scripts/services/rest.js index d99d397..7b2f580 100644 --- a/greensopinion.finance.ui/app/scripts/services/rest.js +++ b/greensopinion.finance.ui/app/scripts/services/rest.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/toastService.js b/greensopinion.finance.ui/app/scripts/services/toastService.js index 0817cd7..dbe4de0 100644 --- a/greensopinion.finance.ui/app/scripts/services/toastService.js +++ b/greensopinion.finance.ui/app/scripts/services/toastService.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/app/scripts/services/transactionService.js b/greensopinion.finance.ui/app/scripts/services/transactionService.js index e7e10ff..0948a04 100644 --- a/greensopinion.finance.ui/app/scripts/services/transactionService.js +++ b/greensopinion.finance.ui/app/scripts/services/transactionService.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/assembly.xml b/greensopinion.finance.ui/assembly.xml index ee8f1e1..a25ee06 100644 --- a/greensopinion.finance.ui/assembly.xml +++ b/greensopinion.finance.ui/assembly.xml @@ -1,4 +1,20 @@ + + diff --git a/greensopinion.finance.ui/pom.xml b/greensopinion.finance.ui/pom.xml index 9011459..60879b5 100644 --- a/greensopinion.finance.ui/pom.xml +++ b/greensopinion.finance.ui/pom.xml @@ -1,4 +1,20 @@ + + @@ -47,7 +63,7 @@ - web ui assembly + web UI assembly package single diff --git a/greensopinion.finance.ui/test/karma.conf.js b/greensopinion.finance.ui/test/karma.conf.js index ce637ec..844c7ef 100644 --- a/greensopinion.finance.ui/test/karma.conf.js +++ b/greensopinion.finance.ui/test/karma.conf.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ // Karma configuration // http://karma-runner.github.io/0.12/config/configuration-file.html diff --git a/greensopinion.finance.ui/test/mock/mockRest.js b/greensopinion.finance.ui/test/mock/mockRest.js index 2f1885f..d0c898d 100644 --- a/greensopinion.finance.ui/test/mock/mockRest.js +++ b/greensopinion.finance.ui/test/mock/mockRest.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ angular.module('greensopinionfinanceApp') .service('MockRest',['$q',function ($q) { diff --git a/greensopinion.finance.ui/test/spec/common/errorModel.spec.js b/greensopinion.finance.ui/test/spec/common/errorModel.spec.js index ec3e89b..a4079d2 100644 --- a/greensopinion.finance.ui/test/spec/common/errorModel.spec.js +++ b/greensopinion.finance.ui/test/spec/common/errorModel.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/about.spec.js b/greensopinion.finance.ui/test/spec/controllers/about.spec.js index f424ace..0a777ab 100644 --- a/greensopinion.finance.ui/test/spec/controllers/about.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/about.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/categories.spec.js b/greensopinion.finance.ui/test/spec/controllers/categories.spec.js index 3605c24..6ebc482 100644 --- a/greensopinion.finance.ui/test/spec/controllers/categories.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/categories.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/category-dialog.spec.js b/greensopinion.finance.ui/test/spec/controllers/category-dialog.spec.js index 57a24d6..e827725 100644 --- a/greensopinion.finance.ui/test/spec/controllers/category-dialog.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/category-dialog.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/encryption.spec.js b/greensopinion.finance.ui/test/spec/controllers/encryption.spec.js index eaa5804..dd492da 100644 --- a/greensopinion.finance.ui/test/spec/controllers/encryption.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/encryption.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/eula-agreement.spec.js b/greensopinion.finance.ui/test/spec/controllers/eula-agreement.spec.js index 30ce034..23fee01 100644 --- a/greensopinion.finance.ui/test/spec/controllers/eula-agreement.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/eula-agreement.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/help/help.spec.js b/greensopinion.finance.ui/test/spec/controllers/help/help.spec.js index e9f53c2..0151931 100644 --- a/greensopinion.finance.ui/test/spec/controllers/help/help.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/help/help.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/import.spec.js b/greensopinion.finance.ui/test/spec/controllers/import.spec.js index b40558f..02387cd 100644 --- a/greensopinion.finance.ui/test/spec/controllers/import.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/import.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/month-detail.spec.js b/greensopinion.finance.ui/test/spec/controllers/month-detail.spec.js index d438d10..f65823f 100644 --- a/greensopinion.finance.ui/test/spec/controllers/month-detail.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/month-detail.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/reports.spec.js b/greensopinion.finance.ui/test/spec/controllers/reports.spec.js index 26bb570..014632d 100644 --- a/greensopinion.finance.ui/test/spec/controllers/reports.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/reports.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/transactions.spec.js b/greensopinion.finance.ui/test/spec/controllers/transactions.spec.js index 72d4722..6c13090 100644 --- a/greensopinion.finance.ui/test/spec/controllers/transactions.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/transactions.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/controllers/transactionsListing.spec.js b/greensopinion.finance.ui/test/spec/controllers/transactionsListing.spec.js index 4090d11..779f4ed 100644 --- a/greensopinion.finance.ui/test/spec/controllers/transactionsListing.spec.js +++ b/greensopinion.finance.ui/test/spec/controllers/transactionsListing.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/directives/help.spec.js b/greensopinion.finance.ui/test/spec/directives/help.spec.js index c2acab3..2e87a9d 100644 --- a/greensopinion.finance.ui/test/spec/directives/help.spec.js +++ b/greensopinion.finance.ui/test/spec/directives/help.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/directives/mainmenu.spec.js b/greensopinion.finance.ui/test/spec/directives/mainmenu.spec.js index a45513f..57f90ac 100644 --- a/greensopinion.finance.ui/test/spec/directives/mainmenu.spec.js +++ b/greensopinion.finance.ui/test/spec/directives/mainmenu.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/directives/toast.spec.js b/greensopinion.finance.ui/test/spec/directives/toast.spec.js index d44726b..882c828 100644 --- a/greensopinion.finance.ui/test/spec/directives/toast.spec.js +++ b/greensopinion.finance.ui/test/spec/directives/toast.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/aboutService.spec.js b/greensopinion.finance.ui/test/spec/services/aboutService.spec.js index a9456b2..5a6bdb5 100644 --- a/greensopinion.finance.ui/test/spec/services/aboutService.spec.js +++ b/greensopinion.finance.ui/test/spec/services/aboutService.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/categoryService.spec.js b/greensopinion.finance.ui/test/spec/services/categoryService.spec.js index 9eaf9b3..2eba710 100644 --- a/greensopinion.finance.ui/test/spec/services/categoryService.spec.js +++ b/greensopinion.finance.ui/test/spec/services/categoryService.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/encryptionSettingsService.spec.js b/greensopinion.finance.ui/test/spec/services/encryptionSettingsService.spec.js index fb7bb7f..a4a6acc 100644 --- a/greensopinion.finance.ui/test/spec/services/encryptionSettingsService.spec.js +++ b/greensopinion.finance.ui/test/spec/services/encryptionSettingsService.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* * Copyright (c) 2015, 2016 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/errorService.spec.js b/greensopinion.finance.ui/test/spec/services/errorService.spec.js index 10b7e8c..7dc3922 100644 --- a/greensopinion.finance.ui/test/spec/services/errorService.spec.js +++ b/greensopinion.finance.ui/test/spec/services/errorService.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/eulaService.spec.js b/greensopinion.finance.ui/test/spec/services/eulaService.spec.js index 035f0bc..55b67c8 100644 --- a/greensopinion.finance.ui/test/spec/services/eulaService.spec.js +++ b/greensopinion.finance.ui/test/spec/services/eulaService.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/importService.spec.js b/greensopinion.finance.ui/test/spec/services/importService.spec.js index e75b7ec..38b53e8 100644 --- a/greensopinion.finance.ui/test/spec/services/importService.spec.js +++ b/greensopinion.finance.ui/test/spec/services/importService.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/initializationService.spec.js b/greensopinion.finance.ui/test/spec/services/initializationService.spec.js index 448e6a1..a6efa60 100644 --- a/greensopinion.finance.ui/test/spec/services/initializationService.spec.js +++ b/greensopinion.finance.ui/test/spec/services/initializationService.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/money.js b/greensopinion.finance.ui/test/spec/services/money.js index 54adae7..968bd89 100644 --- a/greensopinion.finance.ui/test/spec/services/money.js +++ b/greensopinion.finance.ui/test/spec/services/money.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/reportService.spec.js b/greensopinion.finance.ui/test/spec/services/reportService.spec.js index 80926a3..645714a 100644 --- a/greensopinion.finance.ui/test/spec/services/reportService.spec.js +++ b/greensopinion.finance.ui/test/spec/services/reportService.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/toastService.spec.js b/greensopinion.finance.ui/test/spec/services/toastService.spec.js index 7de7480..676ebd8 100644 --- a/greensopinion.finance.ui/test/spec/services/toastService.spec.js +++ b/greensopinion.finance.ui/test/spec/services/toastService.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.ui/test/spec/services/transactionService.spec.js b/greensopinion.finance.ui/test/spec/services/transactionService.spec.js index 18e62d7..1c5a25b 100644 --- a/greensopinion.finance.ui/test/spec/services/transactionService.spec.js +++ b/greensopinion.finance.ui/test/spec/services/transactionService.spec.js @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ 'use strict'; diff --git a/greensopinion.finance.web/pom.xml b/greensopinion.finance.web/pom.xml index 54cb798..92a42d4 100644 --- a/greensopinion.finance.web/pom.xml +++ b/greensopinion.finance.web/pom.xml @@ -1,4 +1,20 @@ + + diff --git a/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/Application.java b/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/Application.java index 68ce9ed..aab9a02 100644 --- a/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/Application.java +++ b/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/Application.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/CorHeaderFilter.java b/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/CorHeaderFilter.java index 9259331..3aeaf6a 100644 --- a/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/CorHeaderFilter.java +++ b/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/CorHeaderFilter.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web; diff --git a/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/WebServerRunner.java b/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/WebServerRunner.java index 4384e8e..499f38d 100644 --- a/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/WebServerRunner.java +++ b/greensopinion.finance.web/src/main/java/greensopinion/finance/services/web/WebServerRunner.java @@ -1,8 +1,17 @@ /******************************************************************************* - * Copyright (c) 2015 David Green. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the EULA - * which accompanies this distribution. + * Copyright (c) 2015, 2016 David Green. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. *******************************************************************************/ package greensopinion.finance.services.web;