From 73d3182b7028d59b6cb2adba6a15ecc0725acfd7 Mon Sep 17 00:00:00 2001 From: Sonia Zorba <sonia.zorba@inaf.it> Date: Fri, 14 May 2021 17:47:56 +0200 Subject: [PATCH] Added LICENSE --- LICENSE | 674 ++++++++++++++++++ .../main/java/it/inaf/ia2/gms/cli/CLI.java | 4 + .../it/inaf/ia2/gms/client/GmsClient.java | 5 + .../call/AddInvitedRegistrationCall.java | 5 + .../ia2/gms/client/call/AddMemberCall.java | 5 + .../gms/client/call/AddPermissionCall.java | 5 + .../ia2/gms/client/call/CreateGroupCall.java | 5 + .../ia2/gms/client/call/DeleteGroupCall.java | 5 + .../client/call/GetGroupPermissionsCall.java | 5 + .../gms/client/call/GetGroupStatusCall.java | 5 + .../client/call/GetMemberEmailAddresses.java | 5 + .../gms/client/call/GetUserGroupsCall.java | 5 + .../client/call/GetUserPermissionsCall.java | 5 + .../ia2/gms/client/call/ListGroupsCall.java | 5 + .../ia2/gms/client/call/RemoveMemberCall.java | 5 + .../gms/client/call/RemovePermissionCall.java | 5 + .../gms/client/call/SetPermissionCall.java | 5 + .../ia2/gms/client/model/GroupPermission.java | 5 + .../inaf/ia2/gms/client/model/Permission.java | 5 + .../ia2/gms/client/model/UserPermission.java | 5 + .../ia2/gms/client/BaseGmsClientTest.java | 5 + .../ia2/gms/client/call/AddMemberTest.java | 5 + .../gms/client/call/AddPermissionTest.java | 5 + .../ia2/gms/client/call/CreateGroupTest.java | 5 + .../ia2/gms/client/call/DeleteGroupTest.java | 5 + .../gms/client/call/GetUserGroupsTest.java | 5 + .../client/call/InvitedRegistrationTest.java | 5 + .../ia2/gms/client/call/RemoveMemberTest.java | 5 + .../gms/client/call/RemovePermissionTest.java | 5 + gms-ui/src/App.vue | 5 + gms-ui/src/api/mock/index.js | 5 + gms-ui/src/api/server/index.js | 5 + .../src/components/GenericSearchResults.vue | 5 + gms-ui/src/components/GroupsBreadcrumb.vue | 5 + gms-ui/src/components/GroupsPanel.vue | 5 + .../components/InvitedRegistrationPanel.vue | 5 + gms-ui/src/components/Main.vue | 5 + gms-ui/src/components/MembersPanel.vue | 5 + gms-ui/src/components/Paginator.vue | 5 + gms-ui/src/components/PermissionsPanel.vue | 5 + gms-ui/src/components/TopMenu.vue | 5 + gms-ui/src/components/User.vue | 5 + gms-ui/src/components/UserSearchResult.vue | 5 + .../src/components/modals/AddGroupModal.vue | 5 + .../src/components/modals/AddMemberModal.vue | 5 + .../components/modals/AddPermissionModal.vue | 5 + .../modals/ConfirmDeleteInvitedModal.vue | 5 + .../modals/ConfirmRemoveGroupModal.vue | 5 + .../modals/ConfirmRemoveMemberModal.vue | 5 + .../modals/ConfirmRemovePermissionModal.vue | 5 + .../src/components/modals/EditGroupModal.vue | 5 + gms-ui/src/components/modals/SearchUser.vue | 5 + gms-ui/src/main.js | 5 + gms-ui/src/plugins/bootstrap-vue.js | 5 + gms-ui/src/router.js | 5 + gms-ui/src/store.js | 5 + .../java/it/inaf/ia2/gms/GmsApplication.java | 5 + .../it/inaf/ia2/gms/authn/GmsLoginFilter.java | 5 + .../java/it/inaf/ia2/gms/authn/JWTFilter.java | 5 + .../java/it/inaf/ia2/gms/authn/RapClient.java | 5 + .../it/inaf/ia2/gms/authn/RapPrincipal.java | 5 + .../it/inaf/ia2/gms/authn/SecurityConfig.java | 5 + .../inaf/ia2/gms/authn/ServletRapClient.java | 5 + .../it/inaf/ia2/gms/authn/SessionData.java | 5 + .../ia2/gms/controller/GroupsController.java | 5 + .../controller/GroupsTabResponseBuilder.java | 5 + .../gms/controller/HomePageController.java | 5 + .../InvitedRegistrationController.java | 5 + .../controller/JWTWebServiceController.java | 5 + .../gms/controller/KeepAliveController.java | 5 + .../ia2/gms/controller/MembersController.java | 5 + .../gms/controller/PermissionsController.java | 5 + .../ia2/gms/controller/SearchController.java | 5 + .../ia2/gms/controller/UsersController.java | 5 + .../gms/exception/BadRequestException.java | 5 + .../ia2/gms/exception/ErrorController.java | 5 + .../inaf/ia2/gms/exception/GmsException.java | 5 + .../exception/LoggingExceptionHandler.java | 5 + .../ia2/gms/exception/NotFoundException.java | 5 + .../gms/exception/UnauthorizedException.java | 5 + .../ia2/gms/manager/GroupStatusManager.java | 5 + .../inaf/ia2/gms/manager/GroupsManager.java | 5 + .../manager/InvitedRegistrationManager.java | 5 + .../ia2/gms/manager/MembershipManager.java | 5 + .../ia2/gms/manager/PermissionsManager.java | 5 + .../ia2/gms/manager/UserAwareComponent.java | 5 + .../inaf/ia2/gms/model/GroupBreadcrumb.java | 5 + .../java/it/inaf/ia2/gms/model/GroupNode.java | 5 + .../inaf/ia2/gms/model/GroupPermission.java | 5 + .../it/inaf/ia2/gms/model/Permission.java | 5 + .../inaf/ia2/gms/model/RapUserPermission.java | 5 + .../it/inaf/ia2/gms/model/UserPermission.java | 5 + .../gms/model/request/AddGroupRequest.java | 5 + .../gms/model/request/AddMemberRequest.java | 5 + .../model/request/AddPermissionRequest.java | 5 + .../gms/model/request/DeleteGroupRequest.java | 5 + .../model/request/GenericSearchRequest.java | 5 + .../ia2/gms/model/request/GroupsRequest.java | 5 + .../ia2/gms/model/request/MemberRequest.java | 5 + .../model/request/PaginatedModelRequest.java | 5 + .../model/request/RemoveMemberRequest.java | 5 + .../gms/model/request/RenameGroupRequest.java | 5 + .../model/request/SearchFilterRequest.java | 5 + .../ia2/gms/model/request/TabRequest.java | 5 + .../request/UpdatePermissionRequest.java | 5 + .../gms/model/response/BaseModelResponse.java | 5 + .../gms/model/response/GroupsTabResponse.java | 5 + .../gms/model/response/HomePageResponse.java | 5 + .../response/InvitedRegistrationItem.java | 5 + .../ia2/gms/model/response/PaginatedData.java | 5 + .../model/response/SearchResponseItem.java | 5 + .../model/response/SearchResponseType.java | 5 + .../ia2/gms/model/response/UserGroup.java | 5 + .../gms/model/response/UserPermission.java | 5 + .../model/response/UserSearchResponse.java | 5 + .../inaf/ia2/gms/persistence/GroupsDAO.java | 5 + .../persistence/InvitedRegistrationDAO.java | 5 + .../it/inaf/ia2/gms/persistence/JoinDAO.java | 5 + .../inaf/ia2/gms/persistence/LoggingDAO.java | 5 + .../ia2/gms/persistence/MembershipsDAO.java | 5 + .../ia2/gms/persistence/PermissionsDAO.java | 5 + .../ia2/gms/persistence/model/ActionType.java | 5 + .../gms/persistence/model/GroupEntity.java | 5 + .../model/InvitedRegistration.java | 5 + .../persistence/model/MembershipEntity.java | 5 + .../persistence/model/PermissionEntity.java | 5 + .../ia2/gms/service/GroupNameService.java | 5 + .../inaf/ia2/gms/service/GroupsService.java | 5 + .../ia2/gms/service/GroupsTreeBuilder.java | 5 + .../it/inaf/ia2/gms/service/JoinService.java | 5 + .../inaf/ia2/gms/service/PermissionUtils.java | 5 + .../ia2/gms/service/PermissionsService.java | 5 + .../inaf/ia2/gms/service/SearchService.java | 5 + .../inaf/ia2/gms/service/hook/GroupsHook.java | 5 + .../it/inaf/ia2/gms/DataSourceConfig.java | 5 + .../java/it/inaf/ia2/gms/GmsTestUtils.java | 5 + .../java/it/inaf/ia2/gms/HooksConfig.java | 5 + .../inaf/ia2/gms/authn/SessionDataTest.java | 5 + .../gms/controller/ControllersMockData.java | 5 + .../gms/controller/GroupsControllerTest.java | 5 + .../GroupsTabResponseBuilderTest.java | 5 + .../controller/HomePageControllerTest.java | 5 + .../InvitedRegistrationControllerTest.java | 5 + .../JWTWebServiceControllerTest.java | 5 + .../gms/controller/MembersControllerTest.java | 5 + .../controller/PermissionsControllerTest.java | 5 + .../gms/controller/SearchControllerTest.java | 5 + .../ia2/gms/manager/GroupsManagerTest.java | 5 + .../InvitedRegistrationManagerTest.java | 5 + .../PermissionsManagerIntegrationTest.java | 5 + .../gms/manager/PermissionsManagerTest.java | 5 + .../manager/UserAwareComponentTestUtil.java | 5 + .../inaf/ia2/gms/model/PaginatedDataTest.java | 5 + .../it/inaf/ia2/gms/model/PermissionTest.java | 5 + .../ia2/gms/persistence/GroupEntityTest.java | 5 + .../ia2/gms/persistence/GroupsDAOTest.java | 5 + .../InvitedRegistrationDAOTest.java | 5 + .../inaf/ia2/gms/persistence/JoinDAOTest.java | 5 + .../ia2/gms/persistence/LoggingDAOTest.java | 5 + .../gms/persistence/MembershipsDAOTest.java | 5 + .../NestedGroupsIntegrationTest.java | 5 + .../gms/persistence/PermissionsDAOTest.java | 5 + .../it/inaf/ia2/gms/rap/RapClientTest.java | 5 + .../ia2/gms/service/GroupNameServiceTest.java | 5 + .../ia2/gms/service/GroupsServiceTest.java | 5 + .../inaf/ia2/gms/service/JoinServiceTest.java | 5 + .../ia2/gms/service/PermissionUtilsTest.java | 5 + .../gms/service/PermissionsServiceTest.java | 5 + .../ia2/gms/service/SearchServiceTest.java | 5 + 169 files changed, 1513 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f288702 --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + <program> Copyright (C) <year> <name of author> + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +<https://www.gnu.org/licenses/>. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +<https://www.gnu.org/licenses/why-not-lgpl.html>. diff --git a/gms-client/gms-cli/src/main/java/it/inaf/ia2/gms/cli/CLI.java b/gms-client/gms-cli/src/main/java/it/inaf/ia2/gms/cli/CLI.java index b096b20..39a0d5a 100644 --- a/gms-client/gms-cli/src/main/java/it/inaf/ia2/gms/cli/CLI.java +++ b/gms-client/gms-cli/src/main/java/it/inaf/ia2/gms/cli/CLI.java @@ -1,3 +1,7 @@ +/* + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.cli; import it.inaf.ia2.client.ClientException; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/GmsClient.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/GmsClient.java index 5560987..3ecde4e 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/GmsClient.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/GmsClient.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddInvitedRegistrationCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddInvitedRegistrationCall.java index 533eea8..6eee3ea 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddInvitedRegistrationCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddInvitedRegistrationCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddMemberCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddMemberCall.java index a6294f3..ab086fc 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddMemberCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddMemberCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddPermissionCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddPermissionCall.java index f9977ea..fda114c 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddPermissionCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/AddPermissionCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/CreateGroupCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/CreateGroupCall.java index 0b2667d..559f48d 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/CreateGroupCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/CreateGroupCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/DeleteGroupCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/DeleteGroupCall.java index 4e1b763..9480deb 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/DeleteGroupCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/DeleteGroupCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetGroupPermissionsCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetGroupPermissionsCall.java index 94edece..92c3594 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetGroupPermissionsCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetGroupPermissionsCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetGroupStatusCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetGroupStatusCall.java index e81ea2d..0522600 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetGroupStatusCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetGroupStatusCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetMemberEmailAddresses.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetMemberEmailAddresses.java index c240bcc..e55e00e 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetMemberEmailAddresses.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetMemberEmailAddresses.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetUserGroupsCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetUserGroupsCall.java index 1b504cb..c6d0a91 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetUserGroupsCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetUserGroupsCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetUserPermissionsCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetUserPermissionsCall.java index ab15574..f42ba76 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetUserPermissionsCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/GetUserPermissionsCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/ListGroupsCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/ListGroupsCall.java index 7cb26a8..c7ff9a7 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/ListGroupsCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/ListGroupsCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/RemoveMemberCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/RemoveMemberCall.java index 31fb348..4071b84 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/RemoveMemberCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/RemoveMemberCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/RemovePermissionCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/RemovePermissionCall.java index 6faf01c..4ac1b24 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/RemovePermissionCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/RemovePermissionCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/SetPermissionCall.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/SetPermissionCall.java index 67c1b91..12ea90b 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/SetPermissionCall.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/call/SetPermissionCall.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.client.BaseCall; diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/GroupPermission.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/GroupPermission.java index 0ce1d59..2690d78 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/GroupPermission.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/GroupPermission.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.model; public class GroupPermission { diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/Permission.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/Permission.java index 71e708c..bcf1cc2 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/Permission.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/Permission.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.model; public enum Permission { diff --git a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/UserPermission.java b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/UserPermission.java index 4f9578d..6edb29a 100644 --- a/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/UserPermission.java +++ b/gms-client/gms-client/src/main/java/it/inaf/ia2/gms/client/model/UserPermission.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.model; public class UserPermission { diff --git a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/BaseGmsClientTest.java b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/BaseGmsClientTest.java index 69e22fe..1a92fe8 100644 --- a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/BaseGmsClientTest.java +++ b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/BaseGmsClientTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client; import java.io.ByteArrayInputStream; diff --git a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/AddMemberTest.java b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/AddMemberTest.java index 5148831..03d943f 100644 --- a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/AddMemberTest.java +++ b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/AddMemberTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.gms.client.BaseGmsClientTest; diff --git a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/AddPermissionTest.java b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/AddPermissionTest.java index 3887282..0487342 100644 --- a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/AddPermissionTest.java +++ b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/AddPermissionTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.gms.client.BaseGmsClientTest; diff --git a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/CreateGroupTest.java b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/CreateGroupTest.java index 7968694..934c6c8 100644 --- a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/CreateGroupTest.java +++ b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/CreateGroupTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.gms.client.BaseGmsClientTest; diff --git a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/DeleteGroupTest.java b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/DeleteGroupTest.java index c27bd57..057b976 100644 --- a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/DeleteGroupTest.java +++ b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/DeleteGroupTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.gms.client.BaseGmsClientTest; diff --git a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/GetUserGroupsTest.java b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/GetUserGroupsTest.java index e2b3ea5..ec67a42 100644 --- a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/GetUserGroupsTest.java +++ b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/GetUserGroupsTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.gms.client.BaseGmsClientTest; diff --git a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/InvitedRegistrationTest.java b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/InvitedRegistrationTest.java index b234777..b826c03 100644 --- a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/InvitedRegistrationTest.java +++ b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/InvitedRegistrationTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.gms.client.BaseGmsClientTest; diff --git a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/RemoveMemberTest.java b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/RemoveMemberTest.java index ede76ac..3acb2a3 100644 --- a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/RemoveMemberTest.java +++ b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/RemoveMemberTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.gms.client.BaseGmsClientTest; diff --git a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/RemovePermissionTest.java b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/RemovePermissionTest.java index cc49686..656cbad 100644 --- a/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/RemovePermissionTest.java +++ b/gms-client/gms-client/src/test/java/it/inaf/ia2/gms/client/call/RemovePermissionTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms-client + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.client.call; import it.inaf.ia2.gms.client.BaseGmsClientTest; diff --git a/gms-ui/src/App.vue b/gms-ui/src/App.vue index cac256b..09c6507 100644 --- a/gms-ui/src/App.vue +++ b/gms-ui/src/App.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <div id="app" v-if="model"> <TopMenu v-bind:user="model.user" /> diff --git a/gms-ui/src/api/mock/index.js b/gms-ui/src/api/mock/index.js index c1c8e00..9ab8332 100644 --- a/gms-ui/src/api/mock/index.js +++ b/gms-ui/src/api/mock/index.js @@ -1,3 +1,8 @@ +/* + * This file is part of gms-ui + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ import home from './data/home'; import groups from './data/groups'; import groupsPanel from './data/groupsPanel'; diff --git a/gms-ui/src/api/server/index.js b/gms-ui/src/api/server/index.js index 631e6be..44b9da5 100644 --- a/gms-ui/src/api/server/index.js +++ b/gms-ui/src/api/server/index.js @@ -1,3 +1,8 @@ +/* + * This file is part of gms-ui + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ const BASE_API_URL = process.env.VUE_APP_API_BASE_URL; import axios from 'axios'; diff --git a/gms-ui/src/components/GenericSearchResults.vue b/gms-ui/src/components/GenericSearchResults.vue index 781de5b..b89414b 100644 --- a/gms-ui/src/components/GenericSearchResults.vue +++ b/gms-ui/src/components/GenericSearchResults.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <div class="mt-sm-3"> <b-form inline> diff --git a/gms-ui/src/components/GroupsBreadcrumb.vue b/gms-ui/src/components/GroupsBreadcrumb.vue index b67925b..a05130d 100644 --- a/gms-ui/src/components/GroupsBreadcrumb.vue +++ b/gms-ui/src/components/GroupsBreadcrumb.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <nav aria-label="breadcrumb" id="groups-breadcrumbs"> <ol class="breadcrumb"> diff --git a/gms-ui/src/components/GroupsPanel.vue b/gms-ui/src/components/GroupsPanel.vue index ff78a2b..5a435a5 100644 --- a/gms-ui/src/components/GroupsPanel.vue +++ b/gms-ui/src/components/GroupsPanel.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-tab title="Groups" :title-link-class="{ 'd-none': model.leaf }"> <b-row> diff --git a/gms-ui/src/components/InvitedRegistrationPanel.vue b/gms-ui/src/components/InvitedRegistrationPanel.vue index a087bc6..1615d90 100644 --- a/gms-ui/src/components/InvitedRegistrationPanel.vue +++ b/gms-ui/src/components/InvitedRegistrationPanel.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-tab :title="'Invited (' + registrations.length + ')'" :title-link-class="{ 'd-none': registrations.length === 0 }"> <table class="table b-table table-striped table-hover" v-if="registrations"> diff --git a/gms-ui/src/components/Main.vue b/gms-ui/src/components/Main.vue index 89bf05c..44af036 100644 --- a/gms-ui/src/components/Main.vue +++ b/gms-ui/src/components/Main.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <div> <GroupsBreadcrumb /> diff --git a/gms-ui/src/components/MembersPanel.vue b/gms-ui/src/components/MembersPanel.vue index eb71f91..d489312 100644 --- a/gms-ui/src/components/MembersPanel.vue +++ b/gms-ui/src/components/MembersPanel.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-tab title="Members" :title-link-class="{ 'd-none': (model.permission === 'TRAVERSE') }"> <div v-if="model.membersPanel !== null"> diff --git a/gms-ui/src/components/Paginator.vue b/gms-ui/src/components/Paginator.vue index 9ca8a73..6ff70d3 100644 --- a/gms-ui/src/components/Paginator.vue +++ b/gms-ui/src/components/Paginator.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <div class="row mt-4" v-if="paginatedPanel !== null && paginatedPanel.totalItems > 0"> <div class="col-md-8"> diff --git a/gms-ui/src/components/PermissionsPanel.vue b/gms-ui/src/components/PermissionsPanel.vue index 88f2aaa..f245cd6 100644 --- a/gms-ui/src/components/PermissionsPanel.vue +++ b/gms-ui/src/components/PermissionsPanel.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-tab title="Permissions" :title-link-class="{ 'd-none': (model.permission !== 'ADMIN') }"> <div v-if="model.permissionsPanel !== null"> diff --git a/gms-ui/src/components/TopMenu.vue b/gms-ui/src/components/TopMenu.vue index 133e4c3..e19e3a1 100644 --- a/gms-ui/src/components/TopMenu.vue +++ b/gms-ui/src/components/TopMenu.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <div> <b-navbar toggleable="lg" type="dark" variant="info"> diff --git a/gms-ui/src/components/User.vue b/gms-ui/src/components/User.vue index 7c2af04..278fa2d 100644 --- a/gms-ui/src/components/User.vue +++ b/gms-ui/src/components/User.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <div :id="'user-name-' + user.id"> <component :is="anchor ? 'a' : 'span'" :href="anchor ? '#' : false" @click.prevent="openUser">{{user.displayName}}</component> diff --git a/gms-ui/src/components/UserSearchResult.vue b/gms-ui/src/components/UserSearchResult.vue index 0f95b90..ee092c5 100644 --- a/gms-ui/src/components/UserSearchResult.vue +++ b/gms-ui/src/components/UserSearchResult.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <div class="mt-sm-3" v-if="user"> <b-button variant="primary" class="float-right" v-on:click="back()">Back</b-button> diff --git a/gms-ui/src/components/modals/AddGroupModal.vue b/gms-ui/src/components/modals/AddGroupModal.vue index 4de7848..7e2efc8 100644 --- a/gms-ui/src/components/modals/AddGroupModal.vue +++ b/gms-ui/src/components/modals/AddGroupModal.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-modal id="add-group-modal" title="Add group" @show="resetModal" @shown="afterShow" ok-title="Add" @ok="addGroup"> <b-form inline> diff --git a/gms-ui/src/components/modals/AddMemberModal.vue b/gms-ui/src/components/modals/AddMemberModal.vue index 11634bd..28d519b 100644 --- a/gms-ui/src/components/modals/AddMemberModal.vue +++ b/gms-ui/src/components/modals/AddMemberModal.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-modal id="add-member-modal" title="Add member" ok-title="Add" @shown="afterShow" @ok="addMember" size="lg"> <SearchUser ref="searchUser" @searchUserEnter="addMember" /> diff --git a/gms-ui/src/components/modals/AddPermissionModal.vue b/gms-ui/src/components/modals/AddPermissionModal.vue index e988ee3..77c74e8 100644 --- a/gms-ui/src/components/modals/AddPermissionModal.vue +++ b/gms-ui/src/components/modals/AddPermissionModal.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-modal id="add-permission-modal" title="Add permission" @show="beforeShow" @shown="afterShow" :ok-title="okTitle" @ok="addPermission" :ok-variant="okBtnVariant" size="lg"> <SearchUser ref="searchUser" @searchUserEnter="addPermission" /> diff --git a/gms-ui/src/components/modals/ConfirmDeleteInvitedModal.vue b/gms-ui/src/components/modals/ConfirmDeleteInvitedModal.vue index e248834..0a4b942 100644 --- a/gms-ui/src/components/modals/ConfirmDeleteInvitedModal.vue +++ b/gms-ui/src/components/modals/ConfirmDeleteInvitedModal.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-modal id="confirm-delete-invited-modal" title="Confirm action" ok-title="Delete" @ok="deleteInvitedRegistration" ok-variant="danger"> <p v-if="invitedRegistration">Are you sure that you want to remove the invited registration for {{invitedRegistration.email}}?</p> diff --git a/gms-ui/src/components/modals/ConfirmRemoveGroupModal.vue b/gms-ui/src/components/modals/ConfirmRemoveGroupModal.vue index a49f695..e60656a 100644 --- a/gms-ui/src/components/modals/ConfirmRemoveGroupModal.vue +++ b/gms-ui/src/components/modals/ConfirmRemoveGroupModal.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-modal id="confirm-remove-group-modal" title="Confirm action" ok-title="Delete" @ok="removeGroup" ok-variant="danger"> <p v-if="groupToRemove">Are you sure that you want to delete the group <strong>{{groupToRemove.groupName}}</strong>?</p> diff --git a/gms-ui/src/components/modals/ConfirmRemoveMemberModal.vue b/gms-ui/src/components/modals/ConfirmRemoveMemberModal.vue index 5227c1e..8400eb8 100644 --- a/gms-ui/src/components/modals/ConfirmRemoveMemberModal.vue +++ b/gms-ui/src/components/modals/ConfirmRemoveMemberModal.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-modal id="confirm-remove-member-modal" title="Confirm action" ok-title="Remove" @ok="removeMember" ok-variant="danger"> <p v-if="memberToRemove">Are you sure that you want to remove the user {{memberToRemove.displayName}} from this group?</p> diff --git a/gms-ui/src/components/modals/ConfirmRemovePermissionModal.vue b/gms-ui/src/components/modals/ConfirmRemovePermissionModal.vue index e3d8b98..5d9b977 100644 --- a/gms-ui/src/components/modals/ConfirmRemovePermissionModal.vue +++ b/gms-ui/src/components/modals/ConfirmRemovePermissionModal.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-modal id="confirm-remove-permission-modal" title="Confirm action" ok-title="Remove" @ok="removePermission" ok-variant="danger"> <p v-if="user">Are you sure that you want to remove the permission for the user {{user.displayName}}?</p> diff --git a/gms-ui/src/components/modals/EditGroupModal.vue b/gms-ui/src/components/modals/EditGroupModal.vue index b2e3536..e9c4d25 100644 --- a/gms-ui/src/components/modals/EditGroupModal.vue +++ b/gms-ui/src/components/modals/EditGroupModal.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-modal id="edit-group-modal" title="Edit group" ok-title="Update" @ok="updateGroup"> <b-form inline> diff --git a/gms-ui/src/components/modals/SearchUser.vue b/gms-ui/src/components/modals/SearchUser.vue index a37151d..e00768c 100644 --- a/gms-ui/src/components/modals/SearchUser.vue +++ b/gms-ui/src/components/modals/SearchUser.vue @@ -1,3 +1,8 @@ +<!-- + This file is part of gms-ui + Copyright (C) 2021 Istituto Nazionale di Astrofisica + SPDX-License-Identifier: GPL-3.0-or-later +--> <template> <b-form inline> <label class="w-25" for="user-input">Search:</label> diff --git a/gms-ui/src/main.js b/gms-ui/src/main.js index 2a64d2f..6369102 100644 --- a/gms-ui/src/main.js +++ b/gms-ui/src/main.js @@ -1,3 +1,8 @@ +/* + * This file is part of gms-ui + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ import '@babel/polyfill' import 'mutationobserver-shim' import Vue from 'vue' diff --git a/gms-ui/src/plugins/bootstrap-vue.js b/gms-ui/src/plugins/bootstrap-vue.js index b9d414f..05611fc 100644 --- a/gms-ui/src/plugins/bootstrap-vue.js +++ b/gms-ui/src/plugins/bootstrap-vue.js @@ -1,3 +1,8 @@ +/* + * This file is part of gms-ui + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ import Vue from 'vue'; import { BootstrapVue } from 'bootstrap-vue'; diff --git a/gms-ui/src/router.js b/gms-ui/src/router.js index a250a1f..384cd48 100644 --- a/gms-ui/src/router.js +++ b/gms-ui/src/router.js @@ -1,3 +1,8 @@ +/* + * This file is part of gms-ui + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ import VueRouter from 'vue-router'; import Main from './components/Main.vue'; diff --git a/gms-ui/src/store.js b/gms-ui/src/store.js index 114785c..74f5bb4 100644 --- a/gms-ui/src/store.js +++ b/gms-ui/src/store.js @@ -1,3 +1,8 @@ +/* + * This file is part of gms-ui + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ /* Vuex store, for centralized state management */ import Vue from 'vue'; diff --git a/gms/src/main/java/it/inaf/ia2/gms/GmsApplication.java b/gms/src/main/java/it/inaf/ia2/gms/GmsApplication.java index 77a4f80..c147c1e 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/GmsApplication.java +++ b/gms/src/main/java/it/inaf/ia2/gms/GmsApplication.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms; import it.inaf.ia2.aa.AuthConfig; diff --git a/gms/src/main/java/it/inaf/ia2/gms/authn/GmsLoginFilter.java b/gms/src/main/java/it/inaf/ia2/gms/authn/GmsLoginFilter.java index af5000b..575cadf 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/authn/GmsLoginFilter.java +++ b/gms/src/main/java/it/inaf/ia2/gms/authn/GmsLoginFilter.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.authn; import it.inaf.ia2.aa.LoginFilter; diff --git a/gms/src/main/java/it/inaf/ia2/gms/authn/JWTFilter.java b/gms/src/main/java/it/inaf/ia2/gms/authn/JWTFilter.java index 72d55a1..171f2b8 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/authn/JWTFilter.java +++ b/gms/src/main/java/it/inaf/ia2/gms/authn/JWTFilter.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.authn; import it.inaf.ia2.aa.UserManager; diff --git a/gms/src/main/java/it/inaf/ia2/gms/authn/RapClient.java b/gms/src/main/java/it/inaf/ia2/gms/authn/RapClient.java index 0da0a4f..9c4ea34 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/authn/RapClient.java +++ b/gms/src/main/java/it/inaf/ia2/gms/authn/RapClient.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.authn; import it.inaf.ia2.rap.client.BoundedRapClient; diff --git a/gms/src/main/java/it/inaf/ia2/gms/authn/RapPrincipal.java b/gms/src/main/java/it/inaf/ia2/gms/authn/RapPrincipal.java index 3d45ad2..0d6dd8b 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/authn/RapPrincipal.java +++ b/gms/src/main/java/it/inaf/ia2/gms/authn/RapPrincipal.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.authn; import java.security.Principal; diff --git a/gms/src/main/java/it/inaf/ia2/gms/authn/SecurityConfig.java b/gms/src/main/java/it/inaf/ia2/gms/authn/SecurityConfig.java index 7d4abcf..dcf83c6 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/authn/SecurityConfig.java +++ b/gms/src/main/java/it/inaf/ia2/gms/authn/SecurityConfig.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.authn; import it.inaf.ia2.aa.UserManager; diff --git a/gms/src/main/java/it/inaf/ia2/gms/authn/ServletRapClient.java b/gms/src/main/java/it/inaf/ia2/gms/authn/ServletRapClient.java index 63e299e..c51a480 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/authn/ServletRapClient.java +++ b/gms/src/main/java/it/inaf/ia2/gms/authn/ServletRapClient.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.authn; import it.inaf.ia2.aa.data.User; diff --git a/gms/src/main/java/it/inaf/ia2/gms/authn/SessionData.java b/gms/src/main/java/it/inaf/ia2/gms/authn/SessionData.java index c420466..82c1332 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/authn/SessionData.java +++ b/gms/src/main/java/it/inaf/ia2/gms/authn/SessionData.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.authn; import it.inaf.ia2.aa.data.User; diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/GroupsController.java b/gms/src/main/java/it/inaf/ia2/gms/controller/GroupsController.java index a5f810d..d096f88 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/GroupsController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/GroupsController.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/GroupsTabResponseBuilder.java b/gms/src/main/java/it/inaf/ia2/gms/controller/GroupsTabResponseBuilder.java index 2da6216..aa26035 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/GroupsTabResponseBuilder.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/GroupsTabResponseBuilder.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.manager.GroupsManager; diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/HomePageController.java b/gms/src/main/java/it/inaf/ia2/gms/controller/HomePageController.java index 6fbf33f..e957930 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/HomePageController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/HomePageController.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.authn.SessionData; diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/InvitedRegistrationController.java b/gms/src/main/java/it/inaf/ia2/gms/controller/InvitedRegistrationController.java index 627a52b..b007535 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/InvitedRegistrationController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/InvitedRegistrationController.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.manager.InvitedRegistrationManager; diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/JWTWebServiceController.java b/gms/src/main/java/it/inaf/ia2/gms/controller/JWTWebServiceController.java index afe1ec2..09ef965 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/JWTWebServiceController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/JWTWebServiceController.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.authn.RapPrincipal; diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/KeepAliveController.java b/gms/src/main/java/it/inaf/ia2/gms/controller/KeepAliveController.java index 5d29638..2f2c87e 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/KeepAliveController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/KeepAliveController.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.aa.ServiceLocator; diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/MembersController.java b/gms/src/main/java/it/inaf/ia2/gms/controller/MembersController.java index 840f67c..20546c9 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/MembersController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/MembersController.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.manager.MembershipManager; diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/PermissionsController.java b/gms/src/main/java/it/inaf/ia2/gms/controller/PermissionsController.java index 39f649f..18593f1 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/PermissionsController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/PermissionsController.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.manager.GroupsManager; diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/SearchController.java b/gms/src/main/java/it/inaf/ia2/gms/controller/SearchController.java index 6cf5103..67f42eb 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/SearchController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/SearchController.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.model.request.GenericSearchRequest; diff --git a/gms/src/main/java/it/inaf/ia2/gms/controller/UsersController.java b/gms/src/main/java/it/inaf/ia2/gms/controller/UsersController.java index 34bdc09..e024dd0 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/controller/UsersController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/controller/UsersController.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.authn.RapClient; diff --git a/gms/src/main/java/it/inaf/ia2/gms/exception/BadRequestException.java b/gms/src/main/java/it/inaf/ia2/gms/exception/BadRequestException.java index 535c5a9..5b07b01 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/exception/BadRequestException.java +++ b/gms/src/main/java/it/inaf/ia2/gms/exception/BadRequestException.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.exception; import org.springframework.http.HttpStatus; diff --git a/gms/src/main/java/it/inaf/ia2/gms/exception/ErrorController.java b/gms/src/main/java/it/inaf/ia2/gms/exception/ErrorController.java index 7fb46c4..e6296d4 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/exception/ErrorController.java +++ b/gms/src/main/java/it/inaf/ia2/gms/exception/ErrorController.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.exception; import java.io.IOException; diff --git a/gms/src/main/java/it/inaf/ia2/gms/exception/GmsException.java b/gms/src/main/java/it/inaf/ia2/gms/exception/GmsException.java index c7a5ce4..bb329d7 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/exception/GmsException.java +++ b/gms/src/main/java/it/inaf/ia2/gms/exception/GmsException.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.exception; public abstract class GmsException extends RuntimeException { diff --git a/gms/src/main/java/it/inaf/ia2/gms/exception/LoggingExceptionHandler.java b/gms/src/main/java/it/inaf/ia2/gms/exception/LoggingExceptionHandler.java index 68396b5..3e76b1d 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/exception/LoggingExceptionHandler.java +++ b/gms/src/main/java/it/inaf/ia2/gms/exception/LoggingExceptionHandler.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.exception; import it.inaf.ia2.gms.persistence.LoggingDAO; diff --git a/gms/src/main/java/it/inaf/ia2/gms/exception/NotFoundException.java b/gms/src/main/java/it/inaf/ia2/gms/exception/NotFoundException.java index da5acb8..5ce7bed 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/exception/NotFoundException.java +++ b/gms/src/main/java/it/inaf/ia2/gms/exception/NotFoundException.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.exception; import org.springframework.http.HttpStatus; diff --git a/gms/src/main/java/it/inaf/ia2/gms/exception/UnauthorizedException.java b/gms/src/main/java/it/inaf/ia2/gms/exception/UnauthorizedException.java index 70f4465..3e59510 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/exception/UnauthorizedException.java +++ b/gms/src/main/java/it/inaf/ia2/gms/exception/UnauthorizedException.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.exception; import org.springframework.http.HttpStatus; diff --git a/gms/src/main/java/it/inaf/ia2/gms/manager/GroupStatusManager.java b/gms/src/main/java/it/inaf/ia2/gms/manager/GroupStatusManager.java index f66d094..19d4247 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/manager/GroupStatusManager.java +++ b/gms/src/main/java/it/inaf/ia2/gms/manager/GroupStatusManager.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import it.inaf.ia2.gms.exception.UnauthorizedException; diff --git a/gms/src/main/java/it/inaf/ia2/gms/manager/GroupsManager.java b/gms/src/main/java/it/inaf/ia2/gms/manager/GroupsManager.java index 6a76c6b..ffabcc5 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/manager/GroupsManager.java +++ b/gms/src/main/java/it/inaf/ia2/gms/manager/GroupsManager.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import it.inaf.ia2.gms.exception.BadRequestException; diff --git a/gms/src/main/java/it/inaf/ia2/gms/manager/InvitedRegistrationManager.java b/gms/src/main/java/it/inaf/ia2/gms/manager/InvitedRegistrationManager.java index 5c14a9f..320227a 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/manager/InvitedRegistrationManager.java +++ b/gms/src/main/java/it/inaf/ia2/gms/manager/InvitedRegistrationManager.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import it.inaf.ia2.gms.exception.BadRequestException; diff --git a/gms/src/main/java/it/inaf/ia2/gms/manager/MembershipManager.java b/gms/src/main/java/it/inaf/ia2/gms/manager/MembershipManager.java index 622a496..cb5727a 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/manager/MembershipManager.java +++ b/gms/src/main/java/it/inaf/ia2/gms/manager/MembershipManager.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import it.inaf.ia2.gms.exception.UnauthorizedException; diff --git a/gms/src/main/java/it/inaf/ia2/gms/manager/PermissionsManager.java b/gms/src/main/java/it/inaf/ia2/gms/manager/PermissionsManager.java index eb1271e..d3789eb 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/manager/PermissionsManager.java +++ b/gms/src/main/java/it/inaf/ia2/gms/manager/PermissionsManager.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import it.inaf.ia2.gms.exception.UnauthorizedException; diff --git a/gms/src/main/java/it/inaf/ia2/gms/manager/UserAwareComponent.java b/gms/src/main/java/it/inaf/ia2/gms/manager/UserAwareComponent.java index ad7dece..38e9bd5 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/manager/UserAwareComponent.java +++ b/gms/src/main/java/it/inaf/ia2/gms/manager/UserAwareComponent.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import javax.servlet.http.HttpServletRequest; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/GroupBreadcrumb.java b/gms/src/main/java/it/inaf/ia2/gms/model/GroupBreadcrumb.java index 8c16742..df079ee 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/GroupBreadcrumb.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/GroupBreadcrumb.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model; public class GroupBreadcrumb { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/GroupNode.java b/gms/src/main/java/it/inaf/ia2/gms/model/GroupNode.java index 82f0015..6c86ddc 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/GroupNode.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/GroupNode.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model; import java.util.Date; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/GroupPermission.java b/gms/src/main/java/it/inaf/ia2/gms/model/GroupPermission.java index 0846da9..9359017 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/GroupPermission.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/GroupPermission.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model; import it.inaf.ia2.gms.model.response.UserGroup; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/Permission.java b/gms/src/main/java/it/inaf/ia2/gms/model/Permission.java index 8beb45a..9931b1a 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/Permission.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/Permission.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model; public enum Permission { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/RapUserPermission.java b/gms/src/main/java/it/inaf/ia2/gms/model/RapUserPermission.java index 8417970..7923415 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/RapUserPermission.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/RapUserPermission.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model; import it.inaf.ia2.rap.data.RapUser; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/UserPermission.java b/gms/src/main/java/it/inaf/ia2/gms/model/UserPermission.java index 38b9506..1ae9b65 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/UserPermission.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/UserPermission.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model; public class UserPermission { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/AddGroupRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/AddGroupRequest.java index 690fd72..77b5596 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/AddGroupRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/AddGroupRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; import javax.validation.constraints.NotEmpty; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/AddMemberRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/AddMemberRequest.java index d514da0..395b5d8 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/AddMemberRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/AddMemberRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/AddPermissionRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/AddPermissionRequest.java index c1d4fd0..f9a01fe 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/AddPermissionRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/AddPermissionRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/DeleteGroupRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/DeleteGroupRequest.java index 3a2281a..aeb95c0 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/DeleteGroupRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/DeleteGroupRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; public class DeleteGroupRequest extends PaginatedModelRequest implements SearchFilterRequest { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/GenericSearchRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/GenericSearchRequest.java index da973b4..de1214a 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/GenericSearchRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/GenericSearchRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; public class GenericSearchRequest extends PaginatedModelRequest { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/GroupsRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/GroupsRequest.java index fe9d9a3..6843062 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/GroupsRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/GroupsRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; public class GroupsRequest extends TabRequest implements SearchFilterRequest { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/MemberRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/MemberRequest.java index de6d2c8..5c0448c 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/MemberRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/MemberRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; import javax.validation.constraints.NotEmpty; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/PaginatedModelRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/PaginatedModelRequest.java index 5c64c25..77863b4 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/PaginatedModelRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/PaginatedModelRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; import javax.validation.constraints.Min; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/RemoveMemberRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/RemoveMemberRequest.java index 820a2b8..5928906 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/RemoveMemberRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/RemoveMemberRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; public class RemoveMemberRequest extends MemberRequest { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/RenameGroupRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/RenameGroupRequest.java index 9bd325e..25dd129 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/RenameGroupRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/RenameGroupRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; import javax.validation.constraints.NotNull; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/SearchFilterRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/SearchFilterRequest.java index e12de6a..6fee0d9 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/SearchFilterRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/SearchFilterRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; public interface SearchFilterRequest { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/TabRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/TabRequest.java index e2d913b..0536d25 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/TabRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/TabRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; import javax.validation.constraints.NotNull; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/request/UpdatePermissionRequest.java b/gms/src/main/java/it/inaf/ia2/gms/model/request/UpdatePermissionRequest.java index 2125f0d..fcde42a 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/request/UpdatePermissionRequest.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/request/UpdatePermissionRequest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.request; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/response/BaseModelResponse.java b/gms/src/main/java/it/inaf/ia2/gms/model/response/BaseModelResponse.java index 1988d52..f9f3855 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/response/BaseModelResponse.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/response/BaseModelResponse.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.response; public abstract class BaseModelResponse { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/response/GroupsTabResponse.java b/gms/src/main/java/it/inaf/ia2/gms/model/response/GroupsTabResponse.java index d3d75da..9664062 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/response/GroupsTabResponse.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/response/GroupsTabResponse.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.response; import it.inaf.ia2.gms.model.GroupBreadcrumb; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/response/HomePageResponse.java b/gms/src/main/java/it/inaf/ia2/gms/model/response/HomePageResponse.java index 418e465..27b0a67 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/response/HomePageResponse.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/response/HomePageResponse.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.response; public class HomePageResponse extends GroupsTabResponse { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/response/InvitedRegistrationItem.java b/gms/src/main/java/it/inaf/ia2/gms/model/response/InvitedRegistrationItem.java index cc31f77..81c2b31 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/response/InvitedRegistrationItem.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/response/InvitedRegistrationItem.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.response; import com.fasterxml.jackson.annotation.JsonFormat; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/response/PaginatedData.java b/gms/src/main/java/it/inaf/ia2/gms/model/response/PaginatedData.java index d41f551..93ef200 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/response/PaginatedData.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/response/PaginatedData.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.response; import java.util.ArrayList; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/response/SearchResponseItem.java b/gms/src/main/java/it/inaf/ia2/gms/model/response/SearchResponseItem.java index 9eff1e1..b61099b 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/response/SearchResponseItem.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/response/SearchResponseItem.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.response; public class SearchResponseItem { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/response/SearchResponseType.java b/gms/src/main/java/it/inaf/ia2/gms/model/response/SearchResponseType.java index e9e2bc8..8198ffc 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/response/SearchResponseType.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/response/SearchResponseType.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.response; public enum SearchResponseType { diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/response/UserGroup.java b/gms/src/main/java/it/inaf/ia2/gms/model/response/UserGroup.java index 26fdd28..e191017 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/response/UserGroup.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/response/UserGroup.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.response; import java.util.List; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/response/UserPermission.java b/gms/src/main/java/it/inaf/ia2/gms/model/response/UserPermission.java index 892777c..d2424a1 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/response/UserPermission.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/response/UserPermission.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.response; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/model/response/UserSearchResponse.java b/gms/src/main/java/it/inaf/ia2/gms/model/response/UserSearchResponse.java index c3faa44..f45f815 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/model/response/UserSearchResponse.java +++ b/gms/src/main/java/it/inaf/ia2/gms/model/response/UserSearchResponse.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model.response; import it.inaf.ia2.rap.data.RapUser; diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/GroupsDAO.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/GroupsDAO.java index f1f2e14..b7bee60 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/GroupsDAO.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/GroupsDAO.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.model.GroupBreadcrumb; diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/InvitedRegistrationDAO.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/InvitedRegistrationDAO.java index 63fd356..c43c135 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/InvitedRegistrationDAO.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/InvitedRegistrationDAO.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/JoinDAO.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/JoinDAO.java index ffb46ed..3cb3b9e 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/JoinDAO.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/JoinDAO.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.persistence.model.MembershipEntity; diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/LoggingDAO.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/LoggingDAO.java index 277f7e9..57f3796 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/LoggingDAO.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/LoggingDAO.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.persistence.model.ActionType; diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/MembershipsDAO.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/MembershipsDAO.java index 06476e9..900204b 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/MembershipsDAO.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/MembershipsDAO.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.persistence.model.GroupEntity; diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/PermissionsDAO.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/PermissionsDAO.java index c37f0dd..16ad8bc 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/PermissionsDAO.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/PermissionsDAO.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/model/ActionType.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/model/ActionType.java index 9982719..bb2aeb8 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/model/ActionType.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/model/ActionType.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence.model; public enum ActionType { diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/model/GroupEntity.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/model/GroupEntity.java index e431cda..9f68f42 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/model/GroupEntity.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/model/GroupEntity.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence.model; import java.util.Date; diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/model/InvitedRegistration.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/model/InvitedRegistration.java index 9acc15e..597df28 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/model/InvitedRegistration.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/model/InvitedRegistration.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence.model; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/model/MembershipEntity.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/model/MembershipEntity.java index 1a3c9c6..45c540f 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/model/MembershipEntity.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/model/MembershipEntity.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence.model; import java.util.Date; diff --git a/gms/src/main/java/it/inaf/ia2/gms/persistence/model/PermissionEntity.java b/gms/src/main/java/it/inaf/ia2/gms/persistence/model/PermissionEntity.java index fb2b54c..3e75382 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/persistence/model/PermissionEntity.java +++ b/gms/src/main/java/it/inaf/ia2/gms/persistence/model/PermissionEntity.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence.model; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/service/GroupNameService.java b/gms/src/main/java/it/inaf/ia2/gms/service/GroupNameService.java index d9972a0..f72e2c7 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/service/GroupNameService.java +++ b/gms/src/main/java/it/inaf/ia2/gms/service/GroupNameService.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.exception.BadRequestException; diff --git a/gms/src/main/java/it/inaf/ia2/gms/service/GroupsService.java b/gms/src/main/java/it/inaf/ia2/gms/service/GroupsService.java index 462eb36..b619c6c 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/service/GroupsService.java +++ b/gms/src/main/java/it/inaf/ia2/gms/service/GroupsService.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.exception.BadRequestException; diff --git a/gms/src/main/java/it/inaf/ia2/gms/service/GroupsTreeBuilder.java b/gms/src/main/java/it/inaf/ia2/gms/service/GroupsTreeBuilder.java index ed3ffc7..bf3f1ff 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/service/GroupsTreeBuilder.java +++ b/gms/src/main/java/it/inaf/ia2/gms/service/GroupsTreeBuilder.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.model.GroupNode; diff --git a/gms/src/main/java/it/inaf/ia2/gms/service/JoinService.java b/gms/src/main/java/it/inaf/ia2/gms/service/JoinService.java index f268243..dcc8700 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/service/JoinService.java +++ b/gms/src/main/java/it/inaf/ia2/gms/service/JoinService.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/service/PermissionUtils.java b/gms/src/main/java/it/inaf/ia2/gms/service/PermissionUtils.java index ffb5817..c94b117 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/service/PermissionUtils.java +++ b/gms/src/main/java/it/inaf/ia2/gms/service/PermissionUtils.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/service/PermissionsService.java b/gms/src/main/java/it/inaf/ia2/gms/service/PermissionsService.java index 727d784..890cb87 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/service/PermissionsService.java +++ b/gms/src/main/java/it/inaf/ia2/gms/service/PermissionsService.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/main/java/it/inaf/ia2/gms/service/SearchService.java b/gms/src/main/java/it/inaf/ia2/gms/service/SearchService.java index 47f45d8..cb18ca8 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/service/SearchService.java +++ b/gms/src/main/java/it/inaf/ia2/gms/service/SearchService.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.manager.GroupsManager; diff --git a/gms/src/main/java/it/inaf/ia2/gms/service/hook/GroupsHook.java b/gms/src/main/java/it/inaf/ia2/gms/service/hook/GroupsHook.java index 9f73f09..2c7ffe2 100644 --- a/gms/src/main/java/it/inaf/ia2/gms/service/hook/GroupsHook.java +++ b/gms/src/main/java/it/inaf/ia2/gms/service/hook/GroupsHook.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service.hook; import it.inaf.ia2.gms.persistence.model.GroupEntity; diff --git a/gms/src/test/java/it/inaf/ia2/gms/DataSourceConfig.java b/gms/src/test/java/it/inaf/ia2/gms/DataSourceConfig.java index 8fb202b..71066da 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/DataSourceConfig.java +++ b/gms/src/test/java/it/inaf/ia2/gms/DataSourceConfig.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms; import com.opentable.db.postgres.embedded.EmbeddedPostgres; diff --git a/gms/src/test/java/it/inaf/ia2/gms/GmsTestUtils.java b/gms/src/test/java/it/inaf/ia2/gms/GmsTestUtils.java index ed79a9b..d9ec828 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/GmsTestUtils.java +++ b/gms/src/test/java/it/inaf/ia2/gms/GmsTestUtils.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms; import java.security.Principal; diff --git a/gms/src/test/java/it/inaf/ia2/gms/HooksConfig.java b/gms/src/test/java/it/inaf/ia2/gms/HooksConfig.java index 6e9e02f..24d3571 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/HooksConfig.java +++ b/gms/src/test/java/it/inaf/ia2/gms/HooksConfig.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms; import it.inaf.ia2.gms.persistence.model.GroupEntity; diff --git a/gms/src/test/java/it/inaf/ia2/gms/authn/SessionDataTest.java b/gms/src/test/java/it/inaf/ia2/gms/authn/SessionDataTest.java index 3b324cc..e150cf5 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/authn/SessionDataTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/authn/SessionDataTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.authn; import it.inaf.ia2.aa.data.User; diff --git a/gms/src/test/java/it/inaf/ia2/gms/controller/ControllersMockData.java b/gms/src/test/java/it/inaf/ia2/gms/controller/ControllersMockData.java index 7f31a88..5cde924 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/controller/ControllersMockData.java +++ b/gms/src/test/java/it/inaf/ia2/gms/controller/ControllersMockData.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.persistence.model.GroupEntity; diff --git a/gms/src/test/java/it/inaf/ia2/gms/controller/GroupsControllerTest.java b/gms/src/test/java/it/inaf/ia2/gms/controller/GroupsControllerTest.java index 892367e..ec2d726 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/controller/GroupsControllerTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/controller/GroupsControllerTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/gms/src/test/java/it/inaf/ia2/gms/controller/GroupsTabResponseBuilderTest.java b/gms/src/test/java/it/inaf/ia2/gms/controller/GroupsTabResponseBuilderTest.java index 07f1e85..6f843fa 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/controller/GroupsTabResponseBuilderTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/controller/GroupsTabResponseBuilderTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.GmsTestUtils; diff --git a/gms/src/test/java/it/inaf/ia2/gms/controller/HomePageControllerTest.java b/gms/src/test/java/it/inaf/ia2/gms/controller/HomePageControllerTest.java index 04d322e..b961081 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/controller/HomePageControllerTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/controller/HomePageControllerTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.authn.SessionData; diff --git a/gms/src/test/java/it/inaf/ia2/gms/controller/InvitedRegistrationControllerTest.java b/gms/src/test/java/it/inaf/ia2/gms/controller/InvitedRegistrationControllerTest.java index f125960..719e5e5 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/controller/InvitedRegistrationControllerTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/controller/InvitedRegistrationControllerTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.manager.InvitedRegistrationManager; diff --git a/gms/src/test/java/it/inaf/ia2/gms/controller/JWTWebServiceControllerTest.java b/gms/src/test/java/it/inaf/ia2/gms/controller/JWTWebServiceControllerTest.java index 2f4b2a1..ca81d28 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/controller/JWTWebServiceControllerTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/controller/JWTWebServiceControllerTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import it.inaf.ia2.gms.manager.GroupsManager; diff --git a/gms/src/test/java/it/inaf/ia2/gms/controller/MembersControllerTest.java b/gms/src/test/java/it/inaf/ia2/gms/controller/MembersControllerTest.java index 56b1746..4f8865c 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/controller/MembersControllerTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/controller/MembersControllerTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/gms/src/test/java/it/inaf/ia2/gms/controller/PermissionsControllerTest.java b/gms/src/test/java/it/inaf/ia2/gms/controller/PermissionsControllerTest.java index 850f97d..9423ae0 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/controller/PermissionsControllerTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/controller/PermissionsControllerTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/gms/src/test/java/it/inaf/ia2/gms/controller/SearchControllerTest.java b/gms/src/test/java/it/inaf/ia2/gms/controller/SearchControllerTest.java index 025652f..6aa474d 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/controller/SearchControllerTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/controller/SearchControllerTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.controller; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/gms/src/test/java/it/inaf/ia2/gms/manager/GroupsManagerTest.java b/gms/src/test/java/it/inaf/ia2/gms/manager/GroupsManagerTest.java index 9a63a0c..e3930ce 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/manager/GroupsManagerTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/manager/GroupsManagerTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import it.inaf.ia2.gms.exception.UnauthorizedException; diff --git a/gms/src/test/java/it/inaf/ia2/gms/manager/InvitedRegistrationManagerTest.java b/gms/src/test/java/it/inaf/ia2/gms/manager/InvitedRegistrationManagerTest.java index 962e74a..4ed6333 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/manager/InvitedRegistrationManagerTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/manager/InvitedRegistrationManagerTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import it.inaf.ia2.gms.GmsTestUtils; diff --git a/gms/src/test/java/it/inaf/ia2/gms/manager/PermissionsManagerIntegrationTest.java b/gms/src/test/java/it/inaf/ia2/gms/manager/PermissionsManagerIntegrationTest.java index ad13806..8c305cd 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/manager/PermissionsManagerIntegrationTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/manager/PermissionsManagerIntegrationTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import it.inaf.ia2.gms.DataSourceConfig; diff --git a/gms/src/test/java/it/inaf/ia2/gms/manager/PermissionsManagerTest.java b/gms/src/test/java/it/inaf/ia2/gms/manager/PermissionsManagerTest.java index 4032686..9beddff 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/manager/PermissionsManagerTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/manager/PermissionsManagerTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import it.inaf.ia2.gms.exception.UnauthorizedException; diff --git a/gms/src/test/java/it/inaf/ia2/gms/manager/UserAwareComponentTestUtil.java b/gms/src/test/java/it/inaf/ia2/gms/manager/UserAwareComponentTestUtil.java index e61703b..272f884 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/manager/UserAwareComponentTestUtil.java +++ b/gms/src/test/java/it/inaf/ia2/gms/manager/UserAwareComponentTestUtil.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.manager; import it.inaf.ia2.gms.authn.RapPrincipal; diff --git a/gms/src/test/java/it/inaf/ia2/gms/model/PaginatedDataTest.java b/gms/src/test/java/it/inaf/ia2/gms/model/PaginatedDataTest.java index 15e92fa..7a23934 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/model/PaginatedDataTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/model/PaginatedDataTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model; import it.inaf.ia2.gms.model.response.PaginatedData; diff --git a/gms/src/test/java/it/inaf/ia2/gms/model/PermissionTest.java b/gms/src/test/java/it/inaf/ia2/gms/model/PermissionTest.java index bf642bd..ef000f2 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/model/PermissionTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/model/PermissionTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.model; import static org.junit.Assert.assertEquals; diff --git a/gms/src/test/java/it/inaf/ia2/gms/persistence/GroupEntityTest.java b/gms/src/test/java/it/inaf/ia2/gms/persistence/GroupEntityTest.java index 6e71cef..f9b55cd 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/persistence/GroupEntityTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/persistence/GroupEntityTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.persistence.model.GroupEntity; diff --git a/gms/src/test/java/it/inaf/ia2/gms/persistence/GroupsDAOTest.java b/gms/src/test/java/it/inaf/ia2/gms/persistence/GroupsDAOTest.java index a826741..0a9c1fc 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/persistence/GroupsDAOTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/persistence/GroupsDAOTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.DataSourceConfig; diff --git a/gms/src/test/java/it/inaf/ia2/gms/persistence/InvitedRegistrationDAOTest.java b/gms/src/test/java/it/inaf/ia2/gms/persistence/InvitedRegistrationDAOTest.java index 7c5883e..e4ef0bc 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/persistence/InvitedRegistrationDAOTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/persistence/InvitedRegistrationDAOTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.DataSourceConfig; diff --git a/gms/src/test/java/it/inaf/ia2/gms/persistence/JoinDAOTest.java b/gms/src/test/java/it/inaf/ia2/gms/persistence/JoinDAOTest.java index c1ca308..63038ac 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/persistence/JoinDAOTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/persistence/JoinDAOTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.DataSourceConfig; diff --git a/gms/src/test/java/it/inaf/ia2/gms/persistence/LoggingDAOTest.java b/gms/src/test/java/it/inaf/ia2/gms/persistence/LoggingDAOTest.java index 82c799c..414c17c 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/persistence/LoggingDAOTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/persistence/LoggingDAOTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.DataSourceConfig; diff --git a/gms/src/test/java/it/inaf/ia2/gms/persistence/MembershipsDAOTest.java b/gms/src/test/java/it/inaf/ia2/gms/persistence/MembershipsDAOTest.java index 4529f49..d3d72ed 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/persistence/MembershipsDAOTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/persistence/MembershipsDAOTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.DataSourceConfig; diff --git a/gms/src/test/java/it/inaf/ia2/gms/persistence/NestedGroupsIntegrationTest.java b/gms/src/test/java/it/inaf/ia2/gms/persistence/NestedGroupsIntegrationTest.java index f15f6d5..990762b 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/persistence/NestedGroupsIntegrationTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/persistence/NestedGroupsIntegrationTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.DataSourceConfig; diff --git a/gms/src/test/java/it/inaf/ia2/gms/persistence/PermissionsDAOTest.java b/gms/src/test/java/it/inaf/ia2/gms/persistence/PermissionsDAOTest.java index 93b543b..30d235f 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/persistence/PermissionsDAOTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/persistence/PermissionsDAOTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.persistence; import it.inaf.ia2.gms.DataSourceConfig; diff --git a/gms/src/test/java/it/inaf/ia2/gms/rap/RapClientTest.java b/gms/src/test/java/it/inaf/ia2/gms/rap/RapClientTest.java index 09becbf..f88088c 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/rap/RapClientTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/rap/RapClientTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.rap; import it.inaf.ia2.gms.authn.SessionData; diff --git a/gms/src/test/java/it/inaf/ia2/gms/service/GroupNameServiceTest.java b/gms/src/test/java/it/inaf/ia2/gms/service/GroupNameServiceTest.java index 8c16c39..7bca4e8 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/service/GroupNameServiceTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/service/GroupNameServiceTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.persistence.GroupsDAO; diff --git a/gms/src/test/java/it/inaf/ia2/gms/service/GroupsServiceTest.java b/gms/src/test/java/it/inaf/ia2/gms/service/GroupsServiceTest.java index 3594238..08af86d 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/service/GroupsServiceTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/service/GroupsServiceTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import static it.inaf.ia2.gms.controller.ControllersMockData.*; diff --git a/gms/src/test/java/it/inaf/ia2/gms/service/JoinServiceTest.java b/gms/src/test/java/it/inaf/ia2/gms/service/JoinServiceTest.java index 9652ee3..a399297 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/service/JoinServiceTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/service/JoinServiceTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/test/java/it/inaf/ia2/gms/service/PermissionUtilsTest.java b/gms/src/test/java/it/inaf/ia2/gms/service/PermissionUtilsTest.java index 9a6d0f3..5c18d78 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/service/PermissionUtilsTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/service/PermissionUtilsTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/test/java/it/inaf/ia2/gms/service/PermissionsServiceTest.java b/gms/src/test/java/it/inaf/ia2/gms/service/PermissionsServiceTest.java index 17d2c53..e0441c5 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/service/PermissionsServiceTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/service/PermissionsServiceTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.model.Permission; diff --git a/gms/src/test/java/it/inaf/ia2/gms/service/SearchServiceTest.java b/gms/src/test/java/it/inaf/ia2/gms/service/SearchServiceTest.java index 1ed36a4..70f9910 100644 --- a/gms/src/test/java/it/inaf/ia2/gms/service/SearchServiceTest.java +++ b/gms/src/test/java/it/inaf/ia2/gms/service/SearchServiceTest.java @@ -1,3 +1,8 @@ +/* + * This file is part of gms + * Copyright (C) 2021 Istituto Nazionale di Astrofisica + * SPDX-License-Identifier: GPL-3.0-or-later + */ package it.inaf.ia2.gms.service; import it.inaf.ia2.gms.manager.GroupsManager; -- GitLab