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/11/05 17:45:38 UTC

svn commit: r1768258 - /ofbiz/trunk/applications/party/servicedef/services.xml

Author: arunpatidar
Date: Sat Nov  5 17:45:38 2016
New Revision: 1768258

URL: http://svn.apache.org/viewvc?rev=1768258&view=rev
Log:
Implemented: Added CRUD services for CommunicationEventPrpTyp  entity

(OFBIZ-8846) 

Thanks: Amit Gadaley   and Rishi Solanki  for the contribution.

Modified:
    ofbiz/trunk/applications/party/servicedef/services.xml

Modified: ofbiz/trunk/applications/party/servicedef/services.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/servicedef/services.xml?rev=1768258&r1=1768257&r2=1768258&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/servicedef/services.xml (original)
+++ ofbiz/trunk/applications/party/servicedef/services.xml Sat Nov  5 17:45:38 2016
@@ -1420,4 +1420,20 @@ under the License.
         <description>Delete a NeedType</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+
+    <!-- CommunicationEventPrpTyp services -->
+    <service name="createCommunicationEventPrpTyp" default-entity-name="CommunicationEventPrpTyp" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a CommunicationEventPrpTyp</description>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+        <auto-attributes include="pk" mode="INOUT" optional="true"/>
+    </service>
+    <service name="updateCommunicationEventPrpTyp" default-entity-name="CommunicationEventPrpTyp" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a CommunicationEventPrpTyp</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteCommunicationEventPrpTyp" default-entity-name="CommunicationEventPrpTyp" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete a CommunicationEventPrpTyp</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 </services>