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/03 16:24:21 UTC

svn commit: r1759100 - /ofbiz/trunk/applications/party/servicedef/services_contact.xml

Author: arunpatidar
Date: Sat Sep  3 16:24:21 2016
New Revision: 1759100

URL: http://svn.apache.org/viewvc?rev=1759100&view=rev
Log:
Applied patch from jira issue - OFBIZ-8061 - Added CRUD services for ContactMechType 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=1759100&r1=1759099&r2=1759100&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/servicedef/services_contact.xml (original)
+++ ofbiz/trunk/applications/party/servicedef/services_contact.xml Sat Sep  3 16:24:21 2016
@@ -7,6 +7,22 @@
     <version>1.0</version>
 
     <!-- Party contact services -->
+    <service name="createContactMechType" default-entity-name="ContactMechType" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new ContactMech Type Record</description>
+        <auto-attributes mode="INOUT" include="pk" optional="true"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateContactMechType" default-entity-name="ContactMechType" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a ContactMech Type Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="deleteContactMechType" default-entity-name="ContactMechType" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete a ContactMech Type Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+
     <service name="createContactMechPurposeType" default-entity-name="ContactMechPurposeType" engine="entity-auto" invoke="create" auth="true">
         <description>Create a new ContactMech Purpose Type Record</description>
         <auto-attributes mode="INOUT" include="pk" optional="true"/>