svn commit: r655902 - in /struts/sandbox/trunk/struts2-convention-plugin/src: main/java/org/apache/struts2/convention/ main/java/org/apache/struts2/convention/annotation/ test/java/org/apache/struts2/convention/ test/java/org/apache/struts2/convention/...

View: New views
1 Messages — Rating Filter:   Alert me  

svn commit: r655902 - in /struts/sandbox/trunk/struts2-convention-plugin/src: main/java/org/apache/struts2/convention/ main/java/org/apache/struts2/convention/annotation/ test/java/org/apache/struts2/convention/ test/java/org/apache/struts2/convention/...

by bpontarelli :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Author: bpontarelli
Date: Tue May 13 08:15:12 2008
New Revision: 655902

URL: http://svn.apache.org/viewvc?rev=655902&view=rev
Log:
Copyright and author fixes

Modified:
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/AbstractClassLoaderResolver.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ActionConfigBuilder.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ActionNameBuilder.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ClassClassLoaderResolver.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ClasspathConfigurationProvider.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionUnknownHandler.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionsService.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionsServiceImpl.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultActionNameBuilder.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/PackageBasedActionConfigBuilder.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ReflectionTools.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ResultMapBuilder.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/SEOActionNameBuilder.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/StringTools.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/URLClassLoaderResolver.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Action.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/AnnotationTools.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Namespace.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/ParentPackage.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Result.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/ResultPath.java
    struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Results.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/DefaultResultMapBuilderTest.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/PackageBasedActionConfigBuilderTest.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/ReflectionToolsTest.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/SEOActionNameBuilderTest.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/StringToolsTest.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/DefaultResultPathAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/NoAnnotationAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/Skip.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/ActionNameAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/ActionNamesAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/SingleActionNameAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/TestAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/idx/Index.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/idx/idx2/Index.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/ActionLevelNamespaceAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/ClassLevelNamespaceAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/PackageLevelNamespaceAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/package-info.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace2/DefaultNamespaceAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/ClassLevelParentPackageAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/PackageLevelParentPackageAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/package-info.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ActionLevelResultAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ActionLevelResultsAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ClassLevelResultAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ClassLevelResultsAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/ClassLevelResultPathAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/PackageLevelResultPathAction.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/package-info.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/skip/Index.java
    struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/annotation/AnnotationToolsTest.java

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/AbstractClassLoaderResolver.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/AbstractClassLoaderResolver.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/AbstractClassLoaderResolver.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/AbstractClassLoaderResolver.java Tue May 13 08:15:12 2008
@@ -49,8 +49,6 @@
  * finding plain files (resources) in addition to classes. The sub-classes
  * should be used directly in order to find classes or files.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public abstract class AbstractClassLoaderResolver<T> {
     private static final Logger logger = Logger.getLogger(AbstractClassLoaderResolver.class.getName());

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ActionConfigBuilder.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ActionConfigBuilder.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ActionConfigBuilder.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ActionConfigBuilder.java Tue May 13 08:15:12 2008
@@ -28,8 +28,6 @@
  * Furthermore, it must make every effort to locate all action results
  * as well.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public interface ActionConfigBuilder {
     /**

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ActionNameBuilder.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ActionNameBuilder.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ActionNameBuilder.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ActionNameBuilder.java Tue May 13 08:15:12 2008
@@ -25,8 +25,6 @@
  * This interface defines the method that is used to create action
  * names based on the name of a class.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public interface ActionNameBuilder {
     /**

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ClassClassLoaderResolver.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ClassClassLoaderResolver.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ClassClassLoaderResolver.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ClassClassLoaderResolver.java Tue May 13 08:15:12 2008
@@ -45,8 +45,6 @@
  * from this class that are added to a set of matches. These matches can
  * then be fetched and used however is required.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public class ClassClassLoaderResolver extends AbstractClassLoaderResolver<Class<?>> {
     private static final Logger logger = Logger.getLogger(ClassClassLoaderResolver.class.getName());

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ClasspathConfigurationProvider.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ClasspathConfigurationProvider.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ClasspathConfigurationProvider.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ClasspathConfigurationProvider.java Tue May 13 08:15:12 2008
@@ -35,8 +35,6 @@
  * logic and instead delegates to the configured instance of the
  * {@link ActionConfigBuilder} interface.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class ClasspathConfigurationProvider implements ConfigurationProvider {
     private ActionConfigBuilder actionConfigBuilder;

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionUnknownHandler.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionUnknownHandler.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionUnknownHandler.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionUnknownHandler.java Tue May 13 08:15:12 2008
@@ -60,8 +60,6 @@
  * <strong>/foo/index</strong> and the URL <strong>/foo</strong> is used,
  * this will render the index action in the /foo namespace.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public class ConventionUnknownHandler implements UnknownHandler {
     private static final Logger logger = Logger.getLogger(ConventionUnknownHandler.class.getName());

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionsService.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionsService.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionsService.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionsService.java Tue May 13 08:15:12 2008
@@ -33,8 +33,6 @@
  * values and also handle locating overrides of the default via the annotations
  * that are part of the plugin.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public interface ConventionsService {
     /**

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionsServiceImpl.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionsServiceImpl.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionsServiceImpl.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ConventionsServiceImpl.java Tue May 13 08:15:12 2008
@@ -38,8 +38,6 @@
  * This class is the implementation of the {@link ConventionsService}
  * interface and provides all of the defaults and annotation handling.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class ConventionsServiceImpl implements ConventionsService {
     private String resultPath;

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultActionNameBuilder.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultActionNameBuilder.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultActionNameBuilder.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultActionNameBuilder.java Tue May 13 08:15:12 2008
@@ -30,8 +30,6 @@
  * constant is set to <strong>true</strong>, this class will lowercase all
  * action names.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class DefaultActionNameBuilder implements ActionNameBuilder {
     private static final String ACTION = "Action";

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/DefaultResultMapBuilder.java Tue May 13 08:15:12 2008
@@ -106,8 +106,6 @@
  * <tr><td>.vm</td><td>velocity</td</tr>
  * <tr><td>.ftl</td><td>freemarker</td</tr>
  * </table>
- *
- * @author  Brian Pontarelli
  */
 public class DefaultResultMapBuilder implements ResultMapBuilder {
     private static final Logger logger = Logger.getLogger(DefaultResultMapBuilder.class.getName());

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/PackageBasedActionConfigBuilder.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/PackageBasedActionConfigBuilder.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/PackageBasedActionConfigBuilder.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/PackageBasedActionConfigBuilder.java Tue May 13 08:15:12 2008
@@ -51,8 +51,6 @@
  * <p>
  * This class implements the ActionConfigBuilder interface.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class PackageBasedActionConfigBuilder implements ActionConfigBuilder {
     private static final Logger logger = Logger.getLogger(PackageBasedActionConfigBuilder.class.getName());

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ReflectionTools.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ReflectionTools.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ReflectionTools.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ReflectionTools.java Tue May 13 08:15:12 2008
@@ -27,8 +27,6 @@
  * <p>
  * This class has some reflection helpers.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class ReflectionTools {
     /**

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ResultMapBuilder.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ResultMapBuilder.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ResultMapBuilder.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/ResultMapBuilder.java Tue May 13 08:15:12 2008
@@ -33,8 +33,6 @@
  * The action information is supplied and the result is a mapping of
  * ResultConfig instances to the result name.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public interface ResultMapBuilder {
     /**

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/SEOActionNameBuilder.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/SEOActionNameBuilder.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/SEOActionNameBuilder.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/SEOActionNameBuilder.java Tue May 13 08:15:12 2008
@@ -32,8 +32,6 @@
  * lower case if desired. And this will also strip off the word <b>Action</b>
  * from the class name.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public class SEOActionNameBuilder implements ActionNameBuilder {
     private static final Logger logger = Logger.getLogger(SEOActionNameBuilder.class.getName());

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/StringTools.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/StringTools.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/StringTools.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/StringTools.java Tue May 13 08:15:12 2008
@@ -24,8 +24,6 @@
  * <p>
  * This class is a String helper.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public class StringTools {
     public static boolean isTrimmedEmpty(String s) {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/URLClassLoaderResolver.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/URLClassLoaderResolver.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/URLClassLoaderResolver.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/URLClassLoaderResolver.java Tue May 13 08:15:12 2008
@@ -42,8 +42,6 @@
  * from this class they are added to a set of matches. These matches can
  * then be fetched and used however is required.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public class URLClassLoaderResolver extends AbstractClassLoaderResolver<URL> {
 

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Action.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Action.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Action.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Action.java Tue May 13 08:15:12 2008
@@ -51,8 +51,6 @@
  *   public String execute() {}
  * }
  * </pre>
- *
- * @author  Brian Pontarelli
  */
 @Target(ElementType.METHOD)
 @Retention(RetentionPolicy.RUNTIME)

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/AnnotationTools.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/AnnotationTools.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/AnnotationTools.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/AnnotationTools.java Tue May 13 08:15:12 2008
@@ -26,8 +26,6 @@
  * <p>
  * This class provides helper methods for dealing with annotations.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public class AnnotationTools {
 

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Namespace.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Namespace.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Namespace.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Namespace.java Tue May 13 08:15:12 2008
@@ -80,8 +80,6 @@
  * <li>The namespace as determined using the Java package name and the
  *  standard convention based naming.</li>
  * </ol>
- *
- * @author  Brian Pontarelli
  */
 @Target({ElementType.PACKAGE, ElementType.TYPE})
 @Retention(value = RetentionPolicy.RUNTIME)

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/ParentPackage.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/ParentPackage.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/ParentPackage.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/ParentPackage.java Tue May 13 08:15:12 2008
@@ -65,8 +65,6 @@
  * <li>Any ParentPackage annotations placed in the package-info.java file</li>
  * <li>The struts configuration property <strong>struts.convention.default.parent.package</strong></li>
  * </ol>
- *
- * @author  Brian Pontarelli
  */
 @Target({ElementType.TYPE, ElementType.PACKAGE})
 @Retention(value = RetentionPolicy.RUNTIME)

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Result.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Result.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Result.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Result.java Tue May 13 08:15:12 2008
@@ -59,8 +59,6 @@
  * public String execute() {
  * }
  * </pre>
- *
- * @author  Brian Pontarelli
  */
 @Retention(RetentionPolicy.RUNTIME)
 @Target({ElementType.TYPE})

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/ResultPath.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/ResultPath.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/ResultPath.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/ResultPath.java Tue May 13 08:15:12 2008
@@ -55,8 +55,6 @@
  * <pre>
  * /WEB-INF/jsps/foo/do-something-<resultCode>.ext
  * </pre>
- *
- * @author  Brian Pontarelli
  */
 @Retention(RetentionPolicy.RUNTIME)
 @Target({ElementType.TYPE, ElementType.PACKAGE})

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Results.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Results.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Results.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/main/java/org/apache/struts2/convention/annotation/Results.java Tue May 13 08:15:12 2008
@@ -30,8 +30,6 @@
  * This annotation allows a class to define more than one {@link Result}
  * annotations.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 @Retention(RetentionPolicy.RUNTIME)
 @Target({ElementType.TYPE})

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/DefaultResultMapBuilderTest.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/DefaultResultMapBuilderTest.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/DefaultResultMapBuilderTest.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/DefaultResultMapBuilderTest.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention;
 
 import java.util.HashSet;
@@ -61,8 +45,6 @@
  * <p>
  * This class tests the simple result map builder.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class DefaultResultMapBuilderTest extends TestCase {
     public void testBuild() throws Exception {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/PackageBasedActionConfigBuilderTest.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/PackageBasedActionConfigBuilderTest.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/PackageBasedActionConfigBuilderTest.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/PackageBasedActionConfigBuilderTest.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention;
 
 import java.util.HashMap;
@@ -80,8 +64,6 @@
  * <p>
  * This is a test for the package based name builder.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class PackageBasedActionConfigBuilderTest extends TestCase {
     public void testActionPackages() {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/ReflectionToolsTest.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/ReflectionToolsTest.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/ReflectionToolsTest.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/ReflectionToolsTest.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention;
 
 import junit.framework.TestCase;
@@ -42,8 +26,6 @@
  * <p>
  * This tests the reflection tools.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class ReflectionToolsTest extends TestCase {
     public void testContainsMethod() {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/SEOActionNameBuilderTest.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/SEOActionNameBuilderTest.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/SEOActionNameBuilderTest.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/SEOActionNameBuilderTest.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention;
 
 import junit.framework.TestCase;
@@ -42,8 +26,6 @@
  * <p>
  * This class tests the SEO name builder.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public class SEOActionNameBuilderTest extends TestCase {
     public void testBuild() throws Exception {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/StringToolsTest.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/StringToolsTest.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/StringToolsTest.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/StringToolsTest.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention;
 
 import junit.framework.TestCase;
@@ -42,8 +26,6 @@
  * <p>
  * This class tests the string tools.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class StringToolsTest extends TestCase {
     public void testEmpty() {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/DefaultResultPathAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/DefaultResultPathAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/DefaultResultPathAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/DefaultResultPathAction.java Tue May 13 08:15:12 2008
@@ -18,30 +18,12 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions;
 
 /**
  * <p>
  * This class is a test action with the default result path.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class DefaultResultPathAction {
     public String execute() {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/NoAnnotationAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/NoAnnotationAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/NoAnnotationAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/NoAnnotationAction.java Tue May 13 08:15:12 2008
@@ -18,30 +18,12 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions;
 
 /**
  * <p>
  * This is a struts action with no annotations.
  * </p>
- *
- * @author  Brian Pontarelli
  */
 public class NoAnnotationAction {
     public String execute() {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/Skip.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/Skip.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/Skip.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/Skip.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions;
 
 import com.opensymphony.xwork2.Action;

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/ActionNameAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/ActionNameAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/ActionNameAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/ActionNameAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.action;
 
 import org.apache.struts2.convention.annotation.Action;
@@ -42,8 +26,6 @@
  * <p>
  * This is a test action.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class ActionNameAction {
     @Action("action1")

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/ActionNamesAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/ActionNamesAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/ActionNamesAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/ActionNamesAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.action;
 
 import org.apache.struts2.convention.annotation.Action;
@@ -43,8 +27,6 @@
  * <p>
  * This class is a test action.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class ActionNamesAction {
     @Actions({

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/SingleActionNameAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/SingleActionNameAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/SingleActionNameAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/SingleActionNameAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.action;
 
 import org.apache.struts2.convention.annotation.Action;
@@ -42,8 +26,6 @@
  * <p>
  * This is a test action.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class SingleActionNameAction {
     @Action("action")

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/TestAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/TestAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/TestAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/action/TestAction.java Tue May 13 08:15:12 2008
@@ -18,30 +18,12 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.action;
 
 /**
  * <p>
  * This is a test action.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class TestAction {
     public String execute() {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/idx/Index.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/idx/Index.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/idx/Index.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/idx/Index.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.idx;
 
 import com.opensymphony.xwork2.Action;

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/idx/idx2/Index.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/idx/idx2/Index.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/idx/idx2/Index.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/idx/idx2/Index.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.idx.idx2;
 
 import com.opensymphony.xwork2.Action;

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/ActionLevelNamespaceAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/ActionLevelNamespaceAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/ActionLevelNamespaceAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/ActionLevelNamespaceAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.namespace;
 
 import org.apache.struts2.convention.annotation.Action;
@@ -42,8 +26,6 @@
  * <p>
  * This class uses the action level annotation override.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class ActionLevelNamespaceAction {
     @Action("/action-level/action")

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/ClassLevelNamespaceAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/ClassLevelNamespaceAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/ClassLevelNamespaceAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/ClassLevelNamespaceAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.namespace;
 
 import org.apache.struts2.convention.annotation.Namespace;
@@ -42,8 +26,6 @@
  * <p>
  * This class uses the class level annotation override.
  * </p>
- *
- * @author Brian Pontarelli
  */
 @Namespace("/class-level")
 public class ClassLevelNamespaceAction {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/PackageLevelNamespaceAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/PackageLevelNamespaceAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/PackageLevelNamespaceAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/PackageLevelNamespaceAction.java Tue May 13 08:15:12 2008
@@ -18,30 +18,12 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.namespace;
 
 /**
  * <p>
  * This class uses the package level annotation.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class PackageLevelNamespaceAction {
     public String execute() {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/package-info.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/package-info.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/package-info.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace/package-info.java Tue May 13 08:15:12 2008
@@ -18,21 +18,5 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 @org.apache.struts2.convention.annotation.Namespace("/package-level")
 package org.apache.struts2.convention.actions.namespace;
\ No newline at end of file

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace2/DefaultNamespaceAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace2/DefaultNamespaceAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace2/DefaultNamespaceAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/namespace2/DefaultNamespaceAction.java Tue May 13 08:15:12 2008
@@ -18,30 +18,12 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.namespace2;
 
 /**
  * <p>
  * This class uses the package level annotation.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class DefaultNamespaceAction {
     public String execute() {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/ClassLevelParentPackageAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/ClassLevelParentPackageAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/ClassLevelParentPackageAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/ClassLevelParentPackageAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.parentpackage;
 
 import org.apache.struts2.convention.annotation.ParentPackage;
@@ -42,8 +26,6 @@
  * <p>
  * This is a parent package usage action.
  * </p>
- *
- * @author Brian Pontarelli
  */
 @ParentPackage("class-level")
 public class ClassLevelParentPackageAction {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/PackageLevelParentPackageAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/PackageLevelParentPackageAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/PackageLevelParentPackageAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/PackageLevelParentPackageAction.java Tue May 13 08:15:12 2008
@@ -18,30 +18,12 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.parentpackage;
 
 /**
  * <p>
  * This is a parent package usage action.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class PackageLevelParentPackageAction {
     public String execute() {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/package-info.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/package-info.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/package-info.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/parentpackage/package-info.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 @org.apache.struts2.convention.annotation.ParentPackage("package-level")
 package org.apache.struts2.convention.actions.parentpackage;
 

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ActionLevelResultAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ActionLevelResultAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ActionLevelResultAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ActionLevelResultAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.result;
 
 import org.apache.struts2.convention.annotation.Action;
@@ -43,8 +27,6 @@
  * <p>
  * This is a test action with multiple results.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class ActionLevelResultAction {
     @Action(results = {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ActionLevelResultsAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ActionLevelResultsAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ActionLevelResultsAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ActionLevelResultsAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.result;
 
 import org.apache.struts2.convention.annotation.Action;
@@ -43,8 +27,6 @@
  * <p>
  * This is a test action with multiple results.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class ActionLevelResultsAction {
     @Action(results = {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ClassLevelResultAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ClassLevelResultAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ClassLevelResultAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ClassLevelResultAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.result;
 
 import org.apache.struts2.convention.annotation.Result;
@@ -42,8 +26,6 @@
  * <p>
  * This is a test action with multiple results.
  * </p>
- *
- * @author Brian Pontarelli
  */
 @Result(name="error", location="error.jsp", params={"key", "value", "key1", "value1"})
 public class ClassLevelResultAction {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ClassLevelResultsAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ClassLevelResultsAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ClassLevelResultsAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/result/ClassLevelResultsAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.result;
 
 import org.apache.struts2.convention.annotation.Result;
@@ -43,8 +27,6 @@
  * <p>
  * This is a test action with multiple results.
  * </p>
- *
- * @author Brian Pontarelli
  */
 @Results({
     @Result(name="error", location="error.jsp", params={"key", "ann-value", "key1", "ann-value1"}),

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/ClassLevelResultPathAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/ClassLevelResultPathAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/ClassLevelResultPathAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/ClassLevelResultPathAction.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.resultpath;
 
 import org.apache.struts2.convention.annotation.ResultPath;
@@ -42,8 +26,6 @@
  * <p>
  * This class is a test action with the default result path.
  * </p>
- *
- * @author Brian Pontarelli
  */
 @ResultPath("/class-level")
 public class ClassLevelResultPathAction {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/PackageLevelResultPathAction.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/PackageLevelResultPathAction.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/PackageLevelResultPathAction.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/PackageLevelResultPathAction.java Tue May 13 08:15:12 2008
@@ -18,30 +18,12 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.resultpath;
 
 /**
  * <p>
  * This class is a test action with the default result path.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class PackageLevelResultPathAction {
     public String execute() {

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/package-info.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/package-info.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/package-info.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/resultpath/package-info.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 @org.apache.struts2.convention.annotation.ResultPath("/package-level")
 package org.apache.struts2.convention.actions.resultpath;
 

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/skip/Index.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/skip/Index.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/skip/Index.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/actions/skip/Index.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.actions.skip;
 
 import com.opensymphony.xwork2.Action;

Modified: struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/annotation/AnnotationToolsTest.java
URL: http://svn.apache.org/viewvc/struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/annotation/AnnotationToolsTest.java?rev=655902&r1=655901&r2=655902&view=diff
==============================================================================
--- struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/annotation/AnnotationToolsTest.java (original)
+++ struts/sandbox/trunk/struts2-convention-plugin/src/test/java/org/apache/struts2/convention/annotation/AnnotationToolsTest.java Tue May 13 08:15:12 2008
@@ -18,22 +18,6 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-
-/*
- * Copyright (c) 2007, Inversoft and Texturemedia, 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.
- * 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.
- */
 package org.apache.struts2.convention.annotation;
 
 import junit.framework.TestCase;
@@ -45,8 +29,6 @@
  * <p>
  * This class tests the annotation tools.
  * </p>
- *
- * @author Brian Pontarelli
  */
 public class AnnotationToolsTest extends TestCase {
     public void testFindAnnotationOnClass() {