Author: arunpatidar
Date: Sat Sep 3 16:32:35 2016
New Revision: 1759102
URL:
http://svn.apache.org/viewvc?rev=1759102&view=revLog:
Applied patch from jira issue - OFBIZ-8080 - Added CRUD services for ContactMechTypePurpose entity . Thanks Amit Gadaley and Rishi Solanki for your contribution.
Modified:
ofbiz/trunk/applications/party/servicedef/services_contact.xml
Modified: ofbiz/trunk/applications/party/servicedef/services_contact.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/servicedef/services_contact.xml?rev=1759102&r1=1759101&r2=1759102&view=diff==============================================================================
--- ofbiz/trunk/applications/party/servicedef/services_contact.xml (original)
+++ ofbiz/trunk/applications/party/servicedef/services_contact.xml Sat Sep 3 16:32:35 2016
@@ -52,4 +52,19 @@
<description>Delete an existing ContactMech Type Attr Record</description>
<auto-attributes mode="IN" include="pk"/>
</service>
+
+ <service name="createContactMechTypePurpose" default-entity-name="ContactMechTypePurpose" engine="entity-auto" invoke="create" auth="true">
+ <description>Create a new ContactMech Type Purpose Record</description>
+ <auto-attributes mode="IN" include="pk"/>
+ <auto-attributes mode="IN" include="nonpk" optional="true"/>
+ </service>
+ <service name="updateContactMechTypePurpose" default-entity-name="ContactMechTypePurpose" engine="entity-auto" invoke="update" auth="true">
+ <description>Update a ContactMech Type Purpose Record</description>
+ <auto-attributes mode="IN" include="pk"/>
+ <auto-attributes mode="IN" include="nonpk" optional="true"/>
+ </service>
+ <service name="deleteContactMechTypePurpose" default-entity-name="ContactMechTypePurpose" engine="entity-auto" invoke="delete" auth="true">
+ <description>Delete an existing ContactMech Type Purpose Record</description>
+ <auto-attributes mode="IN" include="pk"/>
+ </service>
</services>