Author: arunpatidar
Date: Thu Sep 8 18:29:27 2016
New Revision: 1759882
URL:
http://svn.apache.org/viewvc?rev=1759882&view=revLog:
Applied patch for "Added CRUD services for CountryTeleCode entity" from issue [OFBIZ-8094]
Thanks Amit Gadaley and Rishi Solanki for your contribution.
Modified:
ofbiz/trunk/framework/common/servicedef/services_geo.xml
Modified: ofbiz/trunk/framework/common/servicedef/services_geo.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/servicedef/services_geo.xml?rev=1759882&r1=1759881&r2=1759882&view=diff==============================================================================
--- ofbiz/trunk/framework/common/servicedef/services_geo.xml (original)
+++ ofbiz/trunk/framework/common/servicedef/services_geo.xml Thu Sep 8 18:29:27 2016
@@ -6,6 +6,21 @@
<vendor>OFBiz</vendor>
<version>1.0</version>
+ <service name="createCountryTeleCode" engine="entity-auto" invoke="create" default-entity-name="CountryTeleCode" auth="true">
+ <description>Create a Country Tele Code</description>
+ <auto-attributes include="pk" mode="IN"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="updateCountryTeleCode" engine="entity-auto" invoke="update" default-entity-name="CountryTeleCode" auth="true">
+ <description>Update a Country Tele Code</description>
+ <auto-attributes include="pk" mode="IN"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="deleteCountryTeleCode" engine="entity-auto" invoke="delete" default-entity-name="CountryTeleCode" auth="true">
+ <description>Delete a Country Tele Code</description>
+ <auto-attributes include="pk" mode="IN"/>
+ </service>
+
<service name="createCountryCapital" engine="entity-auto" invoke="create" default-entity-name="CountryCapital" auth="true">
<description>Create a Country Capital</description>
<auto-attributes include="pk" mode="IN"/>