Author: painter
Date: Mon Nov  5 17:44:28 2018
New Revision: 1845826

URL: http://svn.apache.org/viewvc?rev=1845826&view=rev
Log:
More javadoc updates for mvn site

Modified:
    turbine/fulcrum/trunk/commonsemail/src/site/site.xml
    turbine/fulcrum/trunk/hsqldb/src/site/site.xml
    turbine/fulcrum/trunk/hsqldb/src/test/test.properties
    turbine/fulcrum/trunk/jetty/src/site/site.xml
    turbine/fulcrum/trunk/pbe/src/java/org/apache/fulcrum/pbe/PBEService.java
    turbine/fulcrum/trunk/pbe/src/site/site.xml
    
turbine/fulcrum/trunk/pbe/src/test/org/apache/fulcrum/pbe/PBEServiceTest.java
    
turbine/fulcrum/trunk/quartz/src/test/org/apache/fulcrum/quartz/DefaultQuartzSchedulerImplTest.java
    turbine/fulcrum/trunk/testcontainer/src/site/site.xml
    turbine/fulcrum/trunk/yaafi-crypto/src/site/site.xml

Modified: turbine/fulcrum/trunk/commonsemail/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/commonsemail/src/site/site.xml?rev=1845826&r1=1845825&r2=1845826&view=diff
==============================================================================
--- turbine/fulcrum/trunk/commonsemail/src/site/site.xml (original)
+++ turbine/fulcrum/trunk/commonsemail/src/site/site.xml Mon Nov  5 17:44:28 
2018
@@ -24,6 +24,6 @@
       <item name="Configuration"       href="/configuration.html"/>
       <item name="Technical"           href="/technical.html"/>
     </menu>  
-    ${reports}
+    <menu ref="reports"></menu>
   </body>
 </project>

Modified: turbine/fulcrum/trunk/hsqldb/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/src/site/site.xml?rev=1845826&r1=1845825&r2=1845826&view=diff
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/src/site/site.xml (original)
+++ turbine/fulcrum/trunk/hsqldb/src/site/site.xml Mon Nov  5 17:44:28 2018
@@ -25,6 +25,6 @@
     <menu name="Overview">
       <item name="About"               href="/index.html"/>
     </menu>  
-    ${reports}
+    <menu ref="reports"></menu>
   </body>
 </project>

Modified: turbine/fulcrum/trunk/hsqldb/src/test/test.properties
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/hsqldb/src/test/test.properties?rev=1845826&r1=1845825&r2=1845826&view=diff
==============================================================================
--- turbine/fulcrum/trunk/hsqldb/src/test/test.properties (original)
+++ turbine/fulcrum/trunk/hsqldb/src/test/test.properties Mon Nov  5 17:44:28 
2018
@@ -1,5 +1,5 @@
 #HSQL Database Engine 1.8.0.10
-#Thu Oct 25 08:56:08 EDT 2018
+#Mon Nov 05 11:19:51 EST 2018
 hsqldb.script_format=0
 runtime.gc_interval=0
 sql.enforce_strict_size=false

Modified: turbine/fulcrum/trunk/jetty/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/jetty/src/site/site.xml?rev=1845826&r1=1845825&r2=1845826&view=diff
==============================================================================
--- turbine/fulcrum/trunk/jetty/src/site/site.xml (original)
+++ turbine/fulcrum/trunk/jetty/src/site/site.xml Mon Nov  5 17:44:28 2018
@@ -26,6 +26,6 @@
       <item name="Overview"            href="/index.html"/>
       <item name="Configuration"       href="/configuration.html"/>
     </menu>  
-    ${reports}
+    <menu ref="reports"></menu>
   </body>
 </project>

Modified: 
turbine/fulcrum/trunk/pbe/src/java/org/apache/fulcrum/pbe/PBEService.java
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/pbe/src/java/org/apache/fulcrum/pbe/PBEService.java?rev=1845826&r1=1845825&r2=1845826&view=diff
==============================================================================
--- turbine/fulcrum/trunk/pbe/src/java/org/apache/fulcrum/pbe/PBEService.java 
(original)
+++ turbine/fulcrum/trunk/pbe/src/java/org/apache/fulcrum/pbe/PBEService.java 
Mon Nov  5 17:44:28 2018
@@ -34,7 +34,7 @@ import java.security.GeneralSecurityExce
  *   <li>method to create more or less secure passwords</li>
  *   <li>creation of cipher streams for transparent encryption/decryption</li>
  *   <li>generic encryption/decryption methods</li>
- * <ul>
+ * </ul>
  *
  * @author <a href="mailto:[email protected]";>Siegfried Goeschl</a>
  */
@@ -66,8 +66,8 @@ public interface PBEService
      * @param is the input stream to be wrapped
      * @param password the password to be used
      * @return an decrypting input stream
-     * @exception GeneralSecurityException accessing the JCE failed
-     * @exception IOException an IOException occured during processing
+     * @throws GeneralSecurityException accessing the JCE failed
+     * @throws IOException an IOException occured during processing
      */
     InputStream getInputStream( InputStream is, char[] password )
         throws GeneralSecurityException, IOException;
@@ -78,8 +78,8 @@ public interface PBEService
      * @param is the input stream to be wrapped
      * @param password the password to be used
      * @return an decrypting input stream
-     * @exception GeneralSecurityException accessing the JCE failed
-     * @exception IOException an IOException occured during processing
+     * @throws GeneralSecurityException accessing the JCE failed
+     * @throws IOException an IOException occured during processing
      */
     InputStream getSmartInputStream( InputStream is, char[] password )
         throws GeneralSecurityException, IOException;
@@ -90,8 +90,8 @@ public interface PBEService
      * @param os the output stream to be wrapped
      * @param password the password to be used
      * @return an decrypting input stream
-     * @exception GeneralSecurityException accessing the JCE failed
-     * @exception IOException an IOException occured during processing
+     * @throws GeneralSecurityException accessing the JCE failed
+     * @throws IOException an IOException occured during processing
      */
     OutputStream getOutputStream( OutputStream os, char[] password )
         throws GeneralSecurityException, IOException;
@@ -119,8 +119,8 @@ public interface PBEService
      * @param source the source object
      * @param target the target object
      * @param password the password to use for encryption
-     * @exception GeneralSecurityException accessing the JCE failed
-     * @exception IOException an IOException occured during processing
+     * @throws GeneralSecurityException accessing the JCE failed
+     * @throws IOException an IOException occured during processing
      */
     public void encrypt( Object source, Object target, char[] password )
         throws GeneralSecurityException, IOException;
@@ -148,8 +148,8 @@ public interface PBEService
      * @param source the source object
      * @param target the target object
      * @param password the password to use for decryption
-     * @exception GeneralSecurityException accessing the JCE failed
-     * @exception IOException an IOException occured during processing
+     * @throws GeneralSecurityException accessing the JCE failed
+     * @throws IOException an IOException occured during processing
      */
     public void decrypt( Object source, Object target, char[] password )
         throws GeneralSecurityException, IOException;
@@ -160,8 +160,8 @@ public interface PBEService
      * @param plainText the plain text to be encrypted
      * @param password the password for encryption
      * @return the encrypted string
-     * @exception GeneralSecurityException accessing the JCE failed
-     * @exception IOException an IOException occured during processing
+     * @throws GeneralSecurityException accessing the JCE failed
+     * @throws IOException an IOException occured during processing
      */
     String encryptString( String plainText, char[] password )
         throws GeneralSecurityException, IOException;
@@ -173,8 +173,8 @@ public interface PBEService
      * @param cipherText the encrypted text to be decrypted
      * @param password the password for decryption
      * @return the decrypted string
-     * @exception GeneralSecurityException accessing the JCE failed
-     * @exception IOException an IOException occured during processing
+     * @throws GeneralSecurityException accessing the JCE failed
+     * @throws IOException an IOException occured during processing
      */
     String decryptString( String cipherText, char[] password )
         throws GeneralSecurityException, IOException;

Modified: turbine/fulcrum/trunk/pbe/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/pbe/src/site/site.xml?rev=1845826&r1=1845825&r2=1845826&view=diff
==============================================================================
--- turbine/fulcrum/trunk/pbe/src/site/site.xml (original)
+++ turbine/fulcrum/trunk/pbe/src/site/site.xml Mon Nov  5 17:44:28 2018
@@ -25,7 +25,7 @@
     <menu name="Overview">
       <item name="Overview"            href="/index.html"/>
       <item name="Configuration"       href="/configuration.html"/>
-    </menu>  
-    ${reports}
+    </menu>
+    <menu ref="reports"></menu>  
   </body>
 </project>

Modified: 
turbine/fulcrum/trunk/pbe/src/test/org/apache/fulcrum/pbe/PBEServiceTest.java
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/pbe/src/test/org/apache/fulcrum/pbe/PBEServiceTest.java?rev=1845826&r1=1845825&r2=1845826&view=diff
==============================================================================
--- 
turbine/fulcrum/trunk/pbe/src/test/org/apache/fulcrum/pbe/PBEServiceTest.java 
(original)
+++ 
turbine/fulcrum/trunk/pbe/src/test/org/apache/fulcrum/pbe/PBEServiceTest.java 
Mon Nov  5 17:44:28 2018
@@ -78,6 +78,7 @@ public class PBEServiceTest extends Base
 
     /**
      * Create the default password do be used.
+     * @throws Exception generic exception
      */
     public void testCreateDefaultPassword() throws Exception
     {
@@ -89,6 +90,7 @@ public class PBEServiceTest extends Base
 
     /**
      * Create a password with a user-supplied seed value.
+     * @throws Exception generic exception
      */
     public void testCreatePassword() throws Exception
     {
@@ -101,6 +103,7 @@ public class PBEServiceTest extends Base
 
     /**
      * Test encryption and decryption of Strings
+     * @throws Exception generic exception
      */
     public void testEncryptDecryptStringUsingDefaultPassword() throws Exception
     {
@@ -113,6 +116,7 @@ public class PBEServiceTest extends Base
     /**
      * Test encryption and decryption of Strings with
      * a caller-supplied password
+     * @throws Exception generic exception
      */
     public void testEncryptDecryptStringUsingCustomPassword() throws Exception
     {
@@ -125,6 +129,7 @@ public class PBEServiceTest extends Base
 
     /**
      * Test encryption and decryption of binary data using the default 
password.
+     * @throws Exception generic exception
      */
     public void testBinaryEncryptDecrypt() throws Exception
     {
@@ -156,6 +161,7 @@ public class PBEServiceTest extends Base
 
     /**
      * Test encryption/decryption based on streams.
+     * @throws Exception generic exception
      */
     public void testStreamCiphers() throws Exception
     {
@@ -184,6 +190,7 @@ public class PBEServiceTest extends Base
 
     /**
      * Test a few of the convinience methods.
+     * @throws Exception generic exception
      */
     public void testConvinienceEncryption() throws Exception
     {

Modified: 
turbine/fulcrum/trunk/quartz/src/test/org/apache/fulcrum/quartz/DefaultQuartzSchedulerImplTest.java
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/quartz/src/test/org/apache/fulcrum/quartz/DefaultQuartzSchedulerImplTest.java?rev=1845826&r1=1845825&r2=1845826&view=diff
==============================================================================
--- 
turbine/fulcrum/trunk/quartz/src/test/org/apache/fulcrum/quartz/DefaultQuartzSchedulerImplTest.java
 (original)
+++ 
turbine/fulcrum/trunk/quartz/src/test/org/apache/fulcrum/quartz/DefaultQuartzSchedulerImplTest.java
 Mon Nov  5 17:44:28 2018
@@ -44,6 +44,8 @@ public class DefaultQuartzSchedulerImplT
 
     /**
      * Make sure that the Quartz scheduler is up and running
+     * 
+     * @throws Exception generic exception
      */
     public void testService() throws Exception
     {
@@ -55,6 +57,7 @@ public class DefaultQuartzSchedulerImplT
     /**
      * Get all scheduled jobs for "TURBINE" to make sure that
      * the registration worked.
+     * @throws Exception generic exception 
      */
     public void testGetJobs() throws Exception
     {
@@ -67,6 +70,7 @@ public class DefaultQuartzSchedulerImplT
     /**
      * Get the job details and job data map of an existing job to
      * make sure that the XStream configuration works.
+     * @throws Exception generic exception
      */
     public void testJobDetailMap() throws Exception
     {
@@ -79,6 +83,7 @@ public class DefaultQuartzSchedulerImplT
 
     /**
      * Make sure the "notSoSimpleJob" is triggered by the CronTrigger.
+     * @throws Exception generic exception
      */
     public void testGetTriggersOfJob() throws Exception
     {
@@ -90,6 +95,7 @@ public class DefaultQuartzSchedulerImplT
     /**
      * Test adding/removing a scheduled job which would be executed
      * in the future.
+     * @throws Exception generic exception
      */
     public void testAddRemoveTrigger() throws Exception
     {
@@ -119,6 +125,7 @@ public class DefaultQuartzSchedulerImplT
     /**
      * Make sure that our two registered jobs are executed after
      * one second.
+     * @throws Exception generic exception
      */
     public void testJobExecution() throws Exception
     {

Modified: turbine/fulcrum/trunk/testcontainer/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/testcontainer/src/site/site.xml?rev=1845826&r1=1845825&r2=1845826&view=diff
==============================================================================
--- turbine/fulcrum/trunk/testcontainer/src/site/site.xml (original)
+++ turbine/fulcrum/trunk/testcontainer/src/site/site.xml Mon Nov  5 17:44:28 
2018
@@ -27,6 +27,6 @@
     <menu name="Overview">
       <item name="Main"                           href="/index.html"/>
     </menu>  
-  ${reports}
+  <menu ref="reports"></menu>
   </body>            
 </project>

Modified: turbine/fulcrum/trunk/yaafi-crypto/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/turbine/fulcrum/trunk/yaafi-crypto/src/site/site.xml?rev=1845826&r1=1845825&r2=1845826&view=diff
==============================================================================
--- turbine/fulcrum/trunk/yaafi-crypto/src/site/site.xml (original)
+++ turbine/fulcrum/trunk/yaafi-crypto/src/site/site.xml Mon Nov  5 17:44:28 
2018
@@ -26,6 +26,6 @@
       <item name="Overview"            href="/index.html"/>
       <item name="Downloads"           href="/downloads.html"/>
     </menu>  
-    ${reports}
+    <menu ref="reports"></menu>
   </body>
 </project>


Reply via email to