Author: arunpatidar
Date: Mon Sep 12 18:31:05 2016
New Revision: 1760429
URL:
http://svn.apache.org/viewvc?rev=1760429&view=revLog:
Applied patch for "Added CRUD services for GeoAssocType entity" from issue [OFBIZ-8008]
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=1760429&r1=1760428&r2=1760429&view=diff==============================================================================
--- ofbiz/trunk/framework/common/servicedef/services.xml (original)
+++ ofbiz/trunk/framework/common/servicedef/services.xml Mon Sep 12 18:31:05 2016
@@ -823,4 +823,21 @@ under the License.
<attribute name="name" mode="IN" type="String" optional="false"/>
</service>
+ <service name="createGeoAssocType" engine="entity-auto" default-entity-name="GeoAssocType" invoke="create" auth="true">
+ <description>Create GeoAssocType</description>
+ <auto-attributes include="pk" mode="INOUT" optional="true"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+
+ <service name="updateGeoAssocType" engine="entity-auto" default-entity-name="GeoAssocType" invoke="update" auth="true">
+ <description>Update GeoAssocType</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+
+ <service name="deleteGeoAssocType" engine="entity-auto" default-entity-name="GeoAssocType" invoke="delete" auth="true">
+ <description>Delete GeoAssocType</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ </service>
+
</services>