From 6c2dfd3e35983208ac4542a296d5288c5980eb6a Mon Sep 17 00:00:00 2001 From: Tom Page Date: Fri, 10 Nov 2017 16:35:00 +0000 Subject: [PATCH 001/236] Fix a test that previously failed to create a security mark. Also refactor an @BeforeClass into an @Test so that if it fails it doesn't kill all subsequent tests (in all subsequent classes). --- .../src/main/java/org/alfresco/rest/core/v0/BaseAPI.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java index 3f5f0dbda8..c175ff10bd 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java @@ -452,7 +452,10 @@ public abstract class BaseAPI { ((HttpEntityEnclosingRequestBase) request).setEntity(new StringEntity(requestParams.toString())); } + LOGGER.info("Sending {} request to {}", requestType.getSimpleName(), requestUrl); + LOGGER.info("Request body: {}", requestParams); response = client.execute(adminUser, adminPassword, request); + LOGGER.info("Response: {}", response.getStatusLine()); try { From 9078fafb048c0bdce277b1a1efa90bb372db2fbc Mon Sep 17 00:00:00 2001 From: Tom Page Date: Wed, 15 Nov 2017 16:31:44 +0000 Subject: [PATCH 002/236] Update version to 2.7-SNAPSHOT. --- pom.xml | 2 +- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index ac30530b79..ef944bbd72 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-rm pom - 2.6-SNAPSHOT + 2.7-SNAPSHOT Alfresco Records Management diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index d98b337c2a..9104de22fb 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm - 2.6-SNAPSHOT + 2.7-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index a3a94a7b55..65d2d48dcd 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm-automation - 2.6-SNAPSHOT + 2.7-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 8e9816ba62..d6952c6f7c 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm - 2.6-SNAPSHOT + 2.7-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 4a59bbbdb7..92ddc05f89 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-rm-community - 2.6-SNAPSHOT + 2.7-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index e771a9ff00..6f91aebef2 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-rm-community - 2.6-SNAPSHOT + 2.7-SNAPSHOT From fd35524058b0452ed56ddf449d8d90feb25eabfd Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Thu, 16 Nov 2017 17:59:02 +0000 Subject: [PATCH 003/236] RM-5901 fixes in community repo --- .../alfresco/module/org_alfresco_module_rm/module.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties index 011b9d2820..e587572aa2 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties @@ -6,6 +6,6 @@ module.aliases=org_alfresco_module_dod5015 module.title=Records Management module.description=Alfresco Record Management Extension -module.version=${rm.module.version} +module.version=2.6-SNAPSHOT -module.repo.version.min=${rm.module.repo.version.min} \ No newline at end of file +module.repo.version.min=5.2 \ No newline at end of file From e15635de809841054d840883d2df2cdfccdd62b2 Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Thu, 16 Nov 2017 18:15:59 +0000 Subject: [PATCH 004/236] RM-5901 fixes in benchmark driver --- .../disposition/DispositionServiceImpl.java | 20 +++++++++---------- .../api/impl/FilePlanComponentsApiUtils.java | 2 +- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImpl.java index 5cf013e323..55b3582911 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImpl.java @@ -132,7 +132,7 @@ public class DispositionServiceImpl extends ServiceBaseImpl /** * Set the dictionary service * - * @param dictionaryServic the dictionary service + * @param dictionaryService the dictionary service */ @Override public void setDictionaryService(DictionaryService dictionaryService) @@ -439,7 +439,7 @@ public class DispositionServiceImpl extends ServiceBaseImpl if (this.nodeService.hasAspect(nodeRef, ASPECT_SCHEDULED)) { List childAssocs = this.nodeService.getChildAssocs(nodeRef, ASSOC_DISPOSITION_SCHEDULE, RegexQNamePattern.MATCH_ALL); - if (childAssocs.size() != 0) + if (!childAssocs.isEmpty()) { ChildAssociationRef firstChildAssocRef = childAssocs.get(0); result = firstChildAssocRef.getChildRef(); @@ -462,7 +462,7 @@ public class DispositionServiceImpl extends ServiceBaseImpl if (nodeService.exists(dsNodeRef)) { List assocs = this.nodeService.getParentAssocs(dsNodeRef, ASSOC_DISPOSITION_SCHEDULE, RegexQNamePattern.MATCH_ALL); - if (assocs.size() != 0) + if (!assocs.isEmpty()) { if (assocs.size() != 1) { @@ -522,7 +522,6 @@ public class DispositionServiceImpl extends ServiceBaseImpl * * @param isRecordLevelDisposition * @param rmContainer - * @param root * @return */ private List getDisposableItemsImpl(boolean isRecordLevelDisposition, NodeRef rmContainer) @@ -586,13 +585,13 @@ public class DispositionServiceImpl extends ServiceBaseImpl // Check whether there is already a disposition schedule object present List assocs = nodeService.getChildAssocs(nodeRef, ASSOC_DISPOSITION_SCHEDULE, RegexQNamePattern.MATCH_ALL); - if (assocs.size() == 0) + if (assocs.isEmpty()) { DispositionSchedule currentDispositionSchdule = getDispositionSchedule(nodeRef); if (currentDispositionSchdule != null) { List items = getDisposableItemsImpl(currentDispositionSchdule.isRecordLevelDisposition(), nodeRef); - if (items.size() != 0) + if (!items.isEmpty()) { throw new AlfrescoRuntimeException("Can not create a retention schedule if there are disposable items already under the control of an other retention schedule"); } @@ -674,7 +673,6 @@ public class DispositionServiceImpl extends ServiceBaseImpl * Updates the given disposition action definition belonging to the given disposition * schedule. * - * @param schedule The DispositionSchedule the action belongs to * @param actionDefinition The DispositionActionDefinition to update * @param actionDefinitionParams Map of parameters to use to update the action definition * @return The updated DispositionActionDefinition @@ -706,7 +704,7 @@ public class DispositionServiceImpl extends ServiceBaseImpl private DispositionAction initialiseDispositionAction(NodeRef nodeRef, DispositionActionDefinition dispositionActionDefinition, boolean allowContextFromAsOf) { List childAssocs = nodeService.getChildAssocs(nodeRef, ASSOC_NEXT_DISPOSITION_ACTION, ASSOC_NEXT_DISPOSITION_ACTION, 1, true); - if (childAssocs != null && childAssocs.size() > 0) + if (childAssocs != null && !childAssocs.isEmpty()) { return new DispositionActionImpl(serviceRegistry, childAssocs.get(0).getChildRef()); } @@ -871,7 +869,7 @@ public class DispositionServiceImpl extends ServiceBaseImpl { NodeRef result = null; List assocs = nodeService.getChildAssocs(nodeRef, ASSOC_NEXT_DISPOSITION_ACTION, ASSOC_NEXT_DISPOSITION_ACTION, 1, true); - if (assocs.size() != 0) + if (!assocs.isEmpty()) { result = assocs.get(0).getChildRef(); } @@ -964,7 +962,7 @@ public class DispositionServiceImpl extends ServiceBaseImpl if (nodeService.hasAspect(nodeRef, ASPECT_DISPOSITION_LIFECYCLE)) { List assocs = nodeService.getChildAssocs(nodeRef, ASSOC_NEXT_DISPOSITION_ACTION, ASSOC_NEXT_DISPOSITION_ACTION); - if (assocs.size() > 0) + if (!assocs.isEmpty()) { currentDispositionAction = assocs.get(0).getChildRef(); } @@ -1092,7 +1090,7 @@ public class DispositionServiceImpl extends ServiceBaseImpl { DispositionSchedule ds = new DispositionScheduleImpl(serviceRegistry, nodeService, dispositionSchedule); List assocs = nodeService.getChildAssocs(dispositionSchedule); - if (assocs != null && assocs.size() > 0) + if (assocs != null && !assocs.isEmpty()) { for (ChildAssociationRef assoc : assocs) { diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java index 802683146e..3412ff80e9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java @@ -927,7 +927,7 @@ public class FilePlanComponentsApiUtils } String pathStr = null; - if (pathElements.size() > 0) + if (!pathElements.isEmpty()) { StringBuilder sb = new StringBuilder(120); for (PathInfo.ElementInfo e : pathElements) From 8fddf75ed33a3e3998f5c9b7820af8a912a77d44 Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Mon, 20 Nov 2017 15:14:53 +0000 Subject: [PATCH 005/236] RM-5901 review changes --- .../alfresco/module/org_alfresco_module_rm/module.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties index e587572aa2..011b9d2820 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/module.properties @@ -6,6 +6,6 @@ module.aliases=org_alfresco_module_dod5015 module.title=Records Management module.description=Alfresco Record Management Extension -module.version=2.6-SNAPSHOT +module.version=${rm.module.version} -module.repo.version.min=5.2 \ No newline at end of file +module.repo.version.min=${rm.module.repo.version.min} \ No newline at end of file From 211752f6e408e65d7dd9a1c2349757656edba034 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Thu, 23 Nov 2017 10:56:33 +0000 Subject: [PATCH 006/236] Reformatting README.txt to README.md and adding in a CODE_OF_CONDUCT.md file. --- CODE_OF_CONDUCT.md | 73 ++++++++++++++++++ README.txt => README.md | 161 ++++++++++++++++++---------------------- 2 files changed, 146 insertions(+), 88 deletions(-) create mode 100644 CODE_OF_CONDUCT.md rename README.txt => README.md (50%) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000000..30f74c5d55 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,73 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, gender identity and expression, level of experience, +nationality, personal appearance, race, religion, or sexual identity and +orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at [INSERT EMAIL ADDRESS]. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org diff --git a/README.txt b/README.md similarity index 50% rename from README.txt rename to README.md index 1d260c7466..fe5212a303 100644 --- a/README.txt +++ b/README.md @@ -1,155 +1,140 @@ -Configuring and starting Alfresco/Share: ----------------------------------------- +# Records Management: README -- Clone the project (e.g. git clone git@gitlab.alfresco.com:records-management/records-management.git) +## Contributing +Please refer to our [How to contribute](/CONTRIBUTING.md) guide and our [Contributor Covenant Code of Conduct](/CODE_OF_CONDUCT.md). -- Import the project as a maven project +## Configuring and starting Alfresco/Share +* Clone the project (e.g. `git clone git@gitlab.alfresco.com:records-management/records-management.git`) +* Import the project as a maven project +* Start the Alfresco/Share instances with the following commands: -- Start the Alfresco/Share instances with the following commands: + ``` + mvn clean install -Pstart-repo + mvn clean install -Pstart-share + ``` - mvn clean install -Pstart-repo - mvn clean install -Pstart-share - - (these commands work best if run from the specific directories, e.g. start share from + (these commands work best if run from the specific directories, e.g. start share from rm-enterprise/rm-enterprise-share/ or rm-community/rm-community-share/ ) +## Configuring a different DB other than H2 (e.g. MySQL or PostgreSQL) +* Create a file called _local.properties_ under src/main/resources in alfresco-rm-enterprise-repo +* Add the following properties in this new file -Configuring a different DB other than H2 (e.g. MySQL or PostgreSQL): --------------------------------------------------------------------- + ``` + my.db.name -> The name of the database schema + my.db.port -> The port number for your database (default port number for postgres is 5432 and for mysql it is 3306) + ``` +* Run the following commands to start your Alfresco instance: -- Create a file called "local.properties" under src/main/resources in alfresco-rm-enterprise-repo + to start Alfresco (using Postgres): + ``` + mvn clean install -Pstart-repo,use-postgres + ``` -- Add the following properties in this new file - my.db.name -> The name of the database schema - my.db.port -> The port number for your database (default port number for postgres is 5432 and for mysql it is 3306) + to start Alfresco (using MySQL): -- Run the following commands to start your Alfresco instance: + ``` + mvn clean install -Pstart-repo,use-mysql + ``` - to start Alfresco (using Postgres): - mvn clean install -Pstart-repo,use-postgres - - to start Alfresco (using MySQL): - mvn clean install -Pstart-repo,use-mysql - - -Technical documentation: ------------------------- - -Technical documentation is available at rm-community/documentation/README.md and rm-enterprise/documentation/README.md. -This should be particularly useful for anyone wanting to integrate with or extend RM. - - -Running integration test: -------------------------- +## Technical documentation +Technical documentation is available at [rm-community/documentation/README.md](/rm-community/documentation/README.md) and [rm-enterprise/documentation/README.md](/rm-enterprise/documentation/README.md). This should be particularly useful for anyone wanting to integrate with or extend RM. +## Running integration test In order to execute the integration tests run the following command (unit tests will be executed every time before you start Alfresco/Share): +``` mvn clean install -Dskip.integrationtests=false +``` - -Running UI Automation tests: ----------------------------- - +## Running UI Automation tests To run the automated UI tests, change to the rm-automation directory and run: - mvn clean install -Dskip.automationtests=false +``` +mvn clean install -Dskip.automationtests=false +``` Note: due to Selenium Firefox driver changes, the highest supported Firefox version for UI tests is 43.0.4 (with Selenium 2.52.0). It is possible to have multiple versions of Firefox installed onto your workstation (e.g. one for running the UI tests and the other, kept up to date, for everyday browsing) but beware Firefox auto-updates. In this scenario the best approach is to create a non-default profile (default profiles will be shared between your Firefox installations!) for which auto-updates are disabled and forcing the use of this -profile in your tests (-Dwebdriver.firefox.profile="ProfileName"). If your Firefox 43 install isn't in your path, you can use the --Dwebdriver.firefox.profile option set to the full path of its "firefox-bin" executable. +profile in your tests (`-Dwebdriver.firefox.profile="ProfileName"`). If your Firefox 43 install isn't in your path, you can use the +`-Dwebdriver.firefox.profile` option set to the full path of its "firefox-bin" executable. MacOS X Sierra users: if you experience by order of magnitude slower performance when connected to a WiFi network (e.g. office WiFi) add your workstation to your local /etc/hosts file as described on https://github.com/SeleniumHQ/selenium/issues/2824. To use Chrome instead of Firefox: - - copy webdriver.properties from https://github.com/AlfrescoTestAutomation/selenium-grid/tree/master/src/main/resources - 
- put it under src/test/resource in rm-automation-ui project - 
- download the chrome driver from http://chromedriver.storage.googleapis.com/ and extract it - 
- change the following properties in webdriver.properties: webdriver.browser (Chrome) and webdriver.chrome.server.path (path/to/chrome/driver) - 
- run the tests as usual - - -Updating License Headers: -------------------------- +1. copy webdriver.properties from https://github.com/AlfrescoTestAutomation/selenium-grid/tree/master/src/main/resources +2. put it under src/test/resource in rm-automation-ui project +3. download the chrome driver from http://chromedriver.storage.googleapis.com and extract it +4. change the following properties in webdriver.properties: webdriver.browser (Chrome) and webdriver.chrome.server.path (path/to/chrome/driver) +5. run the tests as usual +## Updating License Headers In order to refesh out of date license source headers run the following command: +``` mvn clean install -Dlicense.update.dryrun=false +``` - -Running tests against latest Aikau snapshot: --------------------------------------------- - +## Running tests against latest Aikau snapshot The latest Aikau snapshot can be pulled by running the following command in rm-community: - mvn clean install -DskipTests -Dalfresco.aikau.version=LATEST -U +``` +mvn clean install -DskipTests -Dalfresco.aikau.version=LATEST -U +``` Thereafter start the Share instance and run automation tests as described above. - -Configuring Outlook Integration: -------------------------------- - +## Configuring Outlook Integration To download and run RM with the Outlook Integration AMPs installed on the repo and Share use the following commands: - mvn clean install -Pstart-repo,outlook-integration - mvn clean install -Pstart-share,outlook-integration +``` +mvn clean install -Pstart-repo,outlook-integration +mvn clean install -Pstart-share,outlook-integration +``` -Follow these instructions install licence and Outlook plugin: +Follow these instructions to install licence and Outlook plugin: - - http://docs.alfresco.com/outlook2.1/tasks/Outlook-license.html - - http://docs.alfresco.com/outlook2.1/tasks/Outlook-install_v2.html - - -SNAPSHOT dependencies: ----------------------- +* http://docs.alfresco.com/outlook2.1/tasks/Outlook-license.html +* http://docs.alfresco.com/outlook2.1/tasks/Outlook-install_v2.html +## SNAPSHOT dependencies If you're building Enterprise RM, the base project (Community) is pulled in via a snapshot dependency configured in maven. This dependency will either be loaded from your local .m2 cache or from Nexus if the version in your .m2 doesn't exist or is old (Old in maven terms is anything over 24hrs old). If maven fetches it from Nexus, your code it's unlikely to be the correct version. You want to always use the version in your local cache - this means either doing a daily build at the root project level that pushes a new copy of the correct version into your cache, or alternatively you could run mvn with the ---no-snapshot-dependency (or -nsu) option, which won't try to download a newer version. - - -Code Formatting: ----------------- +`--no-snapshot-dependency` (or -nsu) option, which won't try to download a newer version. +## Code Formatting This project follows the usual Alfresco Coding Standards. If you use Eclipse or IntelliJ, there are settings inside the ide-config directory for you to import. - -Surf build errors: ------------------- - +## Surf build errors If you get: +``` [ERROR] Failed to execute goal on project alfresco-rm-community-share: Could not resolve dependencies for project org.alfresco:alfresco-rm-community-share:amp:2.6-SNAPSHOT: Failed to collect dependencies at org.alfresco.surf:spring-surf-api:jar:6.3 -> org.alfresco.surf:spring-surf:jar:${dependency.surf.version}: Failed to read artifact descriptor for org.alfresco.surf:spring-surf:jar:${dependency.surf.version}: Could not transfer artifact org.alfresco.surf:spring-surf:pom:${dependency.surf.version} from/to alfresco-internal (https://artifacts.alfresco.com/nexus/content/groups/private): Not authorized , ReasonPhrase:Unauthorized. -> [Help 1] +``` -then please re-run with -Ddependency.surf.version=6.3 - - -Install lombok plugin for IDEs: -------------------------------- +then please re-run with `-Ddependency.surf.version=6.3` +## Install lombok plugin for IDEs To allow automation and benchmark projects to be built within an IDE the lombok 'plugin' needs to be installed. +Execute lombok.jar (doubleclick it, or run `java -jar lombok.jar`). Follow the instructions. -Execute lombok.jar (doubleclick it, or run java -jar lombok.jar). Follow instructions. - - -Use Solr 6 with Alfresco 5.2.x: -------------------------------- -In alfresco-global.properties (depending on the RM edition /records-management/rm-community/rm-community-repo/src/test/properties/local or /records-management/rm-enterprise/rm-enterprise-repo/src/test/properties/local) +## Use Solr 6 with Alfresco 5.2.x +In alfresco-global.properties (depending on the RM edition `/records-management/rm-community/rm-community-repo/src/test/properties/local` or `/records-management/rm-enterprise/rm-enterprise-repo/src/test/properties/local`) change the value for "index.subsystem.name" from "solr4" to "solr6". Add also the following property "solr.port=8983". Download the latest Alfresco Search Services from -https://nexus.alfresco.com/nexus/#nexus-search;gav~~alfresco-search-services~~~ +[https://nexus.alfresco.com/nexus/#nexus-search;gav\~\~alfresco-search-services\~\~\~](https://nexus.alfresco.com/nexus/#nexus-search;gav~~alfresco-search-services~~~) Currently it's 1.0.0 (alfresco-search-services-1.0.0.zip) Unzip it and change to the "solr" folder within it. Start the Solr server using the following command: +``` solr start -a "-Dcreate.alfresco.defaults=alfresco,archive" - +``` Start your repository From 9ccc0dfb8ecb671834f8d28547463987a01a14f4 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Thu, 23 Nov 2017 11:06:06 +0000 Subject: [PATCH 007/236] Update reporting email address on CODE_OF_CONDUCT document. --- CODE_OF_CONDUCT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 30f74c5d55..bc34200905 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -55,7 +55,7 @@ further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at [INSERT EMAIL ADDRESS]. All +reported by contacting the project team at katalin.zanaty@alfresco.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. From 69e57283ab21c70be58a893cf2491418ab1e3e7a Mon Sep 17 00:00:00 2001 From: Tom Page Date: Thu, 23 Nov 2017 11:12:48 +0000 Subject: [PATCH 008/236] Minor updates to README.md. --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fe5212a303..1ec3fe91f5 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ Please refer to our [How to contribute](/CONTRIBUTING.md) guide and our [Contrib mvn clean install -Pstart-share ``` - (these commands work best if run from the specific directories, e.g. start share from - rm-enterprise/rm-enterprise-share/ or rm-community/rm-community-share/ ) + (these commands work best if run from the specific directories, e.g. start Share from + rm-community/rm-community-share/ or rm-enterprise/rm-enterprise-share/ ) ## Configuring a different DB other than H2 (e.g. MySQL or PostgreSQL) * Create a file called _local.properties_ under src/main/resources in alfresco-rm-enterprise-repo @@ -103,11 +103,11 @@ Follow these instructions to install licence and Outlook plugin: ## SNAPSHOT dependencies If you're building Enterprise RM, the base project (Community) is pulled in via a snapshot dependency configured in maven. -This dependency will either be loaded from your local .m2 cache or from Nexus if the version in your .m2 doesn't exist or is old -(Old in maven terms is anything over 24hrs old). If maven fetches it from Nexus, your code it's unlikely to be the correct version. +This dependency will either be loaded from your local .m2 cache, or from Nexus if the version in your .m2 doesn't exist or is old +('old' in maven terms is anything over 24 hours old). If maven fetches community dependencies from Nexus, then it's unlikely to contain your changes. You want to always use the version in your local cache - this means either doing a daily build at the root project level that pushes a new copy of the correct version into your cache, or alternatively you could run mvn with the -`--no-snapshot-dependency` (or -nsu) option, which won't try to download a newer version. +`--no-snapshot-dependency` (or `-nsu`) option, which won't try to download a newer version. ## Code Formatting This project follows the usual Alfresco Coding Standards. If you use Eclipse or IntelliJ, there are settings inside the ide-config directory for you to import. From 4b59aaa0f767e6fd3f178edff403df3a83d0703b Mon Sep 17 00:00:00 2001 From: David Webster Date: Fri, 24 Nov 2017 12:37:49 +0000 Subject: [PATCH 009/236] RM-5900: Document Extended Permission Service. --- rm-community/documentation/README.md | 1 + .../extendedPermissionService.md | 62 +++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 rm-community/documentation/extendedPermissionService.md diff --git a/rm-community/documentation/README.md b/rm-community/documentation/README.md index 2ad570b4f3..7f958b9eb7 100644 --- a/rm-community/documentation/README.md +++ b/rm-community/documentation/README.md @@ -2,3 +2,4 @@ * [Enterprise Technical Documentation](../../rm-enterprise/documentation/README.md) (the link will only work if this repository contains the enterprise code) * [Overview of the design of RM](overview.md) +* [Extended permission service](extendedPermissionService.md) diff --git a/rm-community/documentation/extendedPermissionService.md b/rm-community/documentation/extendedPermissionService.md new file mode 100644 index 0000000000..530cb92fa3 --- /dev/null +++ b/rm-community/documentation/extendedPermissionService.md @@ -0,0 +1,62 @@ +## Alfresco Governance Services' Extended Permission Service + +![Completeness Badge](https://img.shields.io/badge/Document_Level-Complete-green.svg?style=flat-square) + +![Version Badge](https://img.shields.io/badge/Version-Current-blue.svg?style=flat-square) + +### Purpose + +When working on the Records Management module, we needed additional functionality around permissions, and therefore +introduced the [ExtendedPermissionService](../../rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionServiceImpl.java). + +### Overview + +The ExtendedPermissionService is wired in, via [Spring config](../../rm-community-repo/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml) +to extend Alfresco's core PermissionService, and adds support for: +* the [RMPermissionModel](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMPermissionModel.java), which defines the available permissions capabilities. +* the [PermissionProcessorRegistry](../../rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionProcessorRegistry.java), which introduces pre- and post- processors. +* other minor method extensions (e.g. to setInheritParentPermissions) + +### Permission Processor Registry + +This was added in RM 2.4 to support the requirements around the additional security classifications and markings. + +The registry is simply two array lists, one for pre-processors and one for post-processors, which are iterated around +before / after (respectively) the wrapped call PermissionService.hasPermission + +Out of the box, a system with the RM module installed will have the following permissions processors defined: + +#### Community: + +##### Pre-processors: +* None. + +##### Post-processors: +* [RecordsManagementPermissionPostProcessor](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessor.java) + * If the node is an RM node (i.e. it has the [RecordsManagementModel.ASPECT_FILE_PLAN_COMPONENT](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementModel.java) marker aspect) and the + core permissions evaluates to DENIED, then this post processor allows read/writes if the appropriate read/file + permissions are present. + +#### Enterprise: +(links only work in clones of Enterprise repos) + +##### Pre-processors: +* [SecurityMarksPermissionPreProcessor](../../rm-enterprise/rm-enterprise-repo/src/main/java/org/alfresco/module/org_alfresco_module_rm/securitymarks/permission/SecurityMarksPermissionPreProcessor.java) + * For all content: denies the result if the required security clearance rules (for classification or marks) are not satisfied. (uses +[securityClearanceService.isClearedFor](../../rm-enterprise/rm-enterprise-repo/src/main/java/org/alfresco/module/org_alfresco_module_rm/securitymarks/SecurityClearanceServiceImpl.java)) + +##### Post-processors: +* None. + + +### Configuration and Extension points + +Additional processors can be defined by extending either [PermissionPreProcessorBaseImpl](../../rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionPreProcessorBaseImpl.java) +or [PermissionPostProcessorBaseImpl](../../rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionPostProcessorBaseImpl.java) +which call the add method on the appropriate list during init. + +### Performance Implications + +There is certainly a performance overhead when adding additional processing to permission checks. This is most noticeable + in the SecurityMarksPermissionPreProcessor where we need to call out to an external service. This has been profiled + heavily and optimised during 2.5 and 2.6 development. \ No newline at end of file From 68e6ac80fd18b173b4d512efd7395f4447645bca Mon Sep 17 00:00:00 2001 From: David Webster Date: Fri, 24 Nov 2017 12:43:35 +0000 Subject: [PATCH 010/236] RM-5900: minor link updates --- rm-community/documentation/extendedPermissionService.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rm-community/documentation/extendedPermissionService.md b/rm-community/documentation/extendedPermissionService.md index 530cb92fa3..e260762891 100644 --- a/rm-community/documentation/extendedPermissionService.md +++ b/rm-community/documentation/extendedPermissionService.md @@ -11,7 +11,7 @@ introduced the [ExtendedPermissionService](../../rm-community/rm-community-repo/ ### Overview -The ExtendedPermissionService is wired in, via [Spring config](../../rm-community-repo/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml) +The ExtendedPermissionService is wired in, via [Spring config](../../rm-community/rm-community-repo/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml), to extend Alfresco's core PermissionService, and adds support for: * the [RMPermissionModel](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMPermissionModel.java), which defines the available permissions capabilities. * the [PermissionProcessorRegistry](../../rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionProcessorRegistry.java), which introduces pre- and post- processors. @@ -33,7 +33,7 @@ Out of the box, a system with the RM module installed will have the following pe ##### Post-processors: * [RecordsManagementPermissionPostProcessor](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessor.java) - * If the node is an RM node (i.e. it has the [RecordsManagementModel.ASPECT_FILE_PLAN_COMPONENT](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementModel.java) marker aspect) and the + * If the node is an RM node (i.e. it has the [RecordsManagementModel.ASPECT_FILE_PLAN_COMPONENT](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementModel.java#L184) marker aspect) and the core permissions evaluates to DENIED, then this post processor allows read/writes if the appropriate read/file permissions are present. @@ -43,7 +43,7 @@ Out of the box, a system with the RM module installed will have the following pe ##### Pre-processors: * [SecurityMarksPermissionPreProcessor](../../rm-enterprise/rm-enterprise-repo/src/main/java/org/alfresco/module/org_alfresco_module_rm/securitymarks/permission/SecurityMarksPermissionPreProcessor.java) * For all content: denies the result if the required security clearance rules (for classification or marks) are not satisfied. (uses -[securityClearanceService.isClearedFor](../../rm-enterprise/rm-enterprise-repo/src/main/java/org/alfresco/module/org_alfresco_module_rm/securitymarks/SecurityClearanceServiceImpl.java)) +[securityClearanceService.isClearedFor](../../rm-enterprise/rm-enterprise-repo/src/main/java/org/alfresco/module/org_alfresco_module_rm/securitymarks/SecurityClearanceServiceImpl.java#L86)) ##### Post-processors: * None. From fee6dc886b6df81b17cc365bb903e087e5390237 Mon Sep 17 00:00:00 2001 From: David Webster Date: Fri, 24 Nov 2017 12:47:03 +0000 Subject: [PATCH 011/236] RM-5900: minor link updates --- rm-community/documentation/extendedPermissionService.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rm-community/documentation/extendedPermissionService.md b/rm-community/documentation/extendedPermissionService.md index e260762891..14da46f65e 100644 --- a/rm-community/documentation/extendedPermissionService.md +++ b/rm-community/documentation/extendedPermissionService.md @@ -11,7 +11,7 @@ introduced the [ExtendedPermissionService](../../rm-community/rm-community-repo/ ### Overview -The ExtendedPermissionService is wired in, via [Spring config](../../rm-community/rm-community-repo/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml), +The ExtendedPermissionService is wired in, via [Spring config](../../rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml#L105), to extend Alfresco's core PermissionService, and adds support for: * the [RMPermissionModel](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMPermissionModel.java), which defines the available permissions capabilities. * the [PermissionProcessorRegistry](../../rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionProcessorRegistry.java), which introduces pre- and post- processors. From 66bb30f1ec9407297392789bd88131b716338108 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Mon, 27 Nov 2017 11:22:38 +0000 Subject: [PATCH 012/236] Use apache commons Pair, rather than javafx. This makes automated import ordering simpler if nothing else. --- .../src/main/java/org/alfresco/rest/v0/RecordsAPI.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordsAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordsAPI.java index 32ae42221e..659c7d2f84 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordsAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordsAPI.java @@ -36,6 +36,7 @@ import org.alfresco.dataprep.CMISUtil.DocumentType; import org.alfresco.dataprep.ContentService; import org.alfresco.rest.core.v0.BaseAPI; import org.apache.chemistry.opencmis.client.api.CmisObject; +import org.apache.commons.lang3.tuple.Pair; import org.apache.http.HttpResponse; import org.json.JSONException; import org.json.JSONObject; @@ -44,8 +45,6 @@ import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; -import javafx.util.Pair; - /** * Methods to make API requests using v0 API on records * @@ -322,13 +321,13 @@ public class RecordsAPI extends BaseAPI { if (response.has("sharedId")) { - return new Pair<>(true, response.getString("sharedId")); + return Pair.of(true, response.getString("sharedId")); } } catch (JSONException e) { LOGGER.info("Unable to extract response parameter", e); } - return new Pair<>(false, String.valueOf(response.getJSONObject("status").getInt("code"))); + return Pair.of(false, String.valueOf(response.getJSONObject("status").getInt("code"))); } /** From dafb2165de1e0c34276dff756446bcc2ccd2e399 Mon Sep 17 00:00:00 2001 From: David Webster Date: Wed, 6 Dec 2017 09:50:50 +0000 Subject: [PATCH 013/236] Documentation updates following review --- .../documentation/extendedPermissionService.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/rm-community/documentation/extendedPermissionService.md b/rm-community/documentation/extendedPermissionService.md index 14da46f65e..abc7d4a7d5 100644 --- a/rm-community/documentation/extendedPermissionService.md +++ b/rm-community/documentation/extendedPermissionService.md @@ -11,7 +11,7 @@ introduced the [ExtendedPermissionService](../../rm-community/rm-community-repo/ ### Overview -The ExtendedPermissionService is wired in, via [Spring config](../../rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml#L105), +The ExtendedPermissionService is wired in, via [Spring config](../../rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/extended-repository-context.xml), to extend Alfresco's core PermissionService, and adds support for: * the [RMPermissionModel](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMPermissionModel.java), which defines the available permissions capabilities. * the [PermissionProcessorRegistry](../../rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionProcessorRegistry.java), which introduces pre- and post- processors. @@ -33,7 +33,7 @@ Out of the box, a system with the RM module installed will have the following pe ##### Post-processors: * [RecordsManagementPermissionPostProcessor](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessor.java) - * If the node is an RM node (i.e. it has the [RecordsManagementModel.ASPECT_FILE_PLAN_COMPONENT](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementModel.java#L184) marker aspect) and the + * If the node is an RM node (i.e. it has the [RecordsManagementModel.ASPECT_FILE_PLAN_COMPONENT](../../rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementModel.java) marker aspect) and the core permissions evaluates to DENIED, then this post processor allows read/writes if the appropriate read/file permissions are present. @@ -43,7 +43,7 @@ Out of the box, a system with the RM module installed will have the following pe ##### Pre-processors: * [SecurityMarksPermissionPreProcessor](../../rm-enterprise/rm-enterprise-repo/src/main/java/org/alfresco/module/org_alfresco_module_rm/securitymarks/permission/SecurityMarksPermissionPreProcessor.java) * For all content: denies the result if the required security clearance rules (for classification or marks) are not satisfied. (uses -[securityClearanceService.isClearedFor](../../rm-enterprise/rm-enterprise-repo/src/main/java/org/alfresco/module/org_alfresco_module_rm/securitymarks/SecurityClearanceServiceImpl.java#L86)) +[securityClearanceService.isClearedFor](../../rm-enterprise/rm-enterprise-repo/src/main/java/org/alfresco/module/org_alfresco_module_rm/securitymarks/SecurityClearanceServiceImpl.java)) ##### Post-processors: * None. @@ -59,4 +59,10 @@ which call the add method on the appropriate list during init. There is certainly a performance overhead when adding additional processing to permission checks. This is most noticeable in the SecurityMarksPermissionPreProcessor where we need to call out to an external service. This has been profiled - heavily and optimised during 2.5 and 2.6 development. \ No newline at end of file + heavily and optimised during 2.5 and 2.6 development. + + ###TODO: + Not yet documented (in related areas of the code) are: + * Capabilities (see rm-capabilities-*.xml, declarativeCapability.java and DeclarativeCompositeCapability.java) + * RM's permission system has an any allow allows policy unlike alfresco which policy is any deny denies + \ No newline at end of file From f45d95221743bf35a3962ccc47367bf6f5c1ae85 Mon Sep 17 00:00:00 2001 From: Ana Bozianu Date: Fri, 8 Dec 2017 07:53:22 +0000 Subject: [PATCH 014/236] MNT-18502 - filtered out dod properties if the node is not a dod record --- .../email/RFC822MetadataExtracter.java | 23 ++- .../RFC822MetadataExtracterUnitTest.java | 169 ++++++++++++++++++ 2 files changed, 191 insertions(+), 1 deletion(-) create mode 100644 rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracterUnitTest.java diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracter.java index 4ef27fbd86..b601d84d22 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracter.java @@ -33,6 +33,7 @@ import java.util.Map; import java.util.Set; import org.alfresco.model.ContentModel; +import org.alfresco.module.org_alfresco_module_rm.dod5015.DOD5015Model; import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel; import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.service.cmr.repository.NodeService; @@ -69,7 +70,13 @@ public class RFC822MetadataExtracter extends org.alfresco.repo.content.metadata. protected void filterSystemProperties(Map systemProperties, Map targetProperties) { NodeRef nodeRef = getNodeRef(targetProperties); - if (nodeRef == null || !nodeService.hasAspect(nodeRef, RecordsManagementModel.ASPECT_RECORD)) + if(nodeRef == null) + { + return; + } + + // Remove record properties from non-record nodes + if (!nodeService.hasAspect(nodeRef, RecordsManagementModel.ASPECT_RECORD)) { // Remove all rm namespace properties from the system map Map clone = new HashMap(systemProperties); @@ -81,6 +88,20 @@ public class RFC822MetadataExtracter extends org.alfresco.repo.content.metadata. } } } + + // Remove dod5015 properties from non-dod5015 nodes + if (!nodeService.hasAspect(nodeRef, DOD5015Model.ASPECT_DOD_5015_RECORD)) + { + // Remove all dod5015 namespace properties from the system map + Map clone = new HashMap<>(systemProperties); + for (QName propName : clone.keySet()) + { + if (DOD5015Model.DOD_URI.equals(propName.getNamespaceURI())) + { + systemProperties.remove(propName); + } + } + } } /** diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracterUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracterUnitTest.java new file mode 100644 index 0000000000..3c37670754 --- /dev/null +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracterUnitTest.java @@ -0,0 +1,169 @@ +/* + * #%L + * Alfresco Records Management Module + * %% + * Copyright (C) 2005 - 2017 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * - + * Alfresco 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 Lesser General Public License for more details. + * - + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ +package org.alfresco.module.org_alfresco_module_rm.email; + +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; +import static org.mockito.Mockito.when; + +import java.io.Serializable; +import java.util.Date; +import java.util.HashMap; +import java.util.Map; + +import com.google.common.collect.ImmutableMap; + +import org.alfresco.model.ContentModel; +import org.alfresco.module.org_alfresco_module_rm.dod5015.DOD5015Model; +import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel; +import org.alfresco.module.org_alfresco_module_rm.test.util.BaseUnitTest; +import org.alfresco.service.cmr.repository.NodeRef; +import org.alfresco.service.namespace.QName; +import org.junit.Test; +import org.mockito.InjectMocks; + +/** + * Unit test for RFC822MetadataExtracter + * + * @author Ana Manolache + * @since 2.7 + */ +public class RFC822MetadataExtracterUnitTest extends BaseUnitTest +{ + @InjectMocks + private RFC822MetadataExtracter metadataExtracter; + + private static final Map COMMON_PROPERTIES = ImmutableMap.of( + ContentModel.PROP_NAME, "Name", + ContentModel.PROP_TITLE, "Title"); + private static final Map RECORD_PROPERTIES = ImmutableMap.of( + RecordsManagementModel.PROP_DECLARED_BY, "DeclaredBy", + RecordsManagementModel.PROP_DECLARED_AT, new Date()); + private static final Map DOD_PROPERTIES = ImmutableMap.of( + DOD5015Model.PROP_ORIGINATOR, "DODOriginator", + DOD5015Model.PROP_ADDRESS, "Title"); + + /** + * Given a node that is not a record nor a dod record + * and has record and dod record properties + * When the method is called + * Then the record properties and dod properties are filtered out + */ + @Test + public void testRemoveSensitivePropertiesFromCommonNodes() + { + // Given + NodeRef node = generateNodeRef(); + when(mockedNodeService.hasAspect(node, RecordsManagementModel.ASPECT_RECORD)).thenReturn(false); + when(mockedNodeService.hasAspect(node, DOD5015Model.ASPECT_DOD_5015_RECORD)).thenReturn(false); + + // When + Map systemProperties = new HashMap<>(COMMON_PROPERTIES); + systemProperties.putAll(RECORD_PROPERTIES); + systemProperties.putAll(DOD_PROPERTIES); + metadataExtracter.filterSystemProperties(systemProperties, generateTargetProperties(node)); + + // Then + assertTrue("Sensitive properties were not properly filtered out.", + systemProperties.keySet().equals(COMMON_PROPERTIES.keySet())); + } + + /** + * Given a node that is a record + * and has record properties and dod properties + * When the method is called + * Then the DOD properties are filtered out + * and common and record properties are preserved + */ + @Test + public void testRemoveDodPropertiesFromRecordNodes() + { + // Given + NodeRef node = generateNodeRef(); + when(mockedNodeService.hasAspect(node, RecordsManagementModel.ASPECT_RECORD)).thenReturn(true); + when(mockedNodeService.hasAspect(node, DOD5015Model.ASPECT_DOD_5015_RECORD)).thenReturn(false); + + // When + Map systemProperties = new HashMap<>(COMMON_PROPERTIES); + systemProperties.putAll(RECORD_PROPERTIES); + systemProperties.putAll(DOD_PROPERTIES); + metadataExtracter.filterSystemProperties(systemProperties, generateTargetProperties(node)); + + // Then + assertTrue("Common properties should not be filtered out from record nodes.", + systemProperties.keySet().containsAll(COMMON_PROPERTIES.keySet())); + assertTrue("Record properties should not be filtered out from record nodes.", + systemProperties.keySet().containsAll(RECORD_PROPERTIES.keySet())); + assertFalse("Sensitive DOD properties were not properly filtered out from record nodes.", + systemProperties.keySet().removeAll(DOD_PROPERTIES.keySet())); + } + + /** + * Given a node that is a dod record + * and has record properties and dod properties + * When the method is called + * Then the record properties are filtered out + * and common and DOD properties are preserved + */ + @Test + public void testRemoveRecordPropertiesFromDodNodes() + { + // Given + NodeRef node = generateNodeRef(); + when(mockedNodeService.hasAspect(node, RecordsManagementModel.ASPECT_RECORD)).thenReturn(false); + when(mockedNodeService.hasAspect(node, DOD5015Model.ASPECT_DOD_5015_RECORD)).thenReturn(true); + + // When + Map systemProperties = new HashMap<>(COMMON_PROPERTIES); + systemProperties.putAll(RECORD_PROPERTIES); + systemProperties.putAll(DOD_PROPERTIES); + metadataExtracter.filterSystemProperties(systemProperties, generateTargetProperties(node)); + + // Then + assertTrue("Common properties should not be filtered out from DOD nodes.", + systemProperties.keySet().containsAll(COMMON_PROPERTIES.keySet())); + assertTrue("DOD properties should not be filtered out from DOD nodes.", + systemProperties.keySet().containsAll(DOD_PROPERTIES.keySet())); + assertFalse("Sensitive record properties were not properly filtered out from DOD nodes.", + systemProperties.keySet().removeAll(RECORD_PROPERTIES.keySet())); + } + + /** + * Helper method that generates target properties such as the given node is retrieved from them + * + * @param node the node to represent in the properties + * @return the list of properties containing the node's information + */ + private Map generateTargetProperties(NodeRef node) + { + Map targetProperties = new HashMap<>(); + targetProperties.put(ContentModel.PROP_STORE_PROTOCOL, node.getStoreRef().getProtocol()); + targetProperties.put(ContentModel.PROP_STORE_IDENTIFIER, node.getStoreRef().getIdentifier()); + targetProperties.put(ContentModel.PROP_NODE_UUID, node.getId()); + return targetProperties; + } +} From 785ce90dd0956c3f37abd9730ae11a0f5e55ff1a Mon Sep 17 00:00:00 2001 From: Tom Page Date: Mon, 18 Dec 2017 15:24:36 +0000 Subject: [PATCH 015/236] Revert community pom change "Fix h2scripts version..." This partially reverts commit 0c5c9a081a098af0fac9c2b2e00d9f5da33c81c1. --- rm-community/rm-community-repo/pom.xml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index f858b46ea5..c391029aad 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -25,8 +25,6 @@ alfresco-rm-community-repo true ${project.build.directory}/solr/home - - 5.1.1 1.4 @@ -364,7 +362,7 @@ ${alfresco.groupId} alfresco-repository - ${alfresco.h2scripts.version} + ${alfresco.version} h2scripts @@ -615,7 +613,7 @@ ${alfresco.groupId} alfresco-repository - ${alfresco.h2scripts.version} + ${alfresco.version} h2scripts From e54ab8dcead8e40d84f816ace7771f25e60c2cd4 Mon Sep 17 00:00:00 2001 From: Elena Hardon Date: Thu, 21 Dec 2017 10:58:30 +0200 Subject: [PATCH 016/236] RM-5970 - Removed onCopyComplete method from RecordComponentIdentifierAspect because it was overwriting the existing unique id for a record on copy to action --- .../RecordComponentIdentifierAspect.java | 28 +------------------ 1 file changed, 1 insertion(+), 27 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordComponentIdentifierAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordComponentIdentifierAspect.java index 8395eb92ea..7238e68188 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordComponentIdentifierAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordComponentIdentifierAspect.java @@ -63,8 +63,7 @@ import org.springframework.extensions.surf.util.I18NUtil; ) public class RecordComponentIdentifierAspect extends BaseBehaviourBean implements NodeServicePolicies.OnUpdatePropertiesPolicy, - NodeServicePolicies.BeforeDeleteNodePolicy, - CopyServicePolicies.OnCopyCompletePolicy + NodeServicePolicies.BeforeDeleteNodePolicy { /** I18N */ private static final String MSG_SET_ID = "rm.service.set-id"; @@ -177,31 +176,6 @@ public class RecordComponentIdentifierAspect extends BaseBehaviourBean return new DoNothingCopyBehaviourCallback(); } - @SuppressWarnings("rawtypes") - @Override - @Behaviour - ( - kind = BehaviourKind.CLASS, - notificationFrequency = NotificationFrequency.TRANSACTION_COMMIT - ) - public void onCopyComplete(QName classRef, NodeRef sourceNodeRef, NodeRef targetNodeRef, boolean copyToNewNode, Map copyMap) - { - //Generate the id for the copy - String id = identifierService.generateIdentifier( - nodeService.getType(nodeService.getPrimaryParent(targetNodeRef).getParentRef()), - nodeService.getPrimaryParent(targetNodeRef).getParentRef()); - - //We need to allow the id to be overwritten disable the policy protecting changes to the id - behaviourFilter.disableBehaviour(); - try - { - nodeService.setProperty(targetNodeRef, PROP_IDENTIFIER, id); - } - finally - { - behaviourFilter.enableBehaviour(); - } - } /** * Updates the uniqueness check using the values provided. If the after value is null From ab42ad19d5ac884bdb8a6738f4e071aac49dc9dd Mon Sep 17 00:00:00 2001 From: Elena Hardon Date: Wed, 27 Dec 2017 13:15:13 +0200 Subject: [PATCH 017/236] RM-5970 - Added integration test for copy to action --- .../test/integration/issue/RM5225Test.java | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java new file mode 100644 index 0000000000..5653b440bf --- /dev/null +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java @@ -0,0 +1,49 @@ +package org.alfresco.module.org_alfresco_module_rm.test.integration.issue; + +import org.alfresco.module.org_alfresco_module_rm.test.util.BaseRMTestCase; +import org.alfresco.service.cmr.repository.NodeRef; +import org.springframework.extensions.webscripts.GUID; + +public class RM5225Test extends BaseRMTestCase +{ + /** + * Given the RM site, a record category created in the fileplan, a record foler containing a record + * When we create a copy from the existing record + * Then the created record name contains both the name of the record from which it was created and the unique identifier of the current record. + */ + public void testCopyToRecord() + { + doBehaviourDrivenTest(new BehaviourDrivenTest() + { + private NodeRef record; + private NodeRef copiedRecord; + + public void given() + { + + /** Create record category. */ + NodeRef recordCategory = filePlanService.createRecordCategory(filePlan, GUID.generate()); + + /** Create record folder. */ + NodeRef recordFolder = recordFolderService.createRecordFolder(recordCategory, GUID.generate()); + + /** File record. */ + record = utils.createRecord(recordFolder, GUID.generate()); + } + + public void when() + { + /** Create a copy of the original record */ + copiedRecord = recordService.createRecordFromCopy(filePlan, record); + } + + public void then() + { + /** Check if the copied record contains the name of the record from which is copied. */ + assertTrue(nodeService.getProperty(copiedRecord, PROP_NAME).toString().contains(nodeService.getProperty(record, PROP_NAME).toString())); + /** Check if the copied record name contains its unique id. */ + assertTrue(nodeService.getProperty(copiedRecord, PROP_NAME).toString().contains(nodeService.getProperty(copiedRecord, PROP_IDENTIFIER).toString())); + } + }); + } +} From 4a145de54e033a4748addca1bca2da64aa84de80 Mon Sep 17 00:00:00 2001 From: Ana Manolache Date: Wed, 3 Jan 2018 12:01:00 +0200 Subject: [PATCH 018/236] update headers to 2018 --- .../main/java/org/alfresco/rest/core/RMRestProperties.java | 2 +- .../src/main/java/org/alfresco/rest/core/RMRestWrapper.java | 2 +- .../src/main/java/org/alfresco/rest/core/RestAPIFactory.java | 2 +- .../src/main/java/org/alfresco/rest/core/v0/APIUtils.java | 2 +- .../src/main/java/org/alfresco/rest/core/v0/BaseAPI.java | 2 +- .../alfresco/rest/rm/community/model/common/IdNamePair.java | 2 +- .../org/alfresco/rest/rm/community/model/common/Owner.java | 2 +- .../org/alfresco/rest/rm/community/model/common/Path.java | 2 +- .../alfresco/rest/rm/community/model/common/ReviewPeriod.java | 2 +- .../rest/rm/community/model/custom/CustomDefinitions.java | 2 +- .../alfresco/rest/rm/community/model/fileplan/FilePlan.java | 2 +- .../rest/rm/community/model/fileplan/FilePlanProperties.java | 2 +- .../model/fileplancomponents/FilePlanComponentAlias.java | 2 +- .../model/fileplancomponents/FilePlanComponentAspects.java | 2 +- .../model/fileplancomponents/FilePlanComponentFields.java | 2 +- .../model/fileplancomponents/FilePlanComponentType.java | 2 +- .../org/alfresco/rest/rm/community/model/record/Record.java | 2 +- .../rest/rm/community/model/record/RecordBodyFile.java | 2 +- .../rest/rm/community/model/record/RecordContent.java | 2 +- .../rest/rm/community/model/record/RecordProperties.java | 2 +- .../rm/community/model/recordcategory/RecordCategory.java | 2 +- .../community/model/recordcategory/RecordCategoryChild.java | 2 +- .../model/recordcategory/RecordCategoryChildCollection.java | 2 +- .../model/recordcategory/RecordCategoryChildEntry.java | 2 +- .../model/recordcategory/RecordCategoryChildProperties.java | 4 ++-- .../model/recordcategory/RecordCategoryCollection.java | 2 +- .../community/model/recordcategory/RecordCategoryEntry.java | 2 +- .../model/recordcategory/RecordCategoryProperties.java | 4 ++-- .../rest/rm/community/model/recordfolder/RecordFolder.java | 2 +- .../community/model/recordfolder/RecordFolderCollection.java | 2 +- .../rm/community/model/recordfolder/RecordFolderEntry.java | 2 +- .../community/model/recordfolder/RecordFolderProperties.java | 4 ++-- .../alfresco/rest/rm/community/model/rules/ActionsOnRule.java | 2 +- .../rest/rm/community/model/rules/ConditionsOnRule.java | 2 +- .../rest/rm/community/model/rules/RuleDefinition.java | 2 +- .../org/alfresco/rest/rm/community/model/site/RMSite.java | 2 +- .../rest/rm/community/model/site/RMSiteCompliance.java | 2 +- .../alfresco/rest/rm/community/model/site/RMSiteFields.java | 2 +- .../alfresco/rest/rm/community/model/transfer/Transfer.java | 2 +- .../rest/rm/community/model/transfer/TransferChild.java | 2 +- .../rm/community/model/transfer/TransferChildCollection.java | 2 +- .../rest/rm/community/model/transfer/TransferChildEntry.java | 2 +- .../rm/community/model/transfer/TransferChildProperties.java | 2 +- .../rest/rm/community/model/transfer/TransferCollection.java | 2 +- .../rest/rm/community/model/transfer/TransferEntry.java | 2 +- .../rest/rm/community/model/transfer/TransferProperties.java | 2 +- .../community/model/transfercontainer/TransferContainer.java | 2 +- .../model/transfercontainer/TransferContainerProperties.java | 2 +- .../rm/community/model/unfiledcontainer/UnfiledContainer.java | 2 +- .../model/unfiledcontainer/UnfiledContainerChild.java | 2 +- .../unfiledcontainer/UnfiledContainerChildCollection.java | 2 +- .../model/unfiledcontainer/UnfiledContainerChildEntry.java | 2 +- .../unfiledcontainer/UnfiledContainerChildProperties.java | 4 ++-- .../model/unfiledcontainer/UnfiledContainerProperties.java | 2 +- .../community/model/unfiledcontainer/UnfiledRecordFolder.java | 2 +- .../rest/rm/community/model/user/UserPermissions.java | 2 +- .../org/alfresco/rest/rm/community/model/user/UserRoles.java | 2 +- .../alfresco/rest/rm/community/requests/RMModelRequest.java | 2 +- .../alfresco/rest/rm/community/requests/gscore/GSCoreAPI.java | 2 +- .../rest/rm/community/requests/gscore/api/FilePlanAPI.java | 2 +- .../rest/rm/community/requests/gscore/api/FilesAPI.java | 2 +- .../rest/rm/community/requests/gscore/api/RMSiteAPI.java | 2 +- .../rest/rm/community/requests/gscore/api/RMUserAPI.java | 2 +- .../rm/community/requests/gscore/api/RecordCategoryAPI.java | 2 +- .../rm/community/requests/gscore/api/RecordFolderAPI.java | 2 +- .../rest/rm/community/requests/gscore/api/RecordsAPI.java | 2 +- .../rest/rm/community/requests/gscore/api/TransferAPI.java | 2 +- .../community/requests/gscore/api/TransferContainerAPI.java | 2 +- .../rm/community/requests/gscore/api/UnfiledContainerAPI.java | 2 +- .../community/requests/gscore/api/UnfiledRecordFolderAPI.java | 2 +- .../org/alfresco/rest/rm/community/util/CommonTestUtils.java | 2 +- .../rest/rm/community/util/FilePlanComponentMixIn.java | 2 +- .../org/alfresco/rest/rm/community/util/ParameterCheck.java | 2 +- .../java/org/alfresco/rest/rm/community/util/PojoUtility.java | 2 +- .../rest/rm/community/util/ReviewPeriodSerializer.java | 2 +- .../rest/rm/community/util/UnfiledContainerChildMixin.java | 2 +- .../src/main/java/org/alfresco/rest/v0/CopyToAPI.java | 2 +- .../main/java/org/alfresco/rest/v0/CustomDefinitionsAPI.java | 2 +- .../main/java/org/alfresco/rest/v0/RMRolesAndActionsAPI.java | 2 +- .../main/java/org/alfresco/rest/v0/RecordCategoriesAPI.java | 2 +- .../src/main/java/org/alfresco/rest/v0/RecordFoldersAPI.java | 2 +- .../src/main/java/org/alfresco/rest/v0/RecordsAPI.java | 2 +- .../src/main/java/org/alfresco/rest/v0/RulesAPI.java | 2 +- .../src/main/java/org/alfresco/rest/v0/SearchAPI.java | 2 +- .../src/main/java/org/alfresco/rest/v0/UserTrashcanAPI.java | 2 +- .../alfresco/rest/rm/community/base/AllowableOperations.java | 2 +- .../org/alfresco/rest/rm/community/base/BaseRMRestTest.java | 2 +- .../alfresco/rest/rm/community/base/DataProviderClass.java | 2 +- .../java/org/alfresco/rest/rm/community/base/TestData.java | 2 +- .../alfresco/rest/rm/community/fileplans/FilePlanTests.java | 2 +- .../rest/rm/community/files/DeclareDocumentAsRecordTests.java | 2 +- .../rm/community/recordcategories/RecordCategoryTests.java | 2 +- .../rm/community/recordfolders/ElectronicRecordTests.java | 2 +- .../rm/community/recordfolders/NonElectronicRecordTests.java | 2 +- .../rest/rm/community/recordfolders/RecordFolderTests.java | 2 +- .../rest/rm/community/records/CompleteRecordTests.java | 2 +- .../alfresco/rest/rm/community/records/DeleteRecordTests.java | 2 +- .../alfresco/rest/rm/community/records/FileRecordsTests.java | 2 +- .../alfresco/rest/rm/community/records/ReadRecordTests.java | 2 +- .../rest/rm/community/records/UpdateRecordsTests.java | 2 +- .../alfresco/rest/rm/community/search/ShareLiveSearch.java | 2 +- .../java/org/alfresco/rest/rm/community/site/RMSiteTests.java | 2 +- .../rm/community/unfiledcontainers/UnfiledContainerTests.java | 2 +- .../unfiledrecordfolders/UnfiledRecordsFolderTests.java | 2 +- .../java/org/alfresco/rest/rm/community/utils/CoreUtil.java | 2 +- .../rest/rm/community/utils/FilePlanComponentsUtil.java | 2 +- .../java/org/alfresco/rest/rm/community/utils/RMSiteUtil.java | 2 +- .../bootstrap/content/notify-records-due-for-review-email.ftl | 2 +- .../bootstrap/content/onCreate_supersedes.js | 2 +- .../bootstrap/content/record-rejected-email.ftl | 2 +- .../bootstrap/content/record-superseded-email.ftl | 2 +- .../org_alfresco_module_rm/bootstrap/content/rma_isClosed.js | 2 +- .../bootstrap/report/report_rmr_destructionReport.html.ftl | 2 +- .../bootstrap/report/report_rmr_holdReport.html.ftl | 2 +- .../bootstrap/report/report_rmr_transferReport.html.ftl | 2 +- .../alfresco/repository/dictionary/rm-classes.get.json.ftl | 2 +- .../alfresco/repository/dictionary/rm-properties.get.json.ftl | 2 +- .../alfresco/repository/roles/rm-authorities.delete.json.ftl | 2 +- .../alfresco/repository/roles/rm-authorities.post.json.ftl | 2 +- .../repository/roles/rm-dynamicauthorities.get.json.ftl | 2 +- .../rule/rm-actionconditiondefinitions.get.json.ftl | 2 +- .../repository/rule/rm-actiondefinitions.get.json.ftl | 2 +- .../rm-substitutionsuggestions.get.json.ftl | 2 +- .../org/alfresco/repository/version/rm-version.get.js | 2 +- .../org/alfresco/repository/version/rm-version.get.json.ftl | 2 +- .../org/alfresco/rma/admin/emailmap.delete.json.ftl | 2 +- .../webscripts/org/alfresco/rma/admin/emailmap.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/admin/emailmap.lib.ftl | 2 +- .../webscripts/org/alfresco/rma/admin/emailmap.post.json.ftl | 2 +- .../org/alfresco/rma/admin/emailmapkeys.get.json.ftl | 2 +- .../org/alfresco/rma/admin/rmconstraint/rmconstraint-utils.js | 2 +- .../alfresco/rma/admin/rmconstraint/rmconstraint.delete.js | 2 +- .../rma/admin/rmconstraint/rmconstraint.delete.json.ftl | 2 +- .../org/alfresco/rma/admin/rmconstraint/rmconstraint.get.js | 2 +- .../alfresco/rma/admin/rmconstraint/rmconstraint.get.json.ftl | 2 +- .../org/alfresco/rma/admin/rmconstraint/rmconstraint.lib.ftl | 2 +- .../alfresco/rma/admin/rmconstraint/rmconstraint.put.json.ftl | 2 +- .../alfresco/rma/admin/rmconstraint/rmconstraint.put.json.js | 2 +- .../org/alfresco/rma/admin/rmconstraint/rmconstraints.get.js | 2 +- .../rma/admin/rmconstraint/rmconstraints.get.json.ftl | 2 +- .../rma/admin/rmconstraint/rmconstraints.post.json.ftl | 2 +- .../rma/admin/rmconstraint/rmconstraints.post.json.js | 2 +- .../rma/admin/rmconstraint/values/rmconstraint.get.js | 2 +- .../rma/admin/rmconstraint/values/rmconstraint.get.json.ftl | 2 +- .../rma/admin/rmconstraint/values/rmconstraint.post.json.ftl | 2 +- .../rma/admin/rmconstraint/values/rmconstraint.post.json.js | 2 +- .../rma/admin/rmconstraint/values/rmconstraintvalue.delete.js | 2 +- .../rmconstraint/values/rmconstraintvalue.delete.json.ftl | 2 +- .../rma/admin/rmconstraint/values/rmconstraintvalue.get.js | 2 +- .../admin/rmconstraint/values/rmconstraintvalue.get.json.ftl | 2 +- .../org/alfresco/rma/admin/rmevent/rmevent.delete.json.ftl | 2 +- .../org/alfresco/rma/admin/rmevent/rmevent.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/admin/rmevent/rmevent.lib.ftl | 2 +- .../org/alfresco/rma/admin/rmevent/rmevent.put.json.ftl | 2 +- .../org/alfresco/rma/admin/rmevent/rmevents.get.json.ftl | 2 +- .../org/alfresco/rma/admin/rmevent/rmevents.post.json.ftl | 2 +- .../org/alfresco/rma/admin/rmevent/rmeventtypes.get.json.ftl | 2 +- .../org/alfresco/rma/admin/rmrole/rmrole.delete.json.ftl | 2 +- .../org/alfresco/rma/admin/rmrole/rmrole.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/admin/rmrole/rmrole.lib.ftl | 2 +- .../org/alfresco/rma/admin/rmrole/rmrole.put.json.ftl | 2 +- .../org/alfresco/rma/admin/rmrole/rmroles.get.json.ftl | 2 +- .../org/alfresco/rma/admin/rmrole/rmroles.post.json.ftl | 2 +- .../org/alfresco/rma/applydodcertmodelfixes.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/applyfixmob1573.get.json.ftl | 2 +- .../org/alfresco/rma/bootstraptestdata.get.json.ftl | 2 +- .../org/alfresco/rma/capability/capabilities.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/customisable.get.json.ftl | 2 +- .../org/alfresco/rma/custompropdefinition.delete.json.ftl | 2 +- .../org/alfresco/rma/custompropdefinition.post.json.ftl | 2 +- .../org/alfresco/rma/custompropdefinition.put.json.ftl | 2 +- .../org/alfresco/rma/custompropdefinitions.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/customref.delete.json.ftl | 2 +- .../webscripts/org/alfresco/rma/customref.post.json.ftl | 2 +- .../org/alfresco/rma/customrefdefinition.post.json.ftl | 2 +- .../org/alfresco/rma/customrefdefinition.put.json.ftl | 2 +- .../org/alfresco/rma/customrefdefinitions.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/customrefs.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/dataset.post.json.ftl | 2 +- .../webscripts/org/alfresco/rma/datasets.get.json.ftl | 2 +- .../alfresco/rma/dispositionactiondefinition.delete.json.ftl | 2 +- .../org/alfresco/rma/dispositionactiondefinition.lib.ftl | 2 +- .../org/alfresco/rma/dispositionactiondefinition.put.json.ftl | 2 +- .../alfresco/rma/dispositionactiondefinitions.post.json.ftl | 2 +- .../org/alfresco/rma/dispositionlifecycle.get.json.ftl | 2 +- .../org/alfresco/rma/dispositionproperties.get.json.ftl | 2 +- .../org/alfresco/rma/dispositionschedule.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/dodcustomtypes.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/export.post.html.status.ftl | 2 +- .../webscripts/org/alfresco/rma/fileplanreport.get.js | 2 +- .../webscripts/org/alfresco/rma/fileplanreport.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/fileplanreport.lib.ftl | 2 +- .../templates/webscripts/org/alfresco/rma/hold.post.json.ftl | 2 +- .../templates/webscripts/org/alfresco/rma/hold.put.json.ftl | 2 +- .../templates/webscripts/org/alfresco/rma/holds.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/import.post.html.ftl | 2 +- .../webscripts/org/alfresco/rma/import.post.json.ftl | 2 +- .../webscripts/org/alfresco/rma/listofvalues.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/listofvalues.lib.ftl | 2 +- .../org/alfresco/rma/recordmetadataaspects.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/relationship.delete.json.ftl | 2 +- .../org/alfresco/rma/relationshiplabels.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/relationships.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/rmaction.post.json.ftl | 2 +- .../webscripts/org/alfresco/rma/rmauditlog.delete.json.ftl | 2 +- .../templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl | 2 +- .../webscripts/org/alfresco/rma/rmauditlog.put.json.ftl | 2 +- .../webscripts/org/alfresco/rma/rmauditlogstatus.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/rmconstraints.get.json.ftl | 2 +- .../webscripts/org/alfresco/rma/rmpermissions.post.json.ftl | 2 +- .../webscripts/org/alfresco/rma/rmpermissions.post.json.js | 2 +- .../webscripts/org/alfresco/rma/userrightsreport.get.json.ftl | 2 +- .../alfresco/slingshot/documentlibrary-v2/rm-doclist.get.js | 2 +- .../slingshot/documentlibrary-v2/rm-doclist.get.json.ftl | 2 +- .../alfresco/slingshot/documentlibrary-v2/rm-doclist.lib.js | 2 +- .../alfresco/slingshot/documentlibrary-v2/rm-filters.lib.js | 2 +- .../org/alfresco/slingshot/documentlibrary-v2/rm-node.get.js | 2 +- .../slingshot/documentlibrary-v2/rm-node.get.json.ftl | 2 +- .../slingshot/documentlibrary-v2/rm-parse-args.lib.js | 2 +- .../action/recorded-version-config.get.json.ftl | 2 +- .../action/recorded-version-config.post.json.ftl | 2 +- .../slingshot/documentlibrary/action/rm-copy-to.post.json.ftl | 2 +- .../slingshot/documentlibrary/action/rm-copy-to.post.json.js | 2 +- .../slingshot/documentlibrary/action/rm-link.post.json.ftl | 2 +- .../slingshot/documentlibrary/action/rm-link.post.json.js | 2 +- .../slingshot/documentlibrary/action/rm-move-to.post.json.ftl | 2 +- .../slingshot/documentlibrary/action/rm-move-to.post.json.js | 2 +- .../alfresco/slingshot/documentlibrary/rm-permissions.get.js | 2 +- .../slingshot/documentlibrary/rm-permissions.get.json.ftl | 2 +- .../slingshot/documentlibrary/rm-savedsearches.get.js | 2 +- .../slingshot/documentlibrary/rm-savedsearches.get.json.ftl | 2 +- .../org/alfresco/slingshot/documentlibrary/rm-transfer.get.js | 2 +- .../slingshot/documentlibrary/rm-transfer.get.json.ftl | 2 +- .../org/alfresco/slingshot/documentlibrary/rm-treenode.get.js | 2 +- .../slingshot/documentlibrary/rm-treenode.get.json.ftl | 2 +- .../org/alfresco/slingshot/forms/metadata.get.json.ftl | 2 +- .../org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.js | 2 +- .../alfresco/slingshot/rmsearch/faceted/rmsearch.get.json.ftl | 2 +- .../org/alfresco/slingshot/rmsearch/faceted/rmsearch.lib.js | 2 +- .../slingshot/rmsearch/rmsavedsearches.delete.json.ftl | 2 +- .../alfresco/slingshot/rmsearch/rmsavedsearches.get.json.ftl | 2 +- .../alfresco/slingshot/rmsearch/rmsavedsearches.post.json.ftl | 2 +- .../org/alfresco/slingshot/rmsearch/rmsearch.get.json.ftl | 2 +- .../slingshot/rmsearch/rmsearchproperties.get.json.ftl | 2 +- .../org/alfresco/slingshot/search/live-search.lib.js | 2 +- .../caveat/RMListOfValuesConstraint.java | 2 +- .../CannotApplyConstraintMetadataException.java | 2 +- .../org_alfresco_module_rm/CustomMetadataException.java | 2 +- .../InvalidCustomAspectMetadataException.java | 2 +- .../NotCustomisableMetadataException.java | 2 +- .../PropertyAlreadyExistsMetadataException.java | 2 +- .../org_alfresco_module_rm/RecordsManagementAdminService.java | 2 +- .../org_alfresco_module_rm/RecordsManagementService.java | 2 +- .../org_alfresco_module_rm/RecordsManagementServiceImpl.java | 2 +- .../audit/RecordsManagementAuditServiceDeprecated.java | 2 +- .../module/org_alfresco_module_rm/caveat/PivotUtil.java | 2 +- .../caveat/RMCaveatConfigComponent.java | 2 +- .../caveat/RMCaveatConfigComponentImpl.java | 2 +- .../org_alfresco_module_rm/caveat/RMCaveatConfigService.java | 2 +- .../caveat/RMCaveatConfigServiceImpl.java | 2 +- .../org_alfresco_module_rm/caveat/RMConstraintInfo.java | 2 +- .../caveat/RMConstraintMessageKeys.java | 2 +- .../caveat/RMListOfValuesConstraint.java | 2 +- .../module/org_alfresco_module_rm/caveat/ScriptAuthority.java | 2 +- .../org_alfresco_module_rm/caveat/ScriptConstraint.java | 2 +- .../caveat/ScriptConstraintAuthority.java | 2 +- .../org_alfresco_module_rm/caveat/ScriptConstraintValue.java | 2 +- .../caveat/ScriptRMCaveatConfigService.java | 2 +- .../compatibility/CompatibilityModel.java | 2 +- .../security/DeprecatedExtendedSecurityService.java | 2 +- .../security/ExtendedReaderDynamicAuthority.java | 2 +- .../security/ExtendedSecurityBaseDynamicAuthority.java | 2 +- .../security/ExtendedWriterDynamicAuthority.java | 2 +- .../security/FilePlanAuthenticationService.java | 2 +- .../security/FilePlanAuthenticationServiceImpl.java | 2 +- .../security/RecordsManagementSecurityService.java | 2 +- .../security/RecordsManagementSecurityServiceImpl.java | 2 +- .../alfresco/module/org_alfresco_module_rm/security/Role.java | 2 +- .../org_alfresco_module_rm/RecordsManagementPolicies.java | 2 +- .../RecordsManagementServiceRegistry.java | 2 +- .../RecordsManagementServiceRegistryImpl.java | 2 +- .../action/AuditableActionExecuterAbstractBase.java | 2 +- .../action/PropertySubActionExecuterAbstractBase.java | 2 +- .../action/RMActionExecuterAbstractBase.java | 2 +- .../action/RMDispositionActionExecuterAbstractBase.java | 2 +- .../action/RecordsManagementAction.java | 2 +- .../action/RecordsManagementActionCondition.java | 2 +- .../action/RecordsManagementActionConditionDefinition.java | 2 +- .../RecordsManagementActionConditionDefinitionImpl.java | 2 +- ...RecordsManagementActionConditionEvaluatorAbstractBase.java | 2 +- .../action/RecordsManagementActionDefinition.java | 2 +- .../action/RecordsManagementActionDefinitionImpl.java | 2 +- .../action/RecordsManagementActionResult.java | 2 +- .../action/RecordsManagementActionService.java | 2 +- .../action/RecordsManagementActionServiceImpl.java | 2 +- .../action/ScheduledDispositionJob.java | 2 +- .../action/constraint/CustomParameterConstraint.java | 2 +- .../constraint/DispositionActionParameterConstraint.java | 2 +- .../action/constraint/ManualEventParameterConstraint.java | 2 +- .../action/constraint/RecordTypeParameterConstraint.java | 2 +- .../action/constraint/VersionParameterConstraint.java | 2 +- .../org_alfresco_module_rm/action/dm/CreateRecordAction.java | 2 +- .../action/dm/DeclareAsVersionRecordAction.java | 2 +- .../org_alfresco_module_rm/action/dm/ExecuteScriptAction.java | 2 +- .../org_alfresco_module_rm/action/dm/HideRecordAction.java | 2 +- .../org_alfresco_module_rm/action/dm/MoveDmRecordAction.java | 2 +- .../action/dm/RecordableVersionConfigAction.java | 2 +- .../action/evaluator/CapabilityConditionEvaluator.java | 2 +- .../action/evaluator/DelegateActionCondition.java | 2 +- .../action/evaluator/DispositionActionRelativePositions.java | 2 +- .../action/evaluator/HasDispositionActionEvaluator.java | 2 +- .../action/evaluator/IsKindEvaluator.java | 2 +- .../action/evaluator/IsRecordTypeEvaluator.java | 2 +- .../action/impl/AddRecordTypeAction.java | 2 +- .../action/impl/ApplyCustomTypeAction.java | 2 +- .../BroadcastDispositionActionDefinitionUpdateAction.java | 2 +- .../action/impl/CloseRecordFolderAction.java | 2 +- .../action/impl/CompleteEventAction.java | 2 +- .../action/impl/CopyMoveLinkFileToBaseAction.java | 2 +- .../org_alfresco_module_rm/action/impl/CopyToAction.java | 2 +- .../action/impl/CreateDispositionScheduleAction.java | 2 +- .../org_alfresco_module_rm/action/impl/CutOffAction.java | 2 +- .../action/impl/DeclareRecordAction.java | 2 +- .../org_alfresco_module_rm/action/impl/DelegateAction.java | 2 +- .../org_alfresco_module_rm/action/impl/DeleteHoldAction.java | 2 +- .../org_alfresco_module_rm/action/impl/DestroyAction.java | 2 +- .../action/impl/EditDispositionActionAsOfDateAction.java | 2 +- .../action/impl/EditHoldReasonAction.java | 2 +- .../action/impl/EditReviewAsOfDateAction.java | 2 +- .../org_alfresco_module_rm/action/impl/FileReportAction.java | 2 +- .../org_alfresco_module_rm/action/impl/FileToAction.java | 2 +- .../org_alfresco_module_rm/action/impl/FreezeAction.java | 2 +- .../org_alfresco_module_rm/action/impl/LinkToAction.java | 2 +- .../org_alfresco_module_rm/action/impl/MoveToAction.java | 2 +- .../action/impl/OpenRecordFolderAction.java | 2 +- .../org_alfresco_module_rm/action/impl/RejectAction.java | 2 +- .../action/impl/RelinquishHoldAction.java | 2 +- .../org_alfresco_module_rm/action/impl/RequestInfoAction.java | 2 +- .../org_alfresco_module_rm/action/impl/RetainAction.java | 2 +- .../org_alfresco_module_rm/action/impl/SplitEmailAction.java | 2 +- .../org_alfresco_module_rm/action/impl/TransferAction.java | 2 +- .../action/impl/TransferCompleteAction.java | 2 +- .../org_alfresco_module_rm/action/impl/UnCutoffAction.java | 2 +- .../action/impl/UndeclareRecordAction.java | 2 +- .../org_alfresco_module_rm/action/impl/UndoEventAction.java | 2 +- .../org_alfresco_module_rm/action/impl/UnfreezeAction.java | 2 +- .../org_alfresco_module_rm/action/impl/UnlinkFromAction.java | 2 +- .../admin/CannotApplyConstraintMetadataException.java | 2 +- .../org_alfresco_module_rm/admin/CustomMetadataException.java | 2 +- .../admin/InvalidCustomAspectMetadataException.java | 2 +- .../admin/NotCustomisableMetadataException.java | 2 +- .../admin/PropertyAlreadyExistsMetadataException.java | 2 +- .../admin/RecordsManagementAdminBase.java | 2 +- .../admin/RecordsManagementAdminService.java | 2 +- .../admin/RecordsManagementAdminServiceImpl.java | 2 +- .../audit/RecordsManagementAuditEntry.java | 2 +- .../audit/RecordsManagementAuditQueryParameters.java | 2 +- .../audit/RecordsManagementAuditService.java | 2 +- .../audit/RecordsManagementAuditServiceImpl.java | 2 +- .../module/org_alfresco_module_rm/audit/event/AuditEvent.java | 2 +- .../org_alfresco_module_rm/audit/event/CopyToAuditEvent.java | 2 +- .../audit/event/CreateObjectAuditEvent.java | 2 +- .../audit/event/CreatePersonAuditEvent.java | 2 +- .../audit/event/DeleteObjectAuditEvent.java | 2 +- .../org_alfresco_module_rm/audit/event/FileToAuditEvent.java | 2 +- .../org_alfresco_module_rm/audit/event/LinkToAuditEvent.java | 2 +- .../org_alfresco_module_rm/audit/event/MoveToAuditEvent.java | 2 +- .../audit/event/RecordableVersionPolicyAuditEvent.java | 2 +- .../audit/event/UpdateObjectAuditEvent.java | 2 +- .../audit/extractor/AuthenticatedUserRolesDataExtractor.java | 2 +- .../audit/extractor/FilePlanIdentifierDataExtractor.java | 2 +- .../audit/extractor/FilePlanNamePathDataExtractor.java | 2 +- .../audit/extractor/FilePlanNodeRefPathDataExtractor.java | 2 +- .../bootstrap/BootstrapImporterModuleComponent.java | 2 +- .../bootstrap/ModuleCompatibilityComponent.java | 2 +- .../bootstrap/RecordContributorsGroupBootstrapComponent.java | 2 +- .../bootstrap/RecordsManagementBootstrap.java | 2 +- .../org_alfresco_module_rm/capability/AbstractCapability.java | 2 +- .../module/org_alfresco_module_rm/capability/Capability.java | 2 +- .../org_alfresco_module_rm/capability/CapabilityService.java | 2 +- .../capability/CapabilityServiceImpl.java | 2 +- .../capability/CompositeCapability.java | 2 +- .../module/org_alfresco_module_rm/capability/Group.java | 2 +- .../module/org_alfresco_module_rm/capability/GroupImpl.java | 2 +- .../org_alfresco_module_rm/capability/PolicyRegister.java | 2 +- .../capability/RMActionProxyFactoryBean.java | 2 +- .../capability/RMAfterInvocationProvider.java | 2 +- .../org_alfresco_module_rm/capability/RMEntryVoter.java | 2 +- .../org_alfresco_module_rm/capability/RMPermissionModel.java | 2 +- .../org_alfresco_module_rm/capability/RMSecurityCommon.java | 2 +- .../capability/declarative/AbstractCapabilityCondition.java | 2 +- .../capability/declarative/CapabilityCondition.java | 2 +- .../capability/declarative/DeclarativeCapability.java | 2 +- .../declarative/DeclarativeCompositeCapability.java | 2 +- .../capability/declarative/condition/AtLeastOneCondition.java | 2 +- .../declarative/condition/ClosedCapabilityCondition.java | 2 +- .../declarative/condition/CutoffCapabilityCondition.java | 2 +- .../declarative/condition/DeclaredCapabilityCondition.java | 2 +- .../declarative/condition/DestroyedCapabilityCondition.java | 2 +- .../declarative/condition/FailCapabilityCondition.java | 2 +- .../declarative/condition/FileableCapabilityCondition.java | 2 +- .../declarative/condition/FillingCapabilityCondition.java | 2 +- .../condition/FillingOnHoldContainerCapabilityCondition.java | 2 +- .../declarative/condition/FrozenCapabilityCondition.java | 2 +- .../declarative/condition/FrozenOrHoldCondition.java | 2 +- .../declarative/condition/HasAspectCapabilityCondition.java | 2 +- .../condition/HasDispositionDateCapabilityCondition.java | 2 +- .../declarative/condition/HasEventsCapabilityCondition.java | 2 +- .../declarative/condition/HoldCapabilityCondition.java | 2 +- .../condition/IsClassifiedCapabilityCondition.java | 2 +- .../declarative/condition/IsPropertySetCondition.java | 2 +- .../declarative/condition/IsRecordCategoryCondition.java | 2 +- .../capability/declarative/condition/IsRecordCondition.java | 2 +- .../declarative/condition/IsRecordFolderCondition.java | 2 +- .../declarative/condition/IsScheduledCapabilityCondition.java | 2 +- .../condition/IsTransferAccessionCapabilityCondition.java | 2 +- .../declarative/condition/LastDispositionActionCondition.java | 2 +- .../condition/MayBeScheduledCapabilityCondition.java | 2 +- .../condition/MovableRecordFolderCapabilityCondition.java | 2 +- .../declarative/condition/RecordFiledCapabilityCondition.java | 2 +- .../declarative/condition/TransferredCapabilityCondition.java | 2 +- .../condition/VitalRecordOrFolderCapabilityCondition.java | 2 +- .../capability/impl/ChangeOrDeleteReferencesCapability.java | 2 +- .../capability/impl/CreateCapability.java | 2 +- .../capability/impl/DeleteLinksCapability.java | 2 +- .../capability/impl/EditNonRecordMetadataCapability.java | 2 +- .../capability/impl/UpdateCapability.java | 2 +- .../capability/impl/ViewRecordsCapability.java | 2 +- .../capability/policy/AbstractBasePolicy.java | 2 +- .../org_alfresco_module_rm/capability/policy/AssocPolicy.java | 2 +- .../capability/policy/ConfigAttributeDefinition.java | 2 +- .../capability/policy/CreatePolicy.java | 2 +- .../capability/policy/DeclarePolicy.java | 2 +- .../capability/policy/DeletePolicy.java | 2 +- .../org_alfresco_module_rm/capability/policy/MovePolicy.java | 2 +- .../org_alfresco_module_rm/capability/policy/Policy.java | 2 +- .../org_alfresco_module_rm/capability/policy/ReadPolicy.java | 2 +- .../capability/policy/UpdatePolicy.java | 2 +- .../capability/policy/UpdatePropertiesPolicy.java | 2 +- .../capability/policy/WriteContentPolicy.java | 2 +- .../content/ContentDestructionComponent.java | 2 +- .../content/EagerContentStoreCleaner.java | 2 +- .../content/cleanser/ContentCleanser.java | 2 +- .../content/cleanser/ContentCleanser522022M.java | 2 +- .../module/org_alfresco_module_rm/dataset/DataSet.java | 2 +- .../module/org_alfresco_module_rm/dataset/DataSetBase.java | 2 +- .../module/org_alfresco_module_rm/dataset/DataSetService.java | 2 +- .../org_alfresco_module_rm/dataset/DataSetServiceImpl.java | 2 +- .../org_alfresco_module_rm/disposition/DispositionAction.java | 2 +- .../disposition/DispositionActionDefinition.java | 2 +- .../disposition/DispositionActionDefinitionImpl.java | 2 +- .../disposition/DispositionActionImpl.java | 2 +- .../disposition/DispositionSchedule.java | 2 +- .../disposition/DispositionScheduleImpl.java | 2 +- .../disposition/DispositionSelectionStrategy.java | 2 +- .../disposition/DispositionService.java | 2 +- .../disposition/DispositionServiceImpl.java | 2 +- .../disposition/NextActionFromDisposition.java | 2 +- .../disposition/property/DispositionProperty.java | 2 +- .../dod5015/DOD5015FilePlanTypeBootstrap.java | 2 +- .../module/org_alfresco_module_rm/dod5015/DOD5015Model.java | 2 +- .../dod5015/model/dod/aspect/DOD5015RecordAspect.java | 2 +- .../email/CustomEmailMappingService.java | 2 +- .../email/CustomEmailMappingServiceImpl.java | 2 +- .../module/org_alfresco_module_rm/email/CustomMapping.java | 2 +- .../email/CustomisableEmailMappingKeyBootstrap.java | 2 +- .../org_alfresco_module_rm/email/RFC822MetadataExtracter.java | 2 +- .../org_alfresco_module_rm/event/EventCompletionDetails.java | 2 +- .../event/OnReferenceCreateEventType.java | 2 +- .../event/OnReferencedRecordActionedUpon.java | 2 +- .../org_alfresco_module_rm/event/RecordsManagementEvent.java | 2 +- .../event/RecordsManagementEventService.java | 2 +- .../event/RecordsManagementEventServiceImpl.java | 2 +- .../event/RecordsManagementEventType.java | 2 +- .../event/SimpleRecordsManagementEventTypeImpl.java | 2 +- .../fileplan/FilePlanComponentKind.java | 2 +- .../org_alfresco_module_rm/fileplan/FilePlanService.java | 2 +- .../org_alfresco_module_rm/fileplan/FilePlanServiceImpl.java | 2 +- .../forms/RecordsManagementFormFilter.java | 2 +- .../forms/RecordsManagementNodeFormFilter.java | 2 +- .../forms/RecordsManagementTypeFormFilter.java | 2 +- .../module/org_alfresco_module_rm/freeze/FreezeService.java | 2 +- .../org_alfresco_module_rm/freeze/FreezeServiceImpl.java | 2 +- .../module/org_alfresco_module_rm/hold/HoldService.java | 2 +- .../module/org_alfresco_module_rm/hold/HoldServiceImpl.java | 2 +- .../identifier/BasicIdentifierGenerator.java | 2 +- .../identifier/IdentifierGenerator.java | 2 +- .../identifier/IdentifierGeneratorBase.java | 2 +- .../org_alfresco_module_rm/identifier/IdentifierService.java | 2 +- .../identifier/IdentifierServiceImpl.java | 2 +- .../job/DispositionLifecycleJobExecuter.java | 2 +- .../job/NotifyOfRecordsDueForReviewJobExecuter.java | 2 +- .../org_alfresco_module_rm/job/PublishUpdatesJobExecuter.java | 2 +- .../org_alfresco_module_rm/job/RecordsManagementJob.java | 2 +- .../job/RecordsManagementJobExecuter.java | 2 +- .../job/publish/BasePublishExecutor.java | 2 +- .../publish/DispositionActionDefinitionPublishExecutor.java | 2 +- .../org_alfresco_module_rm/job/publish/PublishExecutor.java | 2 +- .../job/publish/PublishExecutorRegistry.java | 2 +- .../org_alfresco_module_rm/jscript/ScriptCapability.java | 2 +- .../jscript/ScriptRecordsManagmentNode.java | 2 +- .../jscript/ScriptRecordsManagmentService.java | 2 +- .../org_alfresco_module_rm/jscript/app/BaseEvaluator.java | 2 +- .../jscript/app/JSONConversionComponent.java | 2 +- .../jscript/app/evaluator/CutoffEvaluator.java | 2 +- .../app/evaluator/EditRecordMetadataActionEvaluator.java | 2 +- .../jscript/app/evaluator/FolderOpenClosedEvaluator.java | 2 +- .../jscript/app/evaluator/FrozenEvaluator.java | 2 +- .../jscript/app/evaluator/HasAspectEvaluator.java | 2 +- .../jscript/app/evaluator/MultiParentEvaluator.java | 2 +- .../jscript/app/evaluator/NonElectronicEvaluator.java | 2 +- .../jscript/app/evaluator/SplitEmailActionEvaluator.java | 2 +- .../jscript/app/evaluator/TransferEvaluator.java | 2 +- .../jscript/app/evaluator/TrueEvaluator.java | 2 +- .../jscript/app/evaluator/VitalRecordEvaluator.java | 2 +- .../org_alfresco_module_rm/model/BaseBehaviourBean.java | 2 +- .../model/CustomisableTypesBootstrap.java | 2 +- .../model/RecordsManagementCustomModel.java | 2 +- .../org_alfresco_module_rm/model/RecordsManagementModel.java | 2 +- .../model/behaviour/AbstractDisposableItem.java | 2 +- .../model/behaviour/RecordsManagementSearchBehaviour.java | 2 +- .../model/compatibility/DictionaryBootstrapPostProcessor.java | 2 +- .../model/rma/aspect/AccendedAspect.java | 2 +- .../org_alfresco_module_rm/model/rma/aspect/CutoffAspect.java | 2 +- .../model/rma/aspect/DeclaredRecordAspect.java | 2 +- .../model/rma/aspect/DispositionLifecycleAspect.java | 2 +- .../model/rma/aspect/ExtendedSecurityAspect.java | 2 +- .../model/rma/aspect/FilePlanComponentAspect.java | 2 +- .../org_alfresco_module_rm/model/rma/aspect/FrozenAspect.java | 2 +- .../model/rma/aspect/GhostedAspect.java | 2 +- .../model/rma/aspect/ProtectedAspects.java | 2 +- .../org_alfresco_module_rm/model/rma/aspect/QShareAspect.java | 2 +- .../org_alfresco_module_rm/model/rma/aspect/RecordAspect.java | 2 +- .../model/rma/aspect/RecordComponentIdentifierAspect.java | 2 +- .../model/rma/aspect/RecordOriginatingDetailsAspect.java | 2 +- .../model/rma/aspect/RecordSearchAspect.java | 2 +- .../model/rma/aspect/ScheduledAspect.java | 2 +- .../model/rma/aspect/TransferredAspect.java | 2 +- .../model/rma/aspect/TransferringAspect.java | 2 +- .../model/rma/aspect/UncutoffAspect.java | 2 +- .../model/rma/aspect/VersionRecordAspect.java | 2 +- .../model/rma/aspect/VitalRecordAspect.java | 2 +- .../model/rma/aspect/VitalRecordDefinitionAspect.java | 2 +- .../org_alfresco_module_rm/model/rma/type/CmObjectType.java | 2 +- .../model/rma/type/DispositionActionDefinitionType.java | 2 +- .../org_alfresco_module_rm/model/rma/type/FilePlanType.java | 2 +- .../model/rma/type/HoldContainerType.java | 2 +- .../model/rma/type/NonElectronicRecordType.java | 2 +- .../model/rma/type/RecordCategoryType.java | 2 +- .../model/rma/type/RecordFolderType.java | 2 +- .../model/rma/type/RecordsManagementContainerType.java | 2 +- .../org_alfresco_module_rm/model/rma/type/RmSiteType.java | 2 +- .../model/rma/type/TransferContainerType.java | 2 +- .../org_alfresco_module_rm/model/rma/type/TransferType.java | 2 +- .../model/rma/type/UnfiledRecordContainerType.java | 2 +- .../model/rma/type/UnfiledRecordFolderType.java | 2 +- .../model/security/ModelAccessDeniedException.java | 2 +- .../model/security/ModelSecurityService.java | 2 +- .../model/security/ModelSecurityServiceImpl.java | 2 +- .../model/security/ProtectedAspect.java | 2 +- .../model/security/ProtectedModelArtifact.java | 2 +- .../model/security/ProtectedProperty.java | 2 +- .../notification/RecordsManagementNotificationHelper.java | 2 +- .../org_alfresco_module_rm/patch/AbstractModulePatch.java | 2 +- .../module/org_alfresco_module_rm/patch/ModulePatch.java | 2 +- .../org_alfresco_module_rm/patch/ModulePatchExecuter.java | 2 +- .../org_alfresco_module_rm/patch/ModulePatchExecuterImpl.java | 2 +- .../org_alfresco_module_rm/patch/common/CapabilityPatch.java | 2 +- .../patch/compatibility/ModulePatchComponent.java | 2 +- .../patch/v20/NotificationTemplatePatch.java | 2 +- .../patch/v20/RMv2FilePlanNodeRefPatch.java | 2 +- .../org_alfresco_module_rm/patch/v20/RMv2ModelPatch.java | 2 +- .../patch/v20/RMv2SavedSearchPatch.java | 2 +- .../patch/v21/NotificationTemplatePatch_v21.java | 2 +- .../patch/v21/RMv21BehaviorScriptsPatch.java | 2 +- .../patch/v21/RMv21CapabilityPatch.java | 2 +- .../org_alfresco_module_rm/patch/v21/RMv21InPlacePatch.java | 2 +- .../org_alfresco_module_rm/patch/v21/RMv21PatchComponent.java | 2 +- .../patch/v21/RMv21RecordInheritancePatch.java | 2 +- .../patch/v21/RMv21ReportServicePatch.java | 2 +- .../org_alfresco_module_rm/patch/v21/RMv21RolesPatch.java | 2 +- .../patch/v22/RMv22CapabilityPatch.java | 2 +- .../patch/v22/RMv22DODCompliantSitePatch.java | 2 +- .../patch/v22/RMv22DODModelSeparationModulePatch.java | 2 +- .../patch/v22/RMv22FileHoldReportCapabilityPatch.java | 2 +- .../patch/v22/RMv22GhostOnDestroyDispositionActionPatch.java | 2 +- .../patch/v22/RMv22HoldCapabilityPatch.java | 2 +- .../patch/v22/RMv22HoldReportPatch.java | 2 +- .../patch/v22/RMv22RemoveInPlaceRolesFromAllPatch.java | 2 +- .../patch/v22/RMv22ReportTemplatePatch.java | 2 +- .../patch/v23/RMv23EndRetentionCapabilityPatch.java | 2 +- .../patch/v23/RMv23RecordContributorsGroupPatch.java | 2 +- .../patch/v23/RMv23SavedSearchesPatch.java | 2 +- .../patch/v23/RMv23VersionsEventPatch.java | 2 +- .../patch/v24/RMv24FilePlanContainerRuleInheritancePatch.java | 2 +- .../permission/RecordsManagementPermissionPostProcessor.java | 2 +- .../query/ChildrenWithPropertyValuesQueryParams.java | 2 +- .../query/RecordsManagementQueryDAO.java | 2 +- .../query/RecordsManagementQueryDAOImpl.java | 2 +- .../org_alfresco_module_rm/record/InplaceRecordService.java | 2 +- .../record/InplaceRecordServiceImpl.java | 2 +- .../record/RecordCreationException.java | 2 +- .../record/RecordLinkRuntimeException.java | 2 +- .../record/RecordMetadataBootstrap.java | 2 +- .../record/RecordMissingMetadataException.java | 2 +- .../module/org_alfresco_module_rm/record/RecordService.java | 2 +- .../org_alfresco_module_rm/record/RecordServiceImpl.java | 4 ++-- .../module/org_alfresco_module_rm/record/RecordUtils.java | 2 +- .../recordableversion/RecordableVersionConfigService.java | 2 +- .../recordableversion/RecordableVersionConfigServiceImpl.java | 2 +- .../recordfolder/RecordFolderService.java | 2 +- .../recordfolder/RecordFolderServiceImpl.java | 2 +- .../org_alfresco_module_rm/relationship/Relationship.java | 2 +- .../relationship/RelationshipDefinition.java | 2 +- .../relationship/RelationshipDefinitionImpl.java | 2 +- .../relationship/RelationshipDisplayName.java | 2 +- .../org_alfresco_module_rm/relationship/RelationshipImpl.java | 2 +- .../relationship/RelationshipService.java | 2 +- .../relationship/RelationshipServiceImpl.java | 2 +- .../org_alfresco_module_rm/relationship/RelationshipType.java | 2 +- .../alfresco/module/org_alfresco_module_rm/report/Report.java | 2 +- .../module/org_alfresco_module_rm/report/ReportGenerator.java | 2 +- .../module/org_alfresco_module_rm/report/ReportModel.java | 2 +- .../module/org_alfresco_module_rm/report/ReportService.java | 2 +- .../org_alfresco_module_rm/report/ReportServiceImpl.java | 2 +- .../report/generator/BaseReportGenerator.java | 2 +- .../report/generator/DeclarativeReportGenerator.java | 2 +- .../org_alfresco_module_rm/report/generator/ReportInfo.java | 2 +- .../report/generator/transfer/TransferNode.java | 2 +- .../report/generator/transfer/TransferReportGenerator.java | 2 +- .../org_alfresco_module_rm/role/FilePlanRoleService.java | 2 +- .../org_alfresco_module_rm/role/FilePlanRoleServiceImpl.java | 2 +- .../org/alfresco/module/org_alfresco_module_rm/role/Role.java | 2 +- .../org_alfresco_module_rm/script/AbstractRmWebScript.java | 2 +- .../script/ApplyDodCertModelFixesGet.java | 2 +- .../org_alfresco_module_rm/script/ApplyFixMob1573Get.java | 2 +- .../module/org_alfresco_module_rm/script/AuditLogDelete.java | 2 +- .../module/org_alfresco_module_rm/script/AuditLogGet.java | 2 +- .../module/org_alfresco_module_rm/script/AuditLogPost.java | 2 +- .../module/org_alfresco_module_rm/script/AuditLogPut.java | 2 +- .../org_alfresco_module_rm/script/AuditLogStatusGet.java | 2 +- .../script/BaseAuditAdminWebScript.java | 2 +- .../script/BaseAuditRetrievalWebScript.java | 2 +- .../script/BaseCustomPropertyWebScript.java | 2 +- .../org_alfresco_module_rm/script/BaseTransferWebScript.java | 2 +- .../org_alfresco_module_rm/script/BootstrapTestDataGet.java | 2 +- .../script/CustomPropertyDefinitionDelete.java | 2 +- .../script/CustomPropertyDefinitionPost.java | 2 +- .../script/CustomPropertyDefinitionPut.java | 2 +- .../script/CustomPropertyDefinitionsGet.java | 2 +- .../module/org_alfresco_module_rm/script/CustomRefDelete.java | 2 +- .../module/org_alfresco_module_rm/script/CustomRefPost.java | 2 +- .../script/CustomReferenceDefinitionBase.java | 2 +- .../script/CustomReferenceDefinitionPost.java | 2 +- .../script/CustomReferenceDefinitionPut.java | 2 +- .../script/CustomReferenceDefinitionsGet.java | 2 +- .../org_alfresco_module_rm/script/CustomReferenceType.java | 2 +- .../module/org_alfresco_module_rm/script/CustomRefsGet.java | 2 +- .../module/org_alfresco_module_rm/script/CustomisableGet.java | 2 +- .../module/org_alfresco_module_rm/script/DataSetPost.java | 2 +- .../module/org_alfresco_module_rm/script/DataSetsGet.java | 2 +- .../script/DispositionAbstractBase.java | 2 +- .../script/DispositionActionDefinitionDelete.java | 2 +- .../script/DispositionActionDefinitionPost.java | 2 +- .../script/DispositionActionDefinitionPut.java | 2 +- .../script/DispositionLifecycleGet.java | 2 +- .../script/DispositionPropertiesGet.java | 2 +- .../org_alfresco_module_rm/script/DispositionScheduleGet.java | 2 +- .../org_alfresco_module_rm/script/DodCustomTypesGet.java | 2 +- .../module/org_alfresco_module_rm/script/EmailMapDelete.java | 2 +- .../module/org_alfresco_module_rm/script/EmailMapGet.java | 2 +- .../module/org_alfresco_module_rm/script/EmailMapKeysGet.java | 2 +- .../module/org_alfresco_module_rm/script/EmailMapPost.java | 2 +- .../module/org_alfresco_module_rm/script/ExportPost.java | 2 +- .../module/org_alfresco_module_rm/script/ImportPost.java | 2 +- .../module/org_alfresco_module_rm/script/ListOfValuesGet.java | 2 +- .../module/org_alfresco_module_rm/script/RMConstraintGet.java | 2 +- .../script/RecordMetaDataAspectsGet.java | 2 +- .../org_alfresco_module_rm/script/RelationshipDelete.java | 2 +- .../org_alfresco_module_rm/script/RelationshipLabelsGet.java | 2 +- .../org_alfresco_module_rm/script/RelationshipsGet.java | 2 +- .../module/org_alfresco_module_rm/script/RmActionPost.java | 2 +- .../module/org_alfresco_module_rm/script/TransferGet.java | 2 +- .../org_alfresco_module_rm/script/TransferReportGet.java | 2 +- .../org_alfresco_module_rm/script/TransferReportPost.java | 2 +- .../org_alfresco_module_rm/script/UserRightsReportGet.java | 2 +- .../org_alfresco_module_rm/script/admin/RMEventBase.java | 2 +- .../org_alfresco_module_rm/script/admin/RmEventDelete.java | 2 +- .../org_alfresco_module_rm/script/admin/RmEventGet.java | 2 +- .../org_alfresco_module_rm/script/admin/RmEventPut.java | 2 +- .../org_alfresco_module_rm/script/admin/RmEventTypesGet.java | 2 +- .../org_alfresco_module_rm/script/admin/RmEventsGet.java | 2 +- .../org_alfresco_module_rm/script/admin/RmEventsPost.java | 2 +- .../org_alfresco_module_rm/script/admin/RmRoleDelete.java | 2 +- .../module/org_alfresco_module_rm/script/admin/RmRoleGet.java | 2 +- .../module/org_alfresco_module_rm/script/admin/RmRolePut.java | 2 +- .../org_alfresco_module_rm/script/admin/RmRolesGet.java | 2 +- .../org_alfresco_module_rm/script/admin/RmRolesPost.java | 2 +- .../script/admin/RoleDeclarativeWebScript.java | 2 +- .../script/capability/CapabilitiesGet.java | 2 +- .../module/org_alfresco_module_rm/script/hold/BaseHold.java | 2 +- .../module/org_alfresco_module_rm/script/hold/Hold.java | 2 +- .../module/org_alfresco_module_rm/script/hold/HoldPost.java | 2 +- .../module/org_alfresco_module_rm/script/hold/HoldPut.java | 2 +- .../module/org_alfresco_module_rm/script/hold/HoldsGet.java | 2 +- .../script/slingshot/RMSavedSearchesDelete.java | 2 +- .../script/slingshot/RMSavedSearchesGet.java | 2 +- .../script/slingshot/RMSavedSearchesPost.java | 2 +- .../org_alfresco_module_rm/script/slingshot/RMSearchGet.java | 2 +- .../script/slingshot/RMSearchPropertiesGet.java | 2 +- .../script/slingshot/RecordedVersionConfigGet.java | 2 +- .../script/slingshot/RecordedVersionConfigPost.java | 2 +- .../org_alfresco_module_rm/script/slingshot/Version.java | 2 +- .../script/slingshot/forms/RMMetaDataGet.java | 2 +- .../search/RecordsManagementSearchParameters.java | 2 +- .../search/RecordsManagementSearchService.java | 2 +- .../search/RecordsManagementSearchServiceImpl.java | 2 +- .../module/org_alfresco_module_rm/search/ReportDetails.java | 2 +- .../org_alfresco_module_rm/search/SavedSearchDetails.java | 2 +- .../search/SavedSearchDetailsCompatibility.java | 2 +- .../module/org_alfresco_module_rm/search/SortItem.java | 2 +- .../security/ExtendedSecurityService.java | 2 +- .../security/ExtendedSecurityServiceImpl.java | 2 +- .../security/FilePlanPermissionService.java | 2 +- .../security/FilePlanPermissionServiceImpl.java | 2 +- .../security/RMMethodSecurityInterceptor.java | 2 +- .../security/RMMethodSecurityPostProcessor.java | 2 +- .../site/GetChildrenCannedQueryFactory.java | 2 +- .../org_alfresco_module_rm/transfer/TransferService.java | 2 +- .../org_alfresco_module_rm/transfer/TransferServiceImpl.java | 2 +- .../util/AlfrescoTransactionSupport.java | 2 +- .../org_alfresco_module_rm/util/AuthenticationUtil.java | 2 +- .../module/org_alfresco_module_rm/util/PoliciesUtil.java | 2 +- .../module/org_alfresco_module_rm/util/RMCollectionUtils.java | 2 +- .../module/org_alfresco_module_rm/util/RMParameterCheck.java | 2 +- .../module/org_alfresco_module_rm/util/ServiceBaseImpl.java | 2 +- .../util/TransactionalResourceHelper.java | 2 +- .../module/org_alfresco_module_rm/util/UpdateActionType.java | 2 +- .../module/org_alfresco_module_rm/util/dao/QueryField.java | 2 +- .../module/org_alfresco_module_rm/util/dao/QueryParams.java | 2 +- .../version/ExtendedVersionableAspect.java | 2 +- .../version/RecordableVersionModel.java | 2 +- .../version/RecordableVersionNodeServiceImpl.java | 2 +- .../version/RecordableVersionPolicy.java | 2 +- .../version/RecordableVersionService.java | 2 +- .../version/RecordableVersionServiceImpl.java | 2 +- .../version/model/VersionableAspect.java | 2 +- .../vital/BroadcastVitalRecordDefinitionAction.java | 2 +- .../module/org_alfresco_module_rm/vital/ReviewedAction.java | 2 +- .../org_alfresco_module_rm/vital/VitalRecordDefinition.java | 2 +- .../vital/VitalRecordDefinitionImpl.java | 2 +- .../org_alfresco_module_rm/vital/VitalRecordService.java | 2 +- .../org_alfresco_module_rm/vital/VitalRecordServiceImpl.java | 2 +- .../org/alfresco/repo/action/ExtendedActionServiceImpl.java | 2 +- .../repo/action/parameter/DateParameterProcessor.java | 2 +- .../repo/action/parameter/MessageParameterProcessor.java | 2 +- .../repo/action/parameter/NodeParameterProcessor.java | 2 +- .../action/parameter/NodeParameterSuggesterBootstrap.java | 2 +- .../alfresco/repo/action/parameter/ParameterProcessor.java | 2 +- .../repo/action/parameter/ParameterProcessorComponent.java | 2 +- .../repo/action/parameter/ParameterSubstitutionSuggester.java | 2 +- .../java/org/alfresco/repo/imap/ExtendedImapServiceImpl.java | 2 +- .../source/java/org/alfresco/repo/jscript/ExtendedSearch.java | 2 +- .../repo/model/filefolder/ExtendedFileFolderServiceImpl.java | 2 +- .../java/org/alfresco/repo/rule/ExtendedRuleServiceImpl.java | 2 +- .../ExtendedBeforeDeleteChildAssociationRuleTrigger.java | 2 +- .../org/alfresco/repo/security/authority/RMAuthority.java | 2 +- .../alfresco/repo/security/authority/RMAuthorityDAOImpl.java | 2 +- .../security/permissions/impl/ExtendedPermissionService.java | 2 +- .../permissions/impl/ExtendedPermissionServiceImpl.java | 2 +- .../repo/security/permissions/impl/acegi/RMACLEntryVoter.java | 2 +- .../permissions/processor/PermissionPostProcessor.java | 2 +- .../permissions/processor/PermissionPreProcessor.java | 2 +- .../permissions/processor/PermissionProcessorRegistry.java | 2 +- .../processor/impl/PermissionPostProcessorBaseImpl.java | 2 +- .../processor/impl/PermissionPreProcessorBaseImpl.java | 2 +- .../processor/impl/PermissionProcessorBaseImpl.java | 2 +- .../alfresco/repo/web/scripts/dictionary/RmClassesGet.java | 2 +- .../web/scripts/dictionary/RmDictionaryWebServiceUtils.java | 2 +- .../alfresco/repo/web/scripts/dictionary/RmPropertiesGet.java | 2 +- .../repo/web/scripts/roles/AbstractRmAuthorities.java | 2 +- .../repo/web/scripts/roles/DynamicAuthoritiesGet.java | 2 +- .../alfresco/repo/web/scripts/roles/RmAuthoritiesDelete.java | 2 +- .../alfresco/repo/web/scripts/roles/RmAuthoritiesPost.java | 2 +- .../web/scripts/rule/RmActionConditionDefinitionsGet.java | 2 +- .../repo/web/scripts/rule/RmActionDefinitionsGet.java | 2 +- .../substitutionsuggestions/RmSubstitutionSuggestionsGet.java | 2 +- .../source/java/org/alfresco/rm/rest/api/RMNodes.java | 2 +- .../source/java/org/alfresco/rm/rest/api/RMSites.java | 2 +- .../rm/rest/api/fileplans/FilePlanChildrenRelation.java | 2 +- .../rm/rest/api/fileplans/FilePlanEntityResource.java | 2 +- .../org/alfresco/rm/rest/api/files/FilesEntityResource.java | 2 +- .../org/alfresco/rm/rest/api/impl/ApiNodesModelFactory.java | 2 +- .../alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java | 2 +- .../java/org/alfresco/rm/rest/api/impl/RMSitesImpl.java | 2 +- .../org/alfresco/rm/rest/api/impl/SearchTypesFactory.java | 2 +- .../source/java/org/alfresco/rm/rest/api/model/FilePlan.java | 2 +- .../source/java/org/alfresco/rm/rest/api/model/RMNode.java | 2 +- .../source/java/org/alfresco/rm/rest/api/model/RMSite.java | 2 +- .../java/org/alfresco/rm/rest/api/model/RMSiteCompliance.java | 2 +- .../source/java/org/alfresco/rm/rest/api/model/Record.java | 2 +- .../java/org/alfresco/rm/rest/api/model/RecordCategory.java | 2 +- .../org/alfresco/rm/rest/api/model/RecordCategoryChild.java | 2 +- .../java/org/alfresco/rm/rest/api/model/RecordFolder.java | 2 +- .../alfresco/rm/rest/api/model/SecurityControlSetting.java | 2 +- .../java/org/alfresco/rm/rest/api/model/TargetContainer.java | 2 +- .../source/java/org/alfresco/rm/rest/api/model/Transfer.java | 2 +- .../java/org/alfresco/rm/rest/api/model/TransferChild.java | 2 +- .../org/alfresco/rm/rest/api/model/TransferContainer.java | 2 +- .../java/org/alfresco/rm/rest/api/model/UnfiledChild.java | 2 +- .../java/org/alfresco/rm/rest/api/model/UnfiledContainer.java | 2 +- .../org/alfresco/rm/rest/api/model/UnfiledContainerChild.java | 2 +- .../org/alfresco/rm/rest/api/model/UnfiledRecordFolder.java | 2 +- .../alfresco/rm/rest/api/model/UnfiledRecordFolderChild.java | 2 +- .../java/org/alfresco/rm/rest/api/model/UploadInfo.java | 2 +- .../api/recordcategories/RecordCategoriesEntityResource.java | 2 +- .../api/recordcategories/RecordCategoryChildrenRelation.java | 2 +- .../rest/api/recordfolders/RecordFolderChildrenRelation.java | 2 +- .../rm/rest/api/recordfolders/RecordFolderEntityResource.java | 2 +- .../alfresco/rm/rest/api/records/RecordsEntityResource.java | 2 +- .../org/alfresco/rm/rest/api/sites/RMSiteEntityResource.java | 2 +- .../transfercontainers/TransferContainerChildrenRelation.java | 2 +- .../transfercontainers/TransferContainerEntityResource.java | 2 +- .../rm/rest/api/transfers/TransferChildrenRelation.java | 2 +- .../rm/rest/api/transfers/TransferEntityResource.java | 2 +- .../unfiledcontainers/UnfiledContainerChildrenRelation.java | 2 +- .../api/unfiledcontainers/UnfiledContainerEntityResource.java | 2 +- .../UnfiledRecordFolderChildrenRelation.java | 2 +- .../UnfiledRecordFolderEntityResource.java | 2 +- .../source/java/org/alfresco/util/SortDirection.java | 2 +- .../source/java/org/alfresco/util/SortUtils.java | 2 +- .../source/java/org/alfresco/util/StringUtils.java | 2 +- .../source/java/org/alfresco/util/WebScriptUtils.java | 2 +- .../source/java/org/alfresco/workflow/RMWorkflowModel.java | 2 +- .../workflow/requestInfo/RequestInfoAssignmentHandler.java | 2 +- .../alfresco/workflow/requestInfo/RequestInfoNotifier.java | 2 +- .../org/alfresco/workflow/requestInfo/RequestInfoUtils.java | 2 +- .../workflow/requestInfo/RequestInfoVariableHandler.java | 2 +- .../module/org_alfresco_module_rm/test/AllTestSuite.java | 2 +- .../test/integration/destroy/DestroyContentTest.java | 2 +- .../test/integration/disposition/CutOffTest.java | 2 +- .../test/integration/disposition/MultipleSchedulesTest.java | 2 +- .../disposition/UpdateDispositionScheduleTest.java | 2 +- .../disposition/UpdateNextDispositionActionTest.java | 2 +- .../test/integration/dod/RM1147DODRMSiteTest.java | 2 +- .../test/integration/dod/RM1194ExcludeDoDRecordTypesTest.java | 2 +- .../test/integration/event/CompleteEventsTest.java | 2 +- .../test/integration/hold/AddRemoveFromHoldTest.java | 2 +- .../test/integration/hold/CreateHoldTest.java | 2 +- .../test/integration/hold/DeleteHoldTest.java | 2 +- .../test/integration/issue/RM1008Test.java | 2 +- .../test/integration/issue/RM1027Test.java | 2 +- .../test/integration/issue/RM1030Test.java | 2 +- .../test/integration/issue/RM1424Test.java | 2 +- .../test/integration/issue/RM1429Test.java | 2 +- .../test/integration/issue/RM1463Test.java | 2 +- .../test/integration/issue/RM1464Test.java | 2 +- .../test/integration/issue/RM1727Test.java | 2 +- .../test/integration/issue/RM1799Test.java | 2 +- .../test/integration/issue/RM1814Test.java | 2 +- .../test/integration/issue/RM1887Test.java | 2 +- .../test/integration/issue/RM1914Test.java | 2 +- .../test/integration/issue/RM2072Test.java | 2 +- .../test/integration/issue/RM2190Test.java | 2 +- .../test/integration/issue/RM2192Test.java | 2 +- .../test/integration/issue/RM3341Test.java | 2 +- .../test/integration/issue/RM3450Test.java | 2 +- .../test/integration/issue/RM3993Test.java | 2 +- .../test/integration/issue/RM4101Test.java | 2 +- .../test/integration/issue/RM4163Test.java | 2 +- .../test/integration/issue/RM4293Test.java | 2 +- .../test/integration/issue/RM452Test.java | 2 +- .../test/integration/issue/RM4619Test.java | 2 +- .../test/integration/issue/RM4804Test.java | 2 +- .../test/integration/issue/RM804Test.java | 2 +- .../test/integration/issue/RM978Test.java | 2 +- .../test/integration/issue/RM981SystemTest.java | 2 +- .../test/integration/issue/RM994Test.java | 2 +- .../test/integration/issue/rm3314/RM3314Test.java | 2 +- .../test/integration/issue/rm3314/RM3314TestListener.java | 2 +- .../test/integration/job/AutomaticDispositionTest.java | 2 +- .../test/integration/record/CompleteRecordTest.java | 2 +- .../test/integration/record/CreateInplaceRecordTest.java | 2 +- .../test/integration/record/CreateRecordTest.java | 2 +- .../test/integration/record/HideInplaceRecordTest.java | 2 +- .../test/integration/record/InplaceRecordPermissionTest.java | 2 +- .../test/integration/record/LinkRecordTest.java | 2 +- .../test/integration/record/MoveInplaceRecordTest.java | 2 +- .../test/integration/record/MoveRecordTest.java | 2 +- .../test/integration/record/RejectRecordTest.java | 2 +- .../test/integration/record/UpdateRecordAspectsTest.java | 2 +- .../test/integration/record/ViewRecordTest.java | 2 +- .../test/integration/recordfolder/DeleteRecordFolderTest.java | 2 +- .../test/integration/recordfolder/MoveRecordFolderTest.java | 2 +- .../test/integration/relationship/CreateRelationshipTest.java | 2 +- .../test/integration/relationship/DeleteRelationshipTest.java | 2 +- .../test/integration/report/HoldReportTest.java | 2 +- .../test/integration/rule/FilePlanRuleInheritanceTest.java | 2 +- .../transfer/CreateTransferFolderAsNonAdminUserTest.java | 2 +- .../transfer/FilingPermissionsOnTransferFolderTest.java | 2 +- .../transfer/NoPermissionsOnTransferFolderTest.java | 2 +- .../transfer/ReadPermissionsOnTransferFolderTest.java | 2 +- .../test/integration/version/AdHocRecordableVersionsTest.java | 2 +- .../test/integration/version/AutoRecordableVersionsTest.java | 2 +- .../test/integration/version/AutoVersionTest.java | 2 +- .../test/integration/version/DeclareAsRecordVersionTest.java | 2 +- .../test/integration/version/DeleteRecordVersionTest.java | 2 +- .../test/integration/version/RecordableVersionsBaseTest.java | 2 +- .../test/legacy/action/CreateRecordActionTest.java | 2 +- .../test/legacy/action/DeclareVersionAsRecordActionTest.java | 2 +- .../test/legacy/action/FileReportActionTest.java | 2 +- .../test/legacy/action/FileToActionTest.java | 2 +- .../test/legacy/action/HideRecordActionTest.java | 2 +- .../test/legacy/action/MoveRecordActionTest.java | 2 +- .../test/legacy/action/RecordableVersionConfigActionTest.java | 2 +- .../test/legacy/action/RejectActionTest.java | 2 +- .../test/legacy/capabilities/CompositeCapabilityTest.java | 2 +- .../test/legacy/capabilities/DeclarativeCapabilityTest.java | 2 +- .../test/legacy/jscript/JSONConversionComponentTest.java | 2 +- .../test/legacy/security/MethodSecurityTest.java | 2 +- .../test/legacy/service/CapabilityServiceImplTest.java | 2 +- .../legacy/service/CustomEMailMappingServiceImplTest.java | 2 +- .../test/legacy/service/DataSetServiceImplTest.java | 2 +- .../test/legacy/service/DispositionServiceImplTest.java | 2 +- .../test/legacy/service/ExtendedActionServiceTest.java | 2 +- .../test/legacy/service/ExtendedSecurityServiceImplTest.java | 2 +- .../legacy/service/FilePlanPermissionServiceImplTest.java | 2 +- .../test/legacy/service/FilePlanRoleServiceImplTest.java | 2 +- .../test/legacy/service/FilePlanServiceImplTest.java | 2 +- .../test/legacy/service/FreezeServiceImplTest.java | 2 +- .../test/legacy/service/ModelSecurityServiceImplTest.java | 2 +- .../test/legacy/service/RMCaveatConfigServiceImplTest.java | 2 +- .../test/legacy/service/RecordServiceImplTest.java | 2 +- .../service/RecordsManagementActionServiceImplTest.java | 2 +- .../legacy/service/RecordsManagementAdminServiceImplTest.java | 2 +- .../legacy/service/RecordsManagementAuditServiceImplTest.java | 2 +- .../legacy/service/RecordsManagementEventServiceImplTest.java | 2 +- .../legacy/service/RecordsManagementQueryDAOImplTest.java | 2 +- .../service/RecordsManagementSearchServiceImplTest.java | 2 +- .../test/legacy/service/RecordsManagementServiceImplTest.java | 2 +- .../test/legacy/service/ReportServiceImplTest.java | 2 +- .../test/legacy/service/ServiceBaseImplTest.java | 2 +- .../test/legacy/service/VitalRecordServiceImplTest.java | 2 +- .../test/legacy/webscript/ActionDefinitionsRestApiTest.java | 2 +- .../test/legacy/webscript/AuditRestApiTest.java | 2 +- .../test/legacy/webscript/CapabilitiesRestApiTest.java | 2 +- .../test/legacy/webscript/DataSetRestApiTest.java | 2 +- .../test/legacy/webscript/DispositionRestApiTest.java | 2 +- .../test/legacy/webscript/EmailMapKeysRestApiTest.java | 2 +- .../test/legacy/webscript/EmailMapScriptTest.java | 2 +- .../test/legacy/webscript/EventRestApiTest.java | 2 +- .../test/legacy/webscript/RMCaveatConfigScriptTest.java | 2 +- .../test/legacy/webscript/RMConstraintScriptTest.java | 2 +- .../test/legacy/webscript/RmAuthoritiesRestApiTest.java | 2 +- .../test/legacy/webscript/RmClassesRestApiTest.java | 2 +- .../test/legacy/webscript/RmPropertiesRestApiTest.java | 2 +- .../test/legacy/webscript/RmRestApiTest.java | 2 +- .../test/legacy/webscript/RoleRestApiTest.java | 2 +- .../legacy/webscript/SubstitutionSuggestionsRestApiTest.java | 2 +- .../test/system/DataLoadSystemTest.java | 2 +- .../test/system/NotificationServiceHelperSystemTest.java | 2 +- .../org_alfresco_module_rm/test/util/BaseRMTestCase.java | 2 +- .../test/util/BaseRMWebScriptTestCase.java | 2 +- .../org_alfresco_module_rm/test/util/CommonRMTestUtils.java | 2 +- .../test/util/GenerateCapabilityReport.java | 2 +- .../test/util/RetryingTransactionHelperBaseTest.java | 2 +- .../module/org_alfresco_module_rm/test/util/TestAction.java | 2 +- .../module/org_alfresco_module_rm/test/util/TestAction2.java | 2 +- .../org_alfresco_module_rm/test/util/TestActionParams.java | 2 +- .../test/util/TestActionPropertySubs.java | 2 +- .../org_alfresco_module_rm/test/util/TestContentCleanser.java | 2 +- .../module/org_alfresco_module_rm/test/util/TestDmAction.java | 2 +- .../module/org_alfresco_module_rm/test/util/TestModel.java | 2 +- .../module/org_alfresco_module_rm/test/util/TestService.java | 2 +- .../org_alfresco_module_rm/test/util/TestServiceImpl.java | 2 +- .../test/util/TestWebScriptRepoServer.java | 2 +- .../org_alfresco_module_rm/test/util/UserAndGroupsUtils.java | 2 +- .../org_alfresco_module_rm/test/util/bdt/BehaviourTest.java | 2 +- .../org_alfresco_module_rm/test/util/bdt/ExpectedFailure.java | 2 +- .../org_alfresco_module_rm/test/util/bdt/ExpectedValue.java | 2 +- .../org/alfresco/repository/generic-paged-results.lib.ftl | 2 +- .../org_alfresco_module_rm/action/BaseActionUnitTest.java | 2 +- .../action/dm/DeclareAsVersionRecordActionUnitTest.java | 2 +- ...adcastDispositionActionDefinitionUpdateActionUnitTest.java | 2 +- .../action/impl/FileReportActionUnitTest.java | 2 +- .../action/impl/UnlinkFromActionUnitTest.java | 2 +- .../api/CommunityPublicAPIUnitTest.java | 2 +- .../module/org_alfresco_module_rm/api/PublicAPITestUtil.java | 2 +- .../bootstrap/BootstrapImporterModuleComponentUnitTest.java | 2 +- .../bootstrap/ModuleCompatibilityComponentUnitTest.java | 2 +- .../RecordContributorsGroupBootstrapComponentUnitTest.java | 2 +- .../capability/RMEntryVoterUnitTest.java | 2 +- .../FillingOnHoldContainerCapabilityConditionUnitTest.java | 2 +- .../condition/FrozenCapabilityConditionUnitTest.java | 2 +- .../condition/HoldCapabilityConditionUnitTest.java | 2 +- .../impl/EditNonRecordsMetadataCapabilityUnitTest.java | 2 +- .../content/EagerContentStoreCleanerUnitTest.java | 2 +- .../content/cleanser/ContentCleanser522022MUnitTest.java | 2 +- .../disposition/DispositionServiceImplUnitTest.java | 2 +- .../email/RFC822MetadataExtracterUnitTest.java | 2 +- .../forms/RecordsManagementTypeFormFilterUnitTest.java | 2 +- .../org_alfresco_module_rm/hold/HoldServiceImplUnitTest.java | 2 +- .../job/DispositionLifecycleJobExecuterUnitTest.java | 2 +- .../jscript/app/evaluator/FrozenEvaluatorUnitTest.java | 2 +- .../jscript/app/evaluator/TransferEvaluatorUnitTest.java | 2 +- .../DictionaryBootstrapPostProcessorUnitTest.java | 2 +- .../model/rma/aspect/VersionRecordAspectUnitTest.java | 2 +- .../model/rma/type/FilePlanTypeUnitTest.java | 2 +- .../model/rma/type/HoldContainerTypeUnitTest.java | 2 +- .../model/rma/type/NonElectronicRecordTypeUnitTest.java | 2 +- .../model/rma/type/RecordCategoryTypeUnitTest.java | 2 +- .../model/rma/type/RecordFolderTypeUnitTest.java | 2 +- .../rma/type/RecordsManagementContainerTypeUnitTest.java | 2 +- .../model/rma/type/RmSiteTypeUnitTest.java | 2 +- .../model/rma/type/TransferContainerTypeUnitTest.java | 2 +- .../model/rma/type/TransferTypeUnitTest.java | 2 +- .../model/rma/type/UnfiledRecordContainerTypeUnitTest.java | 2 +- .../model/rma/type/UnfiledRecordFolderTypeUnitTest.java | 2 +- .../patch/v22/RMv22CapabilityPatchUnitTest.java | 2 +- .../v22/RMv22RemoveInPlaceRolesFromAllPatchUnitTest.java | 2 +- .../patch/v23/RMv23SavedSearchesPatchUnitTest.java | 2 +- .../RMv24FilePlanContainerRuleInheritancePatchUnitTest.java | 2 +- .../RecordsManagementPermissionPostProcessorUnitTest.java | 2 +- .../record/RecordMetadataBootstrapUnitTest.java | 2 +- .../record/RecordServiceImplUnitTest.java | 2 +- .../version/config/BaseRecordedVersionConfigTest.java | 2 +- .../version/config/RecordedVersionConfigGetUnitTest.java | 2 +- .../version/config/RecordedVersionConfigPostUnitTest.java | 2 +- .../script/hold/BaseHoldWebScriptUnitTest.java | 2 +- .../script/hold/BaseHoldWebScriptWithContentUnitTest.java | 2 +- .../org_alfresco_module_rm/script/hold/HoldPostUnitTest.java | 2 +- .../org_alfresco_module_rm/script/hold/HoldPutUnitTest.java | 2 +- .../org_alfresco_module_rm/script/hold/HoldsGetUnitTest.java | 2 +- .../security/ExtendedSecurityServiceImplUnitTest.java | 2 +- .../security/FilePlanPermissionServiceImplUnitTest.java | 2 +- .../module/org_alfresco_module_rm/test/AllUnitTestSuite.java | 2 +- .../module/org_alfresco_module_rm/test/util/AlfMock.java | 2 +- .../module/org_alfresco_module_rm/test/util/BaseUnitTest.java | 2 +- .../test/util/BaseWebScriptUnitTest.java | 2 +- .../org_alfresco_module_rm/test/util/BaseYamlUnitTest.java | 2 +- .../org_alfresco_module_rm/test/util/ExceptionUtils.java | 2 +- .../test/util/ExceptionUtilsUsageExamplesUnitTest.java | 2 +- .../module/org_alfresco_module_rm/test/util/FPUtils.java | 2 +- .../org_alfresco_module_rm/test/util/FPUtilsUnitTest.java | 2 +- .../test/util/MockAuthenticationUtilHelper.java | 2 +- .../test/util/WebScriptExceptionMatcher.java | 2 +- .../util/RMCollectionUtilsUnitTest.java | 2 +- .../org_alfresco_module_rm/util/RMParameterCheckUnitTest.java | 2 +- .../org_alfresco_module_rm/util/ServiceBaseImplUnitTest.java | 2 +- .../version/ExtendedVersionableAspectUnitTest.java | 2 +- .../version/RecordableVersionServiceImplUnitTest.java | 2 +- .../version/TestRecordableVersionServiceImpl.java | 2 +- .../org_alfresco_module_rm/vital/ReviewedActionUnitTest.java | 2 +- .../repo/action/parameter/DateParameterProcessorUnitTest.java | 2 +- .../alfresco/repo/imap/ExtendedImapServiceImplUnitTest.java | 2 +- .../impl/ExtendedPermissionServiceImplUnitTest.java | 2 +- .../repo/web/scripts/roles/DynamicAuthoritiesGetUnitTest.java | 2 +- .../org/alfresco/rm/rest/api/impl/RMSitesImplUnitTest.java | 2 +- .../java/org/alfresco/rm/rest/api/impl/RMYamlUnitTest.java | 2 +- .../org/alfresco/rm/rest/api/impl/RecordsImplUnitTest.java | 2 +- .../rm/rest/api/sites/RMSiteEntityResourceUnitTest.java | 2 +- 1061 files changed, 1066 insertions(+), 1066 deletions(-) diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RMRestProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RMRestProperties.java index 9f0e8adf35..2973c4d4d9 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RMRestProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RMRestProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RMRestWrapper.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RMRestWrapper.java index acc44a6114..c79730e355 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RMRestWrapper.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RMRestWrapper.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RestAPIFactory.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RestAPIFactory.java index 10b71423d9..4ab37507f0 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RestAPIFactory.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/RestAPIFactory.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/APIUtils.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/APIUtils.java index 5404b483c8..8f69815407 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/APIUtils.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/APIUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java index b4c0228393..4feb2dac87 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/v0/BaseAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/IdNamePair.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/IdNamePair.java index 925e7c3e87..6110395dc3 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/IdNamePair.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/IdNamePair.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/Owner.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/Owner.java index 76a80f6ed6..7afa34b807 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/Owner.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/Owner.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/Path.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/Path.java index 304e29b92c..a8376a096f 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/Path.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/Path.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/ReviewPeriod.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/ReviewPeriod.java index 775fa99bd2..4b027bfbb9 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/ReviewPeriod.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/common/ReviewPeriod.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/custom/CustomDefinitions.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/custom/CustomDefinitions.java index 5e94f25d91..b4e7a64b9d 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/custom/CustomDefinitions.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/custom/CustomDefinitions.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplan/FilePlan.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplan/FilePlan.java index a3accf2d0f..260d6610da 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplan/FilePlan.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplan/FilePlan.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplan/FilePlanProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplan/FilePlanProperties.java index 59219e2c35..88366d799f 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplan/FilePlanProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplan/FilePlanProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentAlias.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentAlias.java index 708ec447dc..fe28882452 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentAlias.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentAlias.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentAspects.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentAspects.java index a1b93e5c67..753cac4c17 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentAspects.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentAspects.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentFields.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentFields.java index 37e34b4944..72a9dc2422 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentFields.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentFields.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentType.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentType.java index 619411e8bd..1f04139ea2 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentType.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/Record.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/Record.java index 83d12daea8..19bec44765 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/Record.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/Record.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordBodyFile.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordBodyFile.java index dd0bc282d7..1f502505bf 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordBodyFile.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordBodyFile.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordContent.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordContent.java index eb21a90851..dae16264f5 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordContent.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordContent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordProperties.java index f7005579ba..b325c5641f 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/record/RecordProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategory.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategory.java index 5bbcf2551f..68bdba8e5d 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategory.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategory.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChild.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChild.java index 61bc7edabe..2a62656208 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChild.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChild.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildCollection.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildCollection.java index 21e600b73b..9d1292d125 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildCollection.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildCollection.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildEntry.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildEntry.java index 23fc80197f..5cf5ec3218 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildEntry.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildEntry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildProperties.java index 400033b40b..56459fb104 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryChildProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - @@ -134,4 +134,4 @@ public class RecordCategoryChildProperties extends TestModel @JsonProperty (PROPERTIES_OWNER) private Owner owner; -} \ No newline at end of file +} diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryCollection.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryCollection.java index 839856c2ac..51559ba502 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryCollection.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryCollection.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryEntry.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryEntry.java index fae0772f8b..a40aef7a7f 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryEntry.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryEntry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryProperties.java index aaf668e251..2895d749b1 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordcategory/RecordCategoryProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - @@ -97,4 +97,4 @@ public class RecordCategoryProperties extends TestModel @JsonProperty (PROPERTIES_CLASSIFICATION) private List classification; -} \ No newline at end of file +} diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolder.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolder.java index 110bba4ed8..02909cf42d 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolder.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolder.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderCollection.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderCollection.java index c52948305a..625d8b2096 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderCollection.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderCollection.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderEntry.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderEntry.java index b12e62c464..373b9cf464 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderEntry.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderEntry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderProperties.java index 5b4893a068..42603c7da6 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/recordfolder/RecordFolderProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - @@ -120,4 +120,4 @@ public class RecordFolderProperties extends TestModel @JsonProperty (PROPERTIES_RECORD_SEARCH_VITAL_RECORD_REVIEW_PERIOD_EXPRESSION) private String recordSearchVitalRecordReviewPeriodExpression; -} \ No newline at end of file +} diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/ActionsOnRule.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/ActionsOnRule.java index 91f185795d..227785e694 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/ActionsOnRule.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/ActionsOnRule.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/ConditionsOnRule.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/ConditionsOnRule.java index 00421a94de..a7c9749ae7 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/ConditionsOnRule.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/ConditionsOnRule.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/RuleDefinition.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/RuleDefinition.java index d271a372cd..b928ae5504 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/RuleDefinition.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/rules/RuleDefinition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSite.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSite.java index 7010a338f0..4d5f4de025 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSite.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSite.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSiteCompliance.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSiteCompliance.java index e6aefd1d6a..9c63f5baf7 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSiteCompliance.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSiteCompliance.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSiteFields.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSiteFields.java index bafe829c7b..a12f750868 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSiteFields.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/site/RMSiteFields.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/Transfer.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/Transfer.java index 7df99b898c..6cff9b3949 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/Transfer.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/Transfer.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChild.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChild.java index 23669df0b7..29fa191df5 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChild.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChild.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildCollection.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildCollection.java index ac135a03a1..9677905414 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildCollection.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildCollection.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildEntry.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildEntry.java index 5f33f00ed6..fae7c6034d 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildEntry.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildEntry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildProperties.java index 19b87849bb..d137493d19 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferChildProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferCollection.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferCollection.java index c536facaf5..d80256d891 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferCollection.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferCollection.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferEntry.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferEntry.java index 8185d2558a..2d148656b0 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferEntry.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferEntry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferProperties.java index bce6166d46..9fdb12704e 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfer/TransferProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfercontainer/TransferContainer.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfercontainer/TransferContainer.java index 5c56bd3eea..b073a843f6 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfercontainer/TransferContainer.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfercontainer/TransferContainer.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfercontainer/TransferContainerProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfercontainer/TransferContainerProperties.java index 7ec16a4d68..269033a28c 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfercontainer/TransferContainerProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/transfercontainer/TransferContainerProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainer.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainer.java index 26b5cbcc88..2a9be18837 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainer.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainer.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChild.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChild.java index e799209dad..47072167c0 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChild.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChild.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildCollection.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildCollection.java index ae4e9add28..1270f9a2c9 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildCollection.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildCollection.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildEntry.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildEntry.java index 3988d95b6e..14e3f1e035 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildEntry.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildEntry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildProperties.java index 09079e7089..e3d776d78c 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerChildProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - @@ -183,4 +183,4 @@ public class UnfiledContainerChildProperties extends TestModel @JsonProperty (PROPERTIES_OWNER) private Owner owner; -} \ No newline at end of file +} diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerProperties.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerProperties.java index 5bd5de6821..fbc97edc2e 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerProperties.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledContainerProperties.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledRecordFolder.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledRecordFolder.java index da1ea046a8..2fa89a025b 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledRecordFolder.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/unfiledcontainer/UnfiledRecordFolder.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserPermissions.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserPermissions.java index 7f70aac702..61ca3b12e1 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserPermissions.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserPermissions.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserRoles.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserRoles.java index 807ad59b6f..3fc30071cd 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserRoles.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserRoles.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/RMModelRequest.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/RMModelRequest.java index 4b543c3b3e..d6b2e5f966 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/RMModelRequest.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/RMModelRequest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/GSCoreAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/GSCoreAPI.java index e7e7405b56..4b09f7c6ea 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/GSCoreAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/GSCoreAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/FilePlanAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/FilePlanAPI.java index d1102fed09..6cbe13c13c 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/FilePlanAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/FilePlanAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/FilesAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/FilesAPI.java index a297837136..ad1e062e82 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/FilesAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/FilesAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RMSiteAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RMSiteAPI.java index 75e4062f47..db52568db3 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RMSiteAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RMSiteAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RMUserAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RMUserAPI.java index 8783a3384e..95fc3dd54f 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RMUserAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RMUserAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordCategoryAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordCategoryAPI.java index 7bfbe6eba0..9dbe4d8d67 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordCategoryAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordCategoryAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordFolderAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordFolderAPI.java index f993bd8998..a85c6c64d9 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordFolderAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordFolderAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordsAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordsAPI.java index 6864754edb..7f4996c34e 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordsAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/RecordsAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/TransferAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/TransferAPI.java index 9dd1c12012..27871593e8 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/TransferAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/TransferAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/TransferContainerAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/TransferContainerAPI.java index fb4988dfdc..93d7808de4 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/TransferContainerAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/TransferContainerAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/UnfiledContainerAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/UnfiledContainerAPI.java index 9abf0e2664..fae17af13c 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/UnfiledContainerAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/UnfiledContainerAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/UnfiledRecordFolderAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/UnfiledRecordFolderAPI.java index 6a2048c00d..28da98624f 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/UnfiledRecordFolderAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/UnfiledRecordFolderAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/CommonTestUtils.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/CommonTestUtils.java index c6a7f7bab6..d80605fbf8 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/CommonTestUtils.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/CommonTestUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/FilePlanComponentMixIn.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/FilePlanComponentMixIn.java index 3761268de0..7a50499195 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/FilePlanComponentMixIn.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/FilePlanComponentMixIn.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/ParameterCheck.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/ParameterCheck.java index 0223617483..16c215126d 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/ParameterCheck.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/ParameterCheck.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/PojoUtility.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/PojoUtility.java index 39c7363191..8ae2c8bd40 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/PojoUtility.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/PojoUtility.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/ReviewPeriodSerializer.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/ReviewPeriodSerializer.java index 2cc2b62d07..f3481c07a5 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/ReviewPeriodSerializer.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/ReviewPeriodSerializer.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/UnfiledContainerChildMixin.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/UnfiledContainerChildMixin.java index bcf238d6d9..ef20e0c190 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/UnfiledContainerChildMixin.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/util/UnfiledContainerChildMixin.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/CopyToAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/CopyToAPI.java index f50e6ff4d3..f175663cf7 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/CopyToAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/CopyToAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/CustomDefinitionsAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/CustomDefinitionsAPI.java index 601de4f671..1193f4d1f0 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/CustomDefinitionsAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/CustomDefinitionsAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RMRolesAndActionsAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RMRolesAndActionsAPI.java index d0ff77e754..d2f664e73c 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RMRolesAndActionsAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RMRolesAndActionsAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordCategoriesAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordCategoriesAPI.java index 9b9e11398f..34ff344f92 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordCategoriesAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordCategoriesAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordFoldersAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordFoldersAPI.java index ad59119162..7e71093bde 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordFoldersAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordFoldersAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordsAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordsAPI.java index 7f2a144519..1cc00e1186 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordsAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RecordsAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RulesAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RulesAPI.java index 6d199a8368..47542b01d7 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RulesAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/RulesAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/SearchAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/SearchAPI.java index 0e4af8732e..2bad85cbd5 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/SearchAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/SearchAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/UserTrashcanAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/UserTrashcanAPI.java index 83bfce01a8..238af5ac53 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/UserTrashcanAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/UserTrashcanAPI.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/AllowableOperations.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/AllowableOperations.java index 800a6b8dd4..a1bea141ec 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/AllowableOperations.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/AllowableOperations.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java index 022cd663f3..b4d241636b 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/DataProviderClass.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/DataProviderClass.java index c15fb6da96..1b7761a4c4 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/DataProviderClass.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/DataProviderClass.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/TestData.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/TestData.java index bd26e83d5f..5279020f89 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/TestData.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/TestData.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/fileplans/FilePlanTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/fileplans/FilePlanTests.java index 1fee750e1f..d46856ad8c 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/fileplans/FilePlanTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/fileplans/FilePlanTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/files/DeclareDocumentAsRecordTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/files/DeclareDocumentAsRecordTests.java index a5251b796a..bd843065de 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/files/DeclareDocumentAsRecordTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/files/DeclareDocumentAsRecordTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordcategories/RecordCategoryTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordcategories/RecordCategoryTests.java index 65dccacb82..0829e6136e 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordcategories/RecordCategoryTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordcategories/RecordCategoryTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/ElectronicRecordTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/ElectronicRecordTests.java index b8f0bbe9a9..cf430d764c 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/ElectronicRecordTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/ElectronicRecordTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/NonElectronicRecordTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/NonElectronicRecordTests.java index 3794140bd2..b305799f0e 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/NonElectronicRecordTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/NonElectronicRecordTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/RecordFolderTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/RecordFolderTests.java index a72359c62d..dd90aaf7ac 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/RecordFolderTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/recordfolders/RecordFolderTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/CompleteRecordTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/CompleteRecordTests.java index a46a3dd5bf..f972644745 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/CompleteRecordTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/CompleteRecordTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/DeleteRecordTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/DeleteRecordTests.java index 427b1b271e..622e1469d1 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/DeleteRecordTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/DeleteRecordTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/FileRecordsTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/FileRecordsTests.java index 41a42b2bc8..682da07b70 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/FileRecordsTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/FileRecordsTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/ReadRecordTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/ReadRecordTests.java index 89c28e55a5..38b23fcba3 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/ReadRecordTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/ReadRecordTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/UpdateRecordsTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/UpdateRecordsTests.java index 5b50c36fd9..c74824ddbe 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/UpdateRecordsTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/records/UpdateRecordsTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/ShareLiveSearch.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/ShareLiveSearch.java index aba1c00aee..e7003ab6e0 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/ShareLiveSearch.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/search/ShareLiveSearch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/site/RMSiteTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/site/RMSiteTests.java index cc0f560dd5..3c3bac0f3e 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/site/RMSiteTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/site/RMSiteTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/unfiledcontainers/UnfiledContainerTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/unfiledcontainers/UnfiledContainerTests.java index d7e936a862..e4d58ebbb1 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/unfiledcontainers/UnfiledContainerTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/unfiledcontainers/UnfiledContainerTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/unfiledrecordfolders/UnfiledRecordsFolderTests.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/unfiledrecordfolders/UnfiledRecordsFolderTests.java index 1934e769c6..353c827678 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/unfiledrecordfolders/UnfiledRecordsFolderTests.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/unfiledrecordfolders/UnfiledRecordsFolderTests.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/CoreUtil.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/CoreUtil.java index a67c6aa26d..e83ef765fb 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/CoreUtil.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/CoreUtil.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/FilePlanComponentsUtil.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/FilePlanComponentsUtil.java index 876523f7c1..2df226f453 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/FilePlanComponentsUtil.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/FilePlanComponentsUtil.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/RMSiteUtil.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/RMSiteUtil.java index b484748d7f..9852b07a92 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/RMSiteUtil.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/RMSiteUtil.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/notify-records-due-for-review-email.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/notify-records-due-for-review-email.ftl index 87dc257e00..547c16e3e9 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/notify-records-due-for-review-email.ftl +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/notify-records-due-for-review-email.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js index 379a9d413e..f981ac415b 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/onCreate_supersedes.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl index 80e3270e60..dd3e820dff 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-rejected-email.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl index b98e55e9e6..98d5073c3a 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/record-superseded-email.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/rma_isClosed.js b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/rma_isClosed.js index c87b6c06bd..4f9a1a55ba 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/rma_isClosed.js +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/content/rma_isClosed.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_destructionReport.html.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_destructionReport.html.ftl index cbcad610e0..9119336bfa 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_destructionReport.html.ftl +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_destructionReport.html.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl index ed0e7250ea..72dc74aea4 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_holdReport.html.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl index 5ece620d56..0046595d23 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/bootstrap/report/report_rmr_transferReport.html.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.json.ftl index 29d1cf1c70..313f8fc71d 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-classes.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.json.ftl index e74d96ddf8..a6cce461cc 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/dictionary/rm-properties.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.json.ftl index 7af31cb6ab..0ad66bbd67 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.json.ftl index 7af31cb6ab..0ad66bbd67 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-authorities.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-dynamicauthorities.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-dynamicauthorities.get.json.ftl index 5193e5814a..b88f04f977 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-dynamicauthorities.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/roles/rm-dynamicauthorities.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.json.ftl index 3faa66ff89..9b08795296 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actionconditiondefinitions.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.json.ftl index 941bea423e..095b61fd3d 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/rule/rm-actiondefinitions.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.json.ftl index 9084f7faaf..080c5736f0 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/substitutionsuggestions/rm-substitutionsuggestions.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.js index fc5806250b..ba92d872fc 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.json.ftl index 543dd63c6c..4bd81df69e 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/repository/version/rm-version.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.json.ftl index 2ecc2e5d19..940cfaf640 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.json.ftl index 2ecc2e5d19..940cfaf640 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.lib.ftl index 322a6cd898..b74c312e03 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.lib.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.lib.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.json.ftl index 2ecc2e5d19..940cfaf640 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmap.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.json.ftl index 44a57c6b12..d6c44f517a 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/emailmapkeys.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint-utils.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint-utils.js index a7d53e6af2..25fece30d2 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint-utils.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint-utils.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.js index 1344c47fb1..ad99048459 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.json.ftl index b08db9ea89..df2abd39eb 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.js index 59e6c161c7..b4f880fb73 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.json.ftl index ef0db10591..30f49bc2ba 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.lib.ftl index 45cfa50fad..ea3fb3de35 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.lib.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.lib.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.ftl index ffb0734a8c..9d8154e07e 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.js index 0d633a6b72..bd68519d32 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraint.put.json.js @@ -4,7 +4,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.js index 0703dfe965..646c2eceae 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.json.ftl index de89ccf505..93e1d4957a 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.ftl index 46a4d60b6e..72146259d4 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.js index be55ed6098..4138a095bc 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/rmconstraints.post.json.js @@ -4,7 +4,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.js index f278e73bb1..8988bef3c6 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.json.ftl index 4f8cc7eb86..80ffe0a55e 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.ftl index b9d8d62b56..bf31e534cf 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.js index 4562ff07a4..76f7ce6a9e 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraint.post.json.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.js index 46fdc385d4..29e5fdea77 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.json.ftl index b9d8d62b56..bf31e534cf 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.js index 3305d2c550..52b948765b 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.json.ftl index ecfd0ebe41..25aa161515 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmconstraint/values/rmconstraintvalue.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.json.ftl index 7af31cb6ab..0ad66bbd67 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.json.ftl index 645db9b8ed..c3d16080a3 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.lib.ftl index 430841e2c8..a53a6d3e6e 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.lib.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.lib.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.json.ftl index 645db9b8ed..c3d16080a3 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevent.put.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.json.ftl index ae4ae27bde..8a41821ece 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.json.ftl index 4653a1ff52..92586cac42 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmevents.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.json.ftl index c09851eae3..083d301a08 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmevent/rmeventtypes.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.json.ftl index 7af31cb6ab..0ad66bbd67 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.json.ftl index 5e654d8f07..7afe313854 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.lib.ftl index 14901da9f0..0a74fbd3a5 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.lib.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.lib.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.json.ftl index 5e654d8f07..7afe313854 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmrole.put.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.json.ftl index f1e683768c..b9f6afc6ba 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.json.ftl index 5e654d8f07..7afe313854 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/admin/rmrole/rmroles.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.json.ftl index 521e90f160..f75c727243 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applydodcertmodelfixes.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.json.ftl index 521e90f160..f75c727243 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/applyfixmob1573.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.json.ftl index 521e90f160..f75c727243 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/bootstraptestdata.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.json.ftl index 42432a63f3..7d8e2fcdc0 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/capability/capabilities.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.json.ftl index 495b4e852e..11897617c7 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customisable.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.json.ftl index de9a19260c..c7ef5ce808 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.json.ftl index 3ab2581995..d2abbe3f73 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.json.ftl index fc3a0a98c0..21b6184f3b 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinition.put.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.json.ftl index 4124539ec2..9ff96c4753 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/custompropdefinitions.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.json.ftl index f879459682..17ec89f741 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.json.ftl index f9b4f6550d..3e1eac7bc7 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customref.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.json.ftl index d0dca44381..722d8abfbb 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.json.ftl index a12930ed76..7208ddca39 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinition.put.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.json.ftl index e902c36269..d058e5513f 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefdefinitions.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.json.ftl index 97317aff9a..0fac012c06 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/customrefs.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.json.ftl index 47e0c0ab91..cc0e35489d 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dataset.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.json.ftl index 26bb42bc4a..131e7ba660 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/datasets.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.json.ftl index 902937896a..a170ca8644 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.lib.ftl index 6fe53cdfa8..f46011ed82 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.lib.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.lib.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.json.ftl index e54773e99b..8ded193551 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinition.put.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.json.ftl index e54773e99b..8ded193551 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionactiondefinitions.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.json.ftl index dd25f08044..c0bad97e0c 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionlifecycle.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.json.ftl index fb1448e6b7..d22ea6c6db 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionproperties.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.json.ftl index 351c4467eb..3562ee4111 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dispositionschedule.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.json.ftl index 88d5a8e22f..f023749331 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/dodcustomtypes.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.html.status.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.html.status.ftl index d1a0e36015..93290d3ac7 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.html.status.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/export.post.html.status.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.js index 2c69326c26..0a805fbb2b 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.json.ftl index f2ee7577f7..380d726f25 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.lib.ftl index 0e6f49cf5e..7ffa7d900d 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.lib.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/fileplanreport.lib.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.json.ftl index 7af31cb6ab..0ad66bbd67 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.json.ftl index 7af31cb6ab..0ad66bbd67 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/hold.put.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.json.ftl index 25094a43bc..e1a7042fcf 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/holds.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.html.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.html.ftl index dbc6359c70..c6297ada0b 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.html.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.html.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.json.ftl index f9b4f6550d..3e1eac7bc7 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/import.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.json.ftl index 8a0430f4b1..23a0eeee6d 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.lib.ftl index 53f83cc46c..72ab367603 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.lib.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/listofvalues.lib.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.json.ftl index d9c3442c35..7693efddf9 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/recordmetadataaspects.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.json.ftl index 2221544ca0..4a2cd83d3c 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationship.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.json.ftl index 15913188b0..f68d70b0ff 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationshiplabels.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.json.ftl index 3b8ee2fe90..c095b83b27 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/relationships.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.json.ftl index 482800c04a..b54480d2b1 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmaction.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.json.ftl index 4bb1b70f29..414ee69ca8 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl index e50f1faca7..20eb4273e2 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.lib.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.json.ftl index 4bb1b70f29..414ee69ca8 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlog.put.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.json.ftl index 7e7f95f0c8..9909759b75 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmauditlogstatus.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.json.ftl index a7e814c806..eff6c4b0e3 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmconstraints.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.ftl index 7af31cb6ab..0ad66bbd67 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.js index b83bf5b9ae..67efc72597 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/rmpermissions.post.json.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.json.ftl index 466d1f5b55..778e06512e 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/rma/userrightsreport.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.js index fdc72da330..85e7b400be 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.js @@ -9,7 +9,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.json.ftl index d1ad838329..e0721b5cf7 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.lib.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.lib.js index 8002273d08..1b30680506 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.lib.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-doclist.lib.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-filters.lib.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-filters.lib.js index 0a41ae926d..8aa99e50fe 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-filters.lib.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-filters.lib.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.js index 9b72c7037e..031788edba 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.js @@ -4,7 +4,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.json.ftl index b302a4d26e..5890492e8f 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-node.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-parse-args.lib.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-parse-args.lib.js index a078488c94..2c006daae6 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-parse-args.lib.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary-v2/rm-parse-args.lib.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.json.ftl index cb1196b36f..d466c017b5 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.json.ftl index 7af31cb6ab..0ad66bbd67 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/recorded-version-config.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.ftl index babcad6577..bfb12feeac 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.js index 371d5f0f6e..8c28ba9d47 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-copy-to.post.json.js @@ -4,7 +4,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.ftl index babcad6577..bfb12feeac 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.js index e739d13dac..0680cc06b5 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-link.post.json.js @@ -4,7 +4,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.ftl index babcad6577..bfb12feeac 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.js index f91cf5d6a7..851124afb8 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/action/rm-move-to.post.json.js @@ -4,7 +4,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.js index 80b75af7cb..8814f584f2 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.js @@ -4,7 +4,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.json.ftl index 38dd4e869e..f199fb49b5 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-permissions.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.js index bd4256be0c..2a120eafe4 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.json.ftl index 77568c782c..b40389cba6 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-savedsearches.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.js index 2dc432fd9a..fc4dfb9e4e 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.json.ftl index f669494ca4..fbdf0b56ba 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-transfer.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.js index 443e6b5b86..bf8c62a8f5 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.js @@ -4,7 +4,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.json.ftl index 2be05fff57..e8d7baf5dc 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/documentlibrary/rm-treenode.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.json.ftl index ee1a789383..f10d212fba 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/forms/metadata.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.js index 3f898a6c4f..8e9a950401 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.js @@ -5,7 +5,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.json.ftl index c58bc89d94..4efb651441 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.lib.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.lib.js index 8ef42cfd38..5ad27153b2 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.lib.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/faceted/rmsearch.lib.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.json.ftl index 33a3b0e08b..ad7cd447d1 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.delete.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.json.ftl index 7327aebf2e..28567af6cd 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.json.ftl index 33a3b0e08b..ad7cd447d1 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsavedsearches.post.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.json.ftl index c1246c9407..061c9992bc 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearch.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.json.ftl b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.json.ftl index 2a45e06bcf..e935ada1d0 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.json.ftl +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/rmsearch/rmsearchproperties.get.json.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/search/live-search.lib.js b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/search/live-search.lib.js index 930890813a..08fe01e8ea 100644 --- a/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/search/live-search.lib.js +++ b/rm-community/rm-community-repo/config/alfresco/templates/webscripts/org/alfresco/slingshot/search/live-search.lib.js @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_dod5015/caveat/RMListOfValuesConstraint.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_dod5015/caveat/RMListOfValuesConstraint.java index b2fb6166be..3bdc71f91d 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_dod5015/caveat/RMListOfValuesConstraint.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_dod5015/caveat/RMListOfValuesConstraint.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CannotApplyConstraintMetadataException.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CannotApplyConstraintMetadataException.java index 9f563a3545..521ba77388 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CannotApplyConstraintMetadataException.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CannotApplyConstraintMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CustomMetadataException.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CustomMetadataException.java index 1339ae1f2e..c3ce39fa75 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CustomMetadataException.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/CustomMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/InvalidCustomAspectMetadataException.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/InvalidCustomAspectMetadataException.java index 491613ca31..e567b5204e 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/InvalidCustomAspectMetadataException.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/InvalidCustomAspectMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/NotCustomisableMetadataException.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/NotCustomisableMetadataException.java index c64e391df2..72c04c3fa3 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/NotCustomisableMetadataException.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/NotCustomisableMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/PropertyAlreadyExistsMetadataException.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/PropertyAlreadyExistsMetadataException.java index c424e0ec5d..a4f5f2ef9c 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/PropertyAlreadyExistsMetadataException.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/PropertyAlreadyExistsMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementAdminService.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementAdminService.java index f248c7b0f5..4ebba5aa8e 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementAdminService.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementAdminService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementService.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementService.java index e55e679fc3..c01a0911e3 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementService.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceImpl.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceImpl.java index 9db1025f36..3053d5a426 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceImpl.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceDeprecated.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceDeprecated.java index d98e6812c4..66cb67ea61 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceDeprecated.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceDeprecated.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/PivotUtil.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/PivotUtil.java index f51ce973ea..d13c07e1b4 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/PivotUtil.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/PivotUtil.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigComponent.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigComponent.java index c63ddb4130..4985079b1c 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigComponent.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigComponent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigComponentImpl.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigComponentImpl.java index 47ce8a4009..4df96039f3 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigComponentImpl.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigComponentImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigService.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigService.java index 9ae5119e78..b37e321570 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigService.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigServiceImpl.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigServiceImpl.java index 7306788103..75216fbe72 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigServiceImpl.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMCaveatConfigServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMConstraintInfo.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMConstraintInfo.java index ccef78c164..3b10688d32 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMConstraintInfo.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMConstraintInfo.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMConstraintMessageKeys.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMConstraintMessageKeys.java index 056b3ec1fb..484f710cc6 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMConstraintMessageKeys.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMConstraintMessageKeys.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMListOfValuesConstraint.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMListOfValuesConstraint.java index fb483ebbcf..8a3bd5a7b4 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMListOfValuesConstraint.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/RMListOfValuesConstraint.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptAuthority.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptAuthority.java index 68e4ca4ee7..d07e12763d 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptAuthority.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptAuthority.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraint.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraint.java index 7af27fa8bc..1faf626502 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraint.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraint.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraintAuthority.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraintAuthority.java index 1eb97bd3c8..bf181e84cc 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraintAuthority.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraintAuthority.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraintValue.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraintValue.java index 0ce4c6a21e..da642bd5bb 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraintValue.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptConstraintValue.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptRMCaveatConfigService.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptRMCaveatConfigService.java index 71d2042c1e..5539d5cfda 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptRMCaveatConfigService.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/caveat/ScriptRMCaveatConfigService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/compatibility/CompatibilityModel.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/compatibility/CompatibilityModel.java index 1989a45e47..52aa631f42 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/compatibility/CompatibilityModel.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/compatibility/CompatibilityModel.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/DeprecatedExtendedSecurityService.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/DeprecatedExtendedSecurityService.java index 5a16ad51db..a15d202873 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/DeprecatedExtendedSecurityService.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/DeprecatedExtendedSecurityService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedReaderDynamicAuthority.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedReaderDynamicAuthority.java index fe7b59a6fa..4cb68689da 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedReaderDynamicAuthority.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedReaderDynamicAuthority.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityBaseDynamicAuthority.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityBaseDynamicAuthority.java index f32004c22c..734f9e10a1 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityBaseDynamicAuthority.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityBaseDynamicAuthority.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedWriterDynamicAuthority.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedWriterDynamicAuthority.java index d1f1a3355a..cc515d2288 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedWriterDynamicAuthority.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/ExtendedWriterDynamicAuthority.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/FilePlanAuthenticationService.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/FilePlanAuthenticationService.java index 96a3436031..d348aa3e9f 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/FilePlanAuthenticationService.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/FilePlanAuthenticationService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/FilePlanAuthenticationServiceImpl.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/FilePlanAuthenticationServiceImpl.java index bcd9ab7c3d..f14f2aa8c4 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/FilePlanAuthenticationServiceImpl.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/FilePlanAuthenticationServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/RecordsManagementSecurityService.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/RecordsManagementSecurityService.java index 890360d557..13df56269b 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/RecordsManagementSecurityService.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/RecordsManagementSecurityService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/RecordsManagementSecurityServiceImpl.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/RecordsManagementSecurityServiceImpl.java index 234d39f880..fd34d6728c 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/RecordsManagementSecurityServiceImpl.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/RecordsManagementSecurityServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/Role.java b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/Role.java index bc871aaa76..898af3abf6 100644 --- a/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/Role.java +++ b/rm-community/rm-community-repo/source/compatibility/org/alfresco/module/org_alfresco_module_rm/security/Role.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementPolicies.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementPolicies.java index d92158830f..c9db9cf4cd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementPolicies.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementPolicies.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceRegistry.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceRegistry.java index 796f41c42c..b0bfa44fa2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceRegistry.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceRegistry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceRegistryImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceRegistryImpl.java index e2cad5e5e9..07e2a1abf3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceRegistryImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/RecordsManagementServiceRegistryImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/AuditableActionExecuterAbstractBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/AuditableActionExecuterAbstractBase.java index f32bd7bc3b..2af41a3451 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/AuditableActionExecuterAbstractBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/AuditableActionExecuterAbstractBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/PropertySubActionExecuterAbstractBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/PropertySubActionExecuterAbstractBase.java index 1e1b8e7a37..faceddf98c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/PropertySubActionExecuterAbstractBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/PropertySubActionExecuterAbstractBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RMActionExecuterAbstractBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RMActionExecuterAbstractBase.java index b8dc8fe9e8..9f06310c41 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RMActionExecuterAbstractBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RMActionExecuterAbstractBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RMDispositionActionExecuterAbstractBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RMDispositionActionExecuterAbstractBase.java index 11546564b5..38db2e2cac 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RMDispositionActionExecuterAbstractBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RMDispositionActionExecuterAbstractBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementAction.java index 3c50f8d381..f1a241d163 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionCondition.java index 4fe571173d..8eed471459 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionDefinition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionDefinition.java index 8c2fca0ec3..95032e410c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionDefinition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionDefinition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionDefinitionImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionDefinitionImpl.java index 48ec255e78..4e346c2470 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionDefinitionImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionDefinitionImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionEvaluatorAbstractBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionEvaluatorAbstractBase.java index 83dbdd46df..396a60f120 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionEvaluatorAbstractBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionConditionEvaluatorAbstractBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionDefinition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionDefinition.java index 7af3d20597..b7902c0a52 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionDefinition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionDefinition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionDefinitionImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionDefinitionImpl.java index 4845e8e18e..1f8f16e469 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionDefinitionImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionDefinitionImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionResult.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionResult.java index 04deb85a57..ae4579c550 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionResult.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionResult.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionService.java index 73d1f74e82..b566fb7644 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionServiceImpl.java index 2b105bdff7..33ee1a94ba 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/RecordsManagementActionServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/ScheduledDispositionJob.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/ScheduledDispositionJob.java index 683a875be7..d0c85837be 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/ScheduledDispositionJob.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/ScheduledDispositionJob.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/CustomParameterConstraint.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/CustomParameterConstraint.java index bb34f4e24f..ff468ffad5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/CustomParameterConstraint.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/CustomParameterConstraint.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/DispositionActionParameterConstraint.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/DispositionActionParameterConstraint.java index f60c9da3e5..de93881739 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/DispositionActionParameterConstraint.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/DispositionActionParameterConstraint.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/ManualEventParameterConstraint.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/ManualEventParameterConstraint.java index 0101a7c148..3c4e4efe7c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/ManualEventParameterConstraint.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/ManualEventParameterConstraint.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/RecordTypeParameterConstraint.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/RecordTypeParameterConstraint.java index d99cfa367f..35a79e0f22 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/RecordTypeParameterConstraint.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/RecordTypeParameterConstraint.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/VersionParameterConstraint.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/VersionParameterConstraint.java index 3d036bd7e5..6d21186445 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/VersionParameterConstraint.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/constraint/VersionParameterConstraint.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/CreateRecordAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/CreateRecordAction.java index 5ee4cff8b6..172a9a3b5d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/CreateRecordAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/CreateRecordAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/DeclareAsVersionRecordAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/DeclareAsVersionRecordAction.java index 71d903f58d..5802d79be5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/DeclareAsVersionRecordAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/DeclareAsVersionRecordAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/ExecuteScriptAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/ExecuteScriptAction.java index 2aac9724b6..d436172034 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/ExecuteScriptAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/ExecuteScriptAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/HideRecordAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/HideRecordAction.java index dfe644a1c0..fa71d294e6 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/HideRecordAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/HideRecordAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/MoveDmRecordAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/MoveDmRecordAction.java index 1b2c6aed2f..85be65c1cd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/MoveDmRecordAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/MoveDmRecordAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/RecordableVersionConfigAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/RecordableVersionConfigAction.java index e647bf32a4..1e06ba65d7 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/RecordableVersionConfigAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/dm/RecordableVersionConfigAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/CapabilityConditionEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/CapabilityConditionEvaluator.java index 3324f1802f..f4a04d8cad 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/CapabilityConditionEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/CapabilityConditionEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/DelegateActionCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/DelegateActionCondition.java index 9be63da988..c34074e35c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/DelegateActionCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/DelegateActionCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/DispositionActionRelativePositions.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/DispositionActionRelativePositions.java index f2f978d02c..58951a313e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/DispositionActionRelativePositions.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/DispositionActionRelativePositions.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/HasDispositionActionEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/HasDispositionActionEvaluator.java index 36356cab7e..7786ea22ed 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/HasDispositionActionEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/HasDispositionActionEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/IsKindEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/IsKindEvaluator.java index c633ac7b06..129da4ba66 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/IsKindEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/IsKindEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/IsRecordTypeEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/IsRecordTypeEvaluator.java index 4aa1c78a7d..7bc9fb205e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/IsRecordTypeEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/evaluator/IsRecordTypeEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/AddRecordTypeAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/AddRecordTypeAction.java index 89ce37f58e..452d50e844 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/AddRecordTypeAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/AddRecordTypeAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/ApplyCustomTypeAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/ApplyCustomTypeAction.java index a01df614a5..ccb2c66c81 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/ApplyCustomTypeAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/ApplyCustomTypeAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/BroadcastDispositionActionDefinitionUpdateAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/BroadcastDispositionActionDefinitionUpdateAction.java index 4237b60db8..b21d714dd4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/BroadcastDispositionActionDefinitionUpdateAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/BroadcastDispositionActionDefinitionUpdateAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CloseRecordFolderAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CloseRecordFolderAction.java index a7748b4a09..efaf0a8b39 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CloseRecordFolderAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CloseRecordFolderAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CompleteEventAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CompleteEventAction.java index 994679e876..87411e029a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CompleteEventAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CompleteEventAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CopyMoveLinkFileToBaseAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CopyMoveLinkFileToBaseAction.java index 48a770b4d5..5eea7c0b1d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CopyMoveLinkFileToBaseAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CopyMoveLinkFileToBaseAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CopyToAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CopyToAction.java index 5a6c4af107..ef6df9b4dd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CopyToAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CopyToAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CreateDispositionScheduleAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CreateDispositionScheduleAction.java index 2400e8730d..07bbffe5e1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CreateDispositionScheduleAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CreateDispositionScheduleAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CutOffAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CutOffAction.java index bff6a62bfe..655def29e7 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CutOffAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/CutOffAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DeclareRecordAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DeclareRecordAction.java index 2042701e27..e6af3023dd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DeclareRecordAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DeclareRecordAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DelegateAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DelegateAction.java index 46b6f6b161..148ae7df6a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DelegateAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DelegateAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DeleteHoldAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DeleteHoldAction.java index 9f05fbb7dd..080a3e30e3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DeleteHoldAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DeleteHoldAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DestroyAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DestroyAction.java index be85fc0cc6..b033cc82ef 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DestroyAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/DestroyAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditDispositionActionAsOfDateAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditDispositionActionAsOfDateAction.java index 5b64626211..391b725091 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditDispositionActionAsOfDateAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditDispositionActionAsOfDateAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditHoldReasonAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditHoldReasonAction.java index 037b698943..61d1e14752 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditHoldReasonAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditHoldReasonAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditReviewAsOfDateAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditReviewAsOfDateAction.java index 2826169dea..e6c7a857a8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditReviewAsOfDateAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/EditReviewAsOfDateAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileReportAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileReportAction.java index d8e973679b..bb8290b3cf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileReportAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileReportAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileToAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileToAction.java index 0a7c4bac0a..15cd607fb0 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileToAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileToAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FreezeAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FreezeAction.java index 32e878aed5..59512fea90 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FreezeAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FreezeAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/LinkToAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/LinkToAction.java index 0453f56f14..bcc5cb9d88 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/LinkToAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/LinkToAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/MoveToAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/MoveToAction.java index 70bd61c9b0..2ffe330857 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/MoveToAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/MoveToAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/OpenRecordFolderAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/OpenRecordFolderAction.java index 02c89218af..7cf2e94f6e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/OpenRecordFolderAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/OpenRecordFolderAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RejectAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RejectAction.java index 0aaf7ced2e..9674ef0ace 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RejectAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RejectAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RelinquishHoldAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RelinquishHoldAction.java index c0ae38f0c2..857940f217 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RelinquishHoldAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RelinquishHoldAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RequestInfoAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RequestInfoAction.java index 13ba64eefc..42fff6682c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RequestInfoAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RequestInfoAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RetainAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RetainAction.java index 8428fe350c..e66bf0e075 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RetainAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/RetainAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/SplitEmailAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/SplitEmailAction.java index ab77417401..f1fc557ab1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/SplitEmailAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/SplitEmailAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/TransferAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/TransferAction.java index 34bb71ded5..039b750720 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/TransferAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/TransferAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/TransferCompleteAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/TransferCompleteAction.java index af2b350e8d..dcf5e81de7 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/TransferCompleteAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/TransferCompleteAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnCutoffAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnCutoffAction.java index 3838a54cbb..7d234bf1f1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnCutoffAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnCutoffAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UndeclareRecordAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UndeclareRecordAction.java index 8cc23b3248..924edede7a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UndeclareRecordAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UndeclareRecordAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UndoEventAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UndoEventAction.java index ed09ce6818..9392501f96 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UndoEventAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UndoEventAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnfreezeAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnfreezeAction.java index 6d6edbacce..6cec628723 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnfreezeAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnfreezeAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnlinkFromAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnlinkFromAction.java index 13d0dda7ae..aa23479abd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnlinkFromAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnlinkFromAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/CannotApplyConstraintMetadataException.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/CannotApplyConstraintMetadataException.java index 0965f370ff..accf33a9a1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/CannotApplyConstraintMetadataException.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/CannotApplyConstraintMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/CustomMetadataException.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/CustomMetadataException.java index b9f2412f8b..1109fce526 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/CustomMetadataException.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/CustomMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/InvalidCustomAspectMetadataException.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/InvalidCustomAspectMetadataException.java index b94fa874fd..e7fc43792d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/InvalidCustomAspectMetadataException.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/InvalidCustomAspectMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/NotCustomisableMetadataException.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/NotCustomisableMetadataException.java index ee8a958093..2da938cb95 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/NotCustomisableMetadataException.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/NotCustomisableMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/PropertyAlreadyExistsMetadataException.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/PropertyAlreadyExistsMetadataException.java index ea3111b7b2..c1cc3a5abf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/PropertyAlreadyExistsMetadataException.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/PropertyAlreadyExistsMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminBase.java index 1acf5bdf7c..e3d3a3bee8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminService.java index 97079eff98..bd9356605f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminServiceImpl.java index f167fbbd16..62a90bbc74 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditEntry.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditEntry.java index 13e46d9898..21ae327b31 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditEntry.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditEntry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditQueryParameters.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditQueryParameters.java index 817125cc1d..16800526ca 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditQueryParameters.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditQueryParameters.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditService.java index 137414f6db..be9dec123b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java index ab4643f1bd..573dc9d2b4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/AuditEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/AuditEvent.java index 508d0f9c07..cc2e689439 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/AuditEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/AuditEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CopyToAuditEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CopyToAuditEvent.java index cce083863e..afd2af7e43 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CopyToAuditEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CopyToAuditEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CreateObjectAuditEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CreateObjectAuditEvent.java index 37815a5f48..0e41b303cd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CreateObjectAuditEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CreateObjectAuditEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CreatePersonAuditEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CreatePersonAuditEvent.java index 8b6e28607f..d46103d0c9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CreatePersonAuditEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/CreatePersonAuditEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/DeleteObjectAuditEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/DeleteObjectAuditEvent.java index 6628bbe8ed..245a843bcd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/DeleteObjectAuditEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/DeleteObjectAuditEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/FileToAuditEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/FileToAuditEvent.java index 19118aeea0..a8aea9c43e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/FileToAuditEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/FileToAuditEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/LinkToAuditEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/LinkToAuditEvent.java index c79f95cdc7..e3694b3198 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/LinkToAuditEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/LinkToAuditEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/MoveToAuditEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/MoveToAuditEvent.java index ce50fbb479..403a157f60 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/MoveToAuditEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/MoveToAuditEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/RecordableVersionPolicyAuditEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/RecordableVersionPolicyAuditEvent.java index 1338f6c4ae..72c04f119f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/RecordableVersionPolicyAuditEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/RecordableVersionPolicyAuditEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/UpdateObjectAuditEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/UpdateObjectAuditEvent.java index 02ee57edd9..d0f7a82fcd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/UpdateObjectAuditEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/event/UpdateObjectAuditEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/AuthenticatedUserRolesDataExtractor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/AuthenticatedUserRolesDataExtractor.java index 48a0ffbc29..63e0604e92 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/AuthenticatedUserRolesDataExtractor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/AuthenticatedUserRolesDataExtractor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanIdentifierDataExtractor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanIdentifierDataExtractor.java index 654a0d1b7a..1b4073489b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanIdentifierDataExtractor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanIdentifierDataExtractor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanNamePathDataExtractor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanNamePathDataExtractor.java index e323f539da..b9c2fff94d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanNamePathDataExtractor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanNamePathDataExtractor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanNodeRefPathDataExtractor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanNodeRefPathDataExtractor.java index e37e9acd1c..dd495b8fdc 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanNodeRefPathDataExtractor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/extractor/FilePlanNodeRefPathDataExtractor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/BootstrapImporterModuleComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/BootstrapImporterModuleComponent.java index f8db349d8f..f60d1262f0 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/BootstrapImporterModuleComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/BootstrapImporterModuleComponent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/ModuleCompatibilityComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/ModuleCompatibilityComponent.java index 042f3ad7b7..b30dc0269d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/ModuleCompatibilityComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/ModuleCompatibilityComponent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordContributorsGroupBootstrapComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordContributorsGroupBootstrapComponent.java index 06e020fcb6..08aeee6b77 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordContributorsGroupBootstrapComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordContributorsGroupBootstrapComponent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordsManagementBootstrap.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordsManagementBootstrap.java index da244ae5df..fe3466a75c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordsManagementBootstrap.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordsManagementBootstrap.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/AbstractCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/AbstractCapability.java index e68cf5ff40..e9901de0a4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/AbstractCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/AbstractCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/Capability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/Capability.java index 1146b1a45b..358ab7d5b1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/Capability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/Capability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CapabilityService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CapabilityService.java index 7caa4ed0e4..4b78cb894c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CapabilityService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CapabilityService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CapabilityServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CapabilityServiceImpl.java index 8b3a47329d..648d401ffa 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CapabilityServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CapabilityServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CompositeCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CompositeCapability.java index 4c5043edee..dce8c18259 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CompositeCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/CompositeCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/Group.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/Group.java index 41310599df..850998df2f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/Group.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/Group.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/GroupImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/GroupImpl.java index 109d2782d0..4da88d58d4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/GroupImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/GroupImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/PolicyRegister.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/PolicyRegister.java index 488859bb2d..f240e411b4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/PolicyRegister.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/PolicyRegister.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMActionProxyFactoryBean.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMActionProxyFactoryBean.java index e526aba6de..ef61f01c36 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMActionProxyFactoryBean.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMActionProxyFactoryBean.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMAfterInvocationProvider.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMAfterInvocationProvider.java index b9de6dfeca..5bf6e0cbfc 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMAfterInvocationProvider.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMAfterInvocationProvider.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMEntryVoter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMEntryVoter.java index 5b24a89536..631d664e14 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMEntryVoter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMEntryVoter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMPermissionModel.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMPermissionModel.java index 85477bb5ba..04df05b91d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMPermissionModel.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMPermissionModel.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMSecurityCommon.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMSecurityCommon.java index 8e38d62e00..52d66546da 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMSecurityCommon.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMSecurityCommon.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/AbstractCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/AbstractCapabilityCondition.java index 3785596014..e0dbb83186 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/AbstractCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/AbstractCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/CapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/CapabilityCondition.java index 811024ca9d..ffecfb8564 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/CapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/CapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/DeclarativeCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/DeclarativeCapability.java index 0e920f8e69..5a4b594b24 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/DeclarativeCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/DeclarativeCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/DeclarativeCompositeCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/DeclarativeCompositeCapability.java index 760f1cf93f..6a09083e95 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/DeclarativeCompositeCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/DeclarativeCompositeCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/AtLeastOneCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/AtLeastOneCondition.java index fc9efcbd9e..343dc82e5f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/AtLeastOneCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/AtLeastOneCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/ClosedCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/ClosedCapabilityCondition.java index 1483f4577f..2db7880166 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/ClosedCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/ClosedCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/CutoffCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/CutoffCapabilityCondition.java index e9b9c06f86..4369f896aa 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/CutoffCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/CutoffCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/DeclaredCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/DeclaredCapabilityCondition.java index 3d66bf52e3..f9ea7b989a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/DeclaredCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/DeclaredCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/DestroyedCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/DestroyedCapabilityCondition.java index 1be5dd4fbd..56e22bea45 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/DestroyedCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/DestroyedCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FailCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FailCapabilityCondition.java index e3fc65f8cf..0e19e29e81 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FailCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FailCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FileableCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FileableCapabilityCondition.java index 8322c4ddc5..084a8497df 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FileableCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FileableCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingCapabilityCondition.java index 744ce93407..c9cc6c49a4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingOnHoldContainerCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingOnHoldContainerCapabilityCondition.java index f8bd0df04d..72c375dc92 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingOnHoldContainerCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingOnHoldContainerCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenCapabilityCondition.java index d713341851..ce4d2f222a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenOrHoldCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenOrHoldCondition.java index 664cbb431a..655368f55c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenOrHoldCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenOrHoldCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasAspectCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasAspectCapabilityCondition.java index 427be98bf4..ec27fba79a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasAspectCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasAspectCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasDispositionDateCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasDispositionDateCapabilityCondition.java index 307a279268..8351e1cdff 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasDispositionDateCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasDispositionDateCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasEventsCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasEventsCapabilityCondition.java index 32346d57b2..c73a1dc819 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasEventsCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HasEventsCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HoldCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HoldCapabilityCondition.java index 1babc88bdc..8dfd2a1c95 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HoldCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HoldCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsClassifiedCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsClassifiedCapabilityCondition.java index f765fae282..58a1462b17 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsClassifiedCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsClassifiedCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsPropertySetCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsPropertySetCondition.java index 30c64d592f..1537f8fe86 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsPropertySetCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsPropertySetCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordCategoryCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordCategoryCondition.java index 4eb77b4086..5081f596e4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordCategoryCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordCategoryCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordCondition.java index 2bca7e5352..eed6f6df17 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordFolderCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordFolderCondition.java index c7e2ee3975..cb23d60112 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordFolderCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsRecordFolderCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsScheduledCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsScheduledCapabilityCondition.java index 89d32ad059..d56891b9d5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsScheduledCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsScheduledCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsTransferAccessionCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsTransferAccessionCapabilityCondition.java index abf0526ce1..2e7db4f5be 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsTransferAccessionCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/IsTransferAccessionCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/LastDispositionActionCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/LastDispositionActionCondition.java index cb7efeb3ba..1801b91ba7 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/LastDispositionActionCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/LastDispositionActionCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MayBeScheduledCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MayBeScheduledCapabilityCondition.java index bc5470a893..efaf39ca8b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MayBeScheduledCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MayBeScheduledCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MovableRecordFolderCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MovableRecordFolderCapabilityCondition.java index 41c0f4aba2..9daf148d07 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MovableRecordFolderCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MovableRecordFolderCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/RecordFiledCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/RecordFiledCapabilityCondition.java index 8a610e6d89..8c1d030ea0 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/RecordFiledCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/RecordFiledCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/TransferredCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/TransferredCapabilityCondition.java index 986a042811..95dc37d416 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/TransferredCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/TransferredCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/VitalRecordOrFolderCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/VitalRecordOrFolderCapabilityCondition.java index b24ad82bf8..4198f359db 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/VitalRecordOrFolderCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/VitalRecordOrFolderCapabilityCondition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/ChangeOrDeleteReferencesCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/ChangeOrDeleteReferencesCapability.java index 0915110e51..af4ac2aadd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/ChangeOrDeleteReferencesCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/ChangeOrDeleteReferencesCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/CreateCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/CreateCapability.java index a0b5a1b9a8..50584a255c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/CreateCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/CreateCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/DeleteLinksCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/DeleteLinksCapability.java index 3d81281edb..fb47612195 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/DeleteLinksCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/DeleteLinksCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/EditNonRecordMetadataCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/EditNonRecordMetadataCapability.java index 46fed73951..5b72c96001 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/EditNonRecordMetadataCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/EditNonRecordMetadataCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/UpdateCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/UpdateCapability.java index 70263a3b60..6cb17bc5a9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/UpdateCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/UpdateCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/ViewRecordsCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/ViewRecordsCapability.java index af0e252b16..198be04957 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/ViewRecordsCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/ViewRecordsCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/AbstractBasePolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/AbstractBasePolicy.java index 6d4c7c5f82..55fd9f645d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/AbstractBasePolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/AbstractBasePolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/AssocPolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/AssocPolicy.java index 719f4c196d..b22724cd19 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/AssocPolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/AssocPolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/ConfigAttributeDefinition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/ConfigAttributeDefinition.java index b80a247fee..c991b6649f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/ConfigAttributeDefinition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/ConfigAttributeDefinition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/CreatePolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/CreatePolicy.java index 4ca4bdb31e..38ff76b67e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/CreatePolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/CreatePolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/DeclarePolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/DeclarePolicy.java index de3cca9990..cb49ad45ce 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/DeclarePolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/DeclarePolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/DeletePolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/DeletePolicy.java index 70533fa502..609335a4fb 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/DeletePolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/DeletePolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/MovePolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/MovePolicy.java index cebcec2871..1e58ecebdf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/MovePolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/MovePolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/Policy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/Policy.java index d2d847c93f..d4fd35f3ae 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/Policy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/Policy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/ReadPolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/ReadPolicy.java index fa7329d979..fbabf7b943 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/ReadPolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/ReadPolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/UpdatePolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/UpdatePolicy.java index 8a45627e2f..8c41643cc8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/UpdatePolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/UpdatePolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/UpdatePropertiesPolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/UpdatePropertiesPolicy.java index b250e09d13..3d8b663f8c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/UpdatePropertiesPolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/UpdatePropertiesPolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/WriteContentPolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/WriteContentPolicy.java index bdd15f5e63..f682a40c5a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/WriteContentPolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/policy/WriteContentPolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/ContentDestructionComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/ContentDestructionComponent.java index 5f779f2ddd..a7de2348f0 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/ContentDestructionComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/ContentDestructionComponent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/EagerContentStoreCleaner.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/EagerContentStoreCleaner.java index 8eede2341f..b0e95c93dd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/EagerContentStoreCleaner.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/EagerContentStoreCleaner.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser.java index aa52bada41..ee0dcde916 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser522022M.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser522022M.java index ae59fd15ea..44d9caf2d9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser522022M.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser522022M.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSet.java index fb964e656f..f891c38163 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetBase.java index 007d49a338..10c058c384 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetService.java index 2b50543132..f257f57b37 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetServiceImpl.java index a50fde4324..2ef29b6b93 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionAction.java index ea7d845382..71ad6c4486 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionDefinition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionDefinition.java index 453fc07c57..95bc939c14 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionDefinition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionDefinition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionDefinitionImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionDefinitionImpl.java index 707fb79fff..80ba26bbcd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionDefinitionImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionDefinitionImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionImpl.java index 6cd1e4138c..2e5a12664f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionActionImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionSchedule.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionSchedule.java index cf04f25251..f430a78a94 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionSchedule.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionSchedule.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionScheduleImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionScheduleImpl.java index a2463fb34e..4151faf241 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionScheduleImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionScheduleImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionSelectionStrategy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionSelectionStrategy.java index 7ce6af3184..08d7b686c3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionSelectionStrategy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionSelectionStrategy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionService.java index 3d72f2f1c5..f9fa77e9f1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImpl.java index 55b3582911..d07034fd4c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/NextActionFromDisposition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/NextActionFromDisposition.java index d2aa08b250..0c69b192d7 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/NextActionFromDisposition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/NextActionFromDisposition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java index ae1a9f50d9..9f5b70b8eb 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/DOD5015FilePlanTypeBootstrap.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/DOD5015FilePlanTypeBootstrap.java index 21f27aa541..1046218c16 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/DOD5015FilePlanTypeBootstrap.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/DOD5015FilePlanTypeBootstrap.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/DOD5015Model.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/DOD5015Model.java index 8baa48787a..419dcf2bc5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/DOD5015Model.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/DOD5015Model.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/model/dod/aspect/DOD5015RecordAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/model/dod/aspect/DOD5015RecordAspect.java index fab67fa380..d45fde31c2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/model/dod/aspect/DOD5015RecordAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dod5015/model/dod/aspect/DOD5015RecordAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomEmailMappingService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomEmailMappingService.java index 70b78dc139..639ce90a1c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomEmailMappingService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomEmailMappingService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomEmailMappingServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomEmailMappingServiceImpl.java index a8b848666f..b693ee68e6 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomEmailMappingServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomEmailMappingServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomMapping.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomMapping.java index ae5931b463..dce8cc37ce 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomMapping.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomMapping.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomisableEmailMappingKeyBootstrap.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomisableEmailMappingKeyBootstrap.java index 6b573d88ca..bed0cb3f8a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomisableEmailMappingKeyBootstrap.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/CustomisableEmailMappingKeyBootstrap.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracter.java index b601d84d22..fe50e56073 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/EventCompletionDetails.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/EventCompletionDetails.java index c296154987..1661fff70c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/EventCompletionDetails.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/EventCompletionDetails.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/OnReferenceCreateEventType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/OnReferenceCreateEventType.java index eff86eac68..ff4247997f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/OnReferenceCreateEventType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/OnReferenceCreateEventType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/OnReferencedRecordActionedUpon.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/OnReferencedRecordActionedUpon.java index 04b4e7cedc..2fb988c8bf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/OnReferencedRecordActionedUpon.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/OnReferencedRecordActionedUpon.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEvent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEvent.java index 27be9232bb..54bdbeaa75 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEvent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEvent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventService.java index 2f8218e15d..6cb36119c6 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventServiceImpl.java index 49dbcd9cc9..2f77ca390d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventType.java index 54725bcbca..7f4678f4e5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/RecordsManagementEventType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/SimpleRecordsManagementEventTypeImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/SimpleRecordsManagementEventTypeImpl.java index d3c55143d6..0cc2e4d816 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/SimpleRecordsManagementEventTypeImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/event/SimpleRecordsManagementEventTypeImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanComponentKind.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanComponentKind.java index 8b44c0e8d0..e99bb1603d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanComponentKind.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanComponentKind.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanService.java index 34003a90b4..ca6f521174 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanServiceImpl.java index 613fec4c54..727eae066e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/fileplan/FilePlanServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementFormFilter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementFormFilter.java index 1b0454f177..b6ee99d3be 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementFormFilter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementFormFilter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementNodeFormFilter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementNodeFormFilter.java index a2484c2723..2908110ade 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementNodeFormFilter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementNodeFormFilter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementTypeFormFilter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementTypeFormFilter.java index 586a6699d2..d06ed8d8e8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementTypeFormFilter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementTypeFormFilter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/freeze/FreezeService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/freeze/FreezeService.java index fc2adc37ec..4277601f06 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/freeze/FreezeService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/freeze/FreezeService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/freeze/FreezeServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/freeze/FreezeServiceImpl.java index 8f4121a20d..83aecfbcf1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/freeze/FreezeServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/freeze/FreezeServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldService.java index 82228dde30..c22793ea5c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldServiceImpl.java index 585d994a52..0bb17bbd52 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/BasicIdentifierGenerator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/BasicIdentifierGenerator.java index e90208cd88..9893dd556a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/BasicIdentifierGenerator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/BasicIdentifierGenerator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierGenerator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierGenerator.java index 8df6778cf9..62c5edcdf7 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierGenerator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierGenerator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierGeneratorBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierGeneratorBase.java index 1804553073..e4b25f4d91 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierGeneratorBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierGeneratorBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierService.java index d335e6d1b6..805cd26cf3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierServiceImpl.java index 58b7c86e8d..020dda03ce 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/identifier/IdentifierServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/DispositionLifecycleJobExecuter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/DispositionLifecycleJobExecuter.java index cebad424b0..68bb6cd3f8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/DispositionLifecycleJobExecuter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/DispositionLifecycleJobExecuter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/NotifyOfRecordsDueForReviewJobExecuter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/NotifyOfRecordsDueForReviewJobExecuter.java index f611606969..5b3ddc888f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/NotifyOfRecordsDueForReviewJobExecuter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/NotifyOfRecordsDueForReviewJobExecuter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/PublishUpdatesJobExecuter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/PublishUpdatesJobExecuter.java index 8e36c07282..774a3bae19 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/PublishUpdatesJobExecuter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/PublishUpdatesJobExecuter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/RecordsManagementJob.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/RecordsManagementJob.java index 43b302edc2..972bd32387 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/RecordsManagementJob.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/RecordsManagementJob.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/RecordsManagementJobExecuter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/RecordsManagementJobExecuter.java index 477cae3125..87f2e9d314 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/RecordsManagementJobExecuter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/RecordsManagementJobExecuter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/BasePublishExecutor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/BasePublishExecutor.java index ccf4c572bf..168a46df6b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/BasePublishExecutor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/BasePublishExecutor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/DispositionActionDefinitionPublishExecutor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/DispositionActionDefinitionPublishExecutor.java index 159a0fe956..04f9a7240b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/DispositionActionDefinitionPublishExecutor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/DispositionActionDefinitionPublishExecutor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/PublishExecutor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/PublishExecutor.java index 6a621199ec..53bde49682 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/PublishExecutor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/PublishExecutor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/PublishExecutorRegistry.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/PublishExecutorRegistry.java index c9b56cac91..599599903f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/PublishExecutorRegistry.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/job/publish/PublishExecutorRegistry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptCapability.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptCapability.java index 796600cd45..d63baf8ae3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptCapability.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptCapability.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptRecordsManagmentNode.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptRecordsManagmentNode.java index 099d5f73f9..7ae0fc4bcf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptRecordsManagmentNode.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptRecordsManagmentNode.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptRecordsManagmentService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptRecordsManagmentService.java index 315a3d5f1f..b81decb6e8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptRecordsManagmentService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/ScriptRecordsManagmentService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/BaseEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/BaseEvaluator.java index a75ed6d3d2..10401f9c4b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/BaseEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/BaseEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/JSONConversionComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/JSONConversionComponent.java index 17c3b42ae7..52fe863632 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/JSONConversionComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/JSONConversionComponent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/CutoffEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/CutoffEvaluator.java index 066e46a71a..f84106794a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/CutoffEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/CutoffEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/EditRecordMetadataActionEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/EditRecordMetadataActionEvaluator.java index 76979b5471..2fca444249 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/EditRecordMetadataActionEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/EditRecordMetadataActionEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FolderOpenClosedEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FolderOpenClosedEvaluator.java index 45af66bd91..52af40f69c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FolderOpenClosedEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FolderOpenClosedEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FrozenEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FrozenEvaluator.java index 5f7c854120..a2e5a478b9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FrozenEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FrozenEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/HasAspectEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/HasAspectEvaluator.java index 27901368ca..68e681f5eb 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/HasAspectEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/HasAspectEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/MultiParentEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/MultiParentEvaluator.java index c07109548a..128e89b83c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/MultiParentEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/MultiParentEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/NonElectronicEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/NonElectronicEvaluator.java index 14315fdb54..df2796d104 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/NonElectronicEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/NonElectronicEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/SplitEmailActionEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/SplitEmailActionEvaluator.java index fc6b1372c7..8ca52be0fc 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/SplitEmailActionEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/SplitEmailActionEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TransferEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TransferEvaluator.java index 7ced4684c9..d100007b78 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TransferEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TransferEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TrueEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TrueEvaluator.java index 4116579a38..02ff4db4a4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TrueEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TrueEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/VitalRecordEvaluator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/VitalRecordEvaluator.java index 2de21cf37f..35aa2a2df3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/VitalRecordEvaluator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/VitalRecordEvaluator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/BaseBehaviourBean.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/BaseBehaviourBean.java index 042c4c1405..4a16aefe0c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/BaseBehaviourBean.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/BaseBehaviourBean.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/CustomisableTypesBootstrap.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/CustomisableTypesBootstrap.java index c9f0fd9167..0e21d35140 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/CustomisableTypesBootstrap.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/CustomisableTypesBootstrap.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementCustomModel.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementCustomModel.java index 4d21ac91b9..1016539232 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementCustomModel.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementCustomModel.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementModel.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementModel.java index df48940fbc..1d8d24403c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementModel.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/RecordsManagementModel.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/behaviour/AbstractDisposableItem.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/behaviour/AbstractDisposableItem.java index d5bd52b2fc..cc059988bb 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/behaviour/AbstractDisposableItem.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/behaviour/AbstractDisposableItem.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/behaviour/RecordsManagementSearchBehaviour.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/behaviour/RecordsManagementSearchBehaviour.java index 6835ce016e..11922f0968 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/behaviour/RecordsManagementSearchBehaviour.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/behaviour/RecordsManagementSearchBehaviour.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/compatibility/DictionaryBootstrapPostProcessor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/compatibility/DictionaryBootstrapPostProcessor.java index 78b9bcfa08..0fe89d9455 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/compatibility/DictionaryBootstrapPostProcessor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/compatibility/DictionaryBootstrapPostProcessor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/AccendedAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/AccendedAspect.java index 1a6bfd20de..6bddd909e6 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/AccendedAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/AccendedAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/CutoffAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/CutoffAspect.java index 19e961f64c..81830a34a1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/CutoffAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/CutoffAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/DeclaredRecordAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/DeclaredRecordAspect.java index 0cfb8f03e8..afbb4b0723 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/DeclaredRecordAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/DeclaredRecordAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/DispositionLifecycleAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/DispositionLifecycleAspect.java index b0ad2ef993..87ec024d13 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/DispositionLifecycleAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/DispositionLifecycleAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ExtendedSecurityAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ExtendedSecurityAspect.java index 50bc6cbfa4..550db41deb 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ExtendedSecurityAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ExtendedSecurityAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/FilePlanComponentAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/FilePlanComponentAspect.java index b8f2576cd9..c4603b817c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/FilePlanComponentAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/FilePlanComponentAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/FrozenAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/FrozenAspect.java index 0ffe6b9441..badb53d48d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/FrozenAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/FrozenAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/GhostedAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/GhostedAspect.java index c7f8c26dbe..32cbe36d21 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/GhostedAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/GhostedAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ProtectedAspects.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ProtectedAspects.java index 80adcc6e5d..9405ff4f97 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ProtectedAspects.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ProtectedAspects.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/QShareAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/QShareAspect.java index f4e0131d3d..faab81c1fc 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/QShareAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/QShareAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspect.java index 01544a50e8..c2e67a2460 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordComponentIdentifierAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordComponentIdentifierAspect.java index 8395eb92ea..84a001159b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordComponentIdentifierAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordComponentIdentifierAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordOriginatingDetailsAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordOriginatingDetailsAspect.java index 999a2224ed..1d4fd255ff 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordOriginatingDetailsAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordOriginatingDetailsAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordSearchAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordSearchAspect.java index d842604a07..6833fed6fb 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordSearchAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/RecordSearchAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ScheduledAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ScheduledAspect.java index 250108d155..b1b4eac4ee 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ScheduledAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/ScheduledAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/TransferredAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/TransferredAspect.java index 742ecf3a5c..4f11d232ab 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/TransferredAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/TransferredAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/TransferringAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/TransferringAspect.java index 3667536913..7565cd87e7 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/TransferringAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/TransferringAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/UncutoffAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/UncutoffAspect.java index 5d67606e0d..4cbac663b1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/UncutoffAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/UncutoffAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VersionRecordAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VersionRecordAspect.java index 870df13477..f4668ef8df 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VersionRecordAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VersionRecordAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VitalRecordAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VitalRecordAspect.java index 32b6090a80..895d9db1a5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VitalRecordAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VitalRecordAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VitalRecordDefinitionAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VitalRecordDefinitionAspect.java index 02ca556a38..b7c371e3c1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VitalRecordDefinitionAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VitalRecordDefinitionAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/CmObjectType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/CmObjectType.java index b3e0127268..2040068d51 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/CmObjectType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/CmObjectType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/DispositionActionDefinitionType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/DispositionActionDefinitionType.java index 344a1bb185..860d53972a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/DispositionActionDefinitionType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/DispositionActionDefinitionType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanType.java index 6ac9220c9d..37cf2d19a2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/HoldContainerType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/HoldContainerType.java index 6b57f03c87..aa527eb1f3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/HoldContainerType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/HoldContainerType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/NonElectronicRecordType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/NonElectronicRecordType.java index 64ac696ae0..1ca8952584 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/NonElectronicRecordType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/NonElectronicRecordType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordCategoryType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordCategoryType.java index 733383936c..50fded2fed 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordCategoryType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordCategoryType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderType.java index 40b46e2f45..242416567a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordsManagementContainerType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordsManagementContainerType.java index a1517015ff..3716b610c6 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordsManagementContainerType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordsManagementContainerType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RmSiteType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RmSiteType.java index fe1cae1df7..753d21c9f3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RmSiteType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RmSiteType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferContainerType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferContainerType.java index 5cab2a2290..b0febd9006 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferContainerType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferContainerType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferType.java index 465f5e57dd..64030d082d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordContainerType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordContainerType.java index a64bbe8e59..7a7eee5c2b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordContainerType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordContainerType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordFolderType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordFolderType.java index 51f4f62981..61d31a7990 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordFolderType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordFolderType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelAccessDeniedException.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelAccessDeniedException.java index 035728ffb9..dd7f6e1229 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelAccessDeniedException.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelAccessDeniedException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelSecurityService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelSecurityService.java index f05acdc211..3ba22c28e9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelSecurityService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelSecurityService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelSecurityServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelSecurityServiceImpl.java index c113ca564d..78837e7c92 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelSecurityServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ModelSecurityServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedAspect.java index becbb4d30c..6f81c50e92 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedModelArtifact.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedModelArtifact.java index b4fc21d4dd..1f54486eb2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedModelArtifact.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedModelArtifact.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedProperty.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedProperty.java index ce44d2b686..a1a31858c7 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedProperty.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/security/ProtectedProperty.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/notification/RecordsManagementNotificationHelper.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/notification/RecordsManagementNotificationHelper.java index 8930c65c25..41c3091674 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/notification/RecordsManagementNotificationHelper.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/notification/RecordsManagementNotificationHelper.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/AbstractModulePatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/AbstractModulePatch.java index 8811c30314..3e9fa6c2ae 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/AbstractModulePatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/AbstractModulePatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatch.java index a82adbd789..f368ab11e8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatchExecuter.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatchExecuter.java index 484007b4cf..160d1ba5e8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatchExecuter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatchExecuter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatchExecuterImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatchExecuterImpl.java index 3d3bf35403..808d0c735d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatchExecuterImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/ModulePatchExecuterImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/common/CapabilityPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/common/CapabilityPatch.java index 361139edb2..7af7bd9671 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/common/CapabilityPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/common/CapabilityPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java index 77e0a4e0d9..7b4a54abf4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/NotificationTemplatePatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/NotificationTemplatePatch.java index fa4a84ef7f..bffa2b206b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/NotificationTemplatePatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/NotificationTemplatePatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2FilePlanNodeRefPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2FilePlanNodeRefPatch.java index 1860969a74..0f9229cfa4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2FilePlanNodeRefPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2FilePlanNodeRefPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2ModelPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2ModelPatch.java index 11b2023dd9..d39086bea1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2ModelPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2ModelPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2SavedSearchPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2SavedSearchPatch.java index 4aa0090055..f0bceac972 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2SavedSearchPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v20/RMv2SavedSearchPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/NotificationTemplatePatch_v21.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/NotificationTemplatePatch_v21.java index 3b1d9fc66c..fcc78fe82a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/NotificationTemplatePatch_v21.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/NotificationTemplatePatch_v21.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21BehaviorScriptsPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21BehaviorScriptsPatch.java index 429a76c955..71365490c5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21BehaviorScriptsPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21BehaviorScriptsPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21CapabilityPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21CapabilityPatch.java index 4e992ec213..9e7955b134 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21CapabilityPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21CapabilityPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21InPlacePatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21InPlacePatch.java index 9acc250263..b4e33123fd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21InPlacePatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21InPlacePatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21PatchComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21PatchComponent.java index 4c6f7ba134..8d706280a6 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21PatchComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21PatchComponent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21RecordInheritancePatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21RecordInheritancePatch.java index 4d55901765..a3425d9c7b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21RecordInheritancePatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21RecordInheritancePatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21ReportServicePatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21ReportServicePatch.java index e54fcf9438..823c3274c0 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21ReportServicePatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21ReportServicePatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21RolesPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21RolesPatch.java index b325e97052..99cb8bd50b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21RolesPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v21/RMv21RolesPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22CapabilityPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22CapabilityPatch.java index ec34b34ed4..c59e4a689c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22CapabilityPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22CapabilityPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22DODCompliantSitePatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22DODCompliantSitePatch.java index a318fe2b4e..2cee23030b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22DODCompliantSitePatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22DODCompliantSitePatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22DODModelSeparationModulePatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22DODModelSeparationModulePatch.java index d5a1798188..2e6772ee6d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22DODModelSeparationModulePatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22DODModelSeparationModulePatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22FileHoldReportCapabilityPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22FileHoldReportCapabilityPatch.java index 90bb4cecf4..758aa6fba8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22FileHoldReportCapabilityPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22FileHoldReportCapabilityPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22GhostOnDestroyDispositionActionPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22GhostOnDestroyDispositionActionPatch.java index 1d8a0b34f2..15ada74e80 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22GhostOnDestroyDispositionActionPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22GhostOnDestroyDispositionActionPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22HoldCapabilityPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22HoldCapabilityPatch.java index 33af29fb6a..0bb887e8ac 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22HoldCapabilityPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22HoldCapabilityPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22HoldReportPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22HoldReportPatch.java index 4269eed665..b469ceeb1d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22HoldReportPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22HoldReportPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22RemoveInPlaceRolesFromAllPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22RemoveInPlaceRolesFromAllPatch.java index 4b92c9002a..378a273bf2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22RemoveInPlaceRolesFromAllPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22RemoveInPlaceRolesFromAllPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22ReportTemplatePatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22ReportTemplatePatch.java index 1aaa1fcbd1..04ff61d9fd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22ReportTemplatePatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22ReportTemplatePatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23EndRetentionCapabilityPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23EndRetentionCapabilityPatch.java index d60694c39f..548fd0b0a4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23EndRetentionCapabilityPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23EndRetentionCapabilityPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23RecordContributorsGroupPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23RecordContributorsGroupPatch.java index 3af0480150..83ac06d4b9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23RecordContributorsGroupPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23RecordContributorsGroupPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23SavedSearchesPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23SavedSearchesPatch.java index 83fdab1d53..c2d57cb79d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23SavedSearchesPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23SavedSearchesPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23VersionsEventPatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23VersionsEventPatch.java index 8ce098916f..315b47aa06 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23VersionsEventPatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23VersionsEventPatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v24/RMv24FilePlanContainerRuleInheritancePatch.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v24/RMv24FilePlanContainerRuleInheritancePatch.java index 458956b24f..1b91ee15f8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v24/RMv24FilePlanContainerRuleInheritancePatch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/v24/RMv24FilePlanContainerRuleInheritancePatch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessor.java index 9fc6e6bc1f..d3930a0f0b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/ChildrenWithPropertyValuesQueryParams.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/ChildrenWithPropertyValuesQueryParams.java index b0faa993e4..aacc945557 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/ChildrenWithPropertyValuesQueryParams.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/ChildrenWithPropertyValuesQueryParams.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java index afd031cd39..020bd19f07 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java index f62712d6ab..04f7313ed4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/InplaceRecordService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/InplaceRecordService.java index b8af623ff5..89e4c46b40 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/InplaceRecordService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/InplaceRecordService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/InplaceRecordServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/InplaceRecordServiceImpl.java index 51b6833072..3f5e86fd45 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/InplaceRecordServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/InplaceRecordServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordCreationException.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordCreationException.java index 5bd352cdd8..2dfa59faed 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordCreationException.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordCreationException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordLinkRuntimeException.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordLinkRuntimeException.java index 8081a617b7..447d80e5ed 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordLinkRuntimeException.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordLinkRuntimeException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMetadataBootstrap.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMetadataBootstrap.java index 39fd74f4bf..df6266ee74 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMetadataBootstrap.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMetadataBootstrap.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMissingMetadataException.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMissingMetadataException.java index 74fbacd567..fc94d4a2e1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMissingMetadataException.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMissingMetadataException.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordService.java index a54119ffe9..dc14bea308 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordServiceImpl.java index 8da0e40161..a2bea336ee 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - @@ -2132,4 +2132,4 @@ public class RecordServiceImpl extends BaseBehaviourBean localName = MessageFormat.format("{0}CustomProperties", localName); return QName.createQName(RM_CUSTOM_URI, localName); } -} \ No newline at end of file +} diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordUtils.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordUtils.java index c4dd92129a..91453e3312 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordUtils.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/record/RecordUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordableversion/RecordableVersionConfigService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordableversion/RecordableVersionConfigService.java index 687fef1b97..d24b8a66ed 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordableversion/RecordableVersionConfigService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordableversion/RecordableVersionConfigService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordableversion/RecordableVersionConfigServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordableversion/RecordableVersionConfigServiceImpl.java index 95d1ff86aa..8119ec4587 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordableversion/RecordableVersionConfigServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordableversion/RecordableVersionConfigServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordfolder/RecordFolderService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordfolder/RecordFolderService.java index 4348cc5f53..6654b3a8fa 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordfolder/RecordFolderService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordfolder/RecordFolderService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordfolder/RecordFolderServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordfolder/RecordFolderServiceImpl.java index ccd7e2a895..96ff8ac51c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordfolder/RecordFolderServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/recordfolder/RecordFolderServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/Relationship.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/Relationship.java index 303dec6d93..15e6f978a8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/Relationship.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/Relationship.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDefinition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDefinition.java index 38c363ddcb..39b55033ad 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDefinition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDefinition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDefinitionImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDefinitionImpl.java index 730f8a0980..7370a28ea3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDefinitionImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDefinitionImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDisplayName.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDisplayName.java index 0549a35733..c14549103c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDisplayName.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipDisplayName.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipImpl.java index 70e6d3a0ed..ee88524740 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipService.java index f49ec4cbf9..e167c20b79 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipServiceImpl.java index 418c5cd9ac..2e1f0d8794 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipType.java index 661ce145e2..9a809af9ee 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/relationship/RelationshipType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/Report.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/Report.java index 0976c5bb24..848d417368 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/Report.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/Report.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportGenerator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportGenerator.java index 167b308fa6..2c904db002 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportGenerator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportGenerator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportModel.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportModel.java index 10e613a735..1ab5d4bf1e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportModel.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportModel.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportService.java index ed52fcb92f..44fe41d954 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportServiceImpl.java index 50e69c753c..dc17a5f5b1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/ReportServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/BaseReportGenerator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/BaseReportGenerator.java index ec58e8d9e5..454e23465f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/BaseReportGenerator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/BaseReportGenerator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/DeclarativeReportGenerator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/DeclarativeReportGenerator.java index c1ec932842..fe71875688 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/DeclarativeReportGenerator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/DeclarativeReportGenerator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/ReportInfo.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/ReportInfo.java index 9430d47cf4..3dd2d8eddf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/ReportInfo.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/ReportInfo.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/transfer/TransferNode.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/transfer/TransferNode.java index 7431c25330..989ec45f76 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/transfer/TransferNode.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/transfer/TransferNode.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/transfer/TransferReportGenerator.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/transfer/TransferReportGenerator.java index d6452dcdd6..cda9d4eacf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/transfer/TransferReportGenerator.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/report/generator/transfer/TransferReportGenerator.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleService.java index 46a285b58d..ce5ba8e673 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleServiceImpl.java index e9740a5f74..b69df2242a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/Role.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/Role.java index 9619500322..d7ef15d829 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/Role.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/Role.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AbstractRmWebScript.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AbstractRmWebScript.java index 59ed8a1b87..91a21e87c4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AbstractRmWebScript.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AbstractRmWebScript.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ApplyDodCertModelFixesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ApplyDodCertModelFixesGet.java index fba2b94757..7f7ed6976f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ApplyDodCertModelFixesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ApplyDodCertModelFixesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ApplyFixMob1573Get.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ApplyFixMob1573Get.java index e4e28d66a7..1926d4f19a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ApplyFixMob1573Get.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ApplyFixMob1573Get.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogDelete.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogDelete.java index eaddaa4b52..ff67c2a115 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogDelete.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogDelete.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java index 6976f67461..62307b2f79 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogPost.java index ae4124ba3e..e20d4df121 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogPut.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogPut.java index 9f090f0fd3..6a56013002 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogPut.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogPut.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogStatusGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogStatusGet.java index 77d8cb6a78..f450a6bebf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogStatusGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogStatusGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseAuditAdminWebScript.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseAuditAdminWebScript.java index 3f66b66041..432524ad3f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseAuditAdminWebScript.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseAuditAdminWebScript.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseAuditRetrievalWebScript.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseAuditRetrievalWebScript.java index 73ad7e2217..60ab7da6dc 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseAuditRetrievalWebScript.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseAuditRetrievalWebScript.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseCustomPropertyWebScript.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseCustomPropertyWebScript.java index 6a11320ae5..881ce87f7b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseCustomPropertyWebScript.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseCustomPropertyWebScript.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseTransferWebScript.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseTransferWebScript.java index c5f0c97892..9cbd77ecb9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseTransferWebScript.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BaseTransferWebScript.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BootstrapTestDataGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BootstrapTestDataGet.java index 8b8563bd48..511630bd67 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BootstrapTestDataGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/BootstrapTestDataGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionDelete.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionDelete.java index ceb439d3e0..33bddf7d46 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionDelete.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionDelete.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionPost.java index 43b79c8cee..61c19c2bb9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionPut.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionPut.java index bf37c65fce..a0a9ad5c81 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionPut.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionPut.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionsGet.java index 8f664133d1..17f54e90a8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomPropertyDefinitionsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefDelete.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefDelete.java index d04a724301..6a744fdd03 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefDelete.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefDelete.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefPost.java index abf7ea1c92..316ba8e360 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionBase.java index 53048605a5..b59d84e9d2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionPost.java index af84c1b997..4869eb9ee4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionPut.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionPut.java index bfde9ed5d7..0c58db9e12 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionPut.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionPut.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionsGet.java index 45ac9f5635..f32f02e0c7 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceDefinitionsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceType.java index 56c899ac42..2c8a1b0d86 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomReferenceType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefsGet.java index 6ee97e5452..82567134a9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomRefsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomisableGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomisableGet.java index 3ce81a3b95..b6f1d6e1f4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomisableGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/CustomisableGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DataSetPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DataSetPost.java index fdd17bf63f..45f574c674 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DataSetPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DataSetPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DataSetsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DataSetsGet.java index e424cff43a..6e14e101fa 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DataSetsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DataSetsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionAbstractBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionAbstractBase.java index 2e00acd361..c5161ee2f0 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionAbstractBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionAbstractBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionDelete.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionDelete.java index 7ceb614988..71eac194dc 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionDelete.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionDelete.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionPost.java index 90286742bb..b6f0569841 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionPut.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionPut.java index 5812a51168..235be742d2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionPut.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionActionDefinitionPut.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionLifecycleGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionLifecycleGet.java index 5558f4cf41..728ef34820 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionLifecycleGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionLifecycleGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionPropertiesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionPropertiesGet.java index 4d01edb172..2d6fef67e1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionPropertiesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionPropertiesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionScheduleGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionScheduleGet.java index 99c4d56668..90b131b864 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionScheduleGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DispositionScheduleGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DodCustomTypesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DodCustomTypesGet.java index 94e851a6a9..c8c6d6ad2e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DodCustomTypesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/DodCustomTypesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapDelete.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapDelete.java index 75833fa739..c581aad083 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapDelete.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapDelete.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapGet.java index e5030e981c..41e6306678 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapKeysGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapKeysGet.java index d25c8ce352..8c3b446a85 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapKeysGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapKeysGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapPost.java index 8c513b5dcc..703c6c69d9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/EmailMapPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ExportPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ExportPost.java index 79d64de451..021aa0fdc9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ExportPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ExportPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ImportPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ImportPost.java index 9a6ccbb338..df4ade1bf3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ImportPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ImportPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ListOfValuesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ListOfValuesGet.java index 2f05a0ae7b..be9f005dad 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ListOfValuesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/ListOfValuesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RMConstraintGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RMConstraintGet.java index 12988dc6f5..28c7f207c4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RMConstraintGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RMConstraintGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RecordMetaDataAspectsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RecordMetaDataAspectsGet.java index bf40cff7f0..a48d9b0fb1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RecordMetaDataAspectsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RecordMetaDataAspectsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipDelete.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipDelete.java index 435b57956f..0c05047cf9 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipDelete.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipDelete.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipLabelsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipLabelsGet.java index ae6b60f81b..638766a858 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipLabelsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipLabelsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipsGet.java index 93e206d8b0..90d794b278 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RelationshipsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RmActionPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RmActionPost.java index 191bc4409d..9b4f95e52d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RmActionPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/RmActionPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferGet.java index 4dfe7f7e51..01cc9af214 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferReportGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferReportGet.java index 352ef597d3..eab55f9daa 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferReportGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferReportGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferReportPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferReportPost.java index 2d762e0d4c..9a155221e3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferReportPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/TransferReportPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/UserRightsReportGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/UserRightsReportGet.java index c48345dd98..890c9b4000 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/UserRightsReportGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/UserRightsReportGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RMEventBase.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RMEventBase.java index 5f56766571..6b71752270 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RMEventBase.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RMEventBase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventDelete.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventDelete.java index 9705f5b4f4..5ef616a9e5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventDelete.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventDelete.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventGet.java index 46f7045e00..df4d51f2b4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventPut.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventPut.java index 4c297cc8ca..b3955f0dd8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventPut.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventPut.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventTypesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventTypesGet.java index b7bb4064e7..5e0516d093 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventTypesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventTypesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventsGet.java index b25323f785..020da2d035 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventsPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventsPost.java index 86363b9e66..b874487f24 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventsPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmEventsPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRoleDelete.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRoleDelete.java index c64af94a7f..a4e8c7d9ee 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRoleDelete.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRoleDelete.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRoleGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRoleGet.java index c97a2f00d2..cce20148af 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRoleGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRoleGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolePut.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolePut.java index 961d1a860a..fced8b73a6 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolePut.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolePut.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolesGet.java index 7742addd72..5801a098d4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolesPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolesPost.java index 833453931a..8bc0c579d2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolesPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RmRolesPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RoleDeclarativeWebScript.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RoleDeclarativeWebScript.java index f6bbd5ad00..e11a37e0d8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RoleDeclarativeWebScript.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/admin/RoleDeclarativeWebScript.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/capability/CapabilitiesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/capability/CapabilitiesGet.java index 3c3486abfd..32a935de1d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/capability/CapabilitiesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/capability/CapabilitiesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHold.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHold.java index 150338cc00..af0b115762 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHold.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHold.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/Hold.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/Hold.java index 3a98316a7b..fbc383d4fe 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/Hold.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/Hold.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPost.java index 505cc51002..4ea06cca2d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPut.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPut.java index d7d3f5bc72..5bec8f46d2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPut.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPut.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldsGet.java index d20b0cf838..72744edf50 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesDelete.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesDelete.java index c53ff5b944..a33e187eb5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesDelete.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesDelete.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesGet.java index 0cb2790aef..976bd9a116 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesPost.java index e5532f1b3b..79798fc440 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSavedSearchesPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchGet.java index e54ffff651..f1f595fa41 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchPropertiesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchPropertiesGet.java index 367b3f02b0..3b07a58c6e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchPropertiesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchPropertiesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RecordedVersionConfigGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RecordedVersionConfigGet.java index bba5b659d1..c7b8347bb1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RecordedVersionConfigGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RecordedVersionConfigGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RecordedVersionConfigPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RecordedVersionConfigPost.java index 5528089c03..758fdf64b2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RecordedVersionConfigPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RecordedVersionConfigPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/Version.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/Version.java index 74a54cfb01..4d3b1e1bb3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/Version.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/Version.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/forms/RMMetaDataGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/forms/RMMetaDataGet.java index 6db8e5f253..9847e705fe 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/forms/RMMetaDataGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/forms/RMMetaDataGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchParameters.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchParameters.java index 71dea015df..bd897c9d9a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchParameters.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchParameters.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchService.java index 4c08dfe7d7..00e4541d04 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchServiceImpl.java index f817e4cc5b..555defd441 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/RecordsManagementSearchServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/ReportDetails.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/ReportDetails.java index 8cd1380c95..48a97b27ea 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/ReportDetails.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/ReportDetails.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SavedSearchDetails.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SavedSearchDetails.java index a4236a26c3..197fa3bfc6 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SavedSearchDetails.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SavedSearchDetails.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SavedSearchDetailsCompatibility.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SavedSearchDetailsCompatibility.java index f3b0a0eeb2..faa23cbb42 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SavedSearchDetailsCompatibility.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SavedSearchDetailsCompatibility.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SortItem.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SortItem.java index 44f59b9cad..449b786952 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SortItem.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/search/SortItem.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityService.java index 2ce39b98ad..b3f7d4d356 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImpl.java index 4a914961af..7619e36b36 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionService.java index 75e5df79b4..852c3c2b5e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionServiceImpl.java index 2aa8c3f03f..99c56b19c8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/RMMethodSecurityInterceptor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/RMMethodSecurityInterceptor.java index a9c2d31790..5a92cb430d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/RMMethodSecurityInterceptor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/RMMethodSecurityInterceptor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/RMMethodSecurityPostProcessor.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/RMMethodSecurityPostProcessor.java index 25df90ceed..67751b8381 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/RMMethodSecurityPostProcessor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/security/RMMethodSecurityPostProcessor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/site/GetChildrenCannedQueryFactory.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/site/GetChildrenCannedQueryFactory.java index 14fadfc7b1..6435404403 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/site/GetChildrenCannedQueryFactory.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/site/GetChildrenCannedQueryFactory.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/transfer/TransferService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/transfer/TransferService.java index 9c8afadb54..219ad8921c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/transfer/TransferService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/transfer/TransferService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/transfer/TransferServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/transfer/TransferServiceImpl.java index 0939e2ed41..90356bbb17 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/transfer/TransferServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/transfer/TransferServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/AlfrescoTransactionSupport.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/AlfrescoTransactionSupport.java index a243cb566a..e5d6509dd2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/AlfrescoTransactionSupport.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/AlfrescoTransactionSupport.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/AuthenticationUtil.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/AuthenticationUtil.java index f97f538290..88dbbdc276 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/AuthenticationUtil.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/AuthenticationUtil.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/PoliciesUtil.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/PoliciesUtil.java index 8171736e07..b8201a8035 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/PoliciesUtil.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/PoliciesUtil.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/RMCollectionUtils.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/RMCollectionUtils.java index 6b1643f7fa..3b0c7a094f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/RMCollectionUtils.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/RMCollectionUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/RMParameterCheck.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/RMParameterCheck.java index 1858c0353b..ea7265cad3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/RMParameterCheck.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/RMParameterCheck.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ServiceBaseImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ServiceBaseImpl.java index a780163fd9..5f875c30b2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ServiceBaseImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ServiceBaseImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/TransactionalResourceHelper.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/TransactionalResourceHelper.java index 28d332509b..8c9c1ca87e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/TransactionalResourceHelper.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/TransactionalResourceHelper.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/UpdateActionType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/UpdateActionType.java index d0aaab6306..16c11d3e15 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/UpdateActionType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/UpdateActionType.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/dao/QueryField.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/dao/QueryField.java index 79a937bf29..ee8629bd84 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/dao/QueryField.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/dao/QueryField.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/dao/QueryParams.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/dao/QueryParams.java index b11b71cea5..2fc181c2b3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/dao/QueryParams.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/dao/QueryParams.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/ExtendedVersionableAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/ExtendedVersionableAspect.java index 9f3e3ff041..13c9d4203c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/ExtendedVersionableAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/ExtendedVersionableAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionModel.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionModel.java index f48cd6e723..b9d5eb1f51 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionModel.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionModel.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionNodeServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionNodeServiceImpl.java index 868cafe230..d58ff60281 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionNodeServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionNodeServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionPolicy.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionPolicy.java index 2b97348503..47711ea197 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionPolicy.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionPolicy.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionService.java index 8d93b467ad..7864f4fc2d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionServiceImpl.java index 0f594b5a91..d68cc72cdd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/model/VersionableAspect.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/model/VersionableAspect.java index 57cdca45cb..eee041d9dd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/model/VersionableAspect.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/version/model/VersionableAspect.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/BroadcastVitalRecordDefinitionAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/BroadcastVitalRecordDefinitionAction.java index fae9fe6585..b6f47390e5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/BroadcastVitalRecordDefinitionAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/BroadcastVitalRecordDefinitionAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/ReviewedAction.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/ReviewedAction.java index 51c3fd8e33..31831a3cea 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/ReviewedAction.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/ReviewedAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordDefinition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordDefinition.java index 0c65348d17..643946346b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordDefinition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordDefinition.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordDefinitionImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordDefinitionImpl.java index 8a6faf0069..56b9ca2d2d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordDefinitionImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordDefinitionImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordService.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordService.java index 9bd9bedd77..7b51291ef3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordServiceImpl.java index b9c8a6266a..a6d46bdb65 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/vital/VitalRecordServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/ExtendedActionServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/ExtendedActionServiceImpl.java index 7c3e9d5e7d..6234dee220 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/ExtendedActionServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/ExtendedActionServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/DateParameterProcessor.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/DateParameterProcessor.java index 7f8bcf71a2..7c95eeba40 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/DateParameterProcessor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/DateParameterProcessor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/MessageParameterProcessor.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/MessageParameterProcessor.java index d7ee539aba..7afd5fe54e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/MessageParameterProcessor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/MessageParameterProcessor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/NodeParameterProcessor.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/NodeParameterProcessor.java index a9d0fcf84c..596e713b9b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/NodeParameterProcessor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/NodeParameterProcessor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/NodeParameterSuggesterBootstrap.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/NodeParameterSuggesterBootstrap.java index 1e9bb94e30..240bc210c7 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/NodeParameterSuggesterBootstrap.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/NodeParameterSuggesterBootstrap.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterProcessor.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterProcessor.java index 6ffc5c16d6..177e79362b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterProcessor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterProcessor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterProcessorComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterProcessorComponent.java index 27d95166c1..cf0c848f27 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterProcessorComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterProcessorComponent.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterSubstitutionSuggester.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterSubstitutionSuggester.java index f62a2be261..0cb96ce5bc 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterSubstitutionSuggester.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/action/parameter/ParameterSubstitutionSuggester.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/imap/ExtendedImapServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/imap/ExtendedImapServiceImpl.java index d3ee3b3d34..c5ef703827 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/imap/ExtendedImapServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/imap/ExtendedImapServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/jscript/ExtendedSearch.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/jscript/ExtendedSearch.java index 6d2c625189..cdd60ee049 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/jscript/ExtendedSearch.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/jscript/ExtendedSearch.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/model/filefolder/ExtendedFileFolderServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/model/filefolder/ExtendedFileFolderServiceImpl.java index bc5909b3c0..b24faf15e6 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/model/filefolder/ExtendedFileFolderServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/model/filefolder/ExtendedFileFolderServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/rule/ExtendedRuleServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/rule/ExtendedRuleServiceImpl.java index 3f10210f08..4dd39a39ae 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/rule/ExtendedRuleServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/rule/ExtendedRuleServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/rule/ruletrigger/ExtendedBeforeDeleteChildAssociationRuleTrigger.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/rule/ruletrigger/ExtendedBeforeDeleteChildAssociationRuleTrigger.java index 3d9a0e010e..00c7cb2041 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/rule/ruletrigger/ExtendedBeforeDeleteChildAssociationRuleTrigger.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/rule/ruletrigger/ExtendedBeforeDeleteChildAssociationRuleTrigger.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthority.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthority.java index 866c7647a0..83b61ddf51 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthority.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthority.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthorityDAOImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthorityDAOImpl.java index 9246943205..1490b0b75b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthorityDAOImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/authority/RMAuthorityDAOImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionService.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionService.java index 25ebbe23f3..c6a3ac0c24 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionService.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionServiceImpl.java index 826319eb73..a310fedfab 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/acegi/RMACLEntryVoter.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/acegi/RMACLEntryVoter.java index c83aa853b9..6b6e698658 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/acegi/RMACLEntryVoter.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/impl/acegi/RMACLEntryVoter.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionPostProcessor.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionPostProcessor.java index 3a38462f5a..66a9ef2826 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionPostProcessor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionPostProcessor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionPreProcessor.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionPreProcessor.java index 06098c0866..a19e16e54c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionPreProcessor.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionPreProcessor.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionProcessorRegistry.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionProcessorRegistry.java index d26a1ccbea..7d348e3658 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionProcessorRegistry.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/PermissionProcessorRegistry.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionPostProcessorBaseImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionPostProcessorBaseImpl.java index be649e607d..be895fd251 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionPostProcessorBaseImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionPostProcessorBaseImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionPreProcessorBaseImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionPreProcessorBaseImpl.java index 9b818bc43d..7e8b52ed96 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionPreProcessorBaseImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionPreProcessorBaseImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionProcessorBaseImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionProcessorBaseImpl.java index 3a58022f2c..738548c8a1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionProcessorBaseImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/security/permissions/processor/impl/PermissionProcessorBaseImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmClassesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmClassesGet.java index 340144757b..ef0866b48a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmClassesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmClassesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmDictionaryWebServiceUtils.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmDictionaryWebServiceUtils.java index 2117ef3405..b88c642ad1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmDictionaryWebServiceUtils.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmDictionaryWebServiceUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmPropertiesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmPropertiesGet.java index 9f6f9a20cb..a81fb7593a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmPropertiesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/dictionary/RmPropertiesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/AbstractRmAuthorities.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/AbstractRmAuthorities.java index 354c5ce4fd..7f29e00034 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/AbstractRmAuthorities.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/AbstractRmAuthorities.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGet.java index a7070ae867..113e6fa1a3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesDelete.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesDelete.java index a3a45fc720..8d4cadbf25 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesDelete.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesDelete.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesPost.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesPost.java index 7ecac768b6..ff4e32e3cd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesPost.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/RmAuthoritiesPost.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/RmActionConditionDefinitionsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/RmActionConditionDefinitionsGet.java index f5571cd260..f0c07f8fa4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/RmActionConditionDefinitionsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/RmActionConditionDefinitionsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/RmActionDefinitionsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/RmActionDefinitionsGet.java index 7d707dad08..89bc1d7c47 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/RmActionDefinitionsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/rule/RmActionDefinitionsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/substitutionsuggestions/RmSubstitutionSuggestionsGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/substitutionsuggestions/RmSubstitutionSuggestionsGet.java index e780267b0f..8e7165689a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/substitutionsuggestions/RmSubstitutionSuggestionsGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/substitutionsuggestions/RmSubstitutionSuggestionsGet.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMNodes.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMNodes.java index f5e506edea..dbdb19df28 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMNodes.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMNodes.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMSites.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMSites.java index 81e21760de..5211dc3bab 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMSites.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/RMSites.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanChildrenRelation.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanChildrenRelation.java index d8c3e20dab..678af47bf1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanChildrenRelation.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanChildrenRelation.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanEntityResource.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanEntityResource.java index 76df9f5308..41fbc0068c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanEntityResource.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/fileplans/FilePlanEntityResource.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/files/FilesEntityResource.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/files/FilesEntityResource.java index 1bafd8322d..6de5f576ef 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/files/FilesEntityResource.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/files/FilesEntityResource.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/ApiNodesModelFactory.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/ApiNodesModelFactory.java index 0038bcac07..7e81647f8c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/ApiNodesModelFactory.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/ApiNodesModelFactory.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java index 3412ff80e9..b1632419a2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/FilePlanComponentsApiUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/RMSitesImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/RMSitesImpl.java index f8c64fa807..2922ae18b5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/RMSitesImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/RMSitesImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/SearchTypesFactory.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/SearchTypesFactory.java index cbaee33f3b..ad7bab7cb0 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/SearchTypesFactory.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/impl/SearchTypesFactory.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/FilePlan.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/FilePlan.java index c359585cb4..7cf017aa9c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/FilePlan.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/FilePlan.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMNode.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMNode.java index aae2a3c434..a18818e85e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMNode.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMNode.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSite.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSite.java index 10bd43f46e..86556b6f0a 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSite.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSite.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSiteCompliance.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSiteCompliance.java index 5dc20deef7..4aa6946d9e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSiteCompliance.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RMSiteCompliance.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Record.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Record.java index 01e20d685d..5d3dd45fe0 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Record.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Record.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategory.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategory.java index 2787d9767c..da5ae21cf6 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategory.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategory.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategoryChild.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategoryChild.java index b72318599e..b39c8bf878 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategoryChild.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordCategoryChild.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordFolder.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordFolder.java index 0cfe928eb6..11f4023513 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordFolder.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/RecordFolder.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/SecurityControlSetting.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/SecurityControlSetting.java index fc6abae030..956edb28a1 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/SecurityControlSetting.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/SecurityControlSetting.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TargetContainer.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TargetContainer.java index b0025aeef5..cb535434f3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TargetContainer.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TargetContainer.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Transfer.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Transfer.java index b07f32d799..f50df50d16 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Transfer.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/Transfer.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferChild.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferChild.java index bf0285ca6b..0f7182fb65 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferChild.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferChild.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferContainer.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferContainer.java index 742973c091..58441d34fc 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferContainer.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/TransferContainer.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledChild.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledChild.java index b86922abca..5329439aaf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledChild.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledChild.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainer.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainer.java index cd7e0893a1..42af8725f8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainer.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainer.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainerChild.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainerChild.java index 8b28a4ad6d..4a100c7359 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainerChild.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledContainerChild.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolder.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolder.java index 5ab1968ae7..51bc66b429 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolder.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolder.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolderChild.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolderChild.java index 04f736b07c..0b99365bd4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolderChild.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UnfiledRecordFolderChild.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UploadInfo.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UploadInfo.java index 376d9cc238..6ac6233d82 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UploadInfo.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/model/UploadInfo.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordcategories/RecordCategoriesEntityResource.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordcategories/RecordCategoriesEntityResource.java index 27f9cfde29..4b33903a80 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordcategories/RecordCategoriesEntityResource.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordcategories/RecordCategoriesEntityResource.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordcategories/RecordCategoryChildrenRelation.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordcategories/RecordCategoryChildrenRelation.java index 4560daa3cb..da64bd28ce 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordcategories/RecordCategoryChildrenRelation.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordcategories/RecordCategoryChildrenRelation.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordfolders/RecordFolderChildrenRelation.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordfolders/RecordFolderChildrenRelation.java index a943a9dcae..aee8c14196 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordfolders/RecordFolderChildrenRelation.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordfolders/RecordFolderChildrenRelation.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordfolders/RecordFolderEntityResource.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordfolders/RecordFolderEntityResource.java index a97ca9df44..e6ff1461b8 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordfolders/RecordFolderEntityResource.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/recordfolders/RecordFolderEntityResource.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/records/RecordsEntityResource.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/records/RecordsEntityResource.java index daf676ecdb..7c0aa3d5aa 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/records/RecordsEntityResource.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/records/RecordsEntityResource.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/sites/RMSiteEntityResource.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/sites/RMSiteEntityResource.java index 573fdeb415..e3507122f3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/sites/RMSiteEntityResource.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/sites/RMSiteEntityResource.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfercontainers/TransferContainerChildrenRelation.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfercontainers/TransferContainerChildrenRelation.java index 426a937f31..897e960caf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfercontainers/TransferContainerChildrenRelation.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfercontainers/TransferContainerChildrenRelation.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfercontainers/TransferContainerEntityResource.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfercontainers/TransferContainerEntityResource.java index f2f7df6cfb..7ced293e92 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfercontainers/TransferContainerEntityResource.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfercontainers/TransferContainerEntityResource.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferChildrenRelation.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferChildrenRelation.java index 8b5aaa9f67..039ae0c7bb 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferChildrenRelation.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferChildrenRelation.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferEntityResource.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferEntityResource.java index 3089a843f0..ec09252b2f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferEntityResource.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/transfers/TransferEntityResource.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledcontainers/UnfiledContainerChildrenRelation.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledcontainers/UnfiledContainerChildrenRelation.java index e9409a29e1..f1ee9bbacc 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledcontainers/UnfiledContainerChildrenRelation.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledcontainers/UnfiledContainerChildrenRelation.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledcontainers/UnfiledContainerEntityResource.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledcontainers/UnfiledContainerEntityResource.java index 3896a882a3..e390c1e49c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledcontainers/UnfiledContainerEntityResource.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledcontainers/UnfiledContainerEntityResource.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledrecordfolders/UnfiledRecordFolderChildrenRelation.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledrecordfolders/UnfiledRecordFolderChildrenRelation.java index b519666980..165c7038cd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledrecordfolders/UnfiledRecordFolderChildrenRelation.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledrecordfolders/UnfiledRecordFolderChildrenRelation.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledrecordfolders/UnfiledRecordFolderEntityResource.java b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledrecordfolders/UnfiledRecordFolderEntityResource.java index c4aa9a8db2..7fbffb9177 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledrecordfolders/UnfiledRecordFolderEntityResource.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/rm/rest/api/unfiledrecordfolders/UnfiledRecordFolderEntityResource.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/util/SortDirection.java b/rm-community/rm-community-repo/source/java/org/alfresco/util/SortDirection.java index 6e6a3b730e..1538e791d5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/util/SortDirection.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/util/SortDirection.java @@ -6,7 +6,7 @@ import org.alfresco.api.AlfrescoPublicApi; * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/util/SortUtils.java b/rm-community/rm-community-repo/source/java/org/alfresco/util/SortUtils.java index 21f665ed84..cb4588d05d 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/util/SortUtils.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/util/SortUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/util/StringUtils.java b/rm-community/rm-community-repo/source/java/org/alfresco/util/StringUtils.java index 829c03c197..5b7eebfeac 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/util/StringUtils.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/util/StringUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/util/WebScriptUtils.java b/rm-community/rm-community-repo/source/java/org/alfresco/util/WebScriptUtils.java index 15eee59794..2efe66088f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/util/WebScriptUtils.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/util/WebScriptUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/workflow/RMWorkflowModel.java b/rm-community/rm-community-repo/source/java/org/alfresco/workflow/RMWorkflowModel.java index 174b2db33b..17797ec387 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/workflow/RMWorkflowModel.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/workflow/RMWorkflowModel.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoAssignmentHandler.java b/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoAssignmentHandler.java index a81de285a8..936fd314ba 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoAssignmentHandler.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoAssignmentHandler.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoNotifier.java b/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoNotifier.java index 9cd86fef8f..525799bdac 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoNotifier.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoNotifier.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoUtils.java b/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoUtils.java index bfdf8224a7..f776ea9c09 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoUtils.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoVariableHandler.java b/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoVariableHandler.java index 793986e13d..16d684b7a5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoVariableHandler.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/workflow/requestInfo/RequestInfoVariableHandler.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/AllTestSuite.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/AllTestSuite.java index f1cb30820b..cd562abcbf 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/AllTestSuite.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/AllTestSuite.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/destroy/DestroyContentTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/destroy/DestroyContentTest.java index fc0492b3f2..a102094720 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/destroy/DestroyContentTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/destroy/DestroyContentTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/CutOffTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/CutOffTest.java index 2fec65e477..1e4bfd8511 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/CutOffTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/CutOffTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/MultipleSchedulesTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/MultipleSchedulesTest.java index 8d2b5c3c98..fac1dc54e2 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/MultipleSchedulesTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/MultipleSchedulesTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateDispositionScheduleTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateDispositionScheduleTest.java index f39da05237..fd4fddbba0 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateDispositionScheduleTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateDispositionScheduleTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateNextDispositionActionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateNextDispositionActionTest.java index 94bfd73c80..0cd2265547 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateNextDispositionActionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/disposition/UpdateNextDispositionActionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/dod/RM1147DODRMSiteTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/dod/RM1147DODRMSiteTest.java index 7119eadc23..aec941e7ae 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/dod/RM1147DODRMSiteTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/dod/RM1147DODRMSiteTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/dod/RM1194ExcludeDoDRecordTypesTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/dod/RM1194ExcludeDoDRecordTypesTest.java index 8109bb5096..4752765623 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/dod/RM1194ExcludeDoDRecordTypesTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/dod/RM1194ExcludeDoDRecordTypesTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/event/CompleteEventsTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/event/CompleteEventsTest.java index 40dbca4ab2..7d3841bb2c 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/event/CompleteEventsTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/event/CompleteEventsTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/AddRemoveFromHoldTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/AddRemoveFromHoldTest.java index 5537552078..52f3cced6f 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/AddRemoveFromHoldTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/AddRemoveFromHoldTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/CreateHoldTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/CreateHoldTest.java index a735af87cb..70372a0422 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/CreateHoldTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/CreateHoldTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/DeleteHoldTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/DeleteHoldTest.java index 6117658a96..940d013329 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/DeleteHoldTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/hold/DeleteHoldTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1008Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1008Test.java index 3bbe04ca61..ea81c6faee 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1008Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1008Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1027Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1027Test.java index 4052ec2321..645a80f3d4 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1027Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1027Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1030Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1030Test.java index d76c416e73..e1b1eb3056 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1030Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1030Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1424Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1424Test.java index 470da206a3..3dab38021a 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1424Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1424Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1429Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1429Test.java index 67c15c8927..470fdfa957 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1429Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1429Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1463Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1463Test.java index d05954cfc4..51a6be15df 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1463Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1463Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1464Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1464Test.java index 6b6d889128..c2c8152e4e 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1464Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1464Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1727Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1727Test.java index 969d134c10..25469296c5 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1727Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1727Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1799Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1799Test.java index 8a39bbad22..4d1390b482 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1799Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1799Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1814Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1814Test.java index ccab5a5ad8..6ed5364846 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1814Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1814Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1887Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1887Test.java index 6e1d9cc06f..9dd0719e4f 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1887Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1887Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1914Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1914Test.java index 49cd661457..cb037cd867 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1914Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM1914Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2072Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2072Test.java index e23b94b9c8..d72a53ffcd 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2072Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2072Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2190Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2190Test.java index 9a3da760f9..6c3229e51d 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2190Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2190Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2192Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2192Test.java index 3308485138..136fb98422 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2192Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM2192Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3341Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3341Test.java index d22c5cc1f8..4281ff07fc 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3341Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3341Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3450Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3450Test.java index 0129b9a142..3d5bfc378f 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3450Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3450Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3993Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3993Test.java index d48d2627a9..7573f74a0d 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3993Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM3993Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4101Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4101Test.java index b6edc5f8f5..ee520778a4 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4101Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4101Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4163Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4163Test.java index 660f04194f..bb5b1f41af 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4163Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4163Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4293Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4293Test.java index 95ca8ddea4..16c2397efb 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4293Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4293Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM452Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM452Test.java index 13cc56bbe3..d15a6f4183 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM452Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM452Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4619Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4619Test.java index 722bee2982..0a23f00e3f 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4619Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4619Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4804Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4804Test.java index 3bcf50c6da..ca2937c4f2 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4804Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4804Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM804Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM804Test.java index 538562760f..fc8f8098f5 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM804Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM804Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM978Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM978Test.java index 54abb6a079..aad5d10f56 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM978Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM978Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM981SystemTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM981SystemTest.java index 0544aa8592..e0aa0ec524 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM981SystemTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM981SystemTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM994Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM994Test.java index efb685cc90..b6a8754f5e 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM994Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM994Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/rm3314/RM3314Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/rm3314/RM3314Test.java index d1e153422d..6e1b85fccd 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/rm3314/RM3314Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/rm3314/RM3314Test.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/rm3314/RM3314TestListener.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/rm3314/RM3314TestListener.java index a5c54a0f84..e401f87aa1 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/rm3314/RM3314TestListener.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/rm3314/RM3314TestListener.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/job/AutomaticDispositionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/job/AutomaticDispositionTest.java index d0ceb4aa20..6230fc6a4b 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/job/AutomaticDispositionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/job/AutomaticDispositionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CompleteRecordTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CompleteRecordTest.java index 7642f101bb..47e5674c98 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CompleteRecordTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CompleteRecordTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CreateInplaceRecordTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CreateInplaceRecordTest.java index fae240fd2b..957872a709 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CreateInplaceRecordTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CreateInplaceRecordTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CreateRecordTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CreateRecordTest.java index e84aef5374..868fdfe99c 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CreateRecordTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/CreateRecordTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/HideInplaceRecordTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/HideInplaceRecordTest.java index ae4d949100..0659e190ad 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/HideInplaceRecordTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/HideInplaceRecordTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/InplaceRecordPermissionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/InplaceRecordPermissionTest.java index d25886dff5..1239a0b8a4 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/InplaceRecordPermissionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/InplaceRecordPermissionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/LinkRecordTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/LinkRecordTest.java index fe9517920e..f3b1264c42 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/LinkRecordTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/LinkRecordTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/MoveInplaceRecordTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/MoveInplaceRecordTest.java index 87a5a68069..9ca0fa22b1 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/MoveInplaceRecordTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/MoveInplaceRecordTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/MoveRecordTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/MoveRecordTest.java index 6c60cdab36..db6349d8d6 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/MoveRecordTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/MoveRecordTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/RejectRecordTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/RejectRecordTest.java index 5613a4037f..0e70aab99a 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/RejectRecordTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/RejectRecordTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/UpdateRecordAspectsTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/UpdateRecordAspectsTest.java index 86dc82da50..30e2036a7e 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/UpdateRecordAspectsTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/UpdateRecordAspectsTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/ViewRecordTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/ViewRecordTest.java index 83f76593a3..404d3a1a97 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/ViewRecordTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/record/ViewRecordTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/recordfolder/DeleteRecordFolderTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/recordfolder/DeleteRecordFolderTest.java index 0ea69bf239..10557b9464 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/recordfolder/DeleteRecordFolderTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/recordfolder/DeleteRecordFolderTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/recordfolder/MoveRecordFolderTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/recordfolder/MoveRecordFolderTest.java index df34f5c96e..759264aac1 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/recordfolder/MoveRecordFolderTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/recordfolder/MoveRecordFolderTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/relationship/CreateRelationshipTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/relationship/CreateRelationshipTest.java index 03b8fb3107..fe50dbb721 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/relationship/CreateRelationshipTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/relationship/CreateRelationshipTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/relationship/DeleteRelationshipTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/relationship/DeleteRelationshipTest.java index 345a79f4d7..117c070054 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/relationship/DeleteRelationshipTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/relationship/DeleteRelationshipTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/report/HoldReportTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/report/HoldReportTest.java index 54062fe8c8..afc49e73b9 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/report/HoldReportTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/report/HoldReportTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/rule/FilePlanRuleInheritanceTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/rule/FilePlanRuleInheritanceTest.java index 857310927d..25b8be4a47 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/rule/FilePlanRuleInheritanceTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/rule/FilePlanRuleInheritanceTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/CreateTransferFolderAsNonAdminUserTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/CreateTransferFolderAsNonAdminUserTest.java index 6d101b3575..68923ba4da 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/CreateTransferFolderAsNonAdminUserTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/CreateTransferFolderAsNonAdminUserTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/FilingPermissionsOnTransferFolderTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/FilingPermissionsOnTransferFolderTest.java index 15600e0278..f34ddafc83 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/FilingPermissionsOnTransferFolderTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/FilingPermissionsOnTransferFolderTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/NoPermissionsOnTransferFolderTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/NoPermissionsOnTransferFolderTest.java index b7ac320c87..a9d5fd3a5e 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/NoPermissionsOnTransferFolderTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/NoPermissionsOnTransferFolderTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/ReadPermissionsOnTransferFolderTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/ReadPermissionsOnTransferFolderTest.java index bfd4cedc36..922a5f2cb0 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/ReadPermissionsOnTransferFolderTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/transfer/ReadPermissionsOnTransferFolderTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AdHocRecordableVersionsTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AdHocRecordableVersionsTest.java index d7fdcc911f..fa0edcb0fd 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AdHocRecordableVersionsTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AdHocRecordableVersionsTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AutoRecordableVersionsTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AutoRecordableVersionsTest.java index a3ddef32df..d32d24b93d 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AutoRecordableVersionsTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AutoRecordableVersionsTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AutoVersionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AutoVersionTest.java index 143a3db72a..17991ba471 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AutoVersionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/AutoVersionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/DeclareAsRecordVersionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/DeclareAsRecordVersionTest.java index 6b5fb1d7bd..410ce50573 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/DeclareAsRecordVersionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/DeclareAsRecordVersionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/DeleteRecordVersionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/DeleteRecordVersionTest.java index cdf56f0dce..9ca1473480 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/DeleteRecordVersionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/DeleteRecordVersionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/RecordableVersionsBaseTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/RecordableVersionsBaseTest.java index e53a7691bf..240b45a3fc 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/RecordableVersionsBaseTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/version/RecordableVersionsBaseTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/CreateRecordActionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/CreateRecordActionTest.java index eb325f05ab..d4e656ec63 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/CreateRecordActionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/CreateRecordActionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/DeclareVersionAsRecordActionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/DeclareVersionAsRecordActionTest.java index ea94c4b9da..35b7267fde 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/DeclareVersionAsRecordActionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/DeclareVersionAsRecordActionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/FileReportActionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/FileReportActionTest.java index fe790e2547..823e2d851d 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/FileReportActionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/FileReportActionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/FileToActionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/FileToActionTest.java index 6b828da9dc..c63e7bae5c 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/FileToActionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/FileToActionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/HideRecordActionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/HideRecordActionTest.java index 724c53be3b..439a63c5c1 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/HideRecordActionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/HideRecordActionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/MoveRecordActionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/MoveRecordActionTest.java index 55065d4a5d..0ccfc7d2d1 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/MoveRecordActionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/MoveRecordActionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/RecordableVersionConfigActionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/RecordableVersionConfigActionTest.java index 629ffbeb2d..c8fea42a49 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/RecordableVersionConfigActionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/RecordableVersionConfigActionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/RejectActionTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/RejectActionTest.java index 9cd92c51ce..dfaf7e05b4 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/RejectActionTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/action/RejectActionTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/capabilities/CompositeCapabilityTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/capabilities/CompositeCapabilityTest.java index ad83dd4a3b..c8653f6ef0 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/capabilities/CompositeCapabilityTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/capabilities/CompositeCapabilityTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/capabilities/DeclarativeCapabilityTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/capabilities/DeclarativeCapabilityTest.java index 7dbf758e60..e1466164ca 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/capabilities/DeclarativeCapabilityTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/capabilities/DeclarativeCapabilityTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/jscript/JSONConversionComponentTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/jscript/JSONConversionComponentTest.java index 5906adec19..7064191af4 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/jscript/JSONConversionComponentTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/jscript/JSONConversionComponentTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/security/MethodSecurityTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/security/MethodSecurityTest.java index 15c30c2d52..78b2d32701 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/security/MethodSecurityTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/security/MethodSecurityTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/CapabilityServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/CapabilityServiceImplTest.java index 303eb697a9..752e2c992a 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/CapabilityServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/CapabilityServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/CustomEMailMappingServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/CustomEMailMappingServiceImplTest.java index cddaec844b..a82fb4126d 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/CustomEMailMappingServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/CustomEMailMappingServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/DataSetServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/DataSetServiceImplTest.java index 176bb05cf8..74297fe303 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/DataSetServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/DataSetServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/DispositionServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/DispositionServiceImplTest.java index 63b5fd28ef..a0bdc2b5f1 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/DispositionServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/DispositionServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ExtendedActionServiceTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ExtendedActionServiceTest.java index baa9494656..013ce044f8 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ExtendedActionServiceTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ExtendedActionServiceTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ExtendedSecurityServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ExtendedSecurityServiceImplTest.java index 927c5ac88e..fcf97be0b3 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ExtendedSecurityServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ExtendedSecurityServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanPermissionServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanPermissionServiceImplTest.java index 4dc21abdbf..0f420aac45 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanPermissionServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanPermissionServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanRoleServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanRoleServiceImplTest.java index 40453fcee3..96a5328566 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanRoleServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanRoleServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanServiceImplTest.java index 0c86a06797..f89ef630f6 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FilePlanServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FreezeServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FreezeServiceImplTest.java index 65d5f51fad..8ec184aa35 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FreezeServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/FreezeServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ModelSecurityServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ModelSecurityServiceImplTest.java index 906346282c..cd7747d149 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ModelSecurityServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ModelSecurityServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RMCaveatConfigServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RMCaveatConfigServiceImplTest.java index 399ba842bf..d4f7201bfc 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RMCaveatConfigServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RMCaveatConfigServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordServiceImplTest.java index 2d10885eff..ea43f5ddfc 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementActionServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementActionServiceImplTest.java index 6b3a52c7f3..493a75197d 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementActionServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementActionServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAdminServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAdminServiceImplTest.java index 816566b393..e770a0645a 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAdminServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAdminServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAuditServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAuditServiceImplTest.java index 05c76c934c..e718bc84c4 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAuditServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAuditServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementEventServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementEventServiceImplTest.java index 43464726f1..b0a6bd8c2f 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementEventServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementEventServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementQueryDAOImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementQueryDAOImplTest.java index 49a1fbe101..5c7713cead 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementQueryDAOImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementQueryDAOImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementSearchServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementSearchServiceImplTest.java index 335771bb3d..42e2005b0b 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementSearchServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementSearchServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementServiceImplTest.java index 9ffd9e40b0..afe4821326 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ReportServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ReportServiceImplTest.java index 13a4fc31f5..c369e179b8 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ReportServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ReportServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ServiceBaseImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ServiceBaseImplTest.java index 9bec192c39..2d309b7bd8 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ServiceBaseImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/ServiceBaseImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/VitalRecordServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/VitalRecordServiceImplTest.java index bbf5848850..ad160499d4 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/VitalRecordServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/VitalRecordServiceImplTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/ActionDefinitionsRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/ActionDefinitionsRestApiTest.java index f9eb2a0cd2..529ac72de0 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/ActionDefinitionsRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/ActionDefinitionsRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/AuditRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/AuditRestApiTest.java index 0dce7c5702..ede4655785 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/AuditRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/AuditRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/CapabilitiesRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/CapabilitiesRestApiTest.java index 1bb7aa4e82..fefc433906 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/CapabilitiesRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/CapabilitiesRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/DataSetRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/DataSetRestApiTest.java index 947d46fe0f..6811e9456b 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/DataSetRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/DataSetRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/DispositionRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/DispositionRestApiTest.java index fe8db75132..fd118cd82d 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/DispositionRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/DispositionRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EmailMapKeysRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EmailMapKeysRestApiTest.java index 04086ad37d..46ebb3dfa9 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EmailMapKeysRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EmailMapKeysRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EmailMapScriptTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EmailMapScriptTest.java index 8c36b00a8c..0f9438d18c 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EmailMapScriptTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EmailMapScriptTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EventRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EventRestApiTest.java index 4039759cff..3a8c3ce4f3 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EventRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/EventRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RMCaveatConfigScriptTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RMCaveatConfigScriptTest.java index 2eaa50f461..b39f665241 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RMCaveatConfigScriptTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RMCaveatConfigScriptTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RMConstraintScriptTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RMConstraintScriptTest.java index 30ba219456..6aff5c7141 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RMConstraintScriptTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RMConstraintScriptTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmAuthoritiesRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmAuthoritiesRestApiTest.java index e28574926e..667676e7d3 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmAuthoritiesRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmAuthoritiesRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmClassesRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmClassesRestApiTest.java index ee94ba2178..8bd39455da 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmClassesRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmClassesRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmPropertiesRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmPropertiesRestApiTest.java index 0d8a8f5d90..092bc7268b 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmPropertiesRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmPropertiesRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmRestApiTest.java index bdca6096e3..1772cb3837 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RmRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RoleRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RoleRestApiTest.java index 8ba65104f1..99cff46837 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RoleRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/RoleRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/SubstitutionSuggestionsRestApiTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/SubstitutionSuggestionsRestApiTest.java index 203d15c463..34cc7824e0 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/SubstitutionSuggestionsRestApiTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/webscript/SubstitutionSuggestionsRestApiTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/system/DataLoadSystemTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/system/DataLoadSystemTest.java index c3b260a35f..94e2a32abe 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/system/DataLoadSystemTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/system/DataLoadSystemTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/system/NotificationServiceHelperSystemTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/system/NotificationServiceHelperSystemTest.java index 6d9abede9d..189bbc187a 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/system/NotificationServiceHelperSystemTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/system/NotificationServiceHelperSystemTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMTestCase.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMTestCase.java index 44d8bba814..831877b388 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMTestCase.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMTestCase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMWebScriptTestCase.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMWebScriptTestCase.java index 46ffed7cb8..f2e412adf3 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMWebScriptTestCase.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMWebScriptTestCase.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/CommonRMTestUtils.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/CommonRMTestUtils.java index 59fe3d7f06..10067dbf88 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/CommonRMTestUtils.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/CommonRMTestUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/GenerateCapabilityReport.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/GenerateCapabilityReport.java index 82b24cf17f..2912823140 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/GenerateCapabilityReport.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/GenerateCapabilityReport.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/RetryingTransactionHelperBaseTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/RetryingTransactionHelperBaseTest.java index 97e70c6e7e..75bbb73963 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/RetryingTransactionHelperBaseTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/RetryingTransactionHelperBaseTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestAction.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestAction.java index ad2525675a..e65197abee 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestAction.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestAction2.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestAction2.java index b84d2ac354..96c60a4b9f 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestAction2.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestAction2.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestActionParams.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestActionParams.java index 76dca3286b..a26c408e0d 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestActionParams.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestActionParams.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestActionPropertySubs.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestActionPropertySubs.java index 31a73548c5..c88aee83c0 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestActionPropertySubs.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestActionPropertySubs.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestContentCleanser.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestContentCleanser.java index 19d750a2e5..b39fc29ac7 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestContentCleanser.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestContentCleanser.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestDmAction.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestDmAction.java index 4b61697ef1..b37ca83fcf 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestDmAction.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestDmAction.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestModel.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestModel.java index 8e83ac52ad..5583d6d103 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestModel.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestModel.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestService.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestService.java index 743ae281f1..2ac92b6522 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestService.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestService.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestServiceImpl.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestServiceImpl.java index 0132db38f2..f106be9463 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestServiceImpl.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestWebScriptRepoServer.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestWebScriptRepoServer.java index 98acd7bd98..13f44013c4 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestWebScriptRepoServer.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/TestWebScriptRepoServer.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/UserAndGroupsUtils.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/UserAndGroupsUtils.java index c70d185648..fc3083a1b2 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/UserAndGroupsUtils.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/UserAndGroupsUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/BehaviourTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/BehaviourTest.java index 02340dcc41..584077bfd7 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/BehaviourTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/BehaviourTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/ExpectedFailure.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/ExpectedFailure.java index 32f18c1a3c..4659c9f0ec 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/ExpectedFailure.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/ExpectedFailure.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/ExpectedValue.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/ExpectedValue.java index 6695c1db78..1f9ad90462 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/ExpectedValue.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/bdt/ExpectedValue.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/test/resources/org/alfresco/repository/generic-paged-results.lib.ftl b/rm-community/rm-community-repo/test/resources/org/alfresco/repository/generic-paged-results.lib.ftl index 1a914cb427..dc915893e2 100644 --- a/rm-community/rm-community-repo/test/resources/org/alfresco/repository/generic-paged-results.lib.ftl +++ b/rm-community/rm-community-repo/test/resources/org/alfresco/repository/generic-paged-results.lib.ftl @@ -2,7 +2,7 @@ #%L Alfresco Records Management Module %% - Copyright (C) 2005 - 2017 Alfresco Software Limited + Copyright (C) 2005 - 2018 Alfresco Software Limited %% This file is part of the Alfresco software. - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/BaseActionUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/BaseActionUnitTest.java index 2cb8e764a6..97149d263a 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/BaseActionUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/BaseActionUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/dm/DeclareAsVersionRecordActionUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/dm/DeclareAsVersionRecordActionUnitTest.java index 5e923008f9..96fb31a600 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/dm/DeclareAsVersionRecordActionUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/dm/DeclareAsVersionRecordActionUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/BroadcastDispositionActionDefinitionUpdateActionUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/BroadcastDispositionActionDefinitionUpdateActionUnitTest.java index e7ce72a7d0..6dfb7f4f61 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/BroadcastDispositionActionDefinitionUpdateActionUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/BroadcastDispositionActionDefinitionUpdateActionUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileReportActionUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileReportActionUnitTest.java index c909af7281..0228230a77 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileReportActionUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/FileReportActionUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnlinkFromActionUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnlinkFromActionUnitTest.java index 9ed562d040..2887f5c28b 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnlinkFromActionUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/action/impl/UnlinkFromActionUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/api/CommunityPublicAPIUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/api/CommunityPublicAPIUnitTest.java index 2da1df74f0..c32c2f1c6d 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/api/CommunityPublicAPIUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/api/CommunityPublicAPIUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/api/PublicAPITestUtil.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/api/PublicAPITestUtil.java index f7ead42688..76d655c55c 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/api/PublicAPITestUtil.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/api/PublicAPITestUtil.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/BootstrapImporterModuleComponentUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/BootstrapImporterModuleComponentUnitTest.java index afe5f78e48..484fda1896 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/BootstrapImporterModuleComponentUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/BootstrapImporterModuleComponentUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/ModuleCompatibilityComponentUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/ModuleCompatibilityComponentUnitTest.java index d8156ad4f6..2c32aa957b 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/ModuleCompatibilityComponentUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/ModuleCompatibilityComponentUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordContributorsGroupBootstrapComponentUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordContributorsGroupBootstrapComponentUnitTest.java index 9fb724c7c6..97cc06f320 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordContributorsGroupBootstrapComponentUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/bootstrap/RecordContributorsGroupBootstrapComponentUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/RMEntryVoterUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/RMEntryVoterUnitTest.java index 61cadf6d27..13976392b1 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/RMEntryVoterUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/RMEntryVoterUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingOnHoldContainerCapabilityConditionUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingOnHoldContainerCapabilityConditionUnitTest.java index 181bbaa6ec..7013f425df 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingOnHoldContainerCapabilityConditionUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FillingOnHoldContainerCapabilityConditionUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenCapabilityConditionUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenCapabilityConditionUnitTest.java index b375ca7626..113c05ebea 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenCapabilityConditionUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/FrozenCapabilityConditionUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HoldCapabilityConditionUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HoldCapabilityConditionUnitTest.java index 9154975c22..959541199d 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HoldCapabilityConditionUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/HoldCapabilityConditionUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/EditNonRecordsMetadataCapabilityUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/EditNonRecordsMetadataCapabilityUnitTest.java index 70efc21104..391aa01047 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/EditNonRecordsMetadataCapabilityUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/capability/impl/EditNonRecordsMetadataCapabilityUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/content/EagerContentStoreCleanerUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/content/EagerContentStoreCleanerUnitTest.java index ebd6c2f0da..6400fb46b7 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/content/EagerContentStoreCleanerUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/content/EagerContentStoreCleanerUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser522022MUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser522022MUnitTest.java index b66e94ad3f..7412ec7e60 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser522022MUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser522022MUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImplUnitTest.java index 077593d754..cb3dd02875 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/disposition/DispositionServiceImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracterUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracterUnitTest.java index 3c37670754..e6c2633df5 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracterUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/email/RFC822MetadataExtracterUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementTypeFormFilterUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementTypeFormFilterUnitTest.java index 291529dc0f..f93798dfba 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementTypeFormFilterUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/forms/RecordsManagementTypeFormFilterUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldServiceImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldServiceImplUnitTest.java index 3d138a69f5..3b83c3b31a 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldServiceImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/hold/HoldServiceImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/job/DispositionLifecycleJobExecuterUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/job/DispositionLifecycleJobExecuterUnitTest.java index 537c03e9e3..2d5d6cb60b 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/job/DispositionLifecycleJobExecuterUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/job/DispositionLifecycleJobExecuterUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FrozenEvaluatorUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FrozenEvaluatorUnitTest.java index 3927f13bb2..689fbde961 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FrozenEvaluatorUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/FrozenEvaluatorUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TransferEvaluatorUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TransferEvaluatorUnitTest.java index b5e3c05e80..fe20b019bf 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TransferEvaluatorUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/jscript/app/evaluator/TransferEvaluatorUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/compatibility/DictionaryBootstrapPostProcessorUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/compatibility/DictionaryBootstrapPostProcessorUnitTest.java index 47027e41f5..0428438330 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/compatibility/DictionaryBootstrapPostProcessorUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/compatibility/DictionaryBootstrapPostProcessorUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VersionRecordAspectUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VersionRecordAspectUnitTest.java index f89063a7af..1764af7fee 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VersionRecordAspectUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/aspect/VersionRecordAspectUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanTypeUnitTest.java index d5fa40ae74..b481b68104 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/HoldContainerTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/HoldContainerTypeUnitTest.java index 9c09261401..120d036646 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/HoldContainerTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/HoldContainerTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/NonElectronicRecordTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/NonElectronicRecordTypeUnitTest.java index 1a3e6ccd07..e994ba41df 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/NonElectronicRecordTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/NonElectronicRecordTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordCategoryTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordCategoryTypeUnitTest.java index db00723660..099acaaf21 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordCategoryTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordCategoryTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderTypeUnitTest.java index d460e69495..b9063d6b32 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordsManagementContainerTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordsManagementContainerTypeUnitTest.java index 6d007b3dd2..71a492faee 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordsManagementContainerTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordsManagementContainerTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RmSiteTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RmSiteTypeUnitTest.java index d7b6ad5967..d7718d00a6 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RmSiteTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RmSiteTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferContainerTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferContainerTypeUnitTest.java index 5fe15e069e..ded80781c8 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferContainerTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferContainerTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferTypeUnitTest.java index ca81ee4350..daa900e63b 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/TransferTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordContainerTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordContainerTypeUnitTest.java index 81c2e10c0c..9d8c7321a6 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordContainerTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordContainerTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordFolderTypeUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordFolderTypeUnitTest.java index d9eb504e29..99e7e250a6 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordFolderTypeUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/UnfiledRecordFolderTypeUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22CapabilityPatchUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22CapabilityPatchUnitTest.java index 2cedb2a1f0..7daa8774ba 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22CapabilityPatchUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22CapabilityPatchUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22RemoveInPlaceRolesFromAllPatchUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22RemoveInPlaceRolesFromAllPatchUnitTest.java index d597ac7bd8..db01d82ef5 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22RemoveInPlaceRolesFromAllPatchUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v22/RMv22RemoveInPlaceRolesFromAllPatchUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23SavedSearchesPatchUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23SavedSearchesPatchUnitTest.java index 60e6a5e3b9..2c178b176c 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23SavedSearchesPatchUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v23/RMv23SavedSearchesPatchUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v24/RMv24FilePlanContainerRuleInheritancePatchUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v24/RMv24FilePlanContainerRuleInheritancePatchUnitTest.java index a97f923764..c76a1984a4 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v24/RMv24FilePlanContainerRuleInheritancePatchUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/patch/v24/RMv24FilePlanContainerRuleInheritancePatchUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessorUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessorUnitTest.java index f0c25e9e96..da9eca7052 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessorUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/permission/RecordsManagementPermissionPostProcessorUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMetadataBootstrapUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMetadataBootstrapUnitTest.java index 6347ef620b..1c74b3740f 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMetadataBootstrapUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/record/RecordMetadataBootstrapUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/record/RecordServiceImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/record/RecordServiceImplUnitTest.java index 76a32f99ce..95d54680f3 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/record/RecordServiceImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/record/RecordServiceImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/BaseRecordedVersionConfigTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/BaseRecordedVersionConfigTest.java index 1f5c7a7787..6d48254d77 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/BaseRecordedVersionConfigTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/BaseRecordedVersionConfigTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/RecordedVersionConfigGetUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/RecordedVersionConfigGetUnitTest.java index a8c6ebb1af..bce84e16db 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/RecordedVersionConfigGetUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/RecordedVersionConfigGetUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/RecordedVersionConfigPostUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/RecordedVersionConfigPostUnitTest.java index 86839935be..63942af509 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/RecordedVersionConfigPostUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/recorded/version/config/RecordedVersionConfigPostUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHoldWebScriptUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHoldWebScriptUnitTest.java index f43c0d8f73..702940fbd5 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHoldWebScriptUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHoldWebScriptUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHoldWebScriptWithContentUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHoldWebScriptWithContentUnitTest.java index be8ca3d36a..8b2668c8ca 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHoldWebScriptWithContentUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/BaseHoldWebScriptWithContentUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPostUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPostUnitTest.java index 06b77aa8a4..7402b69143 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPostUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPostUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPutUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPutUnitTest.java index 237906fffa..4ea25a29ff 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPutUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldPutUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldsGetUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldsGetUnitTest.java index 13034de4ac..917b54baee 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldsGetUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/script/hold/HoldsGetUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImplUnitTest.java index 32e6aac219..f156c24ecf 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/security/ExtendedSecurityServiceImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionServiceImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionServiceImplUnitTest.java index 2f7d35fc23..7d287d7078 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionServiceImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/security/FilePlanPermissionServiceImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/AllUnitTestSuite.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/AllUnitTestSuite.java index db580bbbaf..a877dcdb41 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/AllUnitTestSuite.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/AllUnitTestSuite.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/AlfMock.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/AlfMock.java index 2bdb233ba7..ff4cd95b11 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/AlfMock.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/AlfMock.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseUnitTest.java index 333b8110c4..ad256c46de 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseWebScriptUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseWebScriptUnitTest.java index f021a39ec6..3566b123a7 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseWebScriptUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseWebScriptUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseYamlUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseYamlUnitTest.java index fc33aec1b5..c964765352 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseYamlUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseYamlUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/ExceptionUtils.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/ExceptionUtils.java index 02ba503c3b..9cf0f1d29d 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/ExceptionUtils.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/ExceptionUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/ExceptionUtilsUsageExamplesUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/ExceptionUtilsUsageExamplesUnitTest.java index 236c9685ed..31deb6cb91 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/ExceptionUtilsUsageExamplesUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/ExceptionUtilsUsageExamplesUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/FPUtils.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/FPUtils.java index 74640c35b0..db0889bc8e 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/FPUtils.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/FPUtils.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/FPUtilsUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/FPUtilsUnitTest.java index ef7ff0c735..6451c0bafa 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/FPUtilsUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/FPUtilsUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/MockAuthenticationUtilHelper.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/MockAuthenticationUtilHelper.java index 6d8a765769..dda3341c6f 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/MockAuthenticationUtilHelper.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/MockAuthenticationUtilHelper.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/WebScriptExceptionMatcher.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/WebScriptExceptionMatcher.java index 093a2750b6..52c8c6bfe6 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/WebScriptExceptionMatcher.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/test/util/WebScriptExceptionMatcher.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/RMCollectionUtilsUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/RMCollectionUtilsUnitTest.java index 490dba4248..1c93fdb79d 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/RMCollectionUtilsUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/RMCollectionUtilsUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/RMParameterCheckUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/RMParameterCheckUnitTest.java index a6edf19a7b..1a2b9e751e 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/RMParameterCheckUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/RMParameterCheckUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ServiceBaseImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ServiceBaseImplUnitTest.java index dee07ba0e4..8ad5e8d3ff 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ServiceBaseImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ServiceBaseImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/ExtendedVersionableAspectUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/ExtendedVersionableAspectUnitTest.java index 93ef3133bd..e4d9e75018 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/ExtendedVersionableAspectUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/ExtendedVersionableAspectUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionServiceImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionServiceImplUnitTest.java index 63f49bf74a..dd0dedf442 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionServiceImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/RecordableVersionServiceImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/TestRecordableVersionServiceImpl.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/TestRecordableVersionServiceImpl.java index cb3599c498..763409ea58 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/TestRecordableVersionServiceImpl.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/version/TestRecordableVersionServiceImpl.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/vital/ReviewedActionUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/vital/ReviewedActionUnitTest.java index 8b28cc049a..cfc819c9a4 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/vital/ReviewedActionUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/vital/ReviewedActionUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/action/parameter/DateParameterProcessorUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/action/parameter/DateParameterProcessorUnitTest.java index 007c577584..8f19c21a57 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/action/parameter/DateParameterProcessorUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/action/parameter/DateParameterProcessorUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/imap/ExtendedImapServiceImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/imap/ExtendedImapServiceImplUnitTest.java index f1f6b6cfb3..b6840dcb50 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/imap/ExtendedImapServiceImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/imap/ExtendedImapServiceImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionServiceImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionServiceImplUnitTest.java index 19c47b3f56..1f6799f879 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionServiceImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/security/permissions/impl/ExtendedPermissionServiceImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGetUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGetUnitTest.java index e89f12fad3..5348bb1837 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGetUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGetUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMSitesImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMSitesImplUnitTest.java index 5b7a06506c..7c397e1033 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMSitesImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMSitesImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMYamlUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMYamlUnitTest.java index e82c372d43..a4d72826c7 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMYamlUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RMYamlUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RecordsImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RecordsImplUnitTest.java index 9d41921dd6..b480edbcea 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RecordsImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/impl/RecordsImplUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/sites/RMSiteEntityResourceUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/sites/RMSiteEntityResourceUnitTest.java index 73474215ac..5bf5cfdf63 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/sites/RMSiteEntityResourceUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/rm/rest/api/sites/RMSiteEntityResourceUnitTest.java @@ -2,7 +2,7 @@ * #%L * Alfresco Records Management Module * %% - * Copyright (C) 2005 - 2017 Alfresco Software Limited + * Copyright (C) 2005 - 2018 Alfresco Software Limited * %% * This file is part of the Alfresco software. * - From 42e92b52fb6bf26dd50f970512282079b0006aa6 Mon Sep 17 00:00:00 2001 From: Elena Hardon Date: Wed, 3 Jan 2018 12:10:20 +0200 Subject: [PATCH 019/236] RM-5970 - Added header for the integration test for copy to action --- .../test/integration/issue/RM5225Test.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java index 5653b440bf..3329902575 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java @@ -1,3 +1,29 @@ +/* + * #%L + * Alfresco Records Management Module + * %% + * Copyright (C) 2005 - 2018 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * - + * Alfresco 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 Lesser General Public License for more details. + * - + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ package org.alfresco.module.org_alfresco_module_rm.test.integration.issue; import org.alfresco.module.org_alfresco_module_rm.test.util.BaseRMTestCase; From 4d6eaf798bed28407af5bfadb3f1679d87bac233 Mon Sep 17 00:00:00 2001 From: Elena Hardon Date: Wed, 3 Jan 2018 16:05:40 +0200 Subject: [PATCH 020/236] RM-5970 - Added javadoc on the class and repaired typo --- .../test/integration/issue/RM5225Test.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java index 3329902575..9f33ee9693 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM5225Test.java @@ -30,10 +30,15 @@ import org.alfresco.module.org_alfresco_module_rm.test.util.BaseRMTestCase; import org.alfresco.service.cmr.repository.NodeRef; import org.springframework.extensions.webscripts.GUID; +/** + * Integration test for RM-5225 + * + * Copy of record from a RM site does not append the correct id at the end of the record name. + */ public class RM5225Test extends BaseRMTestCase { /** - * Given the RM site, a record category created in the fileplan, a record foler containing a record + * Given the RM site, a record category created in the fileplan, a record folder containing a record * When we create a copy from the existing record * Then the created record name contains both the name of the record from which it was created and the unique identifier of the current record. */ From db72233b701979801e81a74d05dbb4c22ad87931 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Thu, 4 Jan 2018 09:05:18 +0000 Subject: [PATCH 021/236] RM-5344 Only gather DOD audit entries if there is a DOD RM site. This creates an edge case where DOD audit entries are no longer displayed if a DOD RM site is deleted and then a standard RM site is created to replace it. However this seems like an unlikely use case, and there is a workaround of exporting the audit log before deleting the DOD RM site. Two audit queries are still made for DOD RM sites because DOD sites cause some standard audit entries to be created (e.g. the holds container created event, etc.). --- .../rm-service-context.xml | 1 + .../RecordsManagementAuditServiceImpl.java | 22 ++- ...rdsManagementAuditServiceImplUnitTest.java | 176 ++++++++++++++++++ 3 files changed, 197 insertions(+), 2 deletions(-) create mode 100644 rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImplUnitTest.java diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-service-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-service-context.xml index 01ac11f766..1d2f094680 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-service-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-service-context.xml @@ -932,6 +932,7 @@ + diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java index 573dc9d2b4..11df111ad5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java @@ -27,6 +27,9 @@ package org.alfresco.module.org_alfresco_module_rm.audit; +import static org.alfresco.module.org_alfresco_module_rm.dod5015.DOD5015Model.TYPE_DOD_5015_SITE; +import static org.alfresco.module.org_alfresco_module_rm.model.rma.type.RmSiteType.DEFAULT_SITE_NAME; + import java.io.BufferedWriter; import java.io.File; import java.io.FileOutputStream; @@ -51,6 +54,7 @@ import org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction import org.alfresco.module.org_alfresco_module_rm.audit.event.AuditEvent; import org.alfresco.module.org_alfresco_module_rm.capability.CapabilityService; import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService; +import org.alfresco.module.org_alfresco_module_rm.model.rma.type.RmSiteType; import org.alfresco.repo.audit.AuditComponent; import org.alfresco.repo.audit.model.AuditApplication; import org.alfresco.repo.content.MimetypeMap; @@ -72,6 +76,7 @@ import org.alfresco.service.cmr.repository.MLText; import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.service.cmr.security.AccessStatus; +import org.alfresco.service.cmr.site.SiteService; import org.alfresco.service.namespace.NamespaceService; import org.alfresco.service.namespace.QName; import org.alfresco.service.transaction.TransactionService; @@ -186,6 +191,7 @@ public class RecordsManagementAuditServiceImpl extends AbstractLifecycleBean private DictionaryService dictionaryService; private TransactionService transactionService; private NodeService nodeService; + private SiteService siteService; private ContentService contentService; private AuditComponent auditComponent; private AuditService auditService; @@ -237,6 +243,13 @@ public class RecordsManagementAuditServiceImpl extends AbstractLifecycleBean this.nodeService = nodeService; } + /** + * Set the site service (used to check the type of RM site created). + * + * @param siteService The site service. + */ + public void setSiteService(SiteService siteService) { this.siteService = siteService; } + /** * Sets the ContentService instance */ @@ -820,7 +833,7 @@ public class RecordsManagementAuditServiceImpl extends AbstractLifecycleBean * @param writer Writer to write the audit trail * @param reportFormat Format to write the audit trail in, ignored if writer is null */ - private void getAuditTrailImpl( + protected void getAuditTrailImpl( final RecordsManagementAuditQueryParameters params, final List results, final Writer writer, @@ -1091,7 +1104,12 @@ public class RecordsManagementAuditServiceImpl extends AbstractLifecycleBean } // Get audit entries - auditService.auditQuery(callback, dod5015AuditQueryParams, maxEntries); + QName siteType = nodeService.getType(siteService.getSite(DEFAULT_SITE_NAME).getNodeRef()); + if (siteType.equals(TYPE_DOD_5015_SITE)) + { + auditService.auditQuery(callback, dod5015AuditQueryParams, maxEntries); + } + // We always need to make the standard query - regardless of the type of RM site (to get events like RM site created). auditService.auditQuery(callback, auditQueryParams, maxEntries); // finish off the audit trail report diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImplUnitTest.java new file mode 100644 index 0000000000..2f1b39fa0c --- /dev/null +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImplUnitTest.java @@ -0,0 +1,176 @@ +/* + * #%L + * Alfresco Records Management Module + * %% + * Copyright (C) 2005 - 2018 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * - + * Alfresco 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 Lesser General Public License for more details. + * - + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ +package org.alfresco.module.org_alfresco_module_rm.audit; + +import static java.util.Collections.emptyList; + +import static org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditService.ReportFormat.JSON; +import static org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditServiceImpl.DOD5015_AUDIT_APPLICATION_NAME; +import static org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditServiceImpl.RM_AUDIT_APPLICATION_NAME; +import static org.alfresco.module.org_alfresco_module_rm.audit.RecordsManagementAuditServiceImpl.RM_AUDIT_PATH_ROOT; +import static org.alfresco.module.org_alfresco_module_rm.dod5015.DOD5015Model.TYPE_DOD_5015_SITE; +import static org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService.DEFAULT_RM_SITE_ID; +import static org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel.TYPE_RM_SITE; +import static org.alfresco.module.org_alfresco_module_rm.model.rma.type.RmSiteType.DEFAULT_SITE_NAME; +import static org.junit.Assert.assertEquals; +import static org.mockito.Matchers.any; +import static org.mockito.Matchers.eq; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; +import static org.mockito.MockitoAnnotations.initMocks; + +import java.io.IOException; +import java.io.Writer; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.stream.Collectors; + +import com.google.common.collect.Sets; + +import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService; +import org.alfresco.repo.audit.AuditComponent; +import org.alfresco.service.cmr.audit.AuditQueryParameters; +import org.alfresco.service.cmr.audit.AuditService; +import org.alfresco.service.cmr.repository.NodeRef; +import org.alfresco.service.cmr.repository.NodeService; +import org.alfresco.service.cmr.site.SiteInfo; +import org.alfresco.service.cmr.site.SiteService; +import org.junit.Before; +import org.junit.Test; +import org.mockito.ArgumentCaptor; +import org.mockito.Captor; +import org.mockito.InjectMocks; +import org.mockito.Mock; + +/** + * Unit tests for {@link RecordsManagementAuditServiceImpl}. + * + * @author Tom Page + * @since 2.7 + */ +public class RecordsManagementAuditServiceImplUnitTest +{ + /** The maximum entries to return in the audit query. */ + private static final int MAX_ENTRIES = 10; + /** A node representing the file plan root. */ + private static final NodeRef FILE_PLAN_NODE = new NodeRef("file://plan/node"); + /** A node representing the RM site. */ + private static final NodeRef RM_SITE_NODE = new NodeRef("rm://site/node"); + /** The class under test. */ + @InjectMocks + private RecordsManagementAuditServiceImpl recordsManagementAuditServiceImpl; + @Mock + private NodeService mockNodeService; + @Mock + private SiteService mockSiteService; + @Mock + private AuditService mockAuditService; + @Mock + private FilePlanService mockFilePlanService; + @Mock + AuditComponent mockAuditComponent; + @Mock + private Writer mockWriter; + @Mock + private SiteInfo mockSiteInfo; + @Captor + private ArgumentCaptor queryParamsCaptor; + + /** Set up the mocks. */ + @Before + public void setUp() + { + initMocks(this); + + when(mockFilePlanService.getFilePlanBySiteId(DEFAULT_RM_SITE_ID)).thenReturn(FILE_PLAN_NODE); + when(mockSiteService.getSite(DEFAULT_SITE_NAME)).thenReturn(mockSiteInfo); + when(mockSiteInfo.getNodeRef()).thenReturn(RM_SITE_NODE); + + recordsManagementAuditServiceImpl.setIgnoredAuditProperties(emptyList()); + } + + /** + * Check that if the RM site is not a DOD site then the audit trail doesn't make a query for DOD events. + * + * @throws IOException Unexpected. + */ + @Test + public void testAuditWithoutDOD() throws IOException + { + RecordsManagementAuditQueryParameters params = new RecordsManagementAuditQueryParameters(); + params.setMaxEntries(MAX_ENTRIES); + List results = new ArrayList<>(); + // Return a standard site type. + when(mockNodeService.getType(RM_SITE_NODE)).thenReturn(TYPE_RM_SITE); + + // Call the method under test. + recordsManagementAuditServiceImpl.getAuditTrailImpl(params, results, mockWriter, JSON); + + // Check that exactly one audit query was performed. + verify(mockAuditService, times(1)) + .auditQuery(any(AuditService.AuditQueryCallback.class), queryParamsCaptor.capture(), + eq(MAX_ENTRIES)); + // We always need to make the standard query - regardless of the type of RM site (to get events like RM site created). + assertEquals("The application name should be the standard RM application", RM_AUDIT_APPLICATION_NAME, + queryParamsCaptor.getValue().getApplicationName()); + // Check that the event of viewing the audit log was itself audited. + verify(mockAuditComponent).recordAuditValues(eq(RM_AUDIT_PATH_ROOT), any(Map.class)); + } + + /** + * Check that if the RM site is a DOD site then the audit trail makes a query for DOD events and the standard events. + * + * @throws IOException Unexpected. + */ + @Test + public void testAuditWithDOD() throws IOException + { + RecordsManagementAuditQueryParameters params = new RecordsManagementAuditQueryParameters(); + params.setMaxEntries(MAX_ENTRIES); + List results = new ArrayList<>(); + // Return a DOD site type. + when(mockNodeService.getType(RM_SITE_NODE)).thenReturn(TYPE_DOD_5015_SITE); + + // Call the method under test. + recordsManagementAuditServiceImpl.getAuditTrailImpl(params, results, mockWriter, JSON); + + // Check that two audit queries were performed (one for DOD events and one for standard events). + verify(mockAuditService, times(2)) + .auditQuery(any(AuditService.AuditQueryCallback.class), queryParamsCaptor.capture(), + eq(MAX_ENTRIES)); + Set apps = queryParamsCaptor.getAllValues().stream().map(AuditQueryParameters::getApplicationName) + .collect(Collectors.toSet()); + // We always need to make the standard query - regardless of the type of RM site (to get events like RM site created). + assertEquals("Expected the standard audit query and the DOD audit query.", + Sets.newHashSet(RM_AUDIT_APPLICATION_NAME, DOD5015_AUDIT_APPLICATION_NAME), apps); + // Check that the event of viewing the audit log was itself audited. + verify(mockAuditComponent).recordAuditValues(eq(RM_AUDIT_PATH_ROOT), any(Map.class)); + } +} From 00517a13c4a0a3e4939b301e1f0f27885448a4a3 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Thu, 4 Jan 2018 14:28:27 +0000 Subject: [PATCH 022/236] RM-5344 Handle case where site with id "rm" doesn't exist. This is not possible normally, but it does happen with the integration tests. Also fix some whitespace in the test class. --- .../RecordsManagementAuditServiceImpl.java | 11 +++++++--- ...RecordsManagementAuditServiceImplTest.java | 20 +++++++++---------- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java index 11df111ad5..138d3394a4 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java @@ -76,6 +76,7 @@ import org.alfresco.service.cmr.repository.MLText; import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.service.cmr.security.AccessStatus; +import org.alfresco.service.cmr.site.SiteInfo; import org.alfresco.service.cmr.site.SiteService; import org.alfresco.service.namespace.NamespaceService; import org.alfresco.service.namespace.QName; @@ -1104,10 +1105,14 @@ public class RecordsManagementAuditServiceImpl extends AbstractLifecycleBean } // Get audit entries - QName siteType = nodeService.getType(siteService.getSite(DEFAULT_SITE_NAME).getNodeRef()); - if (siteType.equals(TYPE_DOD_5015_SITE)) + SiteInfo siteInfo = siteService.getSite(DEFAULT_SITE_NAME); + if (siteInfo != null) { - auditService.auditQuery(callback, dod5015AuditQueryParams, maxEntries); + QName siteType = nodeService.getType(siteInfo.getNodeRef()); + if (siteType.equals(TYPE_DOD_5015_SITE)) + { + auditService.auditQuery(callback, dod5015AuditQueryParams, maxEntries); + } } // We always need to make the standard query - regardless of the type of RM site (to get events like RM site created). auditService.auditQuery(callback, auditQueryParams, maxEntries); diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAuditServiceImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAuditServiceImplTest.java index e718bc84c4..79ad3909f5 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAuditServiceImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementAuditServiceImplTest.java @@ -78,18 +78,18 @@ public class RecordsManagementAuditServiceImplTest extends BaseRMTestCase @Override public Void run() throws Exception { - // test start time recorded - testStartTime = new Date(); + // test start time recorded + testStartTime = new Date(); - // Stop and clear the log - rmAuditService.stopAuditLog(filePlan); - rmAuditService.clearAuditLog(filePlan); - rmAuditService.startAuditLog(filePlan); + // Stop and clear the log + rmAuditService.stopAuditLog(filePlan); + rmAuditService.clearAuditLog(filePlan); + rmAuditService.startAuditLog(filePlan); - // check that audit service is started - assertTrue(rmAuditService.isAuditLogEnabled(filePlan)); + // check that audit service is started + assertTrue(rmAuditService.isAuditLogEnabled(filePlan)); - return null; + return null; } }); } @@ -198,7 +198,7 @@ public class RecordsManagementAuditServiceImplTest extends BaseRMTestCase } }); } - + /** * Test getAuditTrail method and parameter filters. */ From 1ee4e1d5aa81b98667c50102feb3752139d0e02d Mon Sep 17 00:00:00 2001 From: Jelena Cule Date: Fri, 5 Jan 2018 10:41:35 +0000 Subject: [PATCH 023/236] Merge RM-5917 ClassificationSourceReference API TESTS to master --- .../FilePlanComponentFields.java | 4 +- .../java/org/alfresco/rest/v0/NodeAPI.java | 74 +++++++++++++++++++ .../rm/community/base/BaseRMRestTest.java | 13 ---- .../rest/rm/community/utils/CoreUtil.java | 14 ++++ 4 files changed, 91 insertions(+), 14 deletions(-) create mode 100644 rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/NodeAPI.java diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentFields.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentFields.java index 72a9dc2422..2fbbf3cc15 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentFields.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/fileplancomponents/FilePlanComponentFields.java @@ -74,7 +74,9 @@ public class FilePlanComponentFields public static final String PROPERTIES_RECORD_SEARCH_VITAL_RECORD_REVIEW_PERIOD = "rma:recordSearchVitalRecordReviewPeriod"; public static final String PROPERTIES_RECORD_SEARCH_VITAL_RECORD_REVIEW_PERIOD_EXPRESSION = "rma:recordSearchVitalRecordReviewPeriodExpression"; - /** Record properties */ + /** + * Record properties + */ public static final String PROPERTIES_CLASSIFICATION = "sc:classification"; public static final String PROPERTIES_DATE_FILED = "rma:dateFiled"; public static final String PROPERTIES_ORIGINAL_NAME = "rma:origionalName"; diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/NodeAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/NodeAPI.java new file mode 100644 index 0000000000..f0d4911db2 --- /dev/null +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/v0/NodeAPI.java @@ -0,0 +1,74 @@ +/* + * #%L + * Alfresco Records Management Module + * %% + * Copyright (C) 2005 - 2018 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * - + * Alfresco 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 Lesser General Public License for more details. + * - + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ +package org.alfresco.rest.v0; +import java.text.MessageFormat; + +import org.alfresco.dataprep.AlfrescoHttpClient; +import org.alfresco.dataprep.AlfrescoHttpClientFactory; +import org.alfresco.rest.core.v0.BaseAPI; +import org.json.JSONObject; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +/** + * The v0 REST API for nodes + * + * @author jcule + * @since 2.7EA1 + */ +@Component +public class NodeAPI extends BaseAPI +{ + /** Logger for the class. */ + private static final Logger LOGGER = LoggerFactory.getLogger(NodeAPI.class); + + /** The URI for the get node API. */ + private static final String GET_NODE_API = "{0}alfresco/s/slingshot/doclib2/node/{1}"; + + @Autowired + private AlfrescoHttpClientFactory alfrescoHttpClientFactory; + + /** + * Get the node metadata using the using the node data webscript: Document List v2 Component + * + * @param username + * @param password + * @param nodeId + * @return + */ + public JSONObject getNode(String username, String password, String nodeId) + { + String requestURL; + AlfrescoHttpClient client = alfrescoHttpClientFactory.getObject(); + requestURL = MessageFormat.format(GET_NODE_API, client.getAlfrescoUrl(), NODE_PREFIX + nodeId); + client.close(); + return doGetRequest(username, password, requestURL); + } + +} diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java index b4d241636b..963853cb37 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/base/BaseRMRestTest.java @@ -668,17 +668,4 @@ public class BaseRMRestTest extends RestTest return documentLibrary; } - /** - * Helper method to create a Content Model - * - * @return ContentModel - * @throws Exception - */ - public ContentModel toContentModel(String nodeId) - { - ContentModel node = new ContentModel(); - node.setNodeRef(nodeId); - return node; - } - } diff --git a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/CoreUtil.java b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/CoreUtil.java index e83ef765fb..534d3d1854 100644 --- a/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/CoreUtil.java +++ b/rm-automation/rm-automation-community-rest-api/src/test/java/org/alfresco/rest/rm/community/utils/CoreUtil.java @@ -27,6 +27,7 @@ package org.alfresco.rest.rm.community.utils; import org.alfresco.rest.model.RestNodeBodyMoveCopyModel; +import org.alfresco.utility.model.ContentModel; /** * Utility class for core components models @@ -53,4 +54,17 @@ public class CoreUtil moveDestinationInfo.setTargetParentId(nodeId); return moveDestinationInfo; } + + /** + * Helper method to create a Content Model + * + * @return ContentModel + * @throws Exception + */ + public static ContentModel toContentModel(String nodeId) + { + ContentModel node = new ContentModel(); + node.setNodeRef(nodeId); + return node; + } } From 2bc9c284e78c91694a48910399fca90b2a0fbf32 Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Fri, 5 Jan 2018 11:41:19 +0000 Subject: [PATCH 024/236] RM-5927 Add appliesToVersion to v20 v21 patches --- .../org_alfresco_module_rm/patch/rm-patch-v20-context.xml | 4 ++++ .../org_alfresco_module_rm/patch/rm-patch-v21-context.xml | 7 +++++++ 2 files changed, 11 insertions(+) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml index 985a809082..c300750bd5 100755 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml @@ -13,6 +13,7 @@ + @@ -28,6 +29,7 @@ + @@ -41,6 +43,7 @@ + @@ -58,6 +61,7 @@ + diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml index aa0a740c59..23c5db6ace 100755 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml @@ -13,6 +13,7 @@ + @@ -31,6 +32,7 @@ + @@ -47,6 +49,7 @@ + @@ -60,6 +63,7 @@ + @@ -75,6 +79,7 @@ + @@ -88,6 +93,7 @@ + @@ -100,6 +106,7 @@ + From 496b2ca20893b166c7930ae34a111bec561cbf7a Mon Sep 17 00:00:00 2001 From: Tom Page Date: Fri, 5 Jan 2018 15:43:49 +0000 Subject: [PATCH 025/236] Fix some issues raised by Sonar. Avoid NPE if calculateListOfEmptyFolders returns null in ScheduleXRecordLoaders. Fix equals method of a few classes to check against the other instance. Make synchonisation consistent in AppliedSourceServiceImpl and also remove a redundant null check. Use Arrays.toString to make a more readable string representation of an array. Combine a few if statement branches that do the same thing. --- .../RecordsManagementAdminServiceImpl.java | 12 +++----- .../capability/RMAfterInvocationProvider.java | 28 ++++++++----------- .../MayBeScheduledCapabilityCondition.java | 13 ++------- .../property/DispositionProperty.java | 20 ++----------- .../model/rma/type/RecordFolderType.java | 21 ++++---------- 5 files changed, 25 insertions(+), 69 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminServiceImpl.java index 62a90bbc74..c37234c425 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/admin/RecordsManagementAdminServiceImpl.java @@ -876,15 +876,11 @@ public class RecordsManagementAdminServiceImpl extends RecordsManagementAdminBas } String lovConstraintQNameAsString = newLovConstraint.toPrefixString(getNamespaceService()); - // Add the constraint - if it isn't already there. - String refOfExistingConstraint = null; + // Add the constraint - if it isn't already there (there should only be one constraint). + String refOfExistingConstraint = (targetProp.getConstraints().isEmpty() ? + null : + targetProp.getConstraints().get(0).getRef()); - for (M2Constraint c : targetProp.getConstraints()) - { - // There should only be one constraint. - refOfExistingConstraint = c.getRef(); - break; - } if (refOfExistingConstraint != null) { targetProp.removeConstraintRef(refOfExistingConstraint); diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMAfterInvocationProvider.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMAfterInvocationProvider.java index 5bf6e0cbfc..30dc3dfca3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMAfterInvocationProvider.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/RMAfterInvocationProvider.java @@ -37,6 +37,13 @@ import java.util.Map; import java.util.Set; import java.util.StringTokenizer; +import net.sf.acegisecurity.AccessDeniedException; +import net.sf.acegisecurity.Authentication; +import net.sf.acegisecurity.ConfigAttribute; +import net.sf.acegisecurity.ConfigAttributeDefinition; +import net.sf.acegisecurity.afterinvocation.AfterInvocationProvider; +import net.sf.acegisecurity.vote.AccessDecisionVoter; + import org.alfresco.error.AlfrescoRuntimeException; import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel; import org.alfresco.repo.search.SimpleResultSetMetaData; @@ -62,13 +69,6 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.beans.factory.InitializingBean; -import net.sf.acegisecurity.AccessDeniedException; -import net.sf.acegisecurity.Authentication; -import net.sf.acegisecurity.ConfigAttribute; -import net.sf.acegisecurity.ConfigAttributeDefinition; -import net.sf.acegisecurity.afterinvocation.AfterInvocationProvider; -import net.sf.acegisecurity.vote.AccessDecisionVoter; - /** * RM After Invocation Provider */ @@ -285,11 +285,8 @@ public class RMAfterInvocationProvider extends RMSecurityCommon { for (ConfigAttributeDefintion cad : supportedDefinitions) { - if (cad.parent && parentResult == AccessDecisionVoter.ACCESS_DENIED) - { - throw new AccessDeniedException("Access Denied"); - } - else if (!cad.parent && childResult == AccessDecisionVoter.ACCESS_DENIED) + if ((cad.parent && parentResult == AccessDecisionVoter.ACCESS_DENIED) + || (!cad.parent && childResult == AccessDecisionVoter.ACCESS_DENIED)) { throw new AccessDeniedException("Access Denied"); } @@ -358,11 +355,8 @@ public class RMAfterInvocationProvider extends RMSecurityCommon continue; } - if (cad.parent && parentReadCheck != AccessDecisionVoter.ACCESS_GRANTED) - { - throw new AccessDeniedException("Access Denied"); - } - else if (childReadCheck != AccessDecisionVoter.ACCESS_GRANTED) + if ((cad.parent && parentReadCheck != AccessDecisionVoter.ACCESS_GRANTED) + || (childReadCheck != AccessDecisionVoter.ACCESS_GRANTED)) { throw new AccessDeniedException("Access Denied"); } diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MayBeScheduledCapabilityCondition.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MayBeScheduledCapabilityCondition.java index efaf39ca8b..a844db8efb 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MayBeScheduledCapabilityCondition.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/capability/declarative/condition/MayBeScheduledCapabilityCondition.java @@ -94,17 +94,8 @@ public class MayBeScheduledCapabilityCondition extends AbstractCapabilityConditi */ private boolean checkDispositionLevel(NodeRef nodeRef, DispositionSchedule dispositionSchedule) { - boolean result = false; boolean isRecordLevelDisposition = dispositionSchedule.isRecordLevelDisposition(); - if (recordService.isRecord(nodeRef) && isRecordLevelDisposition) - { - result = true; - } - else if (recordFolderService.isRecordFolder(nodeRef) && !isRecordLevelDisposition) - - { - result = true; - } - return result; + return (recordService.isRecord(nodeRef) && isRecordLevelDisposition) + || (recordFolderService.isRecordFolder(nodeRef) && !isRecordLevelDisposition); } } diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java index 9f5b70b8eb..880872110f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java @@ -258,25 +258,11 @@ public class DispositionProperty extends BaseBehaviourBean */ private boolean isPropertyUpdated(Map before, Map after) { - boolean result = false; - Serializable beforeValue = before.get(propertyName); Serializable afterValue = after.get(propertyName); - if (beforeValue == null && afterValue != null) - { - result = true; - } - else if (beforeValue != null && afterValue == null) - { - result = true; - } - else if (beforeValue != null && afterValue != null && - !beforeValue.equals(afterValue)) - { - result = true; - } - - return result; + return ((beforeValue == null && afterValue != null) + || (beforeValue != null && afterValue == null) + || (beforeValue != null && afterValue != null && !beforeValue.equals(afterValue))); } } diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderType.java index 242416567a..c6100cfe58 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/RecordFolderType.java @@ -27,12 +27,9 @@ package org.alfresco.module.org_alfresco_module_rm.model.rma.type; -import static org.alfresco.module.org_alfresco_module_rm.record.RecordUtils.generateRecordIdentifier; - import java.io.Serializable; import java.util.Map; -import org.alfresco.error.AlfrescoRuntimeException; import org.alfresco.model.ContentModel; import org.alfresco.module.org_alfresco_module_rm.identifier.IdentifierService; import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel; @@ -203,18 +200,10 @@ public class RecordFolderType extends AbstractDisposableItem @Override public boolean getMustCopy(QName classQName, CopyDetails copyDetails) { - boolean result = true; - - if (nodeService.getType(copyDetails.getTargetParentNodeRef()).equals(TYPE_RECORD_FOLDER)) - { - result = false; - } - else if (ArrayUtils.contains(unwantedAspects, classQName)) - { - result = false; - } - - return result; + boolean targetParentIsRecordFolder = nodeService.getType(copyDetails.getTargetParentNodeRef()) + .equals(TYPE_RECORD_FOLDER); + boolean containsUnwantedAspect = ArrayUtils.contains(unwantedAspects, classQName); + return !(targetParentIsRecordFolder || containsUnwantedAspect); } }; } @@ -253,7 +242,7 @@ public class RecordFolderType extends AbstractDisposableItem } } - /** + /** * On transaction commit * * @see org.alfresco.repo.node.NodeServicePolicies.OnCreateChildAssociationPolicy#onCreateChildAssociation(org.alfresco.service.cmr.repository.ChildAssociationRef, boolean) From f7e98b5df2278482841b16daf8646b00cefa59a5 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Mon, 8 Jan 2018 08:34:42 +0000 Subject: [PATCH 026/236] Simplify inequality check as suggested in code review. --- .../disposition/property/DispositionProperty.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java index 880872110f..f7d46294b5 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/disposition/property/DispositionProperty.java @@ -32,6 +32,7 @@ import static org.apache.commons.lang3.BooleanUtils.isNotTrue; import java.io.Serializable; import java.util.Date; import java.util.Map; +import java.util.Objects; import java.util.Set; import org.alfresco.error.AlfrescoRuntimeException; @@ -261,8 +262,6 @@ public class DispositionProperty extends BaseBehaviourBean Serializable beforeValue = before.get(propertyName); Serializable afterValue = after.get(propertyName); - return ((beforeValue == null && afterValue != null) - || (beforeValue != null && afterValue == null) - || (beforeValue != null && afterValue != null && !beforeValue.equals(afterValue))); + return !Objects.equals(beforeValue, afterValue); } } From 1f2b2dca52f955854739e767292020ab072477c9 Mon Sep 17 00:00:00 2001 From: Brian Remmington Date: Thu, 11 Jan 2018 12:23:09 +0000 Subject: [PATCH 027/236] A fairly dumb initial copy of RM-related design information from the Architecture Map --- rm-community/documentation/PatchService.md | 14 ++++ rm-community/documentation/README.md | 28 ++++++- .../content-classification/README.md | 74 ++++++++++++++++++ .../documentation/destruction/README.md | 60 ++++++++++++++ .../resource/class/destruction-class.png | Bin 0 -> 35633 bytes .../resource/class/destruction-class.puml | 43 ++++++++++ .../sequence/destruction-sequence.png | Bin 0 -> 26419 bytes .../sequence/destruction-sequence.puml | 40 ++++++++++ .../easy-access-records/README.md | 74 ++++++++++++++++++ .../documentation/email-records/README.md | 74 ++++++++++++++++++ .../documentation/file-plan/README.md | 74 ++++++++++++++++++ .../documentation/governance-audit/README.md | 74 ++++++++++++++++++ .../documentation/governance-rules/README.md | 74 ++++++++++++++++++ .../documentation/governance-search/README.md | 74 ++++++++++++++++++ .../documentation/legal-holds/README.md | 74 ++++++++++++++++++ .../documentation/list-of-values/README.md | 74 ++++++++++++++++++ .../documentation/physical-records/README.md | 74 ++++++++++++++++++ .../record-import-export/README.md | 74 ++++++++++++++++++ rm-community/documentation/records/README.md | 74 ++++++++++++++++++ .../resource/component/ig-component.png | Bin 0 -> 34348 bytes .../resource/component/ig-component.puml | 58 ++++++++++++++ .../retention-schedules/README.md | 74 ++++++++++++++++++ .../roles-capabilities-permissions/README.md | 74 ++++++++++++++++++ .../documentation/security-marks/README.md | 74 ++++++++++++++++++ .../transfer-and-accession/README.md | 74 ++++++++++++++++++ .../documentation/version-records/README.md | 74 ++++++++++++++++++ 26 files changed, 1500 insertions(+), 1 deletion(-) create mode 100644 rm-community/documentation/PatchService.md create mode 100644 rm-community/documentation/content-classification/README.md create mode 100644 rm-community/documentation/destruction/README.md create mode 100644 rm-community/documentation/destruction/resource/class/destruction-class.png create mode 100644 rm-community/documentation/destruction/resource/class/destruction-class.puml create mode 100644 rm-community/documentation/destruction/resource/sequence/destruction-sequence.png create mode 100644 rm-community/documentation/destruction/resource/sequence/destruction-sequence.puml create mode 100644 rm-community/documentation/easy-access-records/README.md create mode 100644 rm-community/documentation/email-records/README.md create mode 100644 rm-community/documentation/file-plan/README.md create mode 100644 rm-community/documentation/governance-audit/README.md create mode 100644 rm-community/documentation/governance-rules/README.md create mode 100644 rm-community/documentation/governance-search/README.md create mode 100644 rm-community/documentation/legal-holds/README.md create mode 100644 rm-community/documentation/list-of-values/README.md create mode 100644 rm-community/documentation/physical-records/README.md create mode 100644 rm-community/documentation/record-import-export/README.md create mode 100644 rm-community/documentation/records/README.md create mode 100644 rm-community/documentation/resource/component/ig-component.png create mode 100644 rm-community/documentation/resource/component/ig-component.puml create mode 100644 rm-community/documentation/retention-schedules/README.md create mode 100644 rm-community/documentation/roles-capabilities-permissions/README.md create mode 100644 rm-community/documentation/security-marks/README.md create mode 100644 rm-community/documentation/transfer-and-accession/README.md create mode 100644 rm-community/documentation/version-records/README.md diff --git a/rm-community/documentation/PatchService.md b/rm-community/documentation/PatchService.md new file mode 100644 index 0000000000..3472dde7fe --- /dev/null +++ b/rm-community/documentation/PatchService.md @@ -0,0 +1,14 @@ +# RM Patch Service + +The RM Patch service operates independently of the Core Patch service & behaves differently. + +Schema numbering is sequential, it’s a 4 digit number, prefixed with the major/minor version number, e.g. schema from a 2.4 version will be 24xx. This is a different policy to the core numbering (which bumps the schema number by 10 for each release). + +Patches run in a single transaction. They may process data in batches, but it’s all wrapped in a single transaction, which is rolled back if the patch fails or is interrupted. AbstractModulePatch#245. When we implement applyInternal within a patch, that whole method runs inside a transaction. + +DB Schema numbers update only after every patch runs. This means if a patch fails, earlier patches will re run. (see: ModulePatchExecuterImpl.executeInternal#140). This behaviour is different than core’s behaviour, which updates the schema number after each successful patch. + +DB Schema number is stored in the attribute service (key: “module-schema”) against the RM’s module ID. This is not exposed in the UI. Nor in a REST API. The attribute service stores it directly in the DB, so isn’t even accessible via the node browser. +If a customer wants to determine the schema number for a running system, they’ll need to execute a DB query. + +It's possible to configure a patch not to run if being upgraded from a earlier schema version by setting `fixesFromSchema` in the patch config xml. diff --git a/rm-community/documentation/README.md b/rm-community/documentation/README.md index 7f958b9eb7..3fb29102f9 100644 --- a/rm-community/documentation/README.md +++ b/rm-community/documentation/README.md @@ -2,4 +2,30 @@ * [Enterprise Technical Documentation](../../rm-enterprise/documentation/README.md) (the link will only work if this repository contains the enterprise code) * [Overview of the design of RM](overview.md) -* [Extended permission service](extendedPermissionService.md) +* Records Management + * [File Plan](./file-plan) + * [List of Values](./list-of-values) + * Records + * [EMail Records](./email-records) + * [Filed and Unfiled Records](./records) + * [Easy Access Records](./easy-access-records) + * [Physical Records](./physical-records) + * [Record Import and Export](./record-import-export) + * [Version Records](./version-records) + * Retention + * [Destruction](./destruction) + * [Retention Schedules and Events](./retention-schedules) + * [Transfer and Accession](./transfer-and-accession) +* Security + * [Content Classification](./content-classification) + * [Extended permission service](extendedPermissionService.md) + * [Roles,Capabilities and Permissions](./roles-capabilities-permissions) + * [Security Marks](./security-marks) +* Discovery + * [Governance Search](./governance-search) + * [Legal Holds](./legal-holds) +* Compliance + * [Governance Audit](./governance-audit) + * [Governance Rules](./governance-rules) +* Core Module Services + * [RM Patch Service](./PatchService.md) diff --git a/rm-community/documentation/content-classification/README.md b/rm-community/documentation/content-classification/README.md new file mode 100644 index 0000000000..7a33fc4adb --- /dev/null +++ b/rm-community/documentation/content-classification/README.md @@ -0,0 +1,74 @@ +## Content Classification + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/destruction/README.md b/rm-community/documentation/destruction/README.md new file mode 100644 index 0000000000..b43c16bf18 --- /dev/null +++ b/rm-community/documentation/destruction/README.md @@ -0,0 +1,60 @@ +## Destruction + +### Purpose + +Ensure the immediate and permanent destruction of sensitive content. + +This includes: + + * Records + * Classified content + +### Overview + +Sensitive content is immediately deleted from the content store. It does not get added to the trashcan or any other recoverable location and as such should not be recoverable. + +It is possible to configure the component to include a cleansing step prior to content deletion. This allows the binary content to be repeatedly overwritten prior to deletion to make it harder to forensically recover the binary data. + +Recorded content can be explicitly destroyed whilst maintaining the original node and associated meta-data. This is configured as a characteristic of the destruction step within a retention schedule. + +### Artifacts and Guidance + +* Source Code Link: [GitLab](https://gitlab.alfresco.com/records-management/records-management/tree/master) +* License: Alfresco Community +* Issue Tracker Link: [JIRA RM](https://issues.alfresco.com/jira/projects/RM/summary) +* Contribution Model: Alfresco Closed Source +* Documentation: [docs.alfresco.com (Records Management)](http://docs.alfresco.com/rm2.4/concepts/welcome-rm.html) + +*** + +### Design + +#### Component Model + +#### Content Model + +* uri - http://www.alfresco.org/model/recordsmanagement/1.0 +* prefix - rma +* rma:ghosted - aspect that indicates that a records content has been destroyed, but the records meta-data is still available. + +#### Flows + +![Alfresco Destruction Flow Diagram](./resource/sequence/destruction-sequence.png) + +#### Class Diagram + +![Alfresco Destruction Class Diagram](./resource/class/destruction-class.png) + +*** + +### Interfaces and APIs + +*** + +### Configuration + +*** + +### Considerations + +*** diff --git a/rm-community/documentation/destruction/resource/class/destruction-class.png b/rm-community/documentation/destruction/resource/class/destruction-class.png new file mode 100644 index 0000000000000000000000000000000000000000..1b8b0e383267adf01b043ee8caa82f61c11512e0 GIT binary patch literal 35633 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≈TB}70M``+*Py=#^W4*?o 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 ContentDestructionComponent +ContentDestructionComponent <|-- ExtendedContentDestructionComponent +ContentDestructionComponent --> EagerContentStoreCleaner +EagerContentStoreCleaner --> ContentCleanser +ContentCleanser <|-- ContentCleanser522022M +ContentCleanser +-- OverwriteOperation + +class DestroyAction { + + boolean ghostingEnabled +} + +class ContentDestructionComponent { + + boolean cleansingEnabled + + void destroyContent(NodeRef nodeRef) + + void destroyContent(NodeRef nodeRef, boolean includeRenditions) + + void registerAllContentForDestruction(NodeRef nodeRef, boolean clearContentProperty) +} + +class ExtendedContentDestructionComponent { + + void onBeforeNodeDelete(NodeRef nodeRef) +} + +class EagerContentStoreCleaner { + + void registerOrphanedContentUrlForCleansing(String contentUrl) + # boolean deleteFromStore(String contentUrl, ContentStore store) +} + +abstract class ContentCleanser { + # OverwriteOperation overwriteZeros + # OverwriteOperation overwriteOnes + # OverwriteOperation overwriteRandom + + {abstract} void cleanse(File file) + # void overwrite(File file, OverwriteOperation overwriteOperation) +} + +abstract class OverwriteOperation { + + {abstract} void operation(OutputStream os) throws IOException +} + +@enduml + diff --git a/rm-community/documentation/destruction/resource/sequence/destruction-sequence.png b/rm-community/documentation/destruction/resource/sequence/destruction-sequence.png new file mode 100644 index 0000000000000000000000000000000000000000..06d4fb442606fe06def4fcc4dfb7f7e2ea5d7d10 GIT binary patch literal 26419 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 literal 0 HcmV?d00001 diff --git a/rm-community/documentation/destruction/resource/sequence/destruction-sequence.puml b/rm-community/documentation/destruction/resource/sequence/destruction-sequence.puml new file mode 100644 index 0000000000..3dc04692c2 --- /dev/null +++ b/rm-community/documentation/destruction/resource/sequence/destruction-sequence.puml @@ -0,0 +1,40 @@ +@startuml + +Title: Content Destruction and Cleansing Flow + +participant "Repository" as R +participant "Behaviour" as B +participant "ContentDestructionComponent" as CDC +participant "EagerContentStoreCleaner" as ECSC +participant ConentCleanser as CC +participant ContentStore as CS + +R->B:beforeNodeDelete +activate B + +note right of B: sensitive content +B->CDC:registerAllContentForDestruction +deactivate B +activate CDC +note right of CDC: cleansing enabled + +CDC->ECSC:registerOrphanedContentUrlForCleansing +deactivate CDC +activate ECSC + +ECSC->ECSC: registerOrphanedContentUrl + +R->ECSC:afterCommit + +ECSC->CC:cleanse +activate CC +CC->ECSC +deactivate CC + +ECSC->CS:delete +activate CS +CS->ECSC +deactivate CS +deactivate ECSC + +@enduml \ No newline at end of file diff --git a/rm-community/documentation/easy-access-records/README.md b/rm-community/documentation/easy-access-records/README.md new file mode 100644 index 0000000000..609d765a7d --- /dev/null +++ b/rm-community/documentation/easy-access-records/README.md @@ -0,0 +1,74 @@ +## Easy Access Records + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/email-records/README.md b/rm-community/documentation/email-records/README.md new file mode 100644 index 0000000000..3e66f97615 --- /dev/null +++ b/rm-community/documentation/email-records/README.md @@ -0,0 +1,74 @@ +## EMail Records + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/file-plan/README.md b/rm-community/documentation/file-plan/README.md new file mode 100644 index 0000000000..2013929885 --- /dev/null +++ b/rm-community/documentation/file-plan/README.md @@ -0,0 +1,74 @@ +## File Plan + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/governance-audit/README.md b/rm-community/documentation/governance-audit/README.md new file mode 100644 index 0000000000..b6f490b6ce --- /dev/null +++ b/rm-community/documentation/governance-audit/README.md @@ -0,0 +1,74 @@ +## Audit + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/governance-rules/README.md b/rm-community/documentation/governance-rules/README.md new file mode 100644 index 0000000000..16f1e03c89 --- /dev/null +++ b/rm-community/documentation/governance-rules/README.md @@ -0,0 +1,74 @@ +## Governance Rules + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/governance-search/README.md b/rm-community/documentation/governance-search/README.md new file mode 100644 index 0000000000..aa510c0b34 --- /dev/null +++ b/rm-community/documentation/governance-search/README.md @@ -0,0 +1,74 @@ +## Governance Search + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/legal-holds/README.md b/rm-community/documentation/legal-holds/README.md new file mode 100644 index 0000000000..31a841e735 --- /dev/null +++ b/rm-community/documentation/legal-holds/README.md @@ -0,0 +1,74 @@ +## Legal Holds + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/list-of-values/README.md b/rm-community/documentation/list-of-values/README.md new file mode 100644 index 0000000000..3d7aa52778 --- /dev/null +++ b/rm-community/documentation/list-of-values/README.md @@ -0,0 +1,74 @@ +## List of Values + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/physical-records/README.md b/rm-community/documentation/physical-records/README.md new file mode 100644 index 0000000000..212556614d --- /dev/null +++ b/rm-community/documentation/physical-records/README.md @@ -0,0 +1,74 @@ +## Physical Records + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/record-import-export/README.md b/rm-community/documentation/record-import-export/README.md new file mode 100644 index 0000000000..a07d968eea --- /dev/null +++ b/rm-community/documentation/record-import-export/README.md @@ -0,0 +1,74 @@ +## Record Import/Export + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/records/README.md b/rm-community/documentation/records/README.md new file mode 100644 index 0000000000..6199401827 --- /dev/null +++ b/rm-community/documentation/records/README.md @@ -0,0 +1,74 @@ +## Filed and Unfiled Records + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/resource/component/ig-component.png b/rm-community/documentation/resource/component/ig-component.png new file mode 100644 index 0000000000000000000000000000000000000000..788642c604c9f9ad852bb0bc946bbce3b96a8655 GIT binary patch literal 34348 zcmce;XF!unv;_)yP!H8YRRk63Rgn^DM-fq~3J6G*u9VOOLXC0&r3y%Iq9P(4giw

)!Srb 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�C_<8AG<21cuIS5o<1TAG$X+Q(RB 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 CaGM|i literal 0 HcmV?d00001 diff --git a/rm-community/documentation/resource/component/ig-component.puml b/rm-community/documentation/resource/component/ig-component.puml new file mode 100644 index 0000000000..1c446ccb46 --- /dev/null +++ b/rm-community/documentation/resource/component/ig-component.puml @@ -0,0 +1,58 @@ +@startuml + +skinparam componentArrowColor white + +' IG Component Breakdown +rectangle "Information Governance" as IG { + + rectangle "Records Management" as RM { + + component "File Plan" as FP + + rectangle "Records" as Rec { + component "Filed and Unfiled Records" + component "Easy Access Records" + component "Version Records" + component "Physical Records" + component "Email Records" + component "Record Import and Export" + } + + rectangle "Retention" as Ret { + component "Retention Schedules and Events" + component "Transfer and Accession" + component "Destruction" + } + component "List of Values" as LOV + } + + rectangle "Security" as Sec { + component "Roles, Capabilities and Permissions" + component "Security Marks" + component "Content Classification" + } + + rectangle "Discovery" as Dis { + component "Search" + component "Legal Holds" + } + + rectangle "Compliance" as Comp { + component "Audit" + component "DoD 5015.2" + } + + rectangle "Automation" as Auto { + component "Rules" + } +} + +' Fomatting +RM -[hidden]---- Sec +RM -[hidden]---- Dis +Dis -[hidden]- Comp +Rec -[hidden]-- Ret +FP -[hidden]- LOV +Sec -[hidden]-- Auto + +@enduml \ No newline at end of file diff --git a/rm-community/documentation/retention-schedules/README.md b/rm-community/documentation/retention-schedules/README.md new file mode 100644 index 0000000000..553bd3d42a --- /dev/null +++ b/rm-community/documentation/retention-schedules/README.md @@ -0,0 +1,74 @@ +## Retention Schedules + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/roles-capabilities-permissions/README.md b/rm-community/documentation/roles-capabilities-permissions/README.md new file mode 100644 index 0000000000..d95e1b390d --- /dev/null +++ b/rm-community/documentation/roles-capabilities-permissions/README.md @@ -0,0 +1,74 @@ +## Roles, Capabilities and Permissions + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/security-marks/README.md b/rm-community/documentation/security-marks/README.md new file mode 100644 index 0000000000..db9f38d9d2 --- /dev/null +++ b/rm-community/documentation/security-marks/README.md @@ -0,0 +1,74 @@ +## Security Marks + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/transfer-and-accession/README.md b/rm-community/documentation/transfer-and-accession/README.md new file mode 100644 index 0000000000..a3db5367ee --- /dev/null +++ b/rm-community/documentation/transfer-and-accession/README.md @@ -0,0 +1,74 @@ +## Transfer and Accession + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + diff --git a/rm-community/documentation/version-records/README.md b/rm-community/documentation/version-records/README.md new file mode 100644 index 0000000000..44d36f6366 --- /dev/null +++ b/rm-community/documentation/version-records/README.md @@ -0,0 +1,74 @@ +## Version Records + +### Purpose + +TODO + +*** + +### Overview + +TODO + +*** + +### Artifacts and Guidance + +* Source Code Link +* License +* Issue Tracker Link +* Documentation Link +* Summary of governance model (ideation, contributions, build) + +*** + +### Prerequisite Knowledge + +TODO + +*** + +### Design + +#### Component Model + +TODO + +#### Data Model + +TODO + +#### Data Dictionary + +TODO + +#### Flows + +TODO + +#### Class Diagram + +TODO + +*** + +### Interfaces and API's + +TODO + +*** + +### Configuration + +TODO + +*** + +### Considerations + +TODO - Performance/Security/Cloud/Etc + +*** + + + From 337627d5dc37886312de718a0667e99d80c9c077 Mon Sep 17 00:00:00 2001 From: Brian Remmington Date: Thu, 11 Jan 2018 13:16:41 +0000 Subject: [PATCH 028/236] RM-5996: Removed design docs for security marks and content classification from the community code. --- rm-community/documentation/README.md | 2 - .../content-classification/README.md | 74 ------------------- .../documentation/security-marks/README.md | 74 ------------------- 3 files changed, 150 deletions(-) delete mode 100644 rm-community/documentation/content-classification/README.md delete mode 100644 rm-community/documentation/security-marks/README.md diff --git a/rm-community/documentation/README.md b/rm-community/documentation/README.md index 3fb29102f9..779889c6b0 100644 --- a/rm-community/documentation/README.md +++ b/rm-community/documentation/README.md @@ -17,10 +17,8 @@ * [Retention Schedules and Events](./retention-schedules) * [Transfer and Accession](./transfer-and-accession) * Security - * [Content Classification](./content-classification) * [Extended permission service](extendedPermissionService.md) * [Roles,Capabilities and Permissions](./roles-capabilities-permissions) - * [Security Marks](./security-marks) * Discovery * [Governance Search](./governance-search) * [Legal Holds](./legal-holds) diff --git a/rm-community/documentation/content-classification/README.md b/rm-community/documentation/content-classification/README.md deleted file mode 100644 index 7a33fc4adb..0000000000 --- a/rm-community/documentation/content-classification/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Content Classification - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/security-marks/README.md b/rm-community/documentation/security-marks/README.md deleted file mode 100644 index db9f38d9d2..0000000000 --- a/rm-community/documentation/security-marks/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Security Marks - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - From 72a0ff4c8a11019eb9e287f815c681ba9fcd7c27 Mon Sep 17 00:00:00 2001 From: Brian Remmington Date: Thu, 11 Jan 2018 13:29:13 +0000 Subject: [PATCH 029/236] RM-5996: Added component diagram to the overview page. --- rm-community/documentation/overview.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rm-community/documentation/overview.md b/rm-community/documentation/overview.md index ed79baa2d3..d80c026457 100644 --- a/rm-community/documentation/overview.md +++ b/rm-community/documentation/overview.md @@ -65,6 +65,11 @@ We use standard Alfresco [data modelling](http://docs.alfresco.com/5.2/reference *** +### Component Overview +![Information Governance Component Overview](./resource/component/ig-component.png) + +*** + ### Design Decisions | Decision | Rationale | Date | From 97f7ca3b64749ae02c200e484bfc040480723c47 Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Thu, 11 Jan 2018 14:56:34 +0000 Subject: [PATCH 030/236] RM-5927 Fix appliesToVersion to 2.x.999 --- .../patch/rm-patch-v21-context.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml index 23c5db6ace..b4ca30fbc1 100755 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml @@ -13,7 +13,7 @@ - + @@ -32,7 +32,7 @@ - + @@ -49,7 +49,7 @@ - + @@ -63,7 +63,7 @@ - + @@ -79,7 +79,7 @@ - + @@ -93,7 +93,7 @@ - + @@ -106,7 +106,7 @@ - + From f7e0c28eb508711ab7ccdb66ef8ef99b22fcba07 Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Thu, 11 Jan 2018 14:57:33 +0000 Subject: [PATCH 031/236] RM-5927 Fix appliesToVersion to 2.0.999 --- .../org_alfresco_module_rm/patch/rm-patch-v20-context.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml index c300750bd5..f185ab5b08 100755 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml @@ -13,7 +13,7 @@ - + @@ -29,7 +29,7 @@ - + @@ -43,7 +43,7 @@ - + @@ -61,7 +61,7 @@ - + From c4b5dee64e4e935b41db4d57e0055eb7eea38504 Mon Sep 17 00:00:00 2001 From: Brian Remmington Date: Fri, 12 Jan 2018 09:03:46 +0000 Subject: [PATCH 032/236] RM-5996: Removed empty pages for clarity. --- rm-community/documentation/README.md | 30 ++++---- .../easy-access-records/README.md | 74 ------------------- .../documentation/email-records/README.md | 74 ------------------- .../documentation/file-plan/README.md | 74 ------------------- .../documentation/governance-audit/README.md | 74 ------------------- .../documentation/governance-rules/README.md | 74 ------------------- .../documentation/governance-search/README.md | 74 ------------------- .../documentation/legal-holds/README.md | 74 ------------------- .../documentation/list-of-values/README.md | 74 ------------------- .../documentation/physical-records/README.md | 74 ------------------- .../record-import-export/README.md | 74 ------------------- rm-community/documentation/records/README.md | 74 ------------------- .../retention-schedules/README.md | 74 ------------------- .../roles-capabilities-permissions/README.md | 74 ------------------- .../transfer-and-accession/README.md | 74 ------------------- .../documentation/version-records/README.md | 74 ------------------- 16 files changed, 15 insertions(+), 1125 deletions(-) delete mode 100644 rm-community/documentation/easy-access-records/README.md delete mode 100644 rm-community/documentation/email-records/README.md delete mode 100644 rm-community/documentation/file-plan/README.md delete mode 100644 rm-community/documentation/governance-audit/README.md delete mode 100644 rm-community/documentation/governance-rules/README.md delete mode 100644 rm-community/documentation/governance-search/README.md delete mode 100644 rm-community/documentation/legal-holds/README.md delete mode 100644 rm-community/documentation/list-of-values/README.md delete mode 100644 rm-community/documentation/physical-records/README.md delete mode 100644 rm-community/documentation/record-import-export/README.md delete mode 100644 rm-community/documentation/records/README.md delete mode 100644 rm-community/documentation/retention-schedules/README.md delete mode 100644 rm-community/documentation/roles-capabilities-permissions/README.md delete mode 100644 rm-community/documentation/transfer-and-accession/README.md delete mode 100644 rm-community/documentation/version-records/README.md diff --git a/rm-community/documentation/README.md b/rm-community/documentation/README.md index 779889c6b0..b4b7911330 100644 --- a/rm-community/documentation/README.md +++ b/rm-community/documentation/README.md @@ -3,27 +3,27 @@ * [Enterprise Technical Documentation](../../rm-enterprise/documentation/README.md) (the link will only work if this repository contains the enterprise code) * [Overview of the design of RM](overview.md) * Records Management - * [File Plan](./file-plan) - * [List of Values](./list-of-values) + * File Plan + * List of Values * Records - * [EMail Records](./email-records) - * [Filed and Unfiled Records](./records) - * [Easy Access Records](./easy-access-records) - * [Physical Records](./physical-records) - * [Record Import and Export](./record-import-export) - * [Version Records](./version-records) + * EMail Records + * Filed and Unfiled Records + * Easy Access Records + * Physical Records + * Record Import and Export + * Version Records * Retention * [Destruction](./destruction) - * [Retention Schedules and Events](./retention-schedules) - * [Transfer and Accession](./transfer-and-accession) + * Retention Schedules and Events + * Transfer and Accession * Security * [Extended permission service](extendedPermissionService.md) - * [Roles,Capabilities and Permissions](./roles-capabilities-permissions) + * Roles, Capabilities and Permissions * Discovery - * [Governance Search](./governance-search) - * [Legal Holds](./legal-holds) + * Governance Search + * Legal Holds * Compliance - * [Governance Audit](./governance-audit) - * [Governance Rules](./governance-rules) + * Governance Audit + * Governance Rules * Core Module Services * [RM Patch Service](./PatchService.md) diff --git a/rm-community/documentation/easy-access-records/README.md b/rm-community/documentation/easy-access-records/README.md deleted file mode 100644 index 609d765a7d..0000000000 --- a/rm-community/documentation/easy-access-records/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Easy Access Records - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/email-records/README.md b/rm-community/documentation/email-records/README.md deleted file mode 100644 index 3e66f97615..0000000000 --- a/rm-community/documentation/email-records/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## EMail Records - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/file-plan/README.md b/rm-community/documentation/file-plan/README.md deleted file mode 100644 index 2013929885..0000000000 --- a/rm-community/documentation/file-plan/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## File Plan - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/governance-audit/README.md b/rm-community/documentation/governance-audit/README.md deleted file mode 100644 index b6f490b6ce..0000000000 --- a/rm-community/documentation/governance-audit/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Audit - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/governance-rules/README.md b/rm-community/documentation/governance-rules/README.md deleted file mode 100644 index 16f1e03c89..0000000000 --- a/rm-community/documentation/governance-rules/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Governance Rules - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/governance-search/README.md b/rm-community/documentation/governance-search/README.md deleted file mode 100644 index aa510c0b34..0000000000 --- a/rm-community/documentation/governance-search/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Governance Search - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/legal-holds/README.md b/rm-community/documentation/legal-holds/README.md deleted file mode 100644 index 31a841e735..0000000000 --- a/rm-community/documentation/legal-holds/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Legal Holds - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/list-of-values/README.md b/rm-community/documentation/list-of-values/README.md deleted file mode 100644 index 3d7aa52778..0000000000 --- a/rm-community/documentation/list-of-values/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## List of Values - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/physical-records/README.md b/rm-community/documentation/physical-records/README.md deleted file mode 100644 index 212556614d..0000000000 --- a/rm-community/documentation/physical-records/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Physical Records - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/record-import-export/README.md b/rm-community/documentation/record-import-export/README.md deleted file mode 100644 index a07d968eea..0000000000 --- a/rm-community/documentation/record-import-export/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Record Import/Export - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/records/README.md b/rm-community/documentation/records/README.md deleted file mode 100644 index 6199401827..0000000000 --- a/rm-community/documentation/records/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Filed and Unfiled Records - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/retention-schedules/README.md b/rm-community/documentation/retention-schedules/README.md deleted file mode 100644 index 553bd3d42a..0000000000 --- a/rm-community/documentation/retention-schedules/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Retention Schedules - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/roles-capabilities-permissions/README.md b/rm-community/documentation/roles-capabilities-permissions/README.md deleted file mode 100644 index d95e1b390d..0000000000 --- a/rm-community/documentation/roles-capabilities-permissions/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Roles, Capabilities and Permissions - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/transfer-and-accession/README.md b/rm-community/documentation/transfer-and-accession/README.md deleted file mode 100644 index a3db5367ee..0000000000 --- a/rm-community/documentation/transfer-and-accession/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Transfer and Accession - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - diff --git a/rm-community/documentation/version-records/README.md b/rm-community/documentation/version-records/README.md deleted file mode 100644 index 44d36f6366..0000000000 --- a/rm-community/documentation/version-records/README.md +++ /dev/null @@ -1,74 +0,0 @@ -## Version Records - -### Purpose - -TODO - -*** - -### Overview - -TODO - -*** - -### Artifacts and Guidance - -* Source Code Link -* License -* Issue Tracker Link -* Documentation Link -* Summary of governance model (ideation, contributions, build) - -*** - -### Prerequisite Knowledge - -TODO - -*** - -### Design - -#### Component Model - -TODO - -#### Data Model - -TODO - -#### Data Dictionary - -TODO - -#### Flows - -TODO - -#### Class Diagram - -TODO - -*** - -### Interfaces and API's - -TODO - -*** - -### Configuration - -TODO - -*** - -### Considerations - -TODO - Performance/Security/Cloud/Etc - -*** - - - From 965d86508ec061c25d66a64451508713b06b7996 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Tue, 9 Jan 2018 13:40:31 +0000 Subject: [PATCH 033/236] A couple of minor fixes. Fix method signature to refer to the precise exception thrown. Use Instant from Java 8 rather than DateUtils.truncate. --- .../RecordsManagementAuditServiceImpl.java | 10 ++++---- ...rdsManagementAuditServiceImplUnitTest.java | 24 +++++++++++++++++++ 2 files changed, 30 insertions(+), 4 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java index 138d3394a4..c444c9f8ed 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java @@ -37,6 +37,7 @@ import java.io.IOException; import java.io.OutputStreamWriter; import java.io.Serializable; import java.io.Writer; +import java.time.temporal.ChronoUnit; import java.util.ArrayList; import java.util.Calendar; import java.util.Collections; @@ -46,6 +47,7 @@ import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Set; +import javax.transaction.SystemException; import org.alfresco.error.AlfrescoRuntimeException; import org.alfresco.model.ContentModel; @@ -54,7 +56,6 @@ import org.alfresco.module.org_alfresco_module_rm.action.RecordsManagementAction import org.alfresco.module.org_alfresco_module_rm.audit.event.AuditEvent; import org.alfresco.module.org_alfresco_module_rm.capability.CapabilityService; import org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanService; -import org.alfresco.module.org_alfresco_module_rm.model.rma.type.RmSiteType; import org.alfresco.repo.audit.AuditComponent; import org.alfresco.repo.audit.model.AuditApplication; import org.alfresco.repo.content.MimetypeMap; @@ -727,7 +728,7 @@ public class RecordsManagementAuditServiceImpl extends AbstractLifecycleBean * * @param auditedNodes details of the nodes that were modified */ - private void auditInTxn(Set auditedNodes) throws Throwable + private void auditInTxn(Set auditedNodes) throws SystemException { // Go through all the audit information and audit it boolean auditedSomething = false; @@ -1137,9 +1138,10 @@ public class RecordsManagementAuditServiceImpl extends AbstractLifecycleBean * @param date The date for which the start should be calculated. * @return Returns the start of the given date. */ - private Date getStartOfDay(Date date) + protected Date getStartOfDay(Date date) { - return DateUtils.truncate(date == null ? new Date() : date, Calendar.DATE); + date = (date == null ? new Date() : date); + return Date.from(date.toInstant().truncatedTo(ChronoUnit.DAYS)); } /** diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImplUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImplUnitTest.java index 2f1b39fa0c..6476b196d4 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImplUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImplUnitTest.java @@ -37,6 +37,7 @@ import static org.alfresco.module.org_alfresco_module_rm.fileplan.FilePlanServic import static org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel.TYPE_RM_SITE; import static org.alfresco.module.org_alfresco_module_rm.model.rma.type.RmSiteType.DEFAULT_SITE_NAME; import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; import static org.mockito.Matchers.any; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.times; @@ -46,7 +47,9 @@ import static org.mockito.MockitoAnnotations.initMocks; import java.io.IOException; import java.io.Writer; +import java.text.SimpleDateFormat; import java.util.ArrayList; +import java.util.Date; import java.util.List; import java.util.Map; import java.util.Set; @@ -173,4 +176,25 @@ public class RecordsManagementAuditServiceImplUnitTest // Check that the event of viewing the audit log was itself audited. verify(mockAuditComponent).recordAuditValues(eq(RM_AUDIT_PATH_ROOT), any(Map.class)); } + + /** Check that passing null to getStartOfDay doesn't result in null being returned. */ + @Test + public void testGetStartOfDay_null() + { + Date startOfDay = recordsManagementAuditServiceImpl.getStartOfDay(null); + assertNotNull("Expected date to be created by method.", startOfDay); + } + + /** Check that any time component passed to getStartOfDay is not included in the response. */ + @Test + public void testGetStartOfDay_timeDiscarded() throws Exception + { + SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss.SSS"); + Date date = format.parse("2001-02-03 04:05:06.789"); + + // Call the method under test. + Date startOfDay = recordsManagementAuditServiceImpl.getStartOfDay(date); + + assertEquals("Unexpected date truncation.", format.parse("2001-02-03 00:00:00.000"), startOfDay); + } } From bc07bbfb447393e2670af2456504d1529e3c480e Mon Sep 17 00:00:00 2001 From: Tom Page Date: Fri, 12 Jan 2018 14:52:37 +0000 Subject: [PATCH 034/236] Replace a few RuntimeExceptions with AlfrescoRuntimeExceptions. --- .../content/cleanser/ContentCleanser.java | 24 ++++++++++--------- .../dataset/DataSetServiceImpl.java | 4 ++-- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser.java index ee0dcde916..ac796e2f39 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/content/cleanser/ContentCleanser.java @@ -34,6 +34,8 @@ import java.io.IOException; import java.io.OutputStream; import java.util.Random; +import org.alfresco.error.AlfrescoRuntimeException; + /** * Content cleanser base implementation. * @@ -41,22 +43,22 @@ import java.util.Random; * @since 2.4.a */ public abstract class ContentCleanser -{ +{ /** * Cleanse file * * @param file file to cleanse */ public abstract void cleanse(File file); - + /** * Overwrite files bytes with provided overwrite operation * - * @param file file + * @param file file * @param overwriteOperation overwrite operation */ protected void overwrite(File file, OverwriteOperation overwriteOperation) - { + { // get the number of bytes long bytes = file.length(); try @@ -74,18 +76,18 @@ public abstract class ContentCleanser catch (IOException ioException) { // re-throw - throw new RuntimeException("Unable to overwrite file", ioException); + throw new AlfrescoRuntimeException("Unable to overwrite file", ioException); } } - + /** - * Overwrite operation + * Overwrite operation */ protected abstract class OverwriteOperation { public abstract void operation(OutputStream os) throws IOException; } - + /** * Overwrite with zeros operation */ @@ -96,7 +98,7 @@ public abstract class ContentCleanser os.write(0); } }; - + /** * Overwrite with ones operation */ @@ -107,14 +109,14 @@ public abstract class ContentCleanser os.write(0xff); } }; - + /** * Overwrite with random operation */ protected OverwriteOperation overwriteRandom = new OverwriteOperation() { private Random random = new Random(); - + public void operation(OutputStream os) throws IOException { byte[] randomByte = new byte[1]; diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetServiceImpl.java index 2ef29b6b93..c3189e78ef 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/dataset/DataSetServiceImpl.java @@ -291,7 +291,7 @@ public class DataSetServiceImpl implements DataSetService, RecordsManagementMode } catch (Exception ex) { - throw new RuntimeException("Unexpected exception thrown. Please refer to the log files for details.", ex); + throw new AlfrescoRuntimeException("Unexpected exception thrown. Please refer to the log files for details.", ex); } finally { @@ -304,7 +304,7 @@ public class DataSetServiceImpl implements DataSetService, RecordsManagementMode } catch (IOException ex) { - throw new RuntimeException("Failed to close the input stream!", ex); + throw new AlfrescoRuntimeException("Failed to close the input stream!", ex); } } } From acae374a35e4e6985298e58e8a29bf4e7b7f2534 Mon Sep 17 00:00:00 2001 From: Tom Page Date: Fri, 12 Jan 2018 15:04:07 +0000 Subject: [PATCH 035/236] Add debug log message if exceptions are swallowed. Fix a couple of minor issues in DynamicAuthoritiesGet webscript. --- .../role/FilePlanRoleServiceImpl.java | 13 ++++++++++++- .../script/slingshot/RMSearchGet.java | 9 ++++++++- .../web/scripts/roles/DynamicAuthoritiesGet.java | 4 ++-- 3 files changed, 22 insertions(+), 4 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleServiceImpl.java index b69df2242a..687f223dec 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/role/FilePlanRoleServiceImpl.java @@ -60,6 +60,8 @@ import org.apache.commons.lang.StringUtils; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.extensions.surf.util.I18NUtil; /** @@ -71,6 +73,8 @@ import org.springframework.extensions.surf.util.I18NUtil; public class FilePlanRoleServiceImpl implements FilePlanRoleService, RecordsManagementModel { + /** Logger for the class. */ + private static final Logger LOGGER = LoggerFactory.getLogger(FilePlanRoleServiceImpl.class); /** I18N */ private static final String MSG_ALL_ROLES = "rm.role.all"; @@ -394,7 +398,14 @@ public class FilePlanRoleServiceImpl implements FilePlanRoleService, } finally { - try {is.close();} catch (IOException e) {} + try + { + is.close(); + } + catch (IOException e) + { + LOGGER.debug("Ignoring failed attempt to close stream.", e); + } } return sb.toString(); diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchGet.java index f1f595fa41..7fe14b87bd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/slingshot/RMSearchGet.java @@ -53,6 +53,8 @@ import org.alfresco.service.namespace.QName; import org.alfresco.util.Pair; import org.apache.commons.lang.ArrayUtils; import org.apache.commons.lang.StringUtils; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.extensions.webscripts.Cache; import org.springframework.extensions.webscripts.DeclarativeWebScript; import org.springframework.extensions.webscripts.Status; @@ -66,6 +68,8 @@ import org.springframework.extensions.webscripts.WebScriptRequest; */ public class RMSearchGet extends DeclarativeWebScript { + /** Logger for the class. */ + private static final Logger LOGGER = LoggerFactory.getLogger(RMSearchGet.class); /** URL Parameters */ private static final String PARAM_QUERY = "query"; private static final String PARAM_SORTBY = "sortby"; @@ -211,7 +215,10 @@ public class RMSearchGet extends DeclarativeWebScript Item item = new Item(pair.getFirst(), pair.getSecond()); items.add(item); } - catch(Exception e) {} + catch(Exception e) + { + LOGGER.debug("Ignoring failed attempt to add item to search results.", e); + } } // Return model diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGet.java index 113e6fa1a3..fd2b0dc19c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/repo/web/scripts/roles/DynamicAuthoritiesGet.java @@ -358,7 +358,7 @@ public class DynamicAuthoritiesGet extends AbstractWebScript implements RecordsM res.getWriter().write(")"); } } - catch (Throwable e) + catch (Exception e) { if (logger.isDebugEnabled()) { @@ -416,7 +416,7 @@ public class DynamicAuthoritiesGet extends AbstractWebScript implements RecordsM protected Long getBatchSizeParameter(WebScriptRequest req) { String batchSizeStr = req.getParameter(BATCH_SIZE); - Long size = 0L; + Long size; if (StringUtils.isBlank(batchSizeStr)) { logger.info(MESSAGE_BATCHSIZE_IS_MANDATORY); From f9a08391e927e26a0af442526b568d9e4acc9362 Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Sat, 13 Jan 2018 01:01:54 +0000 Subject: [PATCH 036/236] RM-5927 Fix v21 appliesFromVersion to 2.0 --- .../patch/rm-patch-v21-context.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml index b4ca30fbc1..e1ba23b776 100755 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml @@ -12,7 +12,7 @@ - + @@ -31,7 +31,7 @@ - + @@ -48,7 +48,7 @@ - + @@ -62,7 +62,7 @@ - + @@ -78,7 +78,7 @@ - + @@ -92,7 +92,7 @@ - + @@ -105,7 +105,7 @@ - + From a196d2b8c3d15f9f966d076f7a4e163cc0d4f99d Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Wed, 17 Jan 2018 06:47:24 +0000 Subject: [PATCH 037/236] RM-5927 Check version nbrs and remove appliesTo --- .../patch/rm-patch-context.xml | 1 + .../patch/rm-patch-v20-context.xml | 4 -- .../patch/rm-patch-v21-context.xml | 21 ++++------ .../compatibility/ModulePatchComponent.java | 41 +++++++++++++++++++ 4 files changed, 49 insertions(+), 18 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml index 7ca1fc7bab..6d4c60152e 100755 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-context.xml @@ -46,6 +46,7 @@ + \ No newline at end of file diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml index f185ab5b08..985a809082 100755 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v20-context.xml @@ -13,7 +13,6 @@ - @@ -29,7 +28,6 @@ - @@ -43,7 +41,6 @@ - @@ -61,7 +58,6 @@ - diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml index e1ba23b776..aa0a740c59 100755 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/patch/rm-patch-v21-context.xml @@ -12,8 +12,7 @@ - - + @@ -31,8 +30,7 @@ - - + @@ -48,8 +46,7 @@ - - + @@ -62,8 +59,7 @@ - - + @@ -78,8 +74,7 @@ - - + @@ -92,8 +87,7 @@ - - + @@ -105,8 +99,7 @@ - - + diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java index 7b4a54abf4..89809db25c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java @@ -27,10 +27,17 @@ package org.alfresco.module.org_alfresco_module_rm.patch.compatibility; +import java.io.Serializable; + import org.alfresco.module.org_alfresco_module_rm.patch.ModulePatchExecuterImpl; +import org.alfresco.repo.admin.registry.RegistryKey; +import org.alfresco.repo.admin.registry.RegistryService; import org.alfresco.repo.module.AbstractModuleComponent; +import org.alfresco.repo.module.ModuleComponentHelper; +import org.alfresco.repo.module.ModuleVersionNumber; import org.alfresco.repo.policy.BehaviourFilter; import org.alfresco.repo.transaction.RetryingTransactionHelper; +import org.alfresco.service.cmr.module.ModuleDetails; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -44,6 +51,10 @@ import org.apache.commons.logging.LogFactory; @Deprecated public abstract class ModulePatchComponent extends AbstractModuleComponent { + private static final String REGISTRY_PATH_MODULES = "modules"; + private static final String REGISTRY_PROPERTY_INSTALLED_VERSION = "installedVersion"; + private static final String REGISTRY_PROPERTY_CURRENT_VERSION = "currentVersion"; + /** logger */ protected static final Log LOGGER = LogFactory.getLog(ModulePatchComponent.class); @@ -80,6 +91,14 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent this.modulePatchExecuter = modulePatchExecuter; } + /** + * @param registryService Registry service + */ + protected RegistryService registryService; + public void setRegistryService(RegistryService registryService) { + this.registryService = registryService; + } + /** * Init method */ @@ -96,6 +115,28 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent @Override protected void executeInternal() { + String moduleId = modulePatchExecuter.getModuleId(); + + RegistryKey moduleKeyInstalledVersion = new RegistryKey(ModuleComponentHelper.URI_MODULES_1_0, + new String[]{REGISTRY_PATH_MODULES, moduleId, REGISTRY_PROPERTY_INSTALLED_VERSION}); + Serializable moduleInstalledVersion = this.registryService.getProperty(moduleKeyInstalledVersion); + ModuleVersionNumber moduleInstalledVersionNumber = new ModuleVersionNumber(moduleInstalledVersion.toString()); + + RegistryKey moduleKeyCurrentVersion = new RegistryKey(ModuleComponentHelper.URI_MODULES_1_0, + new String[]{REGISTRY_PATH_MODULES, moduleId, REGISTRY_PROPERTY_CURRENT_VERSION}); + Serializable moduleCurrentVersion = this.registryService.getProperty(moduleKeyCurrentVersion); + ModuleVersionNumber moduleCurrentVersionNumber = new ModuleVersionNumber(moduleInstalledVersion.toString()); + + ModuleDetails moduleDetails = moduleService.getModule(moduleId); + ModuleVersionNumber moduleNewVersion = moduleDetails.getModuleVersionNumber(); + + LOGGER.debug("******************************************************************"); + LOGGER.debug(" moduleCurrentVersion : " + moduleCurrentVersion.toString()); + LOGGER.debug(" versionNumber: " + moduleCurrentVersionNumber.toString()); + LOGGER.debug(" moduleInstalledVersion: " + moduleInstalledVersion.toString()); + LOGGER.debug(" versionNumber: " + moduleInstalledVersionNumber.toString()); + LOGGER.debug(" moduleNewVersionNumber: " + moduleNewVersion.toString()); + try { if (LOGGER.isInfoEnabled()) From eb086c5d8950f168d9a317e4ccbf689719f03ebf Mon Sep 17 00:00:00 2001 From: cagache Date: Wed, 17 Jan 2018 13:01:56 +0200 Subject: [PATCH 038/236] updated selectors based on review --- .../src/main/resources/config.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/rm-automation/rm-automation-community-rest-api/src/main/resources/config.properties b/rm-automation/rm-automation-community-rest-api/src/main/resources/config.properties index 8b94951ea5..f66389d1f5 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/resources/config.properties +++ b/rm-automation/rm-automation-community-rest-api/src/main/resources/config.properties @@ -1,2 +1,3 @@ alfresco.server=localhost +alfresco.port=8080 rest.rmPath=alfresco/api/-default-/public/gs/versions/1 \ No newline at end of file From bcef1173866abcfedd546571b97cef5e3f925586 Mon Sep 17 00:00:00 2001 From: cagache Date: Wed, 17 Jan 2018 13:05:54 +0200 Subject: [PATCH 039/236] revert last change --- .../src/main/resources/config.properties | 1 - 1 file changed, 1 deletion(-) diff --git a/rm-automation/rm-automation-community-rest-api/src/main/resources/config.properties b/rm-automation/rm-automation-community-rest-api/src/main/resources/config.properties index f66389d1f5..8b94951ea5 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/resources/config.properties +++ b/rm-automation/rm-automation-community-rest-api/src/main/resources/config.properties @@ -1,3 +1,2 @@ alfresco.server=localhost -alfresco.port=8080 rest.rmPath=alfresco/api/-default-/public/gs/versions/1 \ No newline at end of file From 2d075e14d1c89ee1788ea22ce5e249b3166eac97 Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Thu, 18 Jan 2018 02:58:38 +0000 Subject: [PATCH 040/236] RM-5927 Check installed vs current version --- .../compatibility/ModulePatchComponent.java | 116 ++++++++++-------- 1 file changed, 64 insertions(+), 52 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java index 89809db25c..2530389ff3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java @@ -37,7 +37,6 @@ import org.alfresco.repo.module.ModuleComponentHelper; import org.alfresco.repo.module.ModuleVersionNumber; import org.alfresco.repo.policy.BehaviourFilter; import org.alfresco.repo.transaction.RetryingTransactionHelper; -import org.alfresco.service.cmr.module.ModuleDetails; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; @@ -67,6 +66,9 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent /** module patch executer */ protected ModulePatchExecuterImpl modulePatchExecuter; + /** Registry service */ + protected RegistryService registryService; + /** * @param retryingTransactionHelper retrying transaction helper */ @@ -94,7 +96,6 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent /** * @param registryService Registry service */ - protected RegistryService registryService; public void setRegistryService(RegistryService registryService) { this.registryService = registryService; } @@ -115,69 +116,80 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent @Override protected void executeInternal() { - String moduleId = modulePatchExecuter.getModuleId(); + ModuleVersionNumber moduleInstalledVersionNumber = getModuleVersionNumber(REGISTRY_PROPERTY_INSTALLED_VERSION); + ModuleVersionNumber moduleCurrentVersionNumber = getModuleVersionNumber(REGISTRY_PROPERTY_CURRENT_VERSION); - RegistryKey moduleKeyInstalledVersion = new RegistryKey(ModuleComponentHelper.URI_MODULES_1_0, - new String[]{REGISTRY_PATH_MODULES, moduleId, REGISTRY_PROPERTY_INSTALLED_VERSION}); - Serializable moduleInstalledVersion = this.registryService.getProperty(moduleKeyInstalledVersion); - ModuleVersionNumber moduleInstalledVersionNumber = new ModuleVersionNumber(moduleInstalledVersion.toString()); - - RegistryKey moduleKeyCurrentVersion = new RegistryKey(ModuleComponentHelper.URI_MODULES_1_0, - new String[]{REGISTRY_PATH_MODULES, moduleId, REGISTRY_PROPERTY_CURRENT_VERSION}); - Serializable moduleCurrentVersion = this.registryService.getProperty(moduleKeyCurrentVersion); - ModuleVersionNumber moduleCurrentVersionNumber = new ModuleVersionNumber(moduleInstalledVersion.toString()); - - ModuleDetails moduleDetails = moduleService.getModule(moduleId); - ModuleVersionNumber moduleNewVersion = moduleDetails.getModuleVersionNumber(); - - LOGGER.debug("******************************************************************"); - LOGGER.debug(" moduleCurrentVersion : " + moduleCurrentVersion.toString()); - LOGGER.debug(" versionNumber: " + moduleCurrentVersionNumber.toString()); - LOGGER.debug(" moduleInstalledVersion: " + moduleInstalledVersion.toString()); - LOGGER.debug(" versionNumber: " + moduleInstalledVersionNumber.toString()); - LOGGER.debug(" moduleNewVersionNumber: " + moduleNewVersion.toString()); - - try + if (isUpgradeFromVersionThatIncludesEarlyPatch(moduleInstalledVersionNumber, moduleCurrentVersionNumber)) { if (LOGGER.isInfoEnabled()) { - LOGGER.info("Module patch component '" + getName() + "' is executing ..."); + LOGGER.info("Module patch component '" + getName() + "' is skipped for upgrade" + + " from version " + moduleInstalledVersionNumber.toString() + + " to version " + moduleCurrentVersionNumber.toString()); } - - // execute path within an isolated transaction - retryingTransactionHelper.doInTransaction(new RetryingTransactionHelper.RetryingTransactionCallback() + } else + { + try { - @Override - public Void execute() + if (LOGGER.isInfoEnabled()) { - behaviourFilter.disableBehaviour(); - try - { - executePatch(); - } - finally - { - behaviourFilter.enableBehaviour(); - } - return null; + LOGGER.info("Module patch component '" + getName() + "' is executing ..."); } - }, false, true); + // execute path within an isolated transaction + retryingTransactionHelper.doInTransaction(new RetryingTransactionHelper.RetryingTransactionCallback() + { + @Override + public Void execute() + { + behaviourFilter.disableBehaviour(); + try + { + executePatch(); + } finally + { + behaviourFilter.enableBehaviour(); + } + return null; + } - if (LOGGER.isInfoEnabled()) + }, false, true); + + if (LOGGER.isInfoEnabled()) + { + LOGGER.info(" ... completed module patch '" + getName() + "'"); + } + } catch (Exception exception) { - LOGGER.info(" ... completed module patch '" + getName() + "'"); + // record the exception otherwise it gets swallowed + if (LOGGER.isInfoEnabled()) + { + LOGGER.info(" ... error encountered. " + exception.getMessage(), exception); + } + throw exception; } } - catch (Exception exception) - { - // record the exception otherwise it gets swallowed - if (LOGGER.isInfoEnabled()) - { - LOGGER.info(" ... error encountered. " + exception.getMessage(), exception); - } - throw exception; - } + } + + /** + * Helper method to get the ModuleVersionNumber. + */ + private ModuleVersionNumber getModuleVersionNumber(String registryProperty) + { + String moduleId = modulePatchExecuter.getModuleId(); + RegistryKey moduleKeyVersion = new RegistryKey(ModuleComponentHelper.URI_MODULES_1_0, + new String[]{REGISTRY_PATH_MODULES, moduleId, registryProperty}); + Serializable moduleVersion = this.registryService.getProperty(moduleKeyVersion); + + return new ModuleVersionNumber(moduleVersion.toString()); + } + + private boolean isUpgradeFromVersionThatIncludesEarlyPatch(ModuleVersionNumber installedModuleVersionNumber, + ModuleVersionNumber currentModuleVersionNumber) + { + ModuleVersionNumber minVersion = this.getAppliesFromVersionNumber(); + return installedModuleVersionNumber.compareTo(minVersion) >= 0 && + installedModuleVersionNumber.compareTo(currentModuleVersionNumber) != 0; } /** From d691d343d66dd0f3dea8526ce0277eb95bf9b984 Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Thu, 18 Jan 2018 11:41:02 +0000 Subject: [PATCH 041/236] RM-5927 Changes from review --- .../compatibility/ModulePatchComponent.java | 72 +++++++++++-------- 1 file changed, 41 insertions(+), 31 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java index 2530389ff3..92524b0bf2 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/patch/compatibility/ModulePatchComponent.java @@ -37,8 +37,8 @@ import org.alfresco.repo.module.ModuleComponentHelper; import org.alfresco.repo.module.ModuleVersionNumber; import org.alfresco.repo.policy.BehaviourFilter; import org.alfresco.repo.transaction.RetryingTransactionHelper; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** @@ -55,7 +55,7 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent private static final String REGISTRY_PROPERTY_CURRENT_VERSION = "currentVersion"; /** logger */ - protected static final Log LOGGER = LogFactory.getLog(ModulePatchComponent.class); + protected static final Logger LOGGER = LoggerFactory.getLogger(ModulePatchComponent.class); /** Retrying transaction helper */ protected RetryingTransactionHelper retryingTransactionHelper; @@ -96,7 +96,8 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent /** * @param registryService Registry service */ - public void setRegistryService(RegistryService registryService) { + public void setRegistryService(RegistryService registryService) + { this.registryService = registryService; } @@ -118,23 +119,19 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent { ModuleVersionNumber moduleInstalledVersionNumber = getModuleVersionNumber(REGISTRY_PROPERTY_INSTALLED_VERSION); ModuleVersionNumber moduleCurrentVersionNumber = getModuleVersionNumber(REGISTRY_PROPERTY_CURRENT_VERSION); + + String moduleName = getName(); - if (isUpgradeFromVersionThatIncludesEarlyPatch(moduleInstalledVersionNumber, moduleCurrentVersionNumber)) + if (isVersionLaterThan(moduleInstalledVersionNumber, moduleCurrentVersionNumber)) { - if (LOGGER.isInfoEnabled()) - { - LOGGER.info("Module patch component '" + getName() + "' is skipped for upgrade" + - " from version " + moduleInstalledVersionNumber.toString() + - " to version " + moduleCurrentVersionNumber.toString()); - } - } else + LOGGER.info("Module patch component '{}' is skipped for upgrade from version {} to version {}", + moduleName, moduleInstalledVersionNumber, moduleCurrentVersionNumber); + } + else { try { - if (LOGGER.isInfoEnabled()) - { - LOGGER.info("Module patch component '" + getName() + "' is executing ..."); - } + LOGGER.info("Module patch component '{}' is executing ...", moduleName); // execute path within an isolated transaction retryingTransactionHelper.doInTransaction(new RetryingTransactionHelper.RetryingTransactionCallback() @@ -146,7 +143,8 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent try { executePatch(); - } finally + } + finally { behaviourFilter.enableBehaviour(); } @@ -155,17 +153,12 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent }, false, true); - if (LOGGER.isInfoEnabled()) - { - LOGGER.info(" ... completed module patch '" + getName() + "'"); - } + LOGGER.info(" ... completed module patch '{}'", moduleName); + } catch (Exception exception) { // record the exception otherwise it gets swallowed - if (LOGGER.isInfoEnabled()) - { - LOGGER.info(" ... error encountered. " + exception.getMessage(), exception); - } + LOGGER.info(" ... error encountered. {}", exception.getMessage(), exception); throw exception; } } @@ -183,13 +176,30 @@ public abstract class ModulePatchComponent extends AbstractModuleComponent return new ModuleVersionNumber(moduleVersion.toString()); } - - private boolean isUpgradeFromVersionThatIncludesEarlyPatch(ModuleVersionNumber installedModuleVersionNumber, - ModuleVersionNumber currentModuleVersionNumber) + + /** + * Helper method to determine if this is an upgrade from a version that already includes the early (v2.0, v2.1) + * patches. + * + */ + private boolean isVersionLaterThan(ModuleVersionNumber installedModuleVersionNumber, + ModuleVersionNumber currentModuleVersionNumber) { - ModuleVersionNumber minVersion = this.getAppliesFromVersionNumber(); - return installedModuleVersionNumber.compareTo(minVersion) >= 0 && - installedModuleVersionNumber.compareTo(currentModuleVersionNumber) != 0; + // assume that the v2.0 and v2.1 patches should be run + boolean versionLaterThan = false; + + // if this is an upgrade as opposed to a fresh install + if (installedModuleVersionNumber.compareTo(currentModuleVersionNumber) != 0) + { + // if the installed version is later than the minimum version number of this patch + ModuleVersionNumber minVersion = this.getAppliesFromVersionNumber(); + if (installedModuleVersionNumber.compareTo(minVersion) >= 0) + { + versionLaterThan = true; + } + } + + return versionLaterThan; } /** From 3b983d013f83b7f443fdcb47fce545416a632f9d Mon Sep 17 00:00:00 2001 From: Tom Page Date: Thu, 18 Jan 2018 16:13:20 +0100 Subject: [PATCH 042/236] Revert changes to getStartOfDay. Sonar suggested using the Java 8 method Instant.truncatedTo, as it is faster than DateUtils.truncate. However it has different handling of TimeZones, and the old version of this code only works when the server is set to use UTC. In order to fix this 'properly' we need code like: date = (date == null ? new Date() : date); return Date.from(date.toInstant().atZone(ZoneId.systemDefault()).truncatedTo(ChronoUnit.DAYS).toInstant()); which is significantly less readable than just using DateUtils.truncate. Given that this code hasn't ever been highlighted by our profiling, I suggest we revert back to the older code. --- .../audit/RecordsManagementAuditServiceImpl.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java index c444c9f8ed..6d327e4b1b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/audit/RecordsManagementAuditServiceImpl.java @@ -37,7 +37,6 @@ import java.io.IOException; import java.io.OutputStreamWriter; import java.io.Serializable; import java.io.Writer; -import java.time.temporal.ChronoUnit; import java.util.ArrayList; import java.util.Calendar; import java.util.Collections; @@ -1140,8 +1139,7 @@ public class RecordsManagementAuditServiceImpl extends AbstractLifecycleBean */ protected Date getStartOfDay(Date date) { - date = (date == null ? new Date() : date); - return Date.from(date.toInstant().truncatedTo(ChronoUnit.DAYS)); + return DateUtils.truncate(date == null ? new Date() : date, Calendar.DATE); } /** From c56eec63ea530f95c43f0582869d0cd838ce0b9a Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Tue, 23 Jan 2018 17:59:41 +0000 Subject: [PATCH 043/236] RM-5987 View Audit Log can crash Alfresco --- .../alfresco-global.properties | 1 + .../rm-webscript-context.xml | 3 +++ .../script/AuditLogGet.java | 23 +++++++++++++++++-- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/alfresco-global.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/alfresco-global.properties index 8fdbf91cbd..0df8fa38c8 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/alfresco-global.properties +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/alfresco-global.properties @@ -17,6 +17,7 @@ imap.server.attachments.extraction.enabled=false # audit.enabled=true audit.rm.enabled=true +audit.rm.viewLog.maxSize=100 #audit.rm.runas=admin #audit.filter.alfresco-access.transaction.user=~null;.* diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml index d4f8b73a05..f1a6815869 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml @@ -537,6 +537,9 @@ + + ${audit.rm.viewLog.maxSize} + diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java index 62307b2f79..de035737e0 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java @@ -57,6 +57,7 @@ public class AuditLogGet extends BaseAuditRetrievalWebScript private static final String PARAM_EXPORT = "export"; private static final String ACCESS_AUDIT_CAPABILITY = "AccessAudit"; + private static final int DEFAULT_VIEW_LOG_MAX_SIZE = 100; /** Content Streamer */ protected ContentStreamer contentStreamer; @@ -66,6 +67,9 @@ public class AuditLogGet extends BaseAuditRetrievalWebScript /** File plan service */ protected FilePlanService filePlanService; + + /** Maximum number of entries to be displayed in View Audit Log */ + private int viewLogMaxSize; /** * @param contentStreamer @@ -86,13 +90,22 @@ public class AuditLogGet extends BaseAuditRetrievalWebScript /** * - * @param capabilityService Capability Service + * @param filePlanService File Plan Service */ public void setFilePlanService(FilePlanService filePlanService) { this.filePlanService = filePlanService; } + /** + * + * @param viewLogMaxSize Maximum number of entries to be displayed in View Audit Log + */ + public void setViewLogMaxSize(int viewLogMaxSize) + { + this.viewLogMaxSize = (viewLogMaxSize <= 0 ? DEFAULT_VIEW_LOG_MAX_SIZE: viewLogMaxSize); + } + @Override public void execute(WebScriptRequest req, WebScriptResponse res) throws IOException { @@ -100,7 +113,6 @@ public class AuditLogGet extends BaseAuditRetrievalWebScript try { - RecordsManagementAuditQueryParameters queryParams = parseQueryParameters(req); ReportFormat reportFormat = parseReportFormat(req); @@ -108,6 +120,13 @@ public class AuditLogGet extends BaseAuditRetrievalWebScript { throw new WebScriptException(Status.STATUS_FORBIDDEN, "Access denied because the user does not have the Access Audit capability"); } + + // limit the number of audit log entries to be returned + if (queryParams.getMaxEntries() == 0 || queryParams.getMaxEntries() > viewLogMaxSize) + { + queryParams.setMaxEntries(viewLogMaxSize); + } + // parse the parameters and get a file containing the audit trail auditTrail = this.rmAuditService.getAuditTrailFile(queryParams, reportFormat); From 48f77fc38e89b88b8c20044efa2e9b6effc01e6d Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Wed, 24 Jan 2018 09:08:09 +0000 Subject: [PATCH 044/236] RM-5987 use Spring to hold max entries default --- .../module/org_alfresco_module_rm/rm-webscript-context.xml | 2 +- .../module/org_alfresco_module_rm/script/AuditLogGet.java | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml index f1a6815869..40e7b60bb5 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/rm-webscript-context.xml @@ -538,7 +538,7 @@ - ${audit.rm.viewLog.maxSize} + ${audit.rm.viewLog.maxSize:100} diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java index de035737e0..d3ddce799c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java @@ -57,7 +57,6 @@ public class AuditLogGet extends BaseAuditRetrievalWebScript private static final String PARAM_EXPORT = "export"; private static final String ACCESS_AUDIT_CAPABILITY = "AccessAudit"; - private static final int DEFAULT_VIEW_LOG_MAX_SIZE = 100; /** Content Streamer */ protected ContentStreamer contentStreamer; @@ -103,7 +102,7 @@ public class AuditLogGet extends BaseAuditRetrievalWebScript */ public void setViewLogMaxSize(int viewLogMaxSize) { - this.viewLogMaxSize = (viewLogMaxSize <= 0 ? DEFAULT_VIEW_LOG_MAX_SIZE: viewLogMaxSize); + this.viewLogMaxSize = viewLogMaxSize; } @Override From cbeebaedc0da116f04ceb38f8b9d3c0b81f0f2e6 Mon Sep 17 00:00:00 2001 From: Rodica Sutu Date: Wed, 24 Jan 2018 15:22:10 +0200 Subject: [PATCH 045/236] change the old query select_CountChildrenWithPropertyValues to return the list of distinct property values from children update the implementation were the updated query is used --- .../query/rm-common-SqlMap.xml | 25 +++++++++---------- ... PropertyValuesOfChildrenQueryParams.java} | 16 ++---------- .../query/RecordsManagementQueryDAOImpl.java | 19 +++++++------- 3 files changed, 24 insertions(+), 36 deletions(-) rename rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/{ChildrenWithPropertyValuesQueryParams.java => PropertyValuesOfChildrenQueryParams.java} (79%) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml index d3b63f4467..1f64806621 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml @@ -20,22 +20,21 @@ - - select - count( distinct assoc.child_node_id ) + distinct childProp.string_value from - alf_child_assoc assoc - left join alf_node_properties childProp on assoc.child_node_id = childProp.node_id + alf_child_assoc assoc + left join alf_node_properties childProp on assoc.child_node_id = childProp.node_id where - assoc.parent_node_id = #{parentId} - and childProp.qname_id = #{propertyQnameId} - and childProp.string_value in - - '${item}' - + assoc.parent_node_id = #{parentId} and + childProp.qname_id = #{propertyQnameId} + + + \ No newline at end of file diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/ChildrenWithPropertyValuesQueryParams.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/PropertyValuesOfChildrenQueryParams.java similarity index 79% rename from rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/ChildrenWithPropertyValuesQueryParams.java rename to rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/PropertyValuesOfChildrenQueryParams.java index aacc945557..b83377cf77 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/ChildrenWithPropertyValuesQueryParams.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/PropertyValuesOfChildrenQueryParams.java @@ -26,19 +26,16 @@ */ package org.alfresco.module.org_alfresco_module_rm.query; -import java.util.Collection; - /** - * Select parameter for select_CountChildrenWithPropertyValues. + * Select parameter for select_GetPropertyValuesOfChildren. * * @author Ana Manolache * @since 2.6 */ -public class ChildrenWithPropertyValuesQueryParams +public class PropertyValuesOfChildrenQueryParams { private Long parentId; private Long propertyQnameId; - private Collection propertyValues; public Long getParentId() { @@ -60,14 +57,5 @@ public class ChildrenWithPropertyValuesQueryParams this.propertyQnameId = propertyQnameId; } - public Collection getPropertyValues() - { - return propertyValues; - } - - public void setPropertyValues(Collection propertyValues) - { - this.propertyValues = propertyValues; - } } diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java index 04f7313ed4..7750e045ef 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java @@ -28,7 +28,9 @@ package org.alfresco.module.org_alfresco_module_rm.query; import java.util.Collection; +import java.util.Collections; import java.util.HashMap; +import java.util.List; import java.util.Map; import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel; @@ -50,7 +52,7 @@ import org.mybatis.spring.SqlSessionTemplate; public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, RecordsManagementModel { private static final String COUNT_IDENTIFIER = "alfresco.query.rm.select_CountRMIndentifier"; - private static final String COUNT_CHILDREN_WITH_PROPERTY_VALUES = "select_CountChildrenWithPropertyValues"; + private static final String GET_CHILDREN_PROPERTY_VALUES = "select_GetPropertyValuesOfChildren"; /** SQL session template */ protected SqlSessionTemplate template; @@ -118,12 +120,12 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, @Override public boolean hasChildrenWithPropertyValues(NodeRef parent, QName property, Collection propertyValues) { - if(propertyValues.isEmpty()) + if (propertyValues.isEmpty()) { return false; } - ChildrenWithPropertyValuesQueryParams queryParams = new ChildrenWithPropertyValuesQueryParams(); + PropertyValuesOfChildrenQueryParams queryParams = new PropertyValuesOfChildrenQueryParams(); // Set the parent node id Pair nodePair = nodeDAO.getNodePair(tenantService.getName(parent)); @@ -142,12 +144,11 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, } queryParams.setPropertyQnameId(pair.getFirst()); - - // Set the property values - queryParams.setPropertyValues(propertyValues); - // Perform the query - Long count = template.selectOne(COUNT_CHILDREN_WITH_PROPERTY_VALUES, queryParams); - return count > 0; + List childrenPropertyValues = template.selectList(GET_CHILDREN_PROPERTY_VALUES, queryParams); + + //check if any propertyValues is in the childrenPropertyValues + return !Collections.disjoint(propertyValues, childrenPropertyValues); + } } From 7212ec9b981b63f0cb126f41a7384dc731a5bb8a Mon Sep 17 00:00:00 2001 From: Sara Aspery Date: Fri, 26 Jan 2018 07:11:20 +0000 Subject: [PATCH 046/236] RM-5987 changes from review --- .../module/org_alfresco_module_rm/script/AuditLogGet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java index d3ddce799c..9cb42e249e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/script/AuditLogGet.java @@ -121,7 +121,7 @@ public class AuditLogGet extends BaseAuditRetrievalWebScript } // limit the number of audit log entries to be returned - if (queryParams.getMaxEntries() == 0 || queryParams.getMaxEntries() > viewLogMaxSize) + if (queryParams.getMaxEntries() <= 0 || queryParams.getMaxEntries() > viewLogMaxSize) { queryParams.setMaxEntries(viewLogMaxSize); } From 547bb407dab6d8a2f4660676004294beea5bd434 Mon Sep 17 00:00:00 2001 From: Rodica Sutu Date: Fri, 26 Jan 2018 10:57:49 +0200 Subject: [PATCH 047/236] modify the hasChildrenWithPropertyValues to getChildrenPropertyValues in order to return the query result update the implementation where the modified method is used update tests --- .../query/RecordsManagementQueryDAO.java | 10 ++++------ .../query/RecordsManagementQueryDAOImpl.java | 15 +++------------ .../RecordsManagementQueryDAOImplTest.java | 19 +++++++++++++------ 3 files changed, 20 insertions(+), 24 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java index 020bd19f07..d167b05e17 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java @@ -27,7 +27,7 @@ package org.alfresco.module.org_alfresco_module_rm.query; -import java.util.Collection; +import java.util.List; import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.service.namespace.QName; @@ -53,13 +53,11 @@ public interface RecordsManagementQueryDAO int getCountRmaIdentifier(String identifierValue); /** - * Returns whether a given node contains children with one of the given values for the given property + * Returns the property values from children for the given property * * @param parent the parent to evaluate * @param property the QName of the property to evaluate - * @param propertyValues the list of values to look for - * @return true if there is at least one child with one of the values from the list set on the given property - * false otherwise + * @return list of property values */ - public boolean hasChildrenWithPropertyValues(NodeRef parent, QName property, Collection propertyValues); + public List getChildrenPropertyValues(NodeRef parent, QName property); } diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java index 7750e045ef..98d2adf217 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java @@ -27,7 +27,6 @@ package org.alfresco.module.org_alfresco_module_rm.query; -import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.List; @@ -118,13 +117,8 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, } @Override - public boolean hasChildrenWithPropertyValues(NodeRef parent, QName property, Collection propertyValues) + public List getChildrenPropertyValues(NodeRef parent, QName property) { - if (propertyValues.isEmpty()) - { - return false; - } - PropertyValuesOfChildrenQueryParams queryParams = new PropertyValuesOfChildrenQueryParams(); // Set the parent node id @@ -140,15 +134,12 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, Pair pair = qnameDAO.getQName(property); if (pair == null) { - return false; + return Collections.emptyList(); } queryParams.setPropertyQnameId(pair.getFirst()); // Perform the query - List childrenPropertyValues = template.selectList(GET_CHILDREN_PROPERTY_VALUES, queryParams); - - //check if any propertyValues is in the childrenPropertyValues - return !Collections.disjoint(propertyValues, childrenPropertyValues); + return template.selectList(GET_CHILDREN_PROPERTY_VALUES, queryParams); } } diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementQueryDAOImplTest.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementQueryDAOImplTest.java index 5c7713cead..6ee0d5242c 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementQueryDAOImplTest.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/legacy/service/RecordsManagementQueryDAOImplTest.java @@ -29,6 +29,8 @@ package org.alfresco.module.org_alfresco_module_rm.test.legacy.service; import java.util.ArrayList; import java.util.Arrays; +import java.util.Collections; +import java.util.List; import org.alfresco.model.ContentModel; import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel; @@ -130,7 +132,8 @@ public class RecordsManagementQueryDAOImplTest extends BaseRMTestCase implements @Override public void when() throws Exception { - result = queryDAO.hasChildrenWithPropertyValues(parentFolder, PROP_DESCRIPTION, Arrays.asList(propValue1, propValue2, propValue4)); + List propertyValues = queryDAO.getChildrenPropertyValues(parentFolder, PROP_DESCRIPTION); + result = !Collections.disjoint(Arrays.asList(propValue1, propValue2, propValue4),propertyValues); } @Override @@ -179,7 +182,8 @@ public class RecordsManagementQueryDAOImplTest extends BaseRMTestCase implements @Override public void when() throws Exception { - result = queryDAO.hasChildrenWithPropertyValues(parentFolder, PROP_DESCRIPTION, Arrays.asList("descr1", "descr2", "descr3")); + List propertyValues = queryDAO.getChildrenPropertyValues(parentFolder, PROP_DESCRIPTION); + result = !Collections.disjoint(Arrays.asList("descr1", "descr2", "descr3"), propertyValues); } @Override @@ -224,7 +228,8 @@ public class RecordsManagementQueryDAOImplTest extends BaseRMTestCase implements @Override public void when() throws Exception { - result = queryDAO.hasChildrenWithPropertyValues(folder, PROP_DESCRIPTION, Arrays.asList("descr")); + List propertyValues = queryDAO.getChildrenPropertyValues(folder, PROP_DESCRIPTION); + result = !Collections.disjoint(Arrays.asList("descr"), propertyValues); } @Override @@ -271,7 +276,8 @@ public class RecordsManagementQueryDAOImplTest extends BaseRMTestCase implements @Override public void when() throws Exception { - result = queryDAO.hasChildrenWithPropertyValues(folder, property, Arrays.asList("descr")); + List propertyValues = queryDAO.getChildrenPropertyValues(folder, property); + result = !Collections.disjoint(Arrays.asList("descr"), propertyValues); } @Override @@ -293,7 +299,7 @@ public class RecordsManagementQueryDAOImplTest extends BaseRMTestCase implements /** * Given any folder and any property - * When I pass an empty array to the hasChildrenWithPropertyValues method + * When I pass an empty array to the getChildrenPropertyValues method * Then the answer is negative */ @org.junit.Test @@ -318,7 +324,8 @@ public class RecordsManagementQueryDAOImplTest extends BaseRMTestCase implements @Override public void when() throws Exception { - result = queryDAO.hasChildrenWithPropertyValues(folder, PROP_DESCRIPTION, new ArrayList()); + List propertyValues = queryDAO.getChildrenPropertyValues(folder, PROP_DESCRIPTION); + result = !Collections.disjoint(new ArrayList(), propertyValues); } @Override From 975b2fe3236d0f35c638b8f61f2f21d70cd29e2d Mon Sep 17 00:00:00 2001 From: Rodica Sutu Date: Fri, 26 Jan 2018 14:36:41 +0200 Subject: [PATCH 048/236] updates after review: update the getChildrenPropertyValues return type update the existing tests from RecordsManagementQueryDAOImplTest that test getChildrenPropertyValues() method --- .../query/rm-common-SqlMap.xml | 2 +- .../PropertyValuesOfChildrenQueryParams.java | 2 +- .../query/RecordsManagementQueryDAO.java | 7 +- .../query/RecordsManagementQueryDAOImpl.java | 13 +- .../RecordsManagementQueryDAOImplTest.java | 165 +++++++++--------- 5 files changed, 99 insertions(+), 90 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml index 1f64806621..766c80c519 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMap.xml @@ -21,7 +21,7 @@ - select @@ -35,6 +39,21 @@ + + \ No newline at end of file diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMapConfig.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMapConfig.xml index e1dbaf1bea..fd97f207cb 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMapConfig.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/query/rm-common-SqlMapConfig.xml @@ -3,18 +3,8 @@ - - - - - - - - - - @@ -23,7 +13,6 @@ - \ No newline at end of file diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java index 43c91c32e0..1a5dcf9916 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java @@ -29,7 +29,6 @@ package org.alfresco.module.org_alfresco_module_rm.query; import java.util.Set; -import org.alfresco.repo.domain.contentdata.ContentUrlEntity; import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.service.namespace.QName; @@ -64,9 +63,8 @@ public interface RecordsManagementQueryDAO public Set getChildrenStringPropertyValues(NodeRef parent, QName property); /** - * @param contentUrl the URL of the content url entity - * @return Return the entity or null if it doesn't exist or is still - * referenced by a content_data entity + * @param contentUrl the URL of the content url entity + * @return Return a set of UUIDs which reference the given node */ - public ContentUrlEntity getContentUrlEntityUnreferenced(String contentUrl); + Set getNodeRefsWhichReferenceContentUrl(String contentUrl); } diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java index 5f8ed0d999..235fc891cf 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java @@ -30,18 +30,24 @@ package org.alfresco.module.org_alfresco_module_rm.query; import java.util.Collections; import java.util.HashMap; import java.util.HashSet; +import java.util.List; import java.util.Map; import java.util.Set; +import org.alfresco.model.ContentModel; import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel; import org.alfresco.repo.domain.contentdata.ContentUrlEntity; import org.alfresco.repo.domain.node.NodeDAO; import org.alfresco.repo.domain.qname.QNameDAO; import org.alfresco.repo.tenant.TenantService; +import org.alfresco.repo.version.Version2Model; import org.alfresco.service.cmr.repository.InvalidNodeRefException; import org.alfresco.service.cmr.repository.NodeRef; +import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.service.namespace.QName; import org.alfresco.util.Pair; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; import org.mybatis.spring.SqlSessionTemplate; /** @@ -54,7 +60,7 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, { private static final String COUNT_IDENTIFIER = "alfresco.query.rm.select_CountRMIndentifier"; private static final String GET_CHILDREN_PROPERTY_VALUES = "select_GetStringPropertyValuesOfChildren"; - private static final String SELECT_CONTENT_URL_BY_KEY_UNREFERENCED = "alfresco.content.select_ContentUrlByKeyUnreferenced"; + private static final String SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL = "select_NodeIdsWhichReferenceContentUrl"; /** SQL session template */ protected SqlSessionTemplate template; @@ -103,7 +109,7 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, if (pair != null) { // create query params - Map params = new HashMap(2); + Map params = new HashMap<>(2); params.put("qnameId", pair.getFirst()); params.put("idValue", identifierValue); @@ -147,7 +153,7 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, } @Override - public ContentUrlEntity getContentUrlEntityUnreferenced(String contentUrl) + public Set getNodeRefsWhichReferenceContentUrl(String contentUrl) { ContentUrlEntity contentUrlEntity = new ContentUrlEntity(); contentUrlEntity.setContentUrl(contentUrl); @@ -155,8 +161,31 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, { contentUrlEntity.setContentUrlShort(contentUrlEntity.getContentUrlShort().toLowerCase()); } - contentUrlEntity = (ContentUrlEntity) template.selectOne(SELECT_CONTENT_URL_BY_KEY_UNREFERENCED, contentUrlEntity); - return contentUrlEntity; + // Get all the node ids which reference the given content url + List nodeIds = template.selectList(SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL, contentUrlEntity); + + // create a set of uuids which reference the content url + Set nodesReferencingContentUrl = new HashSet<>(); + for(Long nodeId : nodeIds) + { + String uuidToAdd; + + // if the referencing node is a version2Store reference to the content url, add the uuid for the version 2 frozen node ref + NodeRef version2FrozenNodeRef = (NodeRef) nodeDAO.getNodeProperty(nodeId, Version2Model.PROP_QNAME_FROZEN_NODE_REF); + if (version2FrozenNodeRef != null) + { + uuidToAdd = version2FrozenNodeRef.getId(); + } + + // add the uuid for the node ref of the referencing node + else + { + uuidToAdd = (String) nodeDAO.getNodeProperty(nodeId, ContentModel.PROP_NODE_UUID); + } + nodesReferencingContentUrl.add(uuidToAdd); + } + + return nodesReferencingContentUrl; } } diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java index da5992a0c0..83b3f9ba9f 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java @@ -28,13 +28,14 @@ package org.alfresco.module.org_alfresco_module_rm.util; import org.alfresco.model.ContentModel; import org.alfresco.module.org_alfresco_module_rm.query.RecordsManagementQueryDAO; -import org.alfresco.repo.domain.contentdata.ContentUrlEntity; import org.alfresco.repo.policy.BehaviourFilter; import org.alfresco.service.cmr.repository.ContentReader; import org.alfresco.service.cmr.repository.ContentService; import org.alfresco.service.cmr.repository.ContentWriter; import org.alfresco.service.cmr.repository.NodeRef; +import java.util.Set; + /** * Utility class to duplicate the content of a node without triggering the audit or versioning behaviours * @author Ross Gale @@ -94,8 +95,9 @@ public class ContentBinDuplicationUtility { boolean hasAtLeastOneOtherReference = false; String contentUrl = contentService.getReader(nodeRef, ContentModel.PROP_CONTENT).getContentUrl(); - ContentUrlEntity contentUrlEntity = recordsManagementQueryDAO.getContentUrlEntityUnreferenced(contentUrl); - if (contentUrlEntity == null) + + Set referencesToContentNode = recordsManagementQueryDAO.getNodeRefsWhichReferenceContentUrl(contentUrl); + if (referencesToContentNode.size() > 1) { hasAtLeastOneOtherReference = true; } diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtilityUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtilityUnitTest.java index 2c5299ff4b..d2c12a1005 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtilityUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtilityUnitTest.java @@ -29,7 +29,6 @@ package org.alfresco.module.org_alfresco_module_rm.util; import org.alfresco.model.ContentModel; import org.alfresco.module.org_alfresco_module_rm.query.RecordsManagementQueryDAO; -import org.alfresco.repo.domain.contentdata.ContentUrlEntity; import org.alfresco.repo.policy.BehaviourFilter; import org.alfresco.service.cmr.repository.ContentReader; import org.alfresco.service.cmr.repository.ContentService; @@ -41,6 +40,10 @@ import org.mockito.InjectMocks; import org.mockito.Mock; import org.mockito.MockitoAnnotations; +import java.util.Collections; +import java.util.HashSet; +import java.util.Set; + import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.times; @@ -54,6 +57,9 @@ import static org.mockito.Mockito.when; */ public class ContentBinDuplicationUtilityUnitTest { + private final static NodeRef NODE_REF = new NodeRef("some://test/noderef"); + private final static NodeRef NODE_REF2 = new NodeRef("some://test/anothernoderef"); + private final static String CONTENT_URL = "someContentUrl"; @Mock private ContentService contentService; @@ -85,10 +91,9 @@ public class ContentBinDuplicationUtilityUnitTest @Test public void testContentUrlIsUpdated() { - NodeRef nodeRef = new NodeRef("some://test/noderef"); - when(contentService.getReader(nodeRef, ContentModel.PROP_CONTENT)).thenReturn(contentReader); - when(contentService.getWriter(nodeRef, ContentModel.PROP_CONTENT, true)).thenReturn(contentWriter); - contentBinDuplicationUtility.duplicate(nodeRef); + when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT)).thenReturn(contentReader); + when(contentService.getWriter(NODE_REF, ContentModel.PROP_CONTENT, true)).thenReturn(contentWriter); + contentBinDuplicationUtility.duplicate(NODE_REF); verify(contentWriter, times(1)).putContent(contentReader); checkBehaviours(1); } @@ -99,9 +104,8 @@ public class ContentBinDuplicationUtilityUnitTest @Test public void testDuplicationDoesntHappenWithNoContent() { - NodeRef nodeRef = new NodeRef("some://test/noderef"); - when(contentService.getReader(nodeRef, ContentModel.PROP_CONTENT)).thenReturn(null); - contentBinDuplicationUtility.duplicate(nodeRef); + when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT)).thenReturn(null); + contentBinDuplicationUtility.duplicate(NODE_REF); verify(contentWriter, times(0)).putContent(contentReader); checkBehaviours(1); } @@ -112,32 +116,44 @@ public class ContentBinDuplicationUtilityUnitTest @Test public void testHasAtLeastOneOtherReference() { - NodeRef nodeRef = new NodeRef("some://test/noderef"); - String contentUrl = "someContentUrl"; + Set multipleReferences = new HashSet<>(); + Collections.addAll(multipleReferences, NODE_REF.getId(), NODE_REF2.getId()); - when(contentService.getReader(nodeRef, ContentModel.PROP_CONTENT)).thenReturn(contentReader); - when(contentService.getReader(nodeRef, ContentModel.PROP_CONTENT).getContentUrl()).thenReturn(contentUrl); - when(recordsManagementQueryDAO.getContentUrlEntityUnreferenced(contentUrl)).thenReturn(null); + when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT)).thenReturn(contentReader); + when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT).getContentUrl()).thenReturn(CONTENT_URL); + when(recordsManagementQueryDAO.getNodeRefsWhichReferenceContentUrl(CONTENT_URL)).thenReturn(multipleReferences); - boolean hasReference = contentBinDuplicationUtility.hasAtLeastOneOtherReference(nodeRef); - assertTrue(hasReference); + assertTrue(contentBinDuplicationUtility.hasAtLeastOneOtherReference(NODE_REF)); } /** - * Test hasAtLeastOneOtherReference returns false when node has no other reference to it + * Test hasAtLeastOneOtherReference returns false when node has no other reference to it other than its own content ref */ @Test public void testHasNoOtherReference() { - NodeRef nodeRef = new NodeRef("some://test/noderef"); - String contentUrl = "someContentUrl"; - ContentUrlEntity contentUrlEntity = new ContentUrlEntity(); + Set singleReference = Collections.singleton(NODE_REF.getId()); - when(contentService.getReader(nodeRef, ContentModel.PROP_CONTENT)).thenReturn(contentReader); - when(contentService.getReader(nodeRef, ContentModel.PROP_CONTENT).getContentUrl()).thenReturn(contentUrl); - when(recordsManagementQueryDAO.getContentUrlEntityUnreferenced(contentUrl)).thenReturn(contentUrlEntity); + when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT)).thenReturn(contentReader); + when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT).getContentUrl()).thenReturn(CONTENT_URL); + when(recordsManagementQueryDAO.getNodeRefsWhichReferenceContentUrl(CONTENT_URL)).thenReturn(singleReference); - assertFalse(contentBinDuplicationUtility.hasAtLeastOneOtherReference(nodeRef)); + assertFalse(contentBinDuplicationUtility.hasAtLeastOneOtherReference(NODE_REF)); + } + + /** + * Test hasAtLeastOneOtherReference returns false when node has no references to it at all + */ + @Test + public void testHasNoReferences() + { + Set noReferences = Collections. emptySet(); + + when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT)).thenReturn(contentReader); + when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT).getContentUrl()).thenReturn(CONTENT_URL); + when(recordsManagementQueryDAO.getNodeRefsWhichReferenceContentUrl(CONTENT_URL)).thenReturn(noReferences); + + assertFalse(contentBinDuplicationUtility.hasAtLeastOneOtherReference(NODE_REF)); } /** From 4518cd861572cdf366a25819cd7b152daf090e1b Mon Sep 17 00:00:00 2001 From: Roy Wetherall Date: Thu, 29 Aug 2019 09:50:57 +1000 Subject: [PATCH 228/236] Add logging to rm query DAO implementation --- .../org_alfresco_module_rm/log4j.properties | 4 +- .../query/RecordsManagementQueryDAOImpl.java | 52 ++++++++++++++++++- .../test/integration/issue/RM4804Test.java | 2 - 3 files changed, 53 insertions(+), 5 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties index 76742abc10..2f6cafb272 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties @@ -56,4 +56,6 @@ log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info # Job debug # #log4j.logger.org.alfresco.module.org_alfresco_module_rm.job=debug -log4j.logger.org.alfresco.repo.web.scripts.roles.DynamicAuthoritiesGet=info \ No newline at end of file +log4j.logger.org.alfresco.repo.web.scripts.roles.DynamicAuthoritiesGet=info + +log4j.logger.org.alfresco.module.org_alfresco_module_rm.query.RecordsManagementQueryDAOImpl=debug \ No newline at end of file diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java index 235fc891cf..69d9f47b29 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java @@ -43,7 +43,6 @@ import org.alfresco.repo.tenant.TenantService; import org.alfresco.repo.version.Version2Model; import org.alfresco.service.cmr.repository.InvalidNodeRefException; import org.alfresco.service.cmr.repository.NodeRef; -import org.alfresco.service.cmr.repository.NodeService; import org.alfresco.service.namespace.QName; import org.alfresco.util.Pair; import org.apache.commons.logging.Log; @@ -58,6 +57,11 @@ import org.mybatis.spring.SqlSessionTemplate; */ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, RecordsManagementModel { + /** logger */ + @SuppressWarnings("unused") + private static final Log logger = LogFactory.getLog(RecordsManagementQueryDAOImpl.class); + + /** query names */ private static final String COUNT_IDENTIFIER = "alfresco.query.rm.select_CountRMIndentifier"; private static final String GET_CHILDREN_PROPERTY_VALUES = "select_GetStringPropertyValuesOfChildren"; private static final String SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL = "select_NodeIdsWhichReferenceContentUrl"; @@ -152,9 +156,21 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, } + /** + * Get a set of node reference which reference the provided content URL + * + * @param String contentUrl content URL + * @return Set set of node references as strings + */ @Override public Set getNodeRefsWhichReferenceContentUrl(String contentUrl) { + if (logger.isDebugEnabled()) + { + logger.debug("Getting nodes that reference content URL = " + contentUrl); + } + + // create the content URL entity used to query for nodes ContentUrlEntity contentUrlEntity = new ContentUrlEntity(); contentUrlEntity.setContentUrl(contentUrl); if (contentUrlEntity.getContentUrlShort() != null) @@ -162,28 +178,60 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, contentUrlEntity.setContentUrlShort(contentUrlEntity.getContentUrlShort().toLowerCase()); } + if (logger.isDebugEnabled()) + { + logger.debug("Executing query " + SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL); + } + // Get all the node ids which reference the given content url List nodeIds = template.selectList(SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL, contentUrlEntity); + + if (logger.isDebugEnabled()) + { + logger.debug("Query " + SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL + " returned " + nodeIds.size() + " results"); + } // create a set of uuids which reference the content url Set nodesReferencingContentUrl = new HashSet<>(); for(Long nodeId : nodeIds) { + StringBuilder logMessage = null; String uuidToAdd; + + if (logger.isDebugEnabled()) + { + logMessage = new StringBuilder("Adding uuid "); + } // if the referencing node is a version2Store reference to the content url, add the uuid for the version 2 frozen node ref NodeRef version2FrozenNodeRef = (NodeRef) nodeDAO.getNodeProperty(nodeId, Version2Model.PROP_QNAME_FROZEN_NODE_REF); if (version2FrozenNodeRef != null) - { + { uuidToAdd = version2FrozenNodeRef.getId(); + + if (logger.isDebugEnabled()) + { + logMessage.append(uuidToAdd).append(" (from version)"); + } } // add the uuid for the node ref of the referencing node else { uuidToAdd = (String) nodeDAO.getNodeProperty(nodeId, ContentModel.PROP_NODE_UUID); + + if (logger.isDebugEnabled()) + { + logMessage.append(uuidToAdd); + } } + nodesReferencingContentUrl.add(uuidToAdd); + + if (logger.isDebugEnabled()) + { + logger.debug(logMessage.toString()); + } } return nodesReferencingContentUrl; diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4804Test.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4804Test.java index e6ed70983b..5de7ee766c 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4804Test.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/integration/issue/RM4804Test.java @@ -46,8 +46,6 @@ import org.apache.commons.io.IOUtils; import org.apache.commons.lang.StringUtils; import org.springframework.extensions.webscripts.GUID; -import javax.xml.soap.Node; - /** * Integration test for RM-4804 * From e282c0584e64d59ba56fd3b5598eefbd114bd9bb Mon Sep 17 00:00:00 2001 From: Roy Wetherall Date: Thu, 29 Aug 2019 12:28:04 +1000 Subject: [PATCH 229/236] Fix issue with inaccurate results returning from content URL query * added integration test for MNT scenarios * checked for nodeId's that don't exist in query results * changed DAO method to return set of node references rather tha nodeId strings * turned off logging by default --- .../org_alfresco_module_rm/log4j.properties | 3 +- .../query/RecordsManagementQueryDAO.java | 4 +- .../query/RecordsManagementQueryDAOImpl.java | 78 ++++++++++--------- .../util/ContentBinDuplicationUtility.java | 2 +- .../test/util/BaseRMTestCase.java | 1 - .../ContentBinDuplicationUtilityUnitTest.java | 8 +- 6 files changed, 51 insertions(+), 45 deletions(-) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties index 2f6cafb272..f5ecef752f 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/log4j.properties @@ -57,5 +57,4 @@ log4j.logger.org.alfresco.module.org_alfresco_module_rm.patch=info # #log4j.logger.org.alfresco.module.org_alfresco_module_rm.job=debug log4j.logger.org.alfresco.repo.web.scripts.roles.DynamicAuthoritiesGet=info - -log4j.logger.org.alfresco.module.org_alfresco_module_rm.query.RecordsManagementQueryDAOImpl=debug \ No newline at end of file +log4j.logger.org.alfresco.module.org_alfresco_module_rm.query.RecordsManagementQueryDAOImpl=info \ No newline at end of file diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java index 1a5dcf9916..a3c041fc9e 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAO.java @@ -64,7 +64,7 @@ public interface RecordsManagementQueryDAO /** * @param contentUrl the URL of the content url entity - * @return Return a set of UUIDs which reference the given node + * @return Set a set of nodes that reference the given content url */ - Set getNodeRefsWhichReferenceContentUrl(String contentUrl); + Set getNodeRefsWhichReferenceContentUrl(String contentUrl); } diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java index 69d9f47b29..5503f5b86c 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java @@ -34,7 +34,6 @@ import java.util.List; import java.util.Map; import java.util.Set; -import org.alfresco.model.ContentModel; import org.alfresco.module.org_alfresco_module_rm.model.RecordsManagementModel; import org.alfresco.repo.domain.contentdata.ContentUrlEntity; import org.alfresco.repo.domain.node.NodeDAO; @@ -159,11 +158,11 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, /** * Get a set of node reference which reference the provided content URL * - * @param String contentUrl content URL - * @return Set set of node references as strings + * @param String contentUrl content URL + * @return Set set of nodes that reference the provided content URL */ @Override - public Set getNodeRefsWhichReferenceContentUrl(String contentUrl) + public Set getNodeRefsWhichReferenceContentUrl(String contentUrl) { if (logger.isDebugEnabled()) { @@ -192,45 +191,54 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, } // create a set of uuids which reference the content url - Set nodesReferencingContentUrl = new HashSet<>(); + Set nodesReferencingContentUrl = new HashSet(nodeIds.size()); for(Long nodeId : nodeIds) { StringBuilder logMessage = null; - String uuidToAdd; + NodeRef nodeRefToAdd; - if (logger.isDebugEnabled()) + if (nodeDAO.exists(nodeId)) { - logMessage = new StringBuilder("Adding uuid "); + if (logger.isDebugEnabled()) + { + logMessage = new StringBuilder("Adding uuid "); + } + + // if the referencing node is a version2Store reference to the content url, add the uuid for the version 2 frozen node ref + NodeRef version2FrozenNodeRef = (NodeRef) nodeDAO.getNodeProperty(nodeId, Version2Model.PROP_QNAME_FROZEN_NODE_REF); + if (version2FrozenNodeRef != null) + { + nodeRefToAdd = version2FrozenNodeRef; + + if (logger.isDebugEnabled()) + { + logMessage.append(nodeRefToAdd).append(" (from version)"); + } + } + + // add the uuid for the node ref of the referencing node + else + { + nodeRefToAdd = nodeDAO.getNodeIdStatus(nodeId).getNodeRef(); + if (logger.isDebugEnabled()) + { + logMessage.append(nodeRefToAdd); + } + } + + nodesReferencingContentUrl.add(nodeRefToAdd); + + if (logger.isDebugEnabled()) + { + logger.debug(logMessage.toString()); + } } - - // if the referencing node is a version2Store reference to the content url, add the uuid for the version 2 frozen node ref - NodeRef version2FrozenNodeRef = (NodeRef) nodeDAO.getNodeProperty(nodeId, Version2Model.PROP_QNAME_FROZEN_NODE_REF); - if (version2FrozenNodeRef != null) - { - uuidToAdd = version2FrozenNodeRef.getId(); - - if (logger.isDebugEnabled()) - { - logMessage.append(uuidToAdd).append(" (from version)"); - } - } - - // add the uuid for the node ref of the referencing node else { - uuidToAdd = (String) nodeDAO.getNodeProperty(nodeId, ContentModel.PROP_NODE_UUID); - - if (logger.isDebugEnabled()) - { - logMessage.append(uuidToAdd); - } - } - - nodesReferencingContentUrl.add(uuidToAdd); - - if (logger.isDebugEnabled()) - { - logger.debug(logMessage.toString()); + if (logger.isDebugEnabled()) + { + logger.debug("Not adding " + nodeId + " (exist==false)"); + } } } diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java index c1453c906a..68a0bab6c3 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtility.java @@ -96,7 +96,7 @@ public class ContentBinDuplicationUtility extends ServiceBaseImpl boolean hasAtLeastOneOtherReference = false; String contentUrl = contentService.getReader(nodeRef, ContentModel.PROP_CONTENT).getContentUrl(); - Set referencesToContentNode = recordsManagementQueryDAO.getNodeRefsWhichReferenceContentUrl(contentUrl); + Set referencesToContentNode = recordsManagementQueryDAO.getNodeRefsWhichReferenceContentUrl(contentUrl); if (referencesToContentNode.size() > 1) { hasAtLeastOneOtherReference = true; diff --git a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMTestCase.java b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMTestCase.java index 4eeb564b49..06dc185a44 100644 --- a/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMTestCase.java +++ b/rm-community/rm-community-repo/test/java/org/alfresco/module/org_alfresco_module_rm/test/util/BaseRMTestCase.java @@ -54,7 +54,6 @@ import org.alfresco.module.org_alfresco_module_rm.recordfolder.RecordFolderServi import org.alfresco.module.org_alfresco_module_rm.relationship.RelationshipService; import org.alfresco.module.org_alfresco_module_rm.report.ReportService; import org.alfresco.module.org_alfresco_module_rm.role.FilePlanRoleService; -import org.alfresco.module.org_alfresco_module_rm.role.Role; import org.alfresco.module.org_alfresco_module_rm.search.RecordsManagementSearchService; import org.alfresco.module.org_alfresco_module_rm.security.ExtendedSecurityService; import org.alfresco.module.org_alfresco_module_rm.security.FilePlanPermissionService; diff --git a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtilityUnitTest.java b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtilityUnitTest.java index d2c12a1005..b8f2727d4e 100644 --- a/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtilityUnitTest.java +++ b/rm-community/rm-community-repo/unit-test/java/org/alfresco/module/org_alfresco_module_rm/util/ContentBinDuplicationUtilityUnitTest.java @@ -116,8 +116,8 @@ public class ContentBinDuplicationUtilityUnitTest @Test public void testHasAtLeastOneOtherReference() { - Set multipleReferences = new HashSet<>(); - Collections.addAll(multipleReferences, NODE_REF.getId(), NODE_REF2.getId()); + Set multipleReferences = new HashSet<>(); + Collections.addAll(multipleReferences, NODE_REF, NODE_REF2); when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT)).thenReturn(contentReader); when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT).getContentUrl()).thenReturn(CONTENT_URL); @@ -132,7 +132,7 @@ public class ContentBinDuplicationUtilityUnitTest @Test public void testHasNoOtherReference() { - Set singleReference = Collections.singleton(NODE_REF.getId()); + Set singleReference = Collections.singleton(NODE_REF); when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT)).thenReturn(contentReader); when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT).getContentUrl()).thenReturn(CONTENT_URL); @@ -147,7 +147,7 @@ public class ContentBinDuplicationUtilityUnitTest @Test public void testHasNoReferences() { - Set noReferences = Collections. emptySet(); + Set noReferences = Collections. emptySet(); when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT)).thenReturn(contentReader); when(contentService.getReader(NODE_REF, ContentModel.PROP_CONTENT).getContentUrl()).thenReturn(CONTENT_URL); From 88e538ddbb2fbfe8ff08f1a3c74d8f7cffdcd207 Mon Sep 17 00:00:00 2001 From: Roy Wetherall Date: Thu, 29 Aug 2019 21:35:00 +1000 Subject: [PATCH 230/236] Addition tests for records, fixed up a couple of issues in the query method as a result. --- .../query/RecordsManagementQueryDAOImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java index 5503f5b86c..50a6675ccd 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java @@ -197,7 +197,7 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, StringBuilder logMessage = null; NodeRef nodeRefToAdd; - if (nodeDAO.exists(nodeId)) + if (nodeId != null && nodeDAO.exists(nodeId)) { if (logger.isDebugEnabled()) { @@ -206,7 +206,7 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, // if the referencing node is a version2Store reference to the content url, add the uuid for the version 2 frozen node ref NodeRef version2FrozenNodeRef = (NodeRef) nodeDAO.getNodeProperty(nodeId, Version2Model.PROP_QNAME_FROZEN_NODE_REF); - if (version2FrozenNodeRef != null) + if (version2FrozenNodeRef != null && nodeDAO.exists(version2FrozenNodeRef)) { nodeRefToAdd = version2FrozenNodeRef; From 02411e3e59a27e0cfc1936fa4b3c0e9f4c4f634a Mon Sep 17 00:00:00 2001 From: Roy Wetherall Date: Fri, 30 Aug 2019 11:28:44 +1000 Subject: [PATCH 231/236] Deal with review comments --- .../query/RecordsManagementQueryDAOImpl.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java index 50a6675ccd..be3700a031 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java @@ -171,11 +171,7 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, // create the content URL entity used to query for nodes ContentUrlEntity contentUrlEntity = new ContentUrlEntity(); - contentUrlEntity.setContentUrl(contentUrl); - if (contentUrlEntity.getContentUrlShort() != null) - { - contentUrlEntity.setContentUrlShort(contentUrlEntity.getContentUrlShort().toLowerCase()); - } + contentUrlEntity.setContentUrl(contentUrl.toLowerCase()); if (logger.isDebugEnabled()) { @@ -201,10 +197,10 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, { if (logger.isDebugEnabled()) { - logMessage = new StringBuilder("Adding uuid "); + logMessage = new StringBuilder("Adding noderef "); } - // if the referencing node is a version2Store reference to the content url, add the uuid for the version 2 frozen node ref + // if the referencing node is a version2Store reference to the content url, add the version 2 frozen node ref NodeRef version2FrozenNodeRef = (NodeRef) nodeDAO.getNodeProperty(nodeId, Version2Model.PROP_QNAME_FROZEN_NODE_REF); if (version2FrozenNodeRef != null && nodeDAO.exists(version2FrozenNodeRef)) { @@ -216,7 +212,7 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, } } - // add the uuid for the node ref of the referencing node + // add the node ref of the referencing node else { nodeRefToAdd = nodeDAO.getNodeIdStatus(nodeId).getNodeRef(); From 1f6bb8c277c589553259c9f414ce7f6382476983 Mon Sep 17 00:00:00 2001 From: cagache Date: Mon, 2 Sep 2019 13:33:37 +0300 Subject: [PATCH 232/236] apply code style --- .../query/RecordsManagementQueryDAOImpl.java | 118 +++++++++--------- 1 file changed, 59 insertions(+), 59 deletions(-) diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java index be3700a031..a13a6fcd44 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/query/RecordsManagementQueryDAOImpl.java @@ -56,11 +56,11 @@ import org.mybatis.spring.SqlSessionTemplate; */ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, RecordsManagementModel { - /** logger */ - @SuppressWarnings("unused") - private static final Log logger = LogFactory.getLog(RecordsManagementQueryDAOImpl.class); - - /** query names */ + /** logger */ + @SuppressWarnings ("unused") + private static final Log logger = LogFactory.getLog(RecordsManagementQueryDAOImpl.class); + + /** query names */ private static final String COUNT_IDENTIFIER = "alfresco.query.rm.select_CountRMIndentifier"; private static final String GET_CHILDREN_PROPERTY_VALUES = "select_GetStringPropertyValuesOfChildren"; private static final String SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL = "select_NodeIdsWhichReferenceContentUrl"; @@ -157,84 +157,84 @@ public class RecordsManagementQueryDAOImpl implements RecordsManagementQueryDAO, /** * Get a set of node reference which reference the provided content URL - * - * @param String contentUrl content URL + * * @return Set set of nodes that reference the provided content URL + * @param String contentUrl content URL */ @Override public Set getNodeRefsWhichReferenceContentUrl(String contentUrl) { - if (logger.isDebugEnabled()) - { - logger.debug("Getting nodes that reference content URL = " + contentUrl); - } - - // create the content URL entity used to query for nodes + if (logger.isDebugEnabled()) + { + logger.debug("Getting nodes that reference content URL = " + contentUrl); + } + + // create the content URL entity used to query for nodes ContentUrlEntity contentUrlEntity = new ContentUrlEntity(); contentUrlEntity.setContentUrl(contentUrl.toLowerCase()); if (logger.isDebugEnabled()) - { - logger.debug("Executing query " + SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL); - } - + { + logger.debug("Executing query " + SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL); + } + // Get all the node ids which reference the given content url List nodeIds = template.selectList(SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL, contentUrlEntity); - + if (logger.isDebugEnabled()) { - logger.debug("Query " + SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL + " returned " + nodeIds.size() + " results"); + logger.debug("Query " + SELECT_NODE_IDS_WHICH_REFERENCE_CONTENT_URL + " returned " + nodeIds.size() + " results"); } // create a set of uuids which reference the content url Set nodesReferencingContentUrl = new HashSet(nodeIds.size()); - for(Long nodeId : nodeIds) + for (Long nodeId : nodeIds) { - StringBuilder logMessage = null; + StringBuilder logMessage = null; NodeRef nodeRefToAdd; - + if (nodeId != null && nodeDAO.exists(nodeId)) { - if (logger.isDebugEnabled()) - { - logMessage = new StringBuilder("Adding noderef "); - } - - // if the referencing node is a version2Store reference to the content url, add the version 2 frozen node ref - NodeRef version2FrozenNodeRef = (NodeRef) nodeDAO.getNodeProperty(nodeId, Version2Model.PROP_QNAME_FROZEN_NODE_REF); - if (version2FrozenNodeRef != null && nodeDAO.exists(version2FrozenNodeRef)) - { - nodeRefToAdd = version2FrozenNodeRef; - - if (logger.isDebugEnabled()) - { - logMessage.append(nodeRefToAdd).append(" (from version)"); - } - } - - // add the node ref of the referencing node - else - { - nodeRefToAdd = nodeDAO.getNodeIdStatus(nodeId).getNodeRef(); - if (logger.isDebugEnabled()) - { - logMessage.append(nodeRefToAdd); - } - } - - nodesReferencingContentUrl.add(nodeRefToAdd); - - if (logger.isDebugEnabled()) - { - logger.debug(logMessage.toString()); - } + if (logger.isDebugEnabled()) + { + logMessage = new StringBuilder("Adding noderef "); + } + + // if the referencing node is a version2Store reference to the content url, add the version 2 frozen node ref + NodeRef version2FrozenNodeRef = (NodeRef) nodeDAO.getNodeProperty(nodeId, Version2Model.PROP_QNAME_FROZEN_NODE_REF); + if (version2FrozenNodeRef != null && nodeDAO.exists(version2FrozenNodeRef)) + { + nodeRefToAdd = version2FrozenNodeRef; + + if (logger.isDebugEnabled()) + { + logMessage.append(nodeRefToAdd).append(" (from version)"); + } + } + + // add the node ref of the referencing node + else + { + nodeRefToAdd = nodeDAO.getNodeIdStatus(nodeId).getNodeRef(); + if (logger.isDebugEnabled()) + { + logMessage.append(nodeRefToAdd); + } + } + + nodesReferencingContentUrl.add(nodeRefToAdd); + + if (logger.isDebugEnabled()) + { + logger.debug(logMessage.toString()); + } } else { - if (logger.isDebugEnabled()) - { - logger.debug("Not adding " + nodeId + " (exist==false)"); - } + if (logger.isDebugEnabled()) + { + logger.debug("Not adding " + nodeId + " (exist==false)"); + } } } From 2808df576cb6d217720aafa8fab314db61eb9035 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Tue, 3 Sep 2019 13:49:04 +0100 Subject: [PATCH 233/236] [maven-release-plugin] prepare release V2.7.2.1 --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index b23881cfd8..902bfad23c 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-rm pom - 2.7.2.1-SNAPSHOT + 2.7.2.1 Alfresco Records Management @@ -24,7 +24,7 @@ scm:git:https://git.alfresco.com/records-management/records-management.git scm:git:https://git.alfresco.com/records-management/records-management.git https://git.alfresco.com/records-management/records-management - V2.7.2 + V2.7.2.1 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index d77c9108aa..800f5be090 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm - 2.7.2.1-SNAPSHOT + 2.7.2.1 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index b371791ab0..96c06d98e5 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm-automation - 2.7.2.1-SNAPSHOT + 2.7.2.1 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 3d42a8fec8..c80257a4fe 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm - 2.7.2.1-SNAPSHOT + 2.7.2.1 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index b2c91e0233..1e0a60f031 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-rm-community - 2.7.2.1-SNAPSHOT + 2.7.2.1 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index ec732b9a9a..8be25feb3d 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-rm-community - 2.7.2.1-SNAPSHOT + 2.7.2.1 From 2e73a1ee1bb29900ad0ae02747793e4e8587e6b5 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Tue, 3 Sep 2019 13:49:08 +0100 Subject: [PATCH 234/236] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index 902bfad23c..9c5e7e5591 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-rm pom - 2.7.2.1 + 2.7.2.2-SNAPSHOT Alfresco Records Management @@ -24,7 +24,7 @@ scm:git:https://git.alfresco.com/records-management/records-management.git scm:git:https://git.alfresco.com/records-management/records-management.git https://git.alfresco.com/records-management/records-management - V2.7.2.1 + V2.7.2 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index 800f5be090..f38338dc33 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm - 2.7.2.1 + 2.7.2.2-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 96c06d98e5..4d779f0a4a 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm-automation - 2.7.2.1 + 2.7.2.2-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index c80257a4fe..ac1bf00dd6 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm - 2.7.2.1 + 2.7.2.2-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index 1e0a60f031..e56977f9ee 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-rm-community - 2.7.2.1 + 2.7.2.2-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 8be25feb3d..e5d91bd478 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-rm-community - 2.7.2.1 + 2.7.2.2-SNAPSHOT From 707adc8d5ba8f7542faed247a1b8d9209ed4c991 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Wed, 9 Oct 2019 15:23:22 +0100 Subject: [PATCH 235/236] [maven-release-plugin] prepare release V2.7.2.2 --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index 9c5e7e5591..ec8b0e8cc3 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-rm pom - 2.7.2.2-SNAPSHOT + 2.7.2.2 Alfresco Records Management @@ -24,7 +24,7 @@ scm:git:https://git.alfresco.com/records-management/records-management.git scm:git:https://git.alfresco.com/records-management/records-management.git https://git.alfresco.com/records-management/records-management - V2.7.2 + V2.7.2.2 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index f38338dc33..b6dac65c1e 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm - 2.7.2.2-SNAPSHOT + 2.7.2.2 diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 4d779f0a4a..6bd773d581 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm-automation - 2.7.2.2-SNAPSHOT + 2.7.2.2 diff --git a/rm-community/pom.xml b/rm-community/pom.xml index ac1bf00dd6..0ff8b6e6db 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm - 2.7.2.2-SNAPSHOT + 2.7.2.2 diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index e56977f9ee..fa1faeeea9 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-rm-community - 2.7.2.2-SNAPSHOT + 2.7.2.2 diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index e5d91bd478..8dd9f9a6b5 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-rm-community - 2.7.2.2-SNAPSHOT + 2.7.2.2 From b33de0b62b302c1ce004af5b1281ece9a4a46037 Mon Sep 17 00:00:00 2001 From: alfresco-build Date: Wed, 9 Oct 2019 15:23:26 +0100 Subject: [PATCH 236/236] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- rm-automation/pom.xml | 2 +- rm-automation/rm-automation-community-rest-api/pom.xml | 2 +- rm-community/pom.xml | 2 +- rm-community/rm-community-repo/pom.xml | 2 +- rm-community/rm-community-rest-api-explorer/pom.xml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index ec8b0e8cc3..b6cdea62fd 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.alfresco alfresco-rm pom - 2.7.2.2 + 2.7.2.3-SNAPSHOT Alfresco Records Management @@ -24,7 +24,7 @@ scm:git:https://git.alfresco.com/records-management/records-management.git scm:git:https://git.alfresco.com/records-management/records-management.git https://git.alfresco.com/records-management/records-management - V2.7.2.2 + V2.7.2 diff --git a/rm-automation/pom.xml b/rm-automation/pom.xml index b6dac65c1e..19f3de3b78 100644 --- a/rm-automation/pom.xml +++ b/rm-automation/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm - 2.7.2.2 + 2.7.2.3-SNAPSHOT diff --git a/rm-automation/rm-automation-community-rest-api/pom.xml b/rm-automation/rm-automation-community-rest-api/pom.xml index 6bd773d581..58bcdda709 100644 --- a/rm-automation/rm-automation-community-rest-api/pom.xml +++ b/rm-automation/rm-automation-community-rest-api/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm-automation - 2.7.2.2 + 2.7.2.3-SNAPSHOT diff --git a/rm-community/pom.xml b/rm-community/pom.xml index 0ff8b6e6db..e519d50025 100644 --- a/rm-community/pom.xml +++ b/rm-community/pom.xml @@ -8,7 +8,7 @@ org.alfresco alfresco-rm - 2.7.2.2 + 2.7.2.3-SNAPSHOT diff --git a/rm-community/rm-community-repo/pom.xml b/rm-community/rm-community-repo/pom.xml index fa1faeeea9..11cc990934 100644 --- a/rm-community/rm-community-repo/pom.xml +++ b/rm-community/rm-community-repo/pom.xml @@ -9,7 +9,7 @@ org.alfresco alfresco-rm-community - 2.7.2.2 + 2.7.2.3-SNAPSHOT diff --git a/rm-community/rm-community-rest-api-explorer/pom.xml b/rm-community/rm-community-rest-api-explorer/pom.xml index 8dd9f9a6b5..855dee8109 100644 --- a/rm-community/rm-community-rest-api-explorer/pom.xml +++ b/rm-community/rm-community-rest-api-explorer/pom.xml @@ -7,7 +7,7 @@ org.alfresco alfresco-rm-community - 2.7.2.2 + 2.7.2.3-SNAPSHOT