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:57:09 UTC

svn commit: r1768260 - /ofbiz/trunk/applications/party/servicedef/services_agreement.xml

Author: arunpatidar
Date: Sat Nov  5 17:57:09 2016
New Revision: 1768260

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

(OFBIZ-966) 

Thanks: Amit Gadaley   and Rishi Solanki  for the contribution.

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

Modified: ofbiz/trunk/applications/party/servicedef/services_agreement.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/servicedef/services_agreement.xml?rev=1768260&r1=1768259&r2=1768260&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/servicedef/services_agreement.xml (original)
+++ ofbiz/trunk/applications/party/servicedef/services_agreement.xml Sat Nov  5 17:57:09 2016
@@ -79,4 +79,20 @@
         <description>Delete Addendum record</description>
         <auto-attributes mode="IN" include="pk"/>
     </service>
+
+    <!-- AgreementContentType services -->
+    <service name="createAgreementContentType" default-entity-name="AgreementContentType" engine="entity-auto" invoke="create" auth="true">
+        <description>Create AgreementContentType Record</description>
+        <auto-attributes mode="INOUT" include="pk" optional="true"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateAgreementContentType" default-entity-name="AgreementContentType" engine="entity-auto" invoke="update" auth="true">
+        <description>Update AgreementContentType Record</description>
+        <auto-attributes mode="IN" include="pk"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="deleteAgreementContentType" default-entity-name="AgreementContentType" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete AgreementContentType record</description>
+        <auto-attributes mode="IN" include="pk"/>
+    </service>
 </services>