You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2017/04/25 06:26:48 UTC

svn commit: r1792569 - in /felix/trunk/http/api/src/main/java/org/osgi/service/http: runtime/dto/ whiteboard/

Author: cziegeler
Date: Tue Apr 25 06:26:48 2017
New Revision: 1792569

URL: http://svn.apache.org/viewvc?rev=1792569&view=rev
Log:
FELIX-5296 : Implement Http Whiteboard Service Updates (RFC 223)

Modified:
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/BaseServletDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/DTOConstants.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ErrorPageDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedErrorPageDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedFilterDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedListenerDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedPreprocessorDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedResourceDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedServletContextDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedServletDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FilterDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ListenerDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/PreprocessorDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/RequestInfoDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ResourceDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/RuntimeDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ServletContextDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ServletDTO.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/package-info.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/HttpWhiteboardConstants.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/Preprocessor.java
    felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/package-info.java

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/BaseServletDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/BaseServletDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/BaseServletDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/BaseServletDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -17,6 +17,7 @@
 package org.osgi.service.http.runtime.dto;
 
 import java.util.Map;
+
 import org.osgi.dto.DTO;
 
 /**
@@ -27,7 +28,9 @@ import org.osgi.dto.DTO;
  */
 public abstract class BaseServletDTO extends DTO {
 	/**
-	 * The name of the servlet. This value is never {@code null}.
+	 * The name of the servlet. This value is never {@code null}, unless this
+	 * object represents a {@code FailedServletDTO} or a
+	 * {@code FailedErrorPageDTO} where the value might be {@code null}.
 	 */
 	public String				name;
 
@@ -35,7 +38,8 @@ public abstract class BaseServletDTO ext
 	 * The information string from the servlet.
 	 * <p>
 	 * This is the value returned by the {@code Servlet.getServletInfo()}
-	 * method.
+	 * method. For a {@code FailedServletDTO} or a {@code FailedErrorPageDTO}
+	 * this is always {@code null}.
 	 */
 	public String				servletInfo;
 

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/DTOConstants.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/DTOConstants.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/DTOConstants.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/DTOConstants.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2015). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ErrorPageDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ErrorPageDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ErrorPageDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ErrorPageDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedErrorPageDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedErrorPageDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedErrorPageDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedErrorPageDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedFilterDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedFilterDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedFilterDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedFilterDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedListenerDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedListenerDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedListenerDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedListenerDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedPreprocessorDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedPreprocessorDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedPreprocessorDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedPreprocessorDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2016). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedResourceDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedResourceDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedResourceDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedResourceDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedServletContextDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedServletContextDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedServletContextDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedServletContextDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedServletDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedServletDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedServletDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FailedServletDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -21,8 +21,8 @@ package org.osgi.service.http.runtime.dt
  * being used by a servlet context due to a problem.
  * <p>
  * As the servlet represented by this DTO is not used due to a failure, the
- * field {@link FailedErrorPageDTO#servletContextId} always returns {@code 0}
- * and does not point to an existing servlet context.
+ * field {@link FailedServletDTO#servletContextId} always returns {@code 0} and
+ * does not point to an existing servlet context.
  * 
  * @NotThreadSafe
  * @author $Id$

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FilterDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FilterDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FilterDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/FilterDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -17,6 +17,7 @@
 package org.osgi.service.http.runtime.dto;
 
 import java.util.Map;
+
 import org.osgi.dto.DTO;
 
 /**

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ListenerDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ListenerDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ListenerDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ListenerDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/PreprocessorDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/PreprocessorDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/PreprocessorDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/PreprocessorDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2016). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/RequestInfoDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/RequestInfoDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/RequestInfoDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/RequestInfoDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ResourceDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ResourceDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ResourceDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ResourceDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2014). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/RuntimeDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/RuntimeDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/RuntimeDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/RuntimeDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2016). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ServletContextDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ServletContextDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ServletContextDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ServletContextDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2015). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -17,6 +17,7 @@
 package org.osgi.service.http.runtime.dto;
 
 import java.util.Map;
+
 import org.osgi.dto.DTO;
 
 /**

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ServletDTO.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ServletDTO.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ServletDTO.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/ServletDTO.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2016). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -27,10 +27,10 @@ package org.osgi.service.http.runtime.dt
 public class ServletDTO extends BaseServletDTO {
 	/**
 	 * The request mappings for the servlet.
-	 * 
 	 * <p>
 	 * The specified patterns are used to determine whether a request is mapped
-	 * to the servlet. This array is never empty.
+	 * to the servlet. This array is never {@code null}. It might be empty for
+	 * named servlets.
 	 */
 	public String[]				patterns;
 

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/package-info.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/package-info.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/package-info.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/runtime/dto/package-info.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2010, 2016). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2010, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/HttpWhiteboardConstants.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/HttpWhiteboardConstants.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/HttpWhiteboardConstants.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/HttpWhiteboardConstants.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2012, 2016). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2012, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/Preprocessor.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/Preprocessor.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/Preprocessor.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/Preprocessor.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2000, 2016). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2000, 2017). All Rights Reserved.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.

Modified: felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/package-info.java
URL: http://svn.apache.org/viewvc/felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/package-info.java?rev=1792569&r1=1792568&r2=1792569&view=diff
==============================================================================
--- felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/package-info.java (original)
+++ felix/trunk/http/api/src/main/java/org/osgi/service/http/whiteboard/package-info.java Tue Apr 25 06:26:48 2017
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) OSGi Alliance (2010, 2016). All Rights Reserved.
+ * Copyright (c) OSGi Alliance (2010, 2017). All Rights Reserved.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.