浏览代码

updated copyrights

Sebastian Stenzel 9 年之前
父节点
当前提交
9abc0aab83
共有 18 个文件被更改,包括 53 次插入13 次删除
  1. 8 0
      main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WindowsCompatibilityServlet.java
  2. 8 0
      main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/filters/LoopbackFilter.java
  3. 8 0
      main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/jackrabbitservlet/DavFileWithRange.java
  4. 8 0
      main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/jackrabbitservlet/DavFileWithUnsatisfiableRange.java
  5. 8 0
      main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/jackrabbitservlet/NullInputContext.java
  6. 1 1
      main/ui/src/main/java/org/cryptomator/ui/Cryptomator.java
  7. 1 1
      main/ui/src/main/java/org/cryptomator/ui/MainApplication.java
  8. 1 1
      main/ui/src/main/java/org/cryptomator/ui/controllers/MainController.java
  9. 1 1
      main/ui/src/main/java/org/cryptomator/ui/controls/SecPasswordField.java
  10. 1 1
      main/ui/src/main/java/org/cryptomator/ui/settings/Settings.java
  11. 1 1
      main/ui/src/main/java/org/cryptomator/ui/util/DeferredClosable.java
  12. 1 1
      main/ui/src/main/java/org/cryptomator/ui/util/DeferredCloser.java
  13. 1 1
      main/ui/src/main/java/org/cryptomator/ui/util/FXThreads.java
  14. 1 1
      main/ui/src/main/java/org/cryptomator/ui/util/ListenerRegistry.java
  15. 1 1
      main/ui/src/main/java/org/cryptomator/ui/util/SingleInstanceManager.java
  16. 1 1
      main/ui/src/main/java/org/cryptomator/ui/util/TimeoutTask.java
  17. 1 1
      main/ui/src/test/java/org/cryptomator/ui/util/ListenerRegistryTest.java
  18. 1 1
      main/ui/src/test/java/org/cryptomator/ui/util/SingleInstanceManagerTest.java

+ 8 - 0
main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/WindowsCompatibilityServlet.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.io.IOException;

+ 8 - 0
main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/filters/LoopbackFilter.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.filters;
 
 import java.io.IOException;

+ 8 - 0
main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/jackrabbitservlet/DavFileWithRange.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.jackrabbitservlet;
 
 import java.io.IOException;

+ 8 - 0
main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/jackrabbitservlet/DavFileWithUnsatisfiableRange.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.jackrabbitservlet;
 
 import java.io.IOException;

+ 8 - 0
main/frontend-webdav/src/main/java/org/cryptomator/frontend/webdav/jackrabbitservlet/NullInputContext.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.jackrabbitservlet;
 
 import java.io.ByteArrayInputStream;

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/Cryptomator.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 cryptomator.org
+ * Copyright (c) 2014, 2016 cryptomator.org
  * This file is licensed under the terms of the MIT license.
  * See the LICENSE.txt file for more info.
  * 

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/MainApplication.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 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.
  * 

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/controllers/MainController.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 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.
  * 

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/controls/SecPasswordField.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 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.
  * 

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/settings/Settings.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 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.
  * 

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/util/DeferredClosable.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 cryptomator.org
+ * Copyright (c) 2014, 2016 cryptomator.org
  * This file is licensed under the terms of the MIT license.
  * See the LICENSE.txt file for more info.
  * 

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/util/DeferredCloser.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 cryptomator.org
+ * Copyright (c) 2014, 2016 cryptomator.org
  * This file is licensed under the terms of the MIT license.
  * See the LICENSE.txt file for more info.
  * 

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/util/FXThreads.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 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.
  * 

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/util/ListenerRegistry.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 cryptomator.org
+ * Copyright (c) 2014, 2016 cryptomator.org
  * This file is licensed under the terms of the MIT license.
  * See the LICENSE.txt file for more info.
  * 

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/util/SingleInstanceManager.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 cryptomator.org
+ * Copyright (c) 2014, 2016 cryptomator.org
  * This file is licensed under the terms of the MIT license.
  * See the LICENSE.txt file for more info.
  * 

+ 1 - 1
main/ui/src/main/java/org/cryptomator/ui/util/TimeoutTask.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 cryptomator.org
+ * Copyright (c) 2014, 2016 cryptomator.org
  * This file is licensed under the terms of the MIT license.
  * See the LICENSE.txt file for more info.
  * 

+ 1 - 1
main/ui/src/test/java/org/cryptomator/ui/util/ListenerRegistryTest.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 cryptomator.org
+ * Copyright (c) 2014, 2016 cryptomator.org
  * This file is licensed under the terms of the MIT license.
  * See the LICENSE.txt file for more info.
  * 

+ 1 - 1
main/ui/src/test/java/org/cryptomator/ui/util/SingleInstanceManagerTest.java

@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2014, 2015 cryptomator.org
+ * Copyright (c) 2014, 2016 cryptomator.org
  * This file is licensed under the terms of the MIT license.
  * See the LICENSE.txt file for more info.
  *