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/12 17:59:45 UTC

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

Author: arunpatidar
Date: Mon Sep 12 17:59:45 2016
New Revision: 1760421

URL: http://svn.apache.org/viewvc?rev=1760421&view=rev
Log:
Applied patch for "Added CRUD services for AgreementItemTypeAttr entity"  from issue [OFBIZ-7862]

Thanks Rahul Singh for your 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=1760421&r1=1760420&r2=1760421&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/servicedef/services.xml (original)
+++ ofbiz/trunk/applications/party/servicedef/services.xml Mon Sep 12 17:59:45 2016
@@ -1316,5 +1316,19 @@ under the License.
         <permission-service service-name="partyGroupPermissionCheck" main-action="CREATE"/>
         <attribute mode="IN" name="uploadedFile" type="java.nio.ByteBuffer" optional="true" />
     </service>
+    <service name="createAgreementItemTypeAttr" default-entity-name="AgreementItemTypeAttr" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a AgreementItemTypeAttr entry</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateAgreementItemTypeAttr" default-entity-name="AgreementItemTypeAttr" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a AgreementItemTypeAttr record</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteAgreementItemTypeAttr" default-entity-name="AgreementItemTypeAttr" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete a AgreementItemTypeAttr record</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
 
 </services>