RESOLVED - SPR-5523: Replace all 'package.html' artifacts with 'package-info.java'
* Applied patch submitted by Carlos Zuniga
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Contains an abstraction over client-side HTTP. This package
|
||||
* contains the <code>ClientHttpRequest</code> and
|
||||
* <code>ClientHttpResponse</code>, as well as a basic implementation of these
|
||||
* interfaces.
|
||||
*
|
||||
*/
|
||||
package org.springframework.http.client;
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Contains an abstraction over client-side HTTP. This package
|
||||
contains the <code>ClientHttpRequest</code> and
|
||||
<code>ClientHttpResponse</code>, as well as a basic implementation of these
|
||||
interfaces.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* This package provides generic HTTP support classes,
|
||||
* to be used by higher-level classes like RestTemplate.
|
||||
*
|
||||
*/
|
||||
package org.springframework.http.client.support;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
This package provides generic HTTP support classes,
|
||||
to be used by higher-level classes like RestTemplate.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Provides a HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.
|
||||
*
|
||||
*/
|
||||
package org.springframework.http.converter;
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Provides a HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Provides a HttpMessageConverter implementations for handling XML.
|
||||
*
|
||||
*/
|
||||
package org.springframework.http.converter.xml;
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Provides a HttpMessageConverter implementations for handling XML.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Contains a basic abstraction over client/server-side HTTP. This package contains
|
||||
* the <code>HttpInputMessage</code> and <code>HttpOutputMessage</code> interfaces.
|
||||
*
|
||||
*/
|
||||
package org.springframework.http;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Contains a basic abstraction over client/server-side HTTP. This package contains
|
||||
the <code>HttpInputMessage</code> and <code>HttpOutputMessage</code> interfaces.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Contains an abstraction over server-side HTTP. This package
|
||||
* contains the <code>ServerHttpRequest</code> and
|
||||
* <code>ServerHttpResponse</code>, as well as a Servlet-based implementation of these
|
||||
* interfaces.
|
||||
*
|
||||
*/
|
||||
package org.springframework.http.server;
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Contains an abstraction over server-side HTTP. This package
|
||||
contains the <code>ServerHttpRequest</code> and
|
||||
<code>ServerHttpResponse</code>, as well as a Servlet-based implementation of these
|
||||
interfaces.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* This package provides remoting classes for Caucho's Hessian and Burlap
|
||||
* protocols: a proxy factory for accessing Hessian/Burlap services,
|
||||
* and an exporter for making beans available to Hessian/Burlap clients.
|
||||
*
|
||||
* <p>Hessian is a slim, binary RPC protocol over HTTP.
|
||||
* For information on Hessian, see the
|
||||
* <a href="http://www.caucho.com/hessian">Hessian website</a>
|
||||
*
|
||||
* <p>Burlap is a slim, XML-based RPC protocol over HTTP.
|
||||
* For information on Burlap, see the
|
||||
* <a href="http://www.caucho.com/burlap">Burlap website</a>
|
||||
*
|
||||
*/
|
||||
package org.springframework.remoting.caucho;
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
This package provides remoting classes for Caucho's Hessian and Burlap
|
||||
protocols: a proxy factory for accessing Hessian/Burlap services,
|
||||
and an exporter for making beans available to Hessian/Burlap clients.
|
||||
|
||||
<p>Hessian is a slim, binary RPC protocol over HTTP.
|
||||
For information on Hessian, see the
|
||||
<a href="http://www.caucho.com/hessian">Hessian website</a>
|
||||
|
||||
<p>Burlap is a slim, XML-based RPC protocol over HTTP.
|
||||
For information on Burlap, see the
|
||||
<a href="http://www.caucho.com/burlap">Burlap website</a>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,15 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Remoting classes for transparent Java-to-Java remoting via HTTP invokers.
|
||||
* Uses Java serialization just like RMI, but provides the same ease of setup
|
||||
* as Caucho's HTTP-based Hessian and Burlap protocols.
|
||||
*
|
||||
* <p><b>HTTP invoker is the recommended protocol for Java-to-Java remoting.</b>
|
||||
* It is more powerful and more extensible than Hessian and Burlap, at the
|
||||
* expense of being tied to Java. Neverthelesss, it is as easy to set up as
|
||||
* Hessian and Burlap, which is its main advantage compared to RMI.
|
||||
*
|
||||
*/
|
||||
package org.springframework.remoting.httpinvoker;
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Remoting classes for transparent Java-to-Java remoting via HTTP invokers.
|
||||
Uses Java serialization just like RMI, but provides the same ease of setup
|
||||
as Caucho's HTTP-based Hessian and Burlap protocols.
|
||||
|
||||
<p><b>HTTP invoker is the recommended protocol for Java-to-Java remoting.</b>
|
||||
It is more powerful and more extensible than Hessian and Burlap, at the
|
||||
expense of being tied to Java. Neverthelesss, it is as easy to set up as
|
||||
Hessian and Burlap, which is its main advantage compared to RMI.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Remoting classes for Web Services via JAX-RPC.
|
||||
* This package provides proxy factories for accessing JAX-RPC
|
||||
* services and ports, and a support class for implementing
|
||||
* JAX-RPC Servlet endpoints.
|
||||
*
|
||||
*/
|
||||
package org.springframework.remoting.jaxrpc;
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Remoting classes for Web Services via JAX-RPC.
|
||||
This package provides proxy factories for accessing JAX-RPC
|
||||
services and ports, and a support class for implementing
|
||||
JAX-RPC Servlet endpoints.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Remoting classes for Web Services via JAX-WS (the successor of JAX-RPC),
|
||||
* as included in Java 6 and Java EE 5. This package provides proxy
|
||||
* factories for accessing JAX-WS services and ports.
|
||||
*
|
||||
*/
|
||||
package org.springframework.remoting.jaxws;
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Remoting classes for Web Services via JAX-WS (the successor of JAX-RPC),
|
||||
as included in Java 6 and Java EE 5. This package provides proxy
|
||||
factories for accessing JAX-WS services and ports.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Core package of the client-side web support.
|
||||
* Provides a RestTemplate class and various callback interfaces.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.client;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Core package of the client-side web support.
|
||||
Provides a RestTemplate class and various callback interfaces.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Classes supporting the <code>org.springframework.web.client</code> package.
|
||||
* Contains a base class for RestTemplate usage.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.client.support;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Classes supporting the <code>org.springframework.web.client</code> package.
|
||||
Contains a base class for RestTemplate usage.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Contains a variant of the application context interface for web applications,
|
||||
* and the ContextLoaderListener that bootstraps a root web application context.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.context;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Contains a variant of the application context interface for web applications,
|
||||
and the ContextLoaderListener that bootstraps a root web application context.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Support for generic request context holding, in particular for
|
||||
* scoping of application objects per HTTP request or HTTP session.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.context.request;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Support for generic request context holding, in particular for
|
||||
scoping of application objects per HTTP request or HTTP session.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Classes supporting the <code>org.springframework.web.context</code> package,
|
||||
* such as WebApplicationContext implementations and various utility classes.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.context.support;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Classes supporting the <code>org.springframework.web.context</code> package,
|
||||
such as WebApplicationContext implementations and various utility classes.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Provides generic filter base classes allowing for bean-style configuration.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.filter;
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Provides generic filter base classes allowing for bean-style configuration.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,12 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Support classes for integrating a JSF 1.2 web tier with a Spring middle tier
|
||||
* which is hosted in a Spring root WebApplicationContext.
|
||||
*
|
||||
* <p>Supports JSF 1.2's ELResolver mechanism, providing closer integration
|
||||
* than JSF 1.1's VariableResolver mechanism allowed for.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.jsf.el;
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Support classes for integrating a JSF 1.2 web tier with a Spring middle tier
|
||||
which is hosted in a Spring root WebApplicationContext.
|
||||
|
||||
<p>Supports JSF 1.2's ELResolver mechanism, providing closer integration
|
||||
than JSF 1.1's VariableResolver mechanism allowed for.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,12 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Support classes for integrating a JSF web tier with a Spring middle tier
|
||||
* which is hosted in a Spring root WebApplicationContext.
|
||||
*
|
||||
* <p>Supports easy access to beans in the Spring root WebApplicationContext
|
||||
* from JSF EL expressions, for example in property values of JSF-managed beans.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.jsf;
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Support classes for integrating a JSF web tier with a Spring middle tier
|
||||
which is hosted in a Spring root WebApplicationContext.
|
||||
|
||||
<p>Supports easy access to beans in the Spring root WebApplicationContext
|
||||
from JSF EL expressions, for example in property values of JSF-managed beans.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Common, generic interfaces that define minimal boundary points
|
||||
* between Spring's web infrastructure and other framework modules.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Common, generic interfaces that define minimal boundary points
|
||||
between Spring's web infrastructure and other framework modules.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Miscellaneous web utility classes, such as HTML escaping,
|
||||
* log4j initialization, and cookie handling.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.util;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Miscellaneous web utility classes, such as HTML escaping,
|
||||
log4j initialization, and cookie handling.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user