svn commit: r1127256 - in /ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext: EntityWatchServices.java cache/EntityCacheServices.java

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

svn commit: r1127256 - in /ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext: EntityWatchServices.java cache/EntityCacheServices.java

mrisaliti
Author: mrisaliti
Date: Tue May 24 20:13:33 2011
New Revision: 1127256

URL: http://svn.apache.org/viewvc?rev=1127256&view=rev
Log:
Removed some javadoc warning (wrong param/return) into entityext component no functional changes

Modified:
    ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java
    ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/cache/EntityCacheServices.java

Modified: ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java?rev=1127256&r1=1127255&r2=1127256&view=diff
==============================================================================
--- ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java (original)
+++ ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/EntityWatchServices.java Tue May 24 20:13:33 2011
@@ -34,9 +34,9 @@ public class EntityWatchServices {
     /**
      * This service is meant to be called through an Entity ECA (EECA) to watch an entity
      *
-     * @param dctx
-     * @param context
-     * @return
+     * @param dctx the dispatch context
+     * @param context the context
+     * @return the result of the service execution
      */
     public static Map<String, Object> watchEntity(DispatchContext dctx, Map<String, ? extends Object> context) {
         GenericValue newValue = (GenericValue) context.get("newValue");

Modified: ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/cache/EntityCacheServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/cache/EntityCacheServices.java?rev=1127256&r1=1127255&r2=1127256&view=diff
==============================================================================
--- ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/cache/EntityCacheServices.java (original)
+++ ofbiz/trunk/framework/entityext/src/org/ofbiz/entityext/cache/EntityCacheServices.java Tue May 24 20:13:33 2011
@@ -165,9 +165,9 @@ public class EntityCacheServices impleme
 
     /**
      * Clear All Entity Caches Service
-     *@param ctx The DispatchContext that this service is operating in
-     *@param context Map containing the input parameters
-     *@return Map with the result of the service, the output parameters
+     * @param dctx The DispatchContext that this service is operating in
+     * @param context Map containing the input parameters
+     * @return Map with the result of the service, the output parameters
      */
     public static Map<String, Object> clearAllEntityCaches(DispatchContext dctx, Map<String, ? extends Object> context) {
         Delegator delegator = dctx.getDelegator();
@@ -182,9 +182,9 @@ public class EntityCacheServices impleme
 
     /**
      * Clear Cache Line Service: one of the following context parameters is required: value, dummyPK or primaryKey
-     *@param ctx The DispatchContext that this service is operating in
-     *@param context Map containing the input parameters
-     *@return Map with the result of the service, the output parameters
+     * @param dctx The DispatchContext that this service is operating in
+     * @param context Map containing the input parameters
+     * @return Map with the result of the service, the output parameters
      */
     public static Map<String, Object> clearCacheLine(DispatchContext dctx, Map<String, ? extends Object> context) {
         Delegator delegator = dctx.getDelegator();