Author: arunpatidar
Date: Sat Sep  3 16:28:19 2016
New Revision: 1759101

URL: http://svn.apache.org/viewvc?rev=1759101&view=rev
Log:
Applied patch from jira issue - OFBIZ-8062 - Added CRUD services for 
ContactMechTypeAttr 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=1759101&r1=1759100&r2=1759101&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/servicedef/services_contact.xml (original)
+++ ofbiz/trunk/applications/party/servicedef/services_contact.xml Sat Sep  3 
16:28:19 2016
@@ -38,5 +38,18 @@
         <auto-attributes mode="IN" include="pk"/>
         <auto-attributes mode="IN" include="nonpk" optional="true"/>
     </service>
-    
+    <service name="createContactMechTypeAttr" 
default-entity-name="ContactMechTypeAttr" engine="entity-auto" invoke="create" 
auth="true">
+        <description>Create a new ContactMech Type Attr Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateContactMechTypeAttr" 
default-entity-name="ContactMechTypeAttr" engine="entity-auto" invoke="update" 
auth="true">
+        <description>Update a ContactMech Type Attr Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="deleteContactMechTypeAttr" 
default-entity-name="ContactMechTypeAttr" engine="entity-auto" invoke="delete" 
auth="true">
+        <description>Delete an existing ContactMech Type Attr 
Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+    </service>
 </services>


Reply via email to