You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by by...@apache.org on 2007/01/24 06:07:04 UTC

svn commit: r499262 - /ofbiz/trunk/applications/content/src/org/ofbiz/content/blog/BlogServices.java

Author: byersa
Date: Tue Jan 23 21:07:04 2007
New Revision: 499262

URL: http://svn.apache.org/viewvc?view=rev&rev=499262
Log:
Moved some documentation that was out of place.

Modified:
    ofbiz/trunk/applications/content/src/org/ofbiz/content/blog/BlogServices.java

Modified: ofbiz/trunk/applications/content/src/org/ofbiz/content/blog/BlogServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/src/org/ofbiz/content/blog/BlogServices.java?view=diff&rev=499262&r1=499261&r2=499262
==============================================================================
--- ofbiz/trunk/applications/content/src/org/ofbiz/content/blog/BlogServices.java (original)
+++ ofbiz/trunk/applications/content/src/org/ofbiz/content/blog/BlogServices.java Tue Jan 23 21:07:04 2007
@@ -18,16 +18,6 @@
  *******************************************************************************/
 package org.ofbiz.content.blog;
 
-/*
- * Created on Jan 28, 2005
- *
- * This service persists a blog article.
- * It can persist text only, image only or a combination of content types.
- * If text or image only, that content is attached directly to the main
- * content as an ElectronicText or ImageDataResource entity.
- * If a combination is desired, the two content pieces (image and text) are associated
- * through a predefined screen widget template (ie. drDataTemplateTypeId="SCREEN_COMBINED").
- */
     
 import java.util.HashMap;
 import java.util.Map;
@@ -44,6 +34,16 @@
 
 public class BlogServices {
 
+    /**
+     * This service persists a blog article.
+     * 
+     * It can persist text only, image only or a combination of content types.
+     * If text or image only, that content is attached directly to the main
+     * content as an ElectronicText or ImageDataResource entity.
+     * If a combination is desired, the two content pieces (image and text) are associated
+     * through a predefined screen widget template (ie. drDataTemplateTypeId="SCREEN_COMBINED").
+     */
+    
     public static Map persistBlogAll(DispatchContext dctx, Map context) throws GenericServiceException {
 
         Map result = new HashMap();