svn commit: r1553937 - in /ofbiz/branches/release11.04: ./ applications/content/script/org/ofbiz/content/data/DataServices.xml

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

svn commit: r1553937 - in /ofbiz/branches/release11.04: ./ applications/content/script/org/ofbiz/content/data/DataServices.xml

jleroux@apache.org
Author: jleroux
Date: Sat Dec 28 21:53:09 2013
New Revision: 1553937

URL: http://svn.apache.org/r1553937
Log:
"Applied fix from trunk for revision: 1364218" jleroux: Conflict one 'specialpurpose\scrum' résolved: Tree conflicts: 0 remaining (and 1 already resolved)
------------------------------------------------------------------------
r1364218 | jacopoc | 2012-07-22 09:03:34 +0200 (dim. 22 juil. 2012) | 1 ligne

Removed duplicated service implementations (there were 2 copies in the same file).
------------------------------------------------------------------------


Modified:
    ofbiz/branches/release11.04/   (props changed)
    ofbiz/branches/release11.04/applications/content/script/org/ofbiz/content/data/DataServices.xml

Propchange: ofbiz/branches/release11.04/
------------------------------------------------------------------------------
  Merged /ofbiz/trunk:r1364218

Modified: ofbiz/branches/release11.04/applications/content/script/org/ofbiz/content/data/DataServices.xml
URL: http://svn.apache.org/viewvc/ofbiz/branches/release11.04/applications/content/script/org/ofbiz/content/data/DataServices.xml?rev=1553937&r1=1553936&r2=1553937&view=diff
==============================================================================
--- ofbiz/branches/release11.04/applications/content/script/org/ofbiz/content/data/DataServices.xml (original)
+++ ofbiz/branches/release11.04/applications/content/script/org/ofbiz/content/data/DataServices.xml Sat Dec 28 21:53:09 2013
@@ -106,28 +106,6 @@ under the License.
        <if-compare field="dataResource.dataResourceTypeId" operator="equals" value="IMAGE_OBJECT"><return response-code="${dataResource.dataResourceTypeId}"/></if-compare>      
     </simple-method>
 
-  <!-- Methods for DataCategory -->
-    <simple-method method-name="createDataCategory" short-description="Create a Data Category">
-        <make-value entity-name="DataCategory" value-field="newEntity"/>
-        <set-nonpk-fields map="parameters" value-field="newEntity"/>
-        <set-pk-fields map="parameters" value-field="newEntity"/>
-        <create-value value-field="newEntity"/>
-        <field-to-result field="newEntity.dataCategoryId" result-name="dataCategoryId"/>
-    </simple-method>
-    <simple-method method-name="updateDataCategory" short-description="Update a Data Category">
-        <make-value entity-name="DataCategory" value-field="lookupKeyValue"/>
-        <set-pk-fields map="parameters" value-field="lookupKeyValue"/>
-        <find-by-primary-key entity-name="DataCategory" map="lookupKeyValue" value-field="lookedUpValue"/>
-        <set-nonpk-fields map="parameters" value-field="lookedUpValue"/>
-        <store-value value-field="lookedUpValue"/>
-    </simple-method>
-    <simple-method method-name="deleteDataCategory" short-description="Delete a Data Category">
-        <make-value entity-name="DataCategory" value-field="lookupKeyValue"/>
-        <set-pk-fields map="parameters" value-field="lookupKeyValue"/>
-        <find-by-primary-key entity-name="DataCategory" map="lookupKeyValue" value-field="lookedUpValue"/>
-        <remove-value value-field="lookedUpValue"/>
-    </simple-method>
-
   <!-- Methods for DataResourceMetaData -->
     <simple-method method-name="createDataResourceMetaData" short-description="Create Data Resource Meta Data">
         <check-permission permission="CONTENTMGR" action="_CREATE">