From eb1b4a9fe352b43d6e0022e73e2150195668778b Mon Sep 17 00:00:00 2001 From: Sebastian Stenzel Date: Fri, 29 Jan 2016 02:09:10 +0100 Subject: [PATCH] updated license header --- .../main/java/org/cryptomator/crypto/engine/Cryptor.java | 2 +- .../org/cryptomator/crypto/engine/FileContentCryptor.java | 2 +- .../cryptomator/crypto/engine/FileContentDecryptor.java | 2 +- .../cryptomator/crypto/engine/FileContentEncryptor.java | 2 +- .../org/cryptomator/crypto/engine/FilenameCryptor.java | 2 +- .../crypto/engine/InvalidPassphraseException.java | 8 ++++++++ .../crypto/engine/impl/CryptoEngineModule.java | 8 ++++++++ .../org/cryptomator/crypto/engine/impl/CryptorImpl.java | 2 +- .../crypto/engine/impl/FileContentCryptorImpl.java | 2 +- .../crypto/engine/impl/FileContentDecryptorImpl.java | 2 +- .../crypto/engine/impl/FileContentEncryptorImpl.java | 2 +- .../crypto/engine/impl/FilenameCryptorImpl.java | 2 +- .../java/org/cryptomator/crypto/engine/impl/Scrypt.java | 2 +- .../filesystem/blockaligned/BlockAlignedFile.java | 2 +- .../filesystem/blockaligned/BlockAlignedFileSystem.java | 2 +- .../blockaligned/BlockAlignedFileSystemFactory.java | 8 ++++++++ .../filesystem/blockaligned/BlockAlignedFolder.java | 2 +- .../filesystem/blockaligned/BlockAlignedReadableFile.java | 2 +- .../filesystem/blockaligned/BlockAlignedWritableFile.java | 2 +- .../cryptomator/filesystem/crypto/CiphertextReader.java | 8 ++++++++ .../cryptomator/filesystem/crypto/CiphertextWriter.java | 8 ++++++++ .../org/cryptomator/filesystem/crypto/CryptoFile.java | 2 +- .../cryptomator/filesystem/crypto/CryptoFileSystem.java | 2 +- .../filesystem/crypto/CryptoFileSystemComponent.java | 8 ++++++++ .../filesystem/crypto/CryptoFileSystemDelegate.java | 8 ++++++++ .../filesystem/crypto/CryptoFileSystemFactory.java | 8 ++++++++ .../filesystem/crypto/CryptoFileSystemModule.java | 8 ++++++++ .../org/cryptomator/filesystem/crypto/CryptoFolder.java | 2 +- .../org/cryptomator/filesystem/crypto/CryptoNode.java | 2 +- .../cryptomator/filesystem/crypto/CryptoReadableFile.java | 2 +- .../cryptomator/filesystem/crypto/CryptoWritableFile.java | 2 +- .../org/cryptomator/filesystem/crypto/Masterkeys.java | 8 ++++++++ .../java/org/cryptomator/crypto/engine/NoCryptor.java | 2 +- .../cryptomator/crypto/engine/NoFileContentCryptor.java | 2 +- .../org/cryptomator/crypto/engine/NoFilenameCryptor.java | 2 +- .../crypto/engine/impl/CryptoEngineTestModule.java | 8 ++++++++ .../cryptomator/crypto/engine/impl/CryptorImplTest.java | 2 +- .../crypto/engine/impl/FileContentDecryptorImplTest.java | 2 +- .../crypto/engine/impl/FileContentEncryptorImplTest.java | 2 +- .../crypto/engine/impl/FilenameCryptorImplTest.java | 2 +- .../blockaligned/BlockAlignedReadableFileTest.java | 2 +- .../blockaligned/BlockAlignedWritableFileTest.java | 2 +- .../crypto/CryptoFileSystemComponentIntegrationTest.java | 8 ++++++++ .../filesystem/crypto/CryptoFileSystemTest.java | 2 +- .../filesystem/crypto/CryptoReadableFileTest.java | 8 ++++++++ .../org/cryptomator/filesystem/crypto/MasterkeysTest.java | 8 ++++++++ .../org/cryptomator/filesystem/inmem/InMemoryFile.java | 2 +- .../cryptomator/filesystem/inmem/InMemoryFileSystem.java | 2 +- .../org/cryptomator/filesystem/inmem/InMemoryFolder.java | 2 +- .../org/cryptomator/filesystem/inmem/InMemoryNode.java | 2 +- .../filesystem/inmem/InMemoryReadableFile.java | 2 +- .../filesystem/inmem/InMemoryWritableFile.java | 2 +- .../filesystem/inmem/InMemoryFileSystemTest.java | 2 +- .../cryptomator/filesystem/inmem/InMemoryFileTest.java | 8 ++++++++ .../filesystem/blacklisting/BlacklistingFile.java | 8 ++++++++ .../filesystem/blacklisting/BlacklistingFileSystem.java | 8 ++++++++ .../blacklisting/BlacklistingFileSystemFactory.java | 8 ++++++++ .../filesystem/blacklisting/BlacklistingFolder.java | 8 ++++++++ .../filesystem/blacklisting/SamePathPredicate.java | 8 ++++++++ .../filesystem/shortening/FilenameShortener.java | 8 ++++++++ .../cryptomator/filesystem/shortening/ShorteningFile.java | 8 ++++++++ .../filesystem/shortening/ShorteningFileSystem.java | 8 ++++++++ .../shortening/ShorteningFileSystemFactory.java | 8 ++++++++ .../filesystem/shortening/ShorteningFolder.java | 8 ++++++++ .../cryptomator/filesystem/shortening/package-info.java | 8 ++++++++ .../blacklisting/BlacklistingFileSystemTest.java | 8 ++++++++ .../filesystem/blacklisting/SamePathPredicateTest.java | 8 ++++++++ .../filesystem/shortening/FilenameShortenerTest.java | 8 ++++++++ .../shortening/ShorteningFileSystemFactoryTest.java | 8 ++++++++ .../filesystem/shortening/ShorteningFileSystemTest.java | 8 ++++++++ .../shortening/ShorteningFileSystemTestComponent.java | 8 ++++++++ .../java/org/cryptomator/filesystem/stats/StatsFile.java | 8 ++++++++ .../org/cryptomator/filesystem/stats/StatsFileSystem.java | 8 ++++++++ .../org/cryptomator/filesystem/stats/StatsFolder.java | 8 ++++++++ .../cryptomator/filesystem/stats/StatsFileSystemTest.java | 8 ++++++++ .../org/cryptomator/filesystem/stats/StatsFileTest.java | 8 ++++++++ .../org/cryptomator/frontend/CommandFailedException.java | 2 +- .../src/main/java/org/cryptomator/frontend/Frontend.java | 8 ++++++++ .../frontend/FrontendCreationFailedException.java | 8 ++++++++ .../java/org/cryptomator/frontend/FrontendFactory.java | 8 ++++++++ .../main/java/org/cryptomator/frontend/package-info.java | 2 +- .../org/cryptomator/frontend/webdav/WebDavComponent.java | 8 ++++++++ .../org/cryptomator/frontend/webdav/WebDavFrontend.java | 8 ++++++++ .../org/cryptomator/frontend/webdav/WebDavServer.java | 8 ++++++++ .../frontend/webdav/mount/AbstractWebDavMount.java | 8 ++++++++ .../frontend/webdav/mount/FallbackWebDavMounter.java | 2 +- .../frontend/webdav/mount/LinuxGvfsWebDavMounter.java | 2 +- .../frontend/webdav/mount/MacOsXWebDavMounter.java | 2 +- .../frontend/webdav/mount/MountStrategies.java | 8 ++++++++ .../cryptomator/frontend/webdav/mount/WebDavMount.java | 2 +- .../cryptomator/frontend/webdav/mount/WebDavMounter.java | 2 +- .../frontend/webdav/mount/WebDavMounterProvider.java | 2 +- .../frontend/webdav/mount/WebDavMounterStrategy.java | 2 +- .../frontend/webdav/mount/WindowsDriveLetters.java | 8 ++++++++ .../frontend/webdav/mount/WindowsWebDavMounter.java | 2 +- .../frontend/webdav/mount/command/CommandResult.java | 2 +- .../frontend/webdav/mount/command/CommandRunner.java | 2 +- .../webdav/mount/command/FutureCommandResult.java | 2 +- .../cryptomator/frontend/webdav/mount/command/Script.java | 2 +- .../org/cryptomator/frontend/webdav/WebDavServerTest.java | 8 ++++++++ main/ui/src/main/java/org/cryptomator/ui/Cryptomator.java | 2 +- .../java/org/cryptomator/ui/CryptomatorComponent.java | 8 ++++++++ .../main/java/org/cryptomator/ui/CryptomatorModule.java | 8 ++++++++ .../src/main/java/org/cryptomator/ui/MainApplication.java | 2 +- .../ui/controllers/AbstractFXMLViewController.java | 8 ++++++++ .../ui/controllers/ChangePasswordController.java | 8 ++++++++ .../cryptomator/ui/controllers/InitializeController.java | 2 +- .../cryptomator/ui/controllers/MacWarningsController.java | 8 ++++++++ .../org/cryptomator/ui/controllers/MainController.java | 2 +- .../org/cryptomator/ui/controllers/UnlockController.java | 2 +- .../cryptomator/ui/controllers/UnlockedController.java | 2 +- .../org/cryptomator/ui/controllers/WelcomeController.java | 2 +- .../org/cryptomator/ui/controls/DirectoryListCell.java | 8 ++++++++ .../org/cryptomator/ui/controls/DraggableListCell.java | 8 ++++++++ .../org/cryptomator/ui/controls/SecPasswordField.java | 2 +- .../cryptomator/ui/logging/ConfigurableFileAppender.java | 8 ++++++++ main/ui/src/main/java/org/cryptomator/ui/model/Vault.java | 8 ++++++++ .../main/java/org/cryptomator/ui/model/VaultFactory.java | 8 ++++++++ .../cryptomator/ui/model/VaultObjectMapperProvider.java | 8 ++++++++ .../main/java/org/cryptomator/ui/settings/Settings.java | 2 +- .../org/cryptomator/ui/settings/SettingsProvider.java | 8 ++++++++ .../org/cryptomator/ui/util/ActiveWindowStyleSupport.java | 8 ++++++++ .../java/org/cryptomator/ui/util/DeferredClosable.java | 2 +- .../main/java/org/cryptomator/ui/util/DeferredCloser.java | 2 +- .../src/main/java/org/cryptomator/ui/util/FXThreads.java | 2 +- .../java/org/cryptomator/ui/util/ListenerRegistry.java | 2 +- .../cryptomator/ui/util/ObservableListOnMainThread.java | 8 ++++++++ .../cryptomator/ui/util/ObservableSetOnMainThread.java | 8 ++++++++ .../java/org/cryptomator/ui/util/SemVerComparator.java | 8 ++++++++ .../org/cryptomator/ui/util/SingleInstanceManager.java | 2 +- .../main/java/org/cryptomator/ui/util/TimeoutTask.java | 2 +- .../main/java/org/cryptomator/ui/util/TrayIconUtil.java | 8 ++++++++ .../test/java/org/cryptomator/ui/MainApplicationTest.java | 8 ++++++++ .../src/test/java/org/cryptomator/ui/model/VaultTest.java | 8 ++++++++ .../java/org/cryptomator/ui/util/DeferredCloserTest.java | 8 ++++++++ .../org/cryptomator/ui/util/ListenerRegistryTest.java | 2 +- .../org/cryptomator/ui/util/SemVerComparatorTest.java | 8 ++++++++ .../cryptomator/ui/util/SingleInstanceManagerTest.java | 2 +- 138 files changed, 614 insertions(+), 70 deletions(-) diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/Cryptor.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/Cryptor.java index b523d6fb5..eaabdc15c 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/Cryptor.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/Cryptor.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentCryptor.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentCryptor.java index 0782bf84d..0d5d2553d 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentCryptor.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentCryptor.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentDecryptor.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentDecryptor.java index 5632b76a3..016e9871e 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentDecryptor.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentDecryptor.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentEncryptor.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentEncryptor.java index e93511326..614941641 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentEncryptor.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FileContentEncryptor.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FilenameCryptor.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FilenameCryptor.java index 23f190049..f12d04cf7 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FilenameCryptor.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/FilenameCryptor.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/InvalidPassphraseException.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/InvalidPassphraseException.java index 049c915da..3518cc150 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/InvalidPassphraseException.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/InvalidPassphraseException.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.crypto.engine; public class InvalidPassphraseException extends CryptoException { diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/CryptoEngineModule.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/CryptoEngineModule.java index 2ded341b7..7c355a358 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/CryptoEngineModule.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/CryptoEngineModule.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.crypto.engine.impl; import java.security.NoSuchAlgorithmException; diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/CryptorImpl.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/CryptorImpl.java index c081628da..fdbd8c362 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/CryptorImpl.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/CryptorImpl.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentCryptorImpl.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentCryptorImpl.java index db444dfdc..362298733 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentCryptorImpl.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentCryptorImpl.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentDecryptorImpl.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentDecryptorImpl.java index f56027187..66bbf1aa5 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentDecryptorImpl.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentDecryptorImpl.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentEncryptorImpl.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentEncryptorImpl.java index a8df1fb45..9af4a4cca 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentEncryptorImpl.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FileContentEncryptorImpl.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FilenameCryptorImpl.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FilenameCryptorImpl.java index 8ebf046b8..3469ac554 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FilenameCryptorImpl.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/FilenameCryptorImpl.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/Scrypt.java b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/Scrypt.java index 31f94a9de..833f27a2f 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/Scrypt.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/crypto/engine/impl/Scrypt.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFile.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFile.java index 1a54d8eb4..dc3fb6797 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFile.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFile.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFileSystem.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFileSystem.java index 9d182b3bb..e703566c9 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFileSystem.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFileSystem.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFileSystemFactory.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFileSystemFactory.java index aec55eb8f..26b27054f 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFileSystemFactory.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFileSystemFactory.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.blockaligned; import javax.inject.Inject; diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFolder.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFolder.java index ca0105e04..14aede9bf 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFolder.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedFolder.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedReadableFile.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedReadableFile.java index cc3298a7a..3267f89b7 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedReadableFile.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedReadableFile.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedWritableFile.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedWritableFile.java index 0c66c5d92..4bb406b79 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedWritableFile.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/blockaligned/BlockAlignedWritableFile.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CiphertextReader.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CiphertextReader.java index b39cc2a3b..675dd3bf4 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CiphertextReader.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CiphertextReader.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.crypto; import java.io.InterruptedIOException; diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CiphertextWriter.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CiphertextWriter.java index 7b2a2e8b6..f325c2acf 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CiphertextWriter.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CiphertextWriter.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.crypto; import java.io.InterruptedIOException; diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFile.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFile.java index 746691b09..fb1cfe803 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFile.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFile.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystem.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystem.java index 92fb95af9..d5617c982 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystem.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystem.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemComponent.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemComponent.java index 4ad66a20a..73e0745a0 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemComponent.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemComponent.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.crypto; import javax.inject.Singleton; diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemDelegate.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemDelegate.java index 36f5d5470..9f3a55f5d 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemDelegate.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemDelegate.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.crypto; public interface CryptoFileSystemDelegate { diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemFactory.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemFactory.java index 91cce0210..72a0a6e10 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemFactory.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemFactory.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.crypto; import java.io.UncheckedIOException; diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemModule.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemModule.java index 9519bb91c..92e971a0a 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemModule.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFileSystemModule.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.crypto; import org.cryptomator.crypto.engine.impl.CryptoEngineModule; diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFolder.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFolder.java index bff548745..151b96195 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFolder.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoFolder.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoNode.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoNode.java index b0edb13ae..384ddab7e 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoNode.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoNode.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoReadableFile.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoReadableFile.java index 0c7ebda76..1cddf06d6 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoReadableFile.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoReadableFile.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoWritableFile.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoWritableFile.java index 127f4eee0..681687d98 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoWritableFile.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/CryptoWritableFile.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/Masterkeys.java b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/Masterkeys.java index 9a60a36f2..033484080 100644 --- a/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/Masterkeys.java +++ b/main/filesystem-crypto/src/main/java/org/cryptomator/filesystem/crypto/Masterkeys.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.crypto; import java.io.IOException; diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoCryptor.java b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoCryptor.java index 8bff8fdb9..38cc2f644 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoCryptor.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoCryptor.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoFileContentCryptor.java b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoFileContentCryptor.java index 3fc43503e..d7a061583 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoFileContentCryptor.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoFileContentCryptor.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoFilenameCryptor.java b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoFilenameCryptor.java index 59eac07a5..0788643bc 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoFilenameCryptor.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/NoFilenameCryptor.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/CryptoEngineTestModule.java b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/CryptoEngineTestModule.java index 983d800ce..8bfdb86ee 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/CryptoEngineTestModule.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/CryptoEngineTestModule.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.crypto.engine.impl; import java.security.SecureRandom; diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/CryptorImplTest.java b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/CryptorImplTest.java index 747df500c..93ede3093 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/CryptorImplTest.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/CryptorImplTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FileContentDecryptorImplTest.java b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FileContentDecryptorImplTest.java index 8abab6a9c..06fa7b579 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FileContentDecryptorImplTest.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FileContentDecryptorImplTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FileContentEncryptorImplTest.java b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FileContentEncryptorImplTest.java index aad5fc7f6..3c36dcb03 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FileContentEncryptorImplTest.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FileContentEncryptorImplTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FilenameCryptorImplTest.java b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FilenameCryptorImplTest.java index 2edf7e536..33f7efad1 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FilenameCryptorImplTest.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/crypto/engine/impl/FilenameCryptorImplTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/blockaligned/BlockAlignedReadableFileTest.java b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/blockaligned/BlockAlignedReadableFileTest.java index ca8544485..779124649 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/blockaligned/BlockAlignedReadableFileTest.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/blockaligned/BlockAlignedReadableFileTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/blockaligned/BlockAlignedWritableFileTest.java b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/blockaligned/BlockAlignedWritableFileTest.java index 7c88ae160..a8b99c1d9 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/blockaligned/BlockAlignedWritableFileTest.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/blockaligned/BlockAlignedWritableFileTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoFileSystemComponentIntegrationTest.java b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoFileSystemComponentIntegrationTest.java index 665a6a981..94acb537f 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoFileSystemComponentIntegrationTest.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoFileSystemComponentIntegrationTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.crypto; import java.io.IOException; diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoFileSystemTest.java b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoFileSystemTest.java index e9fbb0993..cf88835c4 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoFileSystemTest.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoFileSystemTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoReadableFileTest.java b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoReadableFileTest.java index 86ce080c4..fc540e11e 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoReadableFileTest.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/CryptoReadableFileTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.crypto; import java.io.IOException; diff --git a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/MasterkeysTest.java b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/MasterkeysTest.java index 90527797c..56ce761fc 100644 --- a/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/MasterkeysTest.java +++ b/main/filesystem-crypto/src/test/java/org/cryptomator/filesystem/crypto/MasterkeysTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.crypto; import java.nio.ByteBuffer; diff --git a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFile.java b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFile.java index 711d68cea..3aa378980 100644 --- a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFile.java +++ b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFile.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFileSystem.java b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFileSystem.java index 98b285ebb..42ff5dc0b 100644 --- a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFileSystem.java +++ b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFileSystem.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFolder.java b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFolder.java index 95f62fe80..50988d10a 100644 --- a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFolder.java +++ b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryFolder.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryNode.java b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryNode.java index 850cb1cbb..f20d28d88 100644 --- a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryNode.java +++ b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryNode.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryReadableFile.java b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryReadableFile.java index d0921a5f9..808ab7205 100644 --- a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryReadableFile.java +++ b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryReadableFile.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryWritableFile.java b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryWritableFile.java index d16278510..a49a2421f 100644 --- a/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryWritableFile.java +++ b/main/filesystem-inmemory/src/main/java/org/cryptomator/filesystem/inmem/InMemoryWritableFile.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-inmemory/src/test/java/org/cryptomator/filesystem/inmem/InMemoryFileSystemTest.java b/main/filesystem-inmemory/src/test/java/org/cryptomator/filesystem/inmem/InMemoryFileSystemTest.java index af5f6914c..a3aac2f18 100644 --- a/main/filesystem-inmemory/src/test/java/org/cryptomator/filesystem/inmem/InMemoryFileSystemTest.java +++ b/main/filesystem-inmemory/src/test/java/org/cryptomator/filesystem/inmem/InMemoryFileSystemTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/filesystem-inmemory/src/test/java/org/cryptomator/filesystem/inmem/InMemoryFileTest.java b/main/filesystem-inmemory/src/test/java/org/cryptomator/filesystem/inmem/InMemoryFileTest.java index 2304a32ee..f3879fd04 100644 --- a/main/filesystem-inmemory/src/test/java/org/cryptomator/filesystem/inmem/InMemoryFileTest.java +++ b/main/filesystem-inmemory/src/test/java/org/cryptomator/filesystem/inmem/InMemoryFileTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.inmem; import static org.hamcrest.CoreMatchers.is; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFile.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFile.java index 75df69c8e..d96e17044 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFile.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFile.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.blacklisting; import org.cryptomator.filesystem.File; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystem.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystem.java index 23786805a..283965d87 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystem.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystem.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.blacklisting; import java.util.function.Predicate; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystemFactory.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystemFactory.java index 45296b3cf..278dbb68f 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystemFactory.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystemFactory.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.blacklisting; import java.util.function.Predicate; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFolder.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFolder.java index 8632f8f17..c0798ff46 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFolder.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/BlacklistingFolder.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.blacklisting; import java.io.UncheckedIOException; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/SamePathPredicate.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/SamePathPredicate.java index 61746a619..93be2c9ea 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/SamePathPredicate.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/blacklisting/SamePathPredicate.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.blacklisting; import java.util.Objects; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/FilenameShortener.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/FilenameShortener.java index a5277b640..51f3e2be1 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/FilenameShortener.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/FilenameShortener.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.shortening; import static java.nio.charset.StandardCharsets.UTF_8; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFile.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFile.java index f0a1800dc..e87828db5 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFile.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFile.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.shortening; import java.io.UncheckedIOException; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFileSystem.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFileSystem.java index a373b7234..7d6407b0a 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFileSystem.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFileSystem.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.shortening; import org.cryptomator.filesystem.FileSystem; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemFactory.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemFactory.java index 921d46ab0..65073e763 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemFactory.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemFactory.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.shortening; import javax.inject.Inject; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFolder.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFolder.java index 8429dc9a6..dd9d5a64c 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFolder.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/ShorteningFolder.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.shortening; import java.io.UncheckedIOException; diff --git a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/package-info.java b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/package-info.java index 98d1786dc..11b791fd2 100644 --- a/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/package-info.java +++ b/main/filesystem-nameshortening/src/main/java/org/cryptomator/filesystem/shortening/package-info.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ /** * Provides a decoration layer for the {@link org.cryptomator.filesystem Filesystem API}. * {@link org.cryptomator.filesystem.File File} and {@link org.cryptomator.filesystem.Folder Folder} names exceeding a certain length limit will be mapped to shorter equivalents. diff --git a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystemTest.java b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystemTest.java index cdcb6d628..d0e2452b2 100644 --- a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystemTest.java +++ b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/blacklisting/BlacklistingFileSystemTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.blacklisting; import java.io.IOException; diff --git a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/blacklisting/SamePathPredicateTest.java b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/blacklisting/SamePathPredicateTest.java index d83dbe5d6..b4171d108 100644 --- a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/blacklisting/SamePathPredicateTest.java +++ b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/blacklisting/SamePathPredicateTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.blacklisting; import org.cryptomator.filesystem.File; diff --git a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/FilenameShortenerTest.java b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/FilenameShortenerTest.java index ee941f26d..76d4c5b6b 100644 --- a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/FilenameShortenerTest.java +++ b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/FilenameShortenerTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.shortening; import java.io.UncheckedIOException; diff --git a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemFactoryTest.java b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemFactoryTest.java index c191a5bc6..fc3694b86 100644 --- a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemFactoryTest.java +++ b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemFactoryTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.shortening; import java.nio.ByteBuffer; diff --git a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemTest.java b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemTest.java index c91485744..3ccc6281b 100644 --- a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemTest.java +++ b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.shortening; import java.io.UncheckedIOException; diff --git a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemTestComponent.java b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemTestComponent.java index 4c053aa62..89a36026f 100644 --- a/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemTestComponent.java +++ b/main/filesystem-nameshortening/src/test/java/org/cryptomator/filesystem/shortening/ShorteningFileSystemTestComponent.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.shortening; import javax.inject.Singleton; diff --git a/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFile.java b/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFile.java index 4f334ea5c..fc028f3f0 100644 --- a/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFile.java +++ b/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFile.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.stats; import java.io.UncheckedIOException; diff --git a/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFileSystem.java b/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFileSystem.java index d295f9abe..991a3da05 100644 --- a/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFileSystem.java +++ b/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFileSystem.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.stats; import java.util.concurrent.atomic.LongAdder; diff --git a/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFolder.java b/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFolder.java index f04de3322..e3882eada 100644 --- a/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFolder.java +++ b/main/filesystem-stats/src/main/java/org/cryptomator/filesystem/stats/StatsFolder.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.stats; import java.util.function.Consumer; diff --git a/main/filesystem-stats/src/test/java/org/cryptomator/filesystem/stats/StatsFileSystemTest.java b/main/filesystem-stats/src/test/java/org/cryptomator/filesystem/stats/StatsFileSystemTest.java index dfcfb378f..5728bdfb8 100644 --- a/main/filesystem-stats/src/test/java/org/cryptomator/filesystem/stats/StatsFileSystemTest.java +++ b/main/filesystem-stats/src/test/java/org/cryptomator/filesystem/stats/StatsFileSystemTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.stats; import java.nio.ByteBuffer; diff --git a/main/filesystem-stats/src/test/java/org/cryptomator/filesystem/stats/StatsFileTest.java b/main/filesystem-stats/src/test/java/org/cryptomator/filesystem/stats/StatsFileTest.java index df3ee5573..564ad90e7 100644 --- a/main/filesystem-stats/src/test/java/org/cryptomator/filesystem/stats/StatsFileTest.java +++ b/main/filesystem-stats/src/test/java/org/cryptomator/filesystem/stats/StatsFileTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.filesystem.stats; import java.nio.ByteBuffer; diff --git a/main/frontend-api/src/main/java/org/cryptomator/frontend/CommandFailedException.java b/main/frontend-api/src/main/java/org/cryptomator/frontend/CommandFailedException.java index 635d1fe8a..956f901f5 100644 --- a/main/frontend-api/src/main/java/org/cryptomator/frontend/CommandFailedException.java +++ b/main/frontend-api/src/main/java/org/cryptomator/frontend/CommandFailedException.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2016 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-api/src/main/java/org/cryptomator/frontend/Frontend.java b/main/frontend-api/src/main/java/org/cryptomator/frontend/Frontend.java index 6ee3b4770..901257700 100644 --- a/main/frontend-api/src/main/java/org/cryptomator/frontend/Frontend.java +++ b/main/frontend-api/src/main/java/org/cryptomator/frontend/Frontend.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.frontend; import java.util.Map; diff --git a/main/frontend-api/src/main/java/org/cryptomator/frontend/FrontendCreationFailedException.java b/main/frontend-api/src/main/java/org/cryptomator/frontend/FrontendCreationFailedException.java index b16a959bf..5bcb1442b 100644 --- a/main/frontend-api/src/main/java/org/cryptomator/frontend/FrontendCreationFailedException.java +++ b/main/frontend-api/src/main/java/org/cryptomator/frontend/FrontendCreationFailedException.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.frontend; public class FrontendCreationFailedException extends Exception { diff --git a/main/frontend-api/src/main/java/org/cryptomator/frontend/FrontendFactory.java b/main/frontend-api/src/main/java/org/cryptomator/frontend/FrontendFactory.java index ba5aa1bbe..9401355d0 100644 --- a/main/frontend-api/src/main/java/org/cryptomator/frontend/FrontendFactory.java +++ b/main/frontend-api/src/main/java/org/cryptomator/frontend/FrontendFactory.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.frontend; import org.cryptomator.filesystem.Folder; diff --git a/main/frontend-api/src/main/java/org/cryptomator/frontend/package-info.java b/main/frontend-api/src/main/java/org/cryptomator/frontend/package-info.java index 5115d8e04..adb129c5c 100644 --- a/main/frontend-api/src/main/java/org/cryptomator/frontend/package-info.java +++ b/main/frontend-api/src/main/java/org/cryptomator/frontend/package-info.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2015 Sebastian Stenzel and others. + * Copyright (c) 2015, 2016 Sebastian Stenzel and others. * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavComponent.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavComponent.java index 0dcb931e0..9f6c5dbff 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavComponent.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavComponent.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.frontend.webdav; import javax.inject.Singleton; diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavFrontend.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavFrontend.java index fdb82f195..8e7c35d77 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavFrontend.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavFrontend.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.frontend.webdav; import java.net.URI; diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavServer.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavServer.java index 2c5d736a6..6839e7506 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavServer.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WebDavServer.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.frontend.webdav; import java.net.URI; diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/AbstractWebDavMount.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/AbstractWebDavMount.java index 061bd100f..6bc8c9612 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/AbstractWebDavMount.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/AbstractWebDavMount.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.frontend.webdav.mount; abstract class AbstractWebDavMount implements WebDavMount { diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/FallbackWebDavMounter.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/FallbackWebDavMounter.java index 711faa7c1..7d83f10af 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/FallbackWebDavMounter.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/FallbackWebDavMounter.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Markus Kreusch + * Copyright (c) 2014, 2016 Markus Kreusch * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/LinuxGvfsWebDavMounter.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/LinuxGvfsWebDavMounter.java index f0c87be68..1feab0d2d 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/LinuxGvfsWebDavMounter.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/LinuxGvfsWebDavMounter.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel, Markus Kreusch + * Copyright (c) 2014, 2016 Sebastian Stenzel, Markus Kreusch * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/MacOsXWebDavMounter.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/MacOsXWebDavMounter.java index ba7bc1fe3..964b7faa1 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/MacOsXWebDavMounter.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/MacOsXWebDavMounter.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel, Markus Kreusch + * Copyright (c) 2014, 2016 Sebastian Stenzel, Markus Kreusch * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/MountStrategies.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/MountStrategies.java index 0c0d74956..edb5645fa 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/MountStrategies.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/MountStrategies.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.frontend.webdav.mount; import static java.util.Arrays.asList; diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMount.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMount.java index b05c82c2b..cd00f651f 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMount.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMount.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Markus Kreusch + * Copyright (c) 2014, 2016 Markus Kreusch * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounter.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounter.java index 25afbba0f..4c2bace9a 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounter.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounter.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2016 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounterProvider.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounterProvider.java index be27b5347..ae5341f9d 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounterProvider.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounterProvider.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2016 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounterStrategy.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounterStrategy.java index 1e129a14a..99ec00162 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounterStrategy.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WebDavMounterStrategy.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Markus Kreusch + * Copyright (c) 2014, 2016 Markus Kreusch * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WindowsDriveLetters.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WindowsDriveLetters.java index 41247fe9d..10692e0da 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WindowsDriveLetters.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WindowsDriveLetters.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.frontend.webdav.mount; import static java.util.stream.Collectors.toSet; diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WindowsWebDavMounter.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WindowsWebDavMounter.java index f9b1b7acc..9279ab741 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WindowsWebDavMounter.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/WindowsWebDavMounter.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel, Markus Kreusch + * Copyright (c) 2014, 2016 Sebastian Stenzel, Markus Kreusch * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/CommandResult.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/CommandResult.java index 0af5412b8..a020f830e 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/CommandResult.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/CommandResult.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Markus Kreusch + * Copyright (c) 2014, 2016 Markus Kreusch * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/CommandRunner.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/CommandRunner.java index d551cf758..0184358c6 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/CommandRunner.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/CommandRunner.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Markus Kreusch + * Copyright (c) 2014, 2016 Markus Kreusch * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/FutureCommandResult.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/FutureCommandResult.java index a624f94cd..158b0f19a 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/FutureCommandResult.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/FutureCommandResult.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Markus Kreusch + * Copyright (c) 2014, 2016 Markus Kreusch * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/Script.java b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/Script.java index 4192358d8..3a14e822c 100644 --- a/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/Script.java +++ b/main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/mount/command/Script.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Markus Kreusch + * Copyright (c) 2014, 2016 Markus Kreusch * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/frontend-webdav/src/test/java/org/cryptomator/frontend/webdav/WebDavServerTest.java b/main/frontend-webdav/src/test/java/org/cryptomator/frontend/webdav/WebDavServerTest.java index 9287ea057..0904e3d19 100644 --- a/main/frontend-webdav/src/test/java/org/cryptomator/frontend/webdav/WebDavServerTest.java +++ b/main/frontend-webdav/src/test/java/org/cryptomator/frontend/webdav/WebDavServerTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.frontend.webdav; import static org.hamcrest.collection.IsArrayContaining.hasItemInArray; diff --git a/main/ui/src/main/java/org/cryptomator/ui/Cryptomator.java b/main/ui/src/main/java/org/cryptomator/ui/Cryptomator.java index 27b3dbf68..82807dfe4 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/Cryptomator.java +++ b/main/ui/src/main/java/org/cryptomator/ui/Cryptomator.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 cryptomator.org + * Copyright (c) 2014, 2015 cryptomator.org * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/CryptomatorComponent.java b/main/ui/src/main/java/org/cryptomator/ui/CryptomatorComponent.java index 9dd36f9b3..0eef1238f 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/CryptomatorComponent.java +++ b/main/ui/src/main/java/org/cryptomator/ui/CryptomatorComponent.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui; import java.util.concurrent.ExecutorService; diff --git a/main/ui/src/main/java/org/cryptomator/ui/CryptomatorModule.java b/main/ui/src/main/java/org/cryptomator/ui/CryptomatorModule.java index 6afe035cb..a5cb957de 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/CryptomatorModule.java +++ b/main/ui/src/main/java/org/cryptomator/ui/CryptomatorModule.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui; import java.util.Comparator; diff --git a/main/ui/src/main/java/org/cryptomator/ui/MainApplication.java b/main/ui/src/main/java/org/cryptomator/ui/MainApplication.java index 8fee13e4b..d8c7f17ff 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/MainApplication.java +++ b/main/ui/src/main/java/org/cryptomator/ui/MainApplication.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2015 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/controllers/AbstractFXMLViewController.java b/main/ui/src/main/java/org/cryptomator/ui/controllers/AbstractFXMLViewController.java index 326cc42bf..d74c64610 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controllers/AbstractFXMLViewController.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controllers/AbstractFXMLViewController.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.controllers; import java.io.IOException; diff --git a/main/ui/src/main/java/org/cryptomator/ui/controllers/ChangePasswordController.java b/main/ui/src/main/java/org/cryptomator/ui/controllers/ChangePasswordController.java index f07cae3ae..6fb201da1 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controllers/ChangePasswordController.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controllers/ChangePasswordController.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.controllers; import java.io.IOException; diff --git a/main/ui/src/main/java/org/cryptomator/ui/controllers/InitializeController.java b/main/ui/src/main/java/org/cryptomator/ui/controllers/InitializeController.java index df135ce0c..8b3bd67db 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controllers/InitializeController.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controllers/InitializeController.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2016 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/controllers/MacWarningsController.java b/main/ui/src/main/java/org/cryptomator/ui/controllers/MacWarningsController.java index 39ba7cb32..6af12e497 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controllers/MacWarningsController.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controllers/MacWarningsController.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.controllers; import java.net.URL; diff --git a/main/ui/src/main/java/org/cryptomator/ui/controllers/MainController.java b/main/ui/src/main/java/org/cryptomator/ui/controllers/MainController.java index 369a7c497..0e81f23cd 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controllers/MainController.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controllers/MainController.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2015 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/controllers/UnlockController.java b/main/ui/src/main/java/org/cryptomator/ui/controllers/UnlockController.java index fa4a7acef..690fc728f 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controllers/UnlockController.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controllers/UnlockController.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2016 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/controllers/UnlockedController.java b/main/ui/src/main/java/org/cryptomator/ui/controllers/UnlockedController.java index fdb7507c5..8b6bbf0f6 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controllers/UnlockedController.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controllers/UnlockedController.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2016 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/controllers/WelcomeController.java b/main/ui/src/main/java/org/cryptomator/ui/controllers/WelcomeController.java index 4fd577e78..9d969682a 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controllers/WelcomeController.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controllers/WelcomeController.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2016 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/controls/DirectoryListCell.java b/main/ui/src/main/java/org/cryptomator/ui/controls/DirectoryListCell.java index 37e8d3af1..86ad0f68a 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controls/DirectoryListCell.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controls/DirectoryListCell.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.controls; import javafx.beans.value.ChangeListener; diff --git a/main/ui/src/main/java/org/cryptomator/ui/controls/DraggableListCell.java b/main/ui/src/main/java/org/cryptomator/ui/controls/DraggableListCell.java index 19468dc96..6ab34a3b1 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controls/DraggableListCell.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controls/DraggableListCell.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.controls; import java.util.ArrayList; diff --git a/main/ui/src/main/java/org/cryptomator/ui/controls/SecPasswordField.java b/main/ui/src/main/java/org/cryptomator/ui/controls/SecPasswordField.java index 4615c384f..546c9bae6 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/controls/SecPasswordField.java +++ b/main/ui/src/main/java/org/cryptomator/ui/controls/SecPasswordField.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2015 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/logging/ConfigurableFileAppender.java b/main/ui/src/main/java/org/cryptomator/ui/logging/ConfigurableFileAppender.java index e3c67e824..7354fb544 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/logging/ConfigurableFileAppender.java +++ b/main/ui/src/main/java/org/cryptomator/ui/logging/ConfigurableFileAppender.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.logging; import java.io.IOException; diff --git a/main/ui/src/main/java/org/cryptomator/ui/model/Vault.java b/main/ui/src/main/java/org/cryptomator/ui/model/Vault.java index 8c555737b..e9c7a6145 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/model/Vault.java +++ b/main/ui/src/main/java/org/cryptomator/ui/model/Vault.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.model; import java.io.IOException; diff --git a/main/ui/src/main/java/org/cryptomator/ui/model/VaultFactory.java b/main/ui/src/main/java/org/cryptomator/ui/model/VaultFactory.java index 9f050b02f..b413aabac 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/model/VaultFactory.java +++ b/main/ui/src/main/java/org/cryptomator/ui/model/VaultFactory.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.model; import java.nio.file.Path; diff --git a/main/ui/src/main/java/org/cryptomator/ui/model/VaultObjectMapperProvider.java b/main/ui/src/main/java/org/cryptomator/ui/model/VaultObjectMapperProvider.java index 8dee1c905..61e2e1830 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/model/VaultObjectMapperProvider.java +++ b/main/ui/src/main/java/org/cryptomator/ui/model/VaultObjectMapperProvider.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.model; import java.io.IOException; diff --git a/main/ui/src/main/java/org/cryptomator/ui/settings/Settings.java b/main/ui/src/main/java/org/cryptomator/ui/settings/Settings.java index 6215e666e..abb51a421 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/settings/Settings.java +++ b/main/ui/src/main/java/org/cryptomator/ui/settings/Settings.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2015 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/settings/SettingsProvider.java b/main/ui/src/main/java/org/cryptomator/ui/settings/SettingsProvider.java index 48f0cf7dc..565c5385e 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/settings/SettingsProvider.java +++ b/main/ui/src/main/java/org/cryptomator/ui/settings/SettingsProvider.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.settings; import java.io.IOException; diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/ActiveWindowStyleSupport.java b/main/ui/src/main/java/org/cryptomator/ui/util/ActiveWindowStyleSupport.java index 9eb6503df..769e951e6 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/ActiveWindowStyleSupport.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/ActiveWindowStyleSupport.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.util; import javafx.beans.value.ChangeListener; diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/DeferredClosable.java b/main/ui/src/main/java/org/cryptomator/ui/util/DeferredClosable.java index 55f3f516a..fe8dea291 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/DeferredClosable.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/DeferredClosable.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 cryptomator.org + * Copyright (c) 2014, 2015 cryptomator.org * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/DeferredCloser.java b/main/ui/src/main/java/org/cryptomator/ui/util/DeferredCloser.java index f9fab2c8b..d1be73c7e 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/DeferredCloser.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/DeferredCloser.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 cryptomator.org + * Copyright (c) 2014, 2015 cryptomator.org * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/FXThreads.java b/main/ui/src/main/java/org/cryptomator/ui/util/FXThreads.java index 312e07ad4..81a73c44d 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/FXThreads.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/FXThreads.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 Sebastian Stenzel + * Copyright (c) 2014, 2015 Sebastian Stenzel * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/ListenerRegistry.java b/main/ui/src/main/java/org/cryptomator/ui/util/ListenerRegistry.java index 2e105e95b..7460c1205 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/ListenerRegistry.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/ListenerRegistry.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 cryptomator.org + * Copyright (c) 2014, 2015 cryptomator.org * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/ObservableListOnMainThread.java b/main/ui/src/main/java/org/cryptomator/ui/util/ObservableListOnMainThread.java index e9b60f8d2..45d6aa375 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/ObservableListOnMainThread.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/ObservableListOnMainThread.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.util; import java.util.Collection; diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/ObservableSetOnMainThread.java b/main/ui/src/main/java/org/cryptomator/ui/util/ObservableSetOnMainThread.java index d49fb058b..1d65c458e 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/ObservableSetOnMainThread.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/ObservableSetOnMainThread.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.util; import java.util.Collection; diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/SemVerComparator.java b/main/ui/src/main/java/org/cryptomator/ui/util/SemVerComparator.java index bf4a52791..b9031b471 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/SemVerComparator.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/SemVerComparator.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.util; import java.util.Comparator; diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/SingleInstanceManager.java b/main/ui/src/main/java/org/cryptomator/ui/util/SingleInstanceManager.java index a8c3fd0c7..db54d9fd7 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/SingleInstanceManager.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/SingleInstanceManager.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 cryptomator.org + * Copyright (c) 2014, 2015 cryptomator.org * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/TimeoutTask.java b/main/ui/src/main/java/org/cryptomator/ui/util/TimeoutTask.java index da153f906..cb5c9423f 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/TimeoutTask.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/TimeoutTask.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 cryptomator.org + * Copyright (c) 2014, 2015 cryptomator.org * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/main/java/org/cryptomator/ui/util/TrayIconUtil.java b/main/ui/src/main/java/org/cryptomator/ui/util/TrayIconUtil.java index 9bdf7e85d..1bd308a05 100644 --- a/main/ui/src/main/java/org/cryptomator/ui/util/TrayIconUtil.java +++ b/main/ui/src/main/java/org/cryptomator/ui/util/TrayIconUtil.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.util; import java.awt.AWTException; diff --git a/main/ui/src/test/java/org/cryptomator/ui/MainApplicationTest.java b/main/ui/src/test/java/org/cryptomator/ui/MainApplicationTest.java index 62a2faba3..58749a4bf 100644 --- a/main/ui/src/test/java/org/cryptomator/ui/MainApplicationTest.java +++ b/main/ui/src/test/java/org/cryptomator/ui/MainApplicationTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui; import org.junit.Test; diff --git a/main/ui/src/test/java/org/cryptomator/ui/model/VaultTest.java b/main/ui/src/test/java/org/cryptomator/ui/model/VaultTest.java index e27fbdbd6..02860edc2 100644 --- a/main/ui/src/test/java/org/cryptomator/ui/model/VaultTest.java +++ b/main/ui/src/test/java/org/cryptomator/ui/model/VaultTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.model; import static org.junit.Assert.assertEquals; diff --git a/main/ui/src/test/java/org/cryptomator/ui/util/DeferredCloserTest.java b/main/ui/src/test/java/org/cryptomator/ui/util/DeferredCloserTest.java index a876fbee8..aa3be4bef 100644 --- a/main/ui/src/test/java/org/cryptomator/ui/util/DeferredCloserTest.java +++ b/main/ui/src/test/java/org/cryptomator/ui/util/DeferredCloserTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.util; import static org.junit.Assert.*; diff --git a/main/ui/src/test/java/org/cryptomator/ui/util/ListenerRegistryTest.java b/main/ui/src/test/java/org/cryptomator/ui/util/ListenerRegistryTest.java index 8b588ab1f..da19d1901 100644 --- a/main/ui/src/test/java/org/cryptomator/ui/util/ListenerRegistryTest.java +++ b/main/ui/src/test/java/org/cryptomator/ui/util/ListenerRegistryTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 cryptomator.org + * Copyright (c) 2014, 2015 cryptomator.org * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. * diff --git a/main/ui/src/test/java/org/cryptomator/ui/util/SemVerComparatorTest.java b/main/ui/src/test/java/org/cryptomator/ui/util/SemVerComparatorTest.java index 9547b221d..a505d0af4 100644 --- a/main/ui/src/test/java/org/cryptomator/ui/util/SemVerComparatorTest.java +++ b/main/ui/src/test/java/org/cryptomator/ui/util/SemVerComparatorTest.java @@ -1,3 +1,11 @@ +/******************************************************************************* + * Copyright (c) 2016 Sebastian Stenzel and others. + * This file is licensed under the terms of the MIT license. + * See the LICENSE.txt file for more info. + * + * Contributors: + * Sebastian Stenzel - initial API and implementation + *******************************************************************************/ package org.cryptomator.ui.util; import java.util.Comparator; diff --git a/main/ui/src/test/java/org/cryptomator/ui/util/SingleInstanceManagerTest.java b/main/ui/src/test/java/org/cryptomator/ui/util/SingleInstanceManagerTest.java index e0c050d1c..b07cb9be0 100644 --- a/main/ui/src/test/java/org/cryptomator/ui/util/SingleInstanceManagerTest.java +++ b/main/ui/src/test/java/org/cryptomator/ui/util/SingleInstanceManagerTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2014 cryptomator.org + * Copyright (c) 2014, 2015 cryptomator.org * This file is licensed under the terms of the MIT license. * See the LICENSE.txt file for more info. *