You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ar...@apache.org on 2016/09/12 18:49:28 UTC

svn commit: r1760434 - /ofbiz/trunk/framework/common/servicedef/services.xml

Author: arunpatidar
Date: Mon Sep 12 18:49:28 2016
New Revision: 1760434

URL: http://svn.apache.org/viewvc?rev=1760434&view=rev
Log:
Applied patch for "Added CRUD services for GeoType entity"  from issue [OFBIZ-8017]

Thanks Aman Mishra for your contribution.

Modified:
    ofbiz/trunk/framework/common/servicedef/services.xml

Modified: ofbiz/trunk/framework/common/servicedef/services.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/servicedef/services.xml?rev=1760434&r1=1760433&r2=1760434&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/servicedef/services.xml (original)
+++ ofbiz/trunk/framework/common/servicedef/services.xml Mon Sep 12 18:49:28 2016
@@ -840,4 +840,21 @@ under the License.
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
 
+    <service name="createGeoType" engine="entity-auto" default-entity-name="GeoType" invoke="create" auth="true">
+        <description>Create GeoType</description>
+        <auto-attributes include="pk" mode="INOUT" optional="true"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+
+    <service name="updateGeoType" engine="entity-auto" default-entity-name="GeoType" invoke="update" auth="true">
+        <description>Update GeoType</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+
+    <service name="deleteGeoType" engine="entity-auto" default-entity-name="GeoType" invoke="delete" auth="true">
+        <description>Delete GeoType</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
+
 </services>