diff --git a/org.springframework.web/src/main/java/org/springframework/http/HttpInputMessage.java b/org.springframework.web/src/main/java/org/springframework/http/HttpInputMessage.java index 42531fdcb8c..896d10404a1 100644 --- a/org.springframework.web/src/main/java/org/springframework/http/HttpInputMessage.java +++ b/org.springframework.web/src/main/java/org/springframework/http/HttpInputMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,10 +20,10 @@ import java.io.IOException; import java.io.InputStream; /** - * Represents a HTTP output message, consisting of {@linkplain #getHeaders() headers} + * Represents an HTTP output message, consisting of {@linkplain #getHeaders() headers} * and a readable {@linkplain #getBody() body}. * - *
Typically implemented by a HTTP request on the server-side, or a response on the client-side. + *
Typically implemented by an HTTP request on the server-side, or a response on the client-side. * * @author Arjen Poutsma * @since 3.0 diff --git a/org.springframework.web/src/main/java/org/springframework/http/HttpOutputMessage.java b/org.springframework.web/src/main/java/org/springframework/http/HttpOutputMessage.java index cf413f667c8..3dae0074656 100644 --- a/org.springframework.web/src/main/java/org/springframework/http/HttpOutputMessage.java +++ b/org.springframework.web/src/main/java/org/springframework/http/HttpOutputMessage.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,10 +20,10 @@ import java.io.IOException; import java.io.OutputStream; /** - * Represents a HTTP output message, consisting of {@linkplain #getHeaders() headers} + * Represents an HTTP output message, consisting of {@linkplain #getHeaders() headers} * and a writable {@linkplain #getBody() body}. * - *
Typically implemented by a HTTP request on the client-side, or a response on the server-side. + *
Typically implemented by an HTTP request on the client-side, or a response on the server-side. * * @author Arjen Poutsma * @since 3.0 diff --git a/org.springframework.web/src/main/java/org/springframework/http/converter/json/package-info.java b/org.springframework.web/src/main/java/org/springframework/http/converter/json/package-info.java index 6133ac51f13..d1ff5f5cf82 100644 --- a/org.springframework.web/src/main/java/org/springframework/http/converter/json/package-info.java +++ b/org.springframework.web/src/main/java/org/springframework/http/converter/json/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,7 +16,7 @@ /** * - * Provides a HttpMessageConverter implementations for handling JSON. + * Provides an HttpMessageConverter implementations for handling JSON. * */ package org.springframework.http.converter.json; diff --git a/org.springframework.web/src/main/java/org/springframework/http/converter/package-info.java b/org.springframework.web/src/main/java/org/springframework/http/converter/package-info.java index 03d9f00fa9a..dd77f7466f8 100644 --- a/org.springframework.web/src/main/java/org/springframework/http/converter/package-info.java +++ b/org.springframework.web/src/main/java/org/springframework/http/converter/package-info.java @@ -1,7 +1,23 @@ +/* + * Copyright 2002-2010 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /** * - * Provides a HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages. + * Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages. * */ package org.springframework.http.converter; diff --git a/org.springframework.web/src/main/java/org/springframework/http/converter/xml/package-info.java b/org.springframework.web/src/main/java/org/springframework/http/converter/xml/package-info.java index bc9fea39849..9f2b5e8598c 100644 --- a/org.springframework.web/src/main/java/org/springframework/http/converter/xml/package-info.java +++ b/org.springframework.web/src/main/java/org/springframework/http/converter/xml/package-info.java @@ -1,7 +1,23 @@ +/* + * Copyright 2002-2010 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /** * - * Provides a HttpMessageConverter implementations for handling XML. + * Provides an HttpMessageConverter implementations for handling XML. * */ package org.springframework.http.converter.xml; diff --git a/org.springframework.web/src/main/java/org/springframework/web/client/HttpClientErrorException.java b/org.springframework.web/src/main/java/org/springframework/web/client/HttpClientErrorException.java index d7b221549f9..c9bd2c5eaa7 100644 --- a/org.springframework.web/src/main/java/org/springframework/web/client/HttpClientErrorException.java +++ b/org.springframework.web/src/main/java/org/springframework/web/client/HttpClientErrorException.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,7 +19,7 @@ package org.springframework.web.client; import org.springframework.http.HttpStatus; /** - * Exception thrown when a HTTP 4xx is received. + * Exception thrown when an HTTP 4xx is received. * * @author Arjen Poutsma * @since 3.0 diff --git a/org.springframework.web/src/main/java/org/springframework/web/client/HttpServerErrorException.java b/org.springframework.web/src/main/java/org/springframework/web/client/HttpServerErrorException.java index bc2b42eeffb..8733d2590e0 100644 --- a/org.springframework.web/src/main/java/org/springframework/web/client/HttpServerErrorException.java +++ b/org.springframework.web/src/main/java/org/springframework/web/client/HttpServerErrorException.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2009 the original author or authors. + * Copyright 2002-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,7 +19,7 @@ package org.springframework.web.client; import org.springframework.http.HttpStatus; /** - * Exception thrown when a HTTP 5xx is received. + * Exception thrown when an HTTP 5xx is received. * * @author Arjen Poutsma * @since 3.0 diff --git a/org.springframework.web/src/main/java/org/springframework/web/context/support/ServletContextResourceLoader.java b/org.springframework.web/src/main/java/org/springframework/web/context/support/ServletContextResourceLoader.java index a3a4a77286e..2ec2c33d28b 100644 --- a/org.springframework.web/src/main/java/org/springframework/web/context/support/ServletContextResourceLoader.java +++ b/org.springframework.web/src/main/java/org/springframework/web/context/support/ServletContextResourceLoader.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2005 the original author or authors. + * Copyright 2002-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,7 +24,7 @@ import org.springframework.core.io.Resource; /** * ResourceLoader implementation that resolves paths as ServletContext * resources, for use outside a WebApplicationContext (for example, - * in a HttpServletBean or GenericFilterBean subclass). + * in an HttpServletBean or GenericFilterBean subclass). * *
Within a WebApplicationContext, resource paths are automatically * resolved as ServletContext resources by the context implementation.