You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2014/01/03 15:05:06 UTC

svn commit: r1555094 - in /syncope/trunk/common/src/main/java/org/apache/syncope/common: services/ConnectorService.java to/ConnInstanceTO.java types/PropagationTaskExecStatus.java types/RESTHeaders.java util/BeanUtils.java

Author: ilgrosso
Date: Fri Jan  3 14:05:06 2014
New Revision: 1555094

URL: http://svn.apache.org/r1555094
Log:
Fixing javadocs warnings

Modified:
    syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ConnectorService.java
    syncope/trunk/common/src/main/java/org/apache/syncope/common/to/ConnInstanceTO.java
    syncope/trunk/common/src/main/java/org/apache/syncope/common/types/PropagationTaskExecStatus.java
    syncope/trunk/common/src/main/java/org/apache/syncope/common/types/RESTHeaders.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/services/ConnectorService.java
URL: http://svn.apache.org/viewvc/syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ConnectorService.java?rev=1555094&r1=1555093&r2=1555094&view=diff
==============================================================================
--- syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ConnectorService.java (original)
+++ syncope/trunk/common/src/main/java/org/apache/syncope/common/services/ConnectorService.java Fri Jan  3 14:05:06 2014
@@ -124,7 +124,7 @@ public interface ConnectorService extend
     ConnInstanceTO readByResource(@PathParam("resourceName") String resourceName);
 
     /**
-     * @Returns a list of all connector instances with property keys in the matching language.
+     * Returns a list of all connector instances with property keys in the matching language.
      *
      * @param lang language to select property keys, null for default (English).
      * An ISO 639 alpha-2 or alpha-3 language code, or a language subtag up to 8 characters in length.

Modified: syncope/trunk/common/src/main/java/org/apache/syncope/common/to/ConnInstanceTO.java
URL: http://svn.apache.org/viewvc/syncope/trunk/common/src/main/java/org/apache/syncope/common/to/ConnInstanceTO.java?rev=1555094&r1=1555093&r2=1555094&view=diff
==============================================================================
--- syncope/trunk/common/src/main/java/org/apache/syncope/common/to/ConnInstanceTO.java (original)
+++ syncope/trunk/common/src/main/java/org/apache/syncope/common/to/ConnInstanceTO.java Fri Jan  3 14:05:06 2014
@@ -147,7 +147,8 @@ public class ConnInstanceTO extends Abst
     }
 
     /**
-     * Get connector request timeout. It is not applied in case of sync, full reconciliation and search.
+     * Get connector request timeout.
+     * It is not applied in case of sync, full reconciliation and search.
      *
      * @return timeout.
      */
@@ -156,9 +157,10 @@ public class ConnInstanceTO extends Abst
     }
 
     /**
-     * Set connector request timeout. It is not applied in case of sync, full reconciliation and search.
+     * Set connector request timeout.
+     * It is not applied in case of sync, full reconciliation and search.
      *
-     * @param timeout.
+     * @param connRequestTimeout timeout
      */
     public void setConnRequestTimeout(final Integer connRequestTimeout) {
         this.connRequestTimeout = connRequestTimeout;

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=1555094&r1=1555093&r2=1555094&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 Fri Jan  3 14:05:06 2014
@@ -21,14 +21,14 @@ package org.apache.syncope.common.types;
 import javax.xml.bind.annotation.XmlEnum;
 
 /**
- * Status of a TaskExecution.
+ * Status of a propagation task execution.
  *
  * CREATED -> SUBMITTED or UBSUBMITTED (depending on the external resource to
  * return success or failure).
  * SUBMITTED -> SUCCESS or FAILURE (depending on the external resource to
  * report success or failure).
  *
- * @see TaskExecution
+ * @see org.apache.syncope.common.to.TaskExecTO
  */
 @XmlEnum
 public enum PropagationTaskExecStatus {

Modified: syncope/trunk/common/src/main/java/org/apache/syncope/common/types/RESTHeaders.java
URL: http://svn.apache.org/viewvc/syncope/trunk/common/src/main/java/org/apache/syncope/common/types/RESTHeaders.java?rev=1555094&r1=1555093&r2=1555094&view=diff
==============================================================================
--- syncope/trunk/common/src/main/java/org/apache/syncope/common/types/RESTHeaders.java (original)
+++ syncope/trunk/common/src/main/java/org/apache/syncope/common/types/RESTHeaders.java Fri Jan  3 14:05:06 2014
@@ -67,17 +67,17 @@ public final class RESTHeaders {
 
     /**
      * Allows the client to specify a preference for the result to be returned from the server.
+     * <a href="http://msdn.microsoft.com/en-us/library/hh537533.aspx">More information</a>.
      *
      * @see Preference
-     * @see http://msdn.microsoft.com/en-us/library/hh537533.aspx
      */
     public static final String PREFER = "Prefer";
 
     /**
      * Allowd the server to inform the client about the fact that a specified preference was applied.
+     * <a href="http://msdn.microsoft.com/en-us/library/hh554623.aspx">More information</a>.
      *
      * @see Preference
-     * @see http://msdn.microsoft.com/en-us/library/hh554623.aspx
      */
     public static final String PREFERENCE_APPLIED = "Preference-Applied";
 

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=1555094&r1=1555093&r2=1555094&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 Fri Jan  3 14:05:06 2014
@@ -35,8 +35,9 @@ import org.springframework.util.Assert;
  * Overrides Spring's BeanUtils not using collection setters but instead getters + addAll() / putAll(),
  * in a JAXB friendly way.
  *
+ * Refer to <a href="https://issues.apache.org/jira/browse/SYNCOPE-246">SYNCOPE-246</a> for more information.
+ *
  * @see org.springframework.beans.BeanUtils
- * @see https://issues.apache.org/jira/browse/SYNCOPE-246
  */
 public final class BeanUtils {
 
@@ -46,11 +47,12 @@ public final class BeanUtils {
 
     /**
      * Copy the property values of the given source bean into the target bean.
-     * <p>Note: The source and target classes do not have to match or even be derived
+     * <br/>
+     * 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>This is just a convenience method. For more complex transfer needs,
-     * consider using a full BeanWrapper.
+     * <br/>
+     * This is just a convenience method. For more complex transfer needs, consider using a full BeanWrapper.
      *
      * @param source the source bean
      * @param target the target bean
@@ -63,7 +65,8 @@ public final class BeanUtils {
 
     /**
      * Copy the property values of the given source bean into the given target bean.
-     * <p>Note: The source and target classes do not have to match or even be derived
+     * <br/>
+     * 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.
      *