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,8 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Annotations for binding portlet requests to handler methods.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.portlet.bind.annotation;
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Annotations for binding portlet requests to handler methods.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Provides portlet-specific data binding functionality.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.portlet.bind;
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Provides portlet-specific data binding functionality.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Support for Spring's application context concept in a portlet environment,
|
||||
* including ApplicationContext implementations and various utility classes.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.portlet.context;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Support for Spring's application context concept in a portlet environment,
|
||||
including ApplicationContext implementations and various utility classes.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Provides standard HandlerMapping implementations,
|
||||
* including abstract base classes for custom implementations.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.portlet.handler;
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Provides standard HandlerMapping implementations,
|
||||
including abstract base classes for custom implementations.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,11 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Multipart resolution framework for handling file uploads.
|
||||
* Provides a PortletMultipartResolver strategy interface,
|
||||
* and a generic extension of the ActionRequest interface
|
||||
* for accessing multipart files in web application code.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.portlet.multipart;
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Multipart resolution framework for handling file uploads.
|
||||
Provides a PortletMultipartResolver strategy interface,
|
||||
and a generic extension of the ActionRequest interface
|
||||
for accessing multipart files in web application code.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Support package for annotation-based Portlet MVC controllers.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.portlet.mvc.annotation;
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Support package for annotation-based Portlet MVC controllers.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,34 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* <p>
|
||||
* Standard controller implementations for the portlet MVC framework that
|
||||
* comes with Spring. Provides both abstract base classes and concrete
|
||||
* implementations for often seen use cases.
|
||||
* </p>
|
||||
*
|
||||
* <p>
|
||||
* A <code>Controller</code> - as defined in this package - is analogous to a Struts
|
||||
* <code>Action</code>. Usually <code>Controllers</code> are JavaBeans
|
||||
* to allow easy configuration using the {@link org.springframework.beans org.springframework.beans}
|
||||
* package. Controllers define the <code>C</code> from so-called MVC paradigm
|
||||
* and can be used in conjunction with the {@link org.springframework.web.portlet.ModelAndView ModelAndView}
|
||||
* to achieve interactive applications. The view might be represented by a
|
||||
* HTML interface, but, because of model and the controller being completely
|
||||
* independent of the view, PDF views are possible, as well as for instance Excel
|
||||
* views.
|
||||
* </p>
|
||||
*
|
||||
* <p>
|
||||
* Especially useful to read, while getting into the Spring MVC framework
|
||||
* are the following:
|
||||
* <ul>
|
||||
* <li><a href="Controller.html">Controller</a></li>
|
||||
* <li><a href="SimpleFormController.html">BaseCommandController</a></li>
|
||||
* <li><a href="ParameterizableViewController.html">ParameterizableViewController</a></li>
|
||||
* </ul>
|
||||
* </p>
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.portlet.mvc;
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
<p>
|
||||
Standard controller implementations for the portlet MVC framework that
|
||||
comes with Spring. Provides both abstract base classes and concrete
|
||||
implementations for often seen use cases.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
A <code>Controller</code> - as defined in this package - is analogous to a Struts
|
||||
<code>Action</code>. Usually <code>Controllers</code> are JavaBeans
|
||||
to allow easy configuration using the {@link org.springframework.beans org.springframework.beans}
|
||||
package. Controllers define the <code>C</code> from so-called MVC paradigm
|
||||
and can be used in conjunction with the {@link org.springframework.web.portlet.ModelAndView ModelAndView}
|
||||
to achieve interactive applications. The view might be represented by a
|
||||
HTML interface, but, because of model and the controller being completely
|
||||
independent of the view, PDF views are possible, as well as for instance Excel
|
||||
views.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Especially useful to read, while getting into the Spring MVC framework
|
||||
are the following:
|
||||
<ul>
|
||||
<li><a href="Controller.html">Controller</a></li>
|
||||
<li><a href="SimpleFormController.html">BaseCommandController</a></li>
|
||||
<li><a href="ParameterizableViewController.html">ParameterizableViewController</a></li>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,10 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Provides JSR-168 portlets that integrate with the application context
|
||||
* infrastructure, and the core interfaces and classes for the Portlet
|
||||
* variant of Spring's web MVC framework.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.portlet;
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Provides JSR-168 portlets that integrate with the application context
|
||||
infrastructure, and the core interfaces and classes for the Portlet
|
||||
variant of Spring's web MVC framework.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,8 @@
|
||||
|
||||
/**
|
||||
*
|
||||
* Miscellaneous portlet utility classes.
|
||||
*
|
||||
*/
|
||||
package org.springframework.web.portlet.util;
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<html>
|
||||
<body>
|
||||
|
||||
Miscellaneous portlet utility classes.
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user