Author: arunpatidar
Date: Mon Sep 12 18:49:28 2016
New Revision: 1760434
URL:
http://svn.apache.org/viewvc?rev=1760434&view=revLog:
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>