svn commit: r894037 - in /ofbiz/trunk/framework: base/src/org/ofbiz/base/util/ base/src/org/ofbiz/base/util/template/ entity/src/org/ofbiz/entity/ security/src/org/ofbiz/security/authz/

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r894037 - in /ofbiz/trunk/framework: base/src/org/ofbiz/base/util/ base/src/org/ofbiz/base/util/template/ entity/src/org/ofbiz/entity/ security/src/org/ofbiz/security/authz/

doogie-3
Author: doogie
Date: Sun Dec 27 01:01:01 2009
New Revision: 894037

URL: http://svn.apache.org/viewvc?rev=894037&view=rev
Log:
Fix some javadoc warnings.

Modified:
    ofbiz/trunk/framework/base/src/org/ofbiz/base/util/RMIExtendedSocketFactory.java
    ofbiz/trunk/framework/base/src/org/ofbiz/base/util/StringUtil.java
    ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilMisc.java
    ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java
    ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericDelegator.java
    ofbiz/trunk/framework/security/src/org/ofbiz/security/authz/AbstractAuthorization.java

Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/RMIExtendedSocketFactory.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/RMIExtendedSocketFactory.java?rev=894037&r1=894036&r2=894037&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/RMIExtendedSocketFactory.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/RMIExtendedSocketFactory.java Sun Dec 27 01:01:01 2009
@@ -39,7 +39,7 @@
      * Creates a new <code>RMIExtendedSocketFactory</code> which will create <code>ServerSocket</code>s
      * bound on the specified network interface.
      *
-     * @param host The IP address of the interface to bind the server sockets to.
+     * @param hostIpAddress The IP address of the interface to bind the server sockets to.
      * @throws UnknownHostException If an invalid IP address is provided.
      */
     public RMIExtendedSocketFactory( String hostIpAddress ) throws UnknownHostException {

Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/StringUtil.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/StringUtil.java?rev=894037&r1=894036&r2=894037&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/StringUtil.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/StringUtil.java Sun Dec 27 01:01:01 2009
@@ -724,7 +724,7 @@
          * Fairly simple method used for the plus (+) base concatenation in Groovy.
          *
          * @param value
-         * @return
+         * @return the wrapped string, plus the value
          */
         public String plus(Object value) {
             return this.theString + value;

Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilMisc.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilMisc.java?rev=894037&r1=894036&r2=894037&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilMisc.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilMisc.java Sun Dec 27 01:01:01 2009
@@ -236,7 +236,6 @@
      *
      * @param <V>
      * @param map
-     * @return
      */
     public static <V> void makeMapSerializable(Map<String, V> map) {
         // now filter out all non-serializable values

Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java?rev=894037&r1=894036&r2=894037&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/template/XslTransform.java Sun Dec 27 01:01:01 2009
@@ -61,7 +61,6 @@
     /**
      * @param template the content or url of the xsl template
      * @param data the content or url of the xml data file
-     * @param outWriter The Writer to render to
      * @throws TransformerException
      */
     public static String renderTemplate(String template, String data)

Modified: ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericDelegator.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericDelegator.java?rev=894037&r1=894036&r2=894037&view=diff
==============================================================================
--- ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericDelegator.java (original)
+++ ofbiz/trunk/framework/entity/src/org/ofbiz/entity/GenericDelegator.java Sun Dec 27 01:01:01 2009
@@ -126,7 +126,7 @@
 
     /** @deprecated Use Delegator delegator = DelegatorFactory.getDelegator(delegatorName);
      * @param delegatorName
-     * @return
+     * @return the configured delegator
      */
     @Deprecated
     public static GenericDelegator getGenericDelegator(String delegatorName) {

Modified: ofbiz/trunk/framework/security/src/org/ofbiz/security/authz/AbstractAuthorization.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/security/src/org/ofbiz/security/authz/AbstractAuthorization.java?rev=894037&r1=894036&r2=894037&view=diff
==============================================================================
--- ofbiz/trunk/framework/security/src/org/ofbiz/security/authz/AbstractAuthorization.java (original)
+++ ofbiz/trunk/framework/security/src/org/ofbiz/security/authz/AbstractAuthorization.java Sun Dec 27 01:01:01 2009
@@ -84,7 +84,7 @@
      * @param userId the user's userId
      * @param permissionRegexp permission string containing regexp in the base position    
      * @param expanded  true if the permission string is already expanded, false if it will contain ${} context values
-     * @return
+     * @return a map of allowed or disallowed permissions
      */
     public Map<String, Boolean> findMatchingPermission(String userId, String permissionRegexp, Map<String, ? extends Object> context) {
         Map<String, Boolean> resultMap = FastMap.newInstance();