Author: ilgrosso
Date: Thu May 22 15:25:01 2014
New Revision: 1596900

URL: http://svn.apache.org/r1596900
Log:
Fixing some Javadocs errors

Modified:
    
syncope/trunk/common/src/main/java/org/apache/syncope/common/to/PropagationStatus.java
    
syncope/trunk/common/src/main/java/org/apache/syncope/common/types/AccountPolicySpec.java
    
syncope/trunk/common/src/main/java/org/apache/syncope/common/types/PropagationTaskExecStatus.java
    
syncope/trunk/common/src/main/java/org/apache/syncope/common/util/BeanUtils.java

Modified: 
syncope/trunk/common/src/main/java/org/apache/syncope/common/to/PropagationStatus.java
URL: 
http://svn.apache.org/viewvc/syncope/trunk/common/src/main/java/org/apache/syncope/common/to/PropagationStatus.java?rev=1596900&r1=1596899&r2=1596900&view=diff
==============================================================================
--- 
syncope/trunk/common/src/main/java/org/apache/syncope/common/to/PropagationStatus.java
 (original)
+++ 
syncope/trunk/common/src/main/java/org/apache/syncope/common/to/PropagationStatus.java
 Thu May 22 15:25:01 2014
@@ -146,7 +146,7 @@ public class PropagationStatus extends A
     /**
      * Propagation execution failure message setter.
      *
-     * @param failureReason
+     * @param failureReason describes why this propagation failed
      */
     public void setFailureReason(final String failureReason) {
         this.failureReason = failureReason;

Modified: 
syncope/trunk/common/src/main/java/org/apache/syncope/common/types/AccountPolicySpec.java
URL: 
http://svn.apache.org/viewvc/syncope/trunk/common/src/main/java/org/apache/syncope/common/types/AccountPolicySpec.java?rev=1596900&r1=1596899&r2=1596900&view=diff
==============================================================================
--- 
syncope/trunk/common/src/main/java/org/apache/syncope/common/types/AccountPolicySpec.java
 (original)
+++ 
syncope/trunk/common/src/main/java/org/apache/syncope/common/types/AccountPolicySpec.java
 Thu May 22 15:25:01 2014
@@ -87,7 +87,7 @@ public class AccountPolicySpec extends A
 
     /**
      * Number of permitted login retries.
-     * 0 disabled; >0 enabled.
+     * 0 disabled; >0 enabled.
      * If the number of subsequent failed logins will be greater then this 
value
      * the account will be suspended (lock-out).
      */

Modified: 
syncope/trunk/common/src/main/java/org/apache/syncope/common/types/PropagationTaskExecStatus.java
URL: 
http://svn.apache.org/viewvc/syncope/trunk/common/src/main/java/org/apache/syncope/common/types/PropagationTaskExecStatus.java?rev=1596900&r1=1596899&r2=1596900&view=diff
==============================================================================
--- 
syncope/trunk/common/src/main/java/org/apache/syncope/common/types/PropagationTaskExecStatus.java
 (original)
+++ 
syncope/trunk/common/src/main/java/org/apache/syncope/common/types/PropagationTaskExecStatus.java
 Thu May 22 15:25:01 2014
@@ -23,9 +23,9 @@ import javax.xml.bind.annotation.XmlEnum
 /**
  * Status of a propagation task execution.
  *
- * CREATED -> SUBMITTED or UBSUBMITTED (depending on the external resource to
+ * CREATED -> SUBMITTED or UBSUBMITTED (depending on the external resource 
to
  * return success or failure).
- * SUBMITTED -> SUCCESS or FAILURE (depending on the external resource to
+ * SUBMITTED -> SUCCESS or FAILURE (depending on the external resource to
  * report success or failure).
  *
  * @see org.apache.syncope.common.to.TaskExecTO

Modified: 
syncope/trunk/common/src/main/java/org/apache/syncope/common/util/BeanUtils.java
URL: 
http://svn.apache.org/viewvc/syncope/trunk/common/src/main/java/org/apache/syncope/common/util/BeanUtils.java?rev=1596900&r1=1596899&r2=1596900&view=diff
==============================================================================
--- 
syncope/trunk/common/src/main/java/org/apache/syncope/common/util/BeanUtils.java
 (original)
+++ 
syncope/trunk/common/src/main/java/org/apache/syncope/common/util/BeanUtils.java
 Thu May 22 15:25:01 2014
@@ -50,14 +50,14 @@ public final class BeanUtils {
 
     /**
      * Copy the property values of the given source bean into the target bean.
-     * <br/>
+     * <p>
      * Note: The source and target classes do not have to match or even be 
derived
      * from each other, as long as the properties match. Any bean properties 
that the
      * source bean exposes but the target bean does not will silently be 
ignored.
-     * <br/>
+     * </p><p>
      * This is just a convenience method. For more complex transfer needs,
      * consider using a full BeanWrapper.
-     *
+     * </p>
      * @param source the source bean
      * @param target the target bean
      * @throws BeansException if the copying failed
@@ -70,13 +70,14 @@ public final class BeanUtils {
     /**
      * Copy the property values of the given source bean into the given target 
bean,
      * only setting properties defined in the given "editable" class (or 
interface).
-     * <br/>
+     * <p>
      * Note: The source and target classes do not have to match or even be 
derived
      * from each other, as long as the properties match. Any bean properties 
that the
      * source bean exposes but the target bean does not will silently be 
ignored.
-     * <br/>
+     * </p><p>
      * This is just a convenience method. For more complex transfer needs,
      * consider using a full BeanWrapper.
+     * </p>
      *
      * @param source the source bean
      * @param target the target bean
@@ -93,13 +94,14 @@ public final class BeanUtils {
     /**
      * Copy the property values of the given source bean into the given target 
bean,
      * ignoring the given "ignoreProperties".
-     * <br/>
+     * <p>
      * Note: The source and target classes do not have to match or even be 
derived
      * from each other, as long as the properties match. Any bean properties 
that the
      * source bean exposes but the target bean does not will silently be 
ignored.
-     * <br/>
+     * </p><p>
      * This is just a convenience method. For more complex transfer needs,
      * consider using a full BeanWrapper.
+     * </p>
      *
      * @param source the source bean
      * @param target the target bean
@@ -115,10 +117,11 @@ public final class BeanUtils {
 
     /**
      * Copy the property values of the given source bean into the given target 
bean.
-     * <br/>
+     * <p>
      * Note: The source and target classes do not have to match or even be 
derived
      * from each other, as long as the properties match. Any bean properties 
that the
      * source bean exposes but the target bean does not will silently be 
ignored.
+     * </p>
      *
      * @param source the source bean
      * @param target the target bean


Reply via email to