Author: arunpatidar
Date: Mon Sep 12 18:13:20 2016
New Revision: 1760424
URL:
http://svn.apache.org/viewvc?rev=1760424&view=revLog:
Applied patch for "Added CRUD services for AgreementAttribute entity" from issue [OFBIZ-7868]
Thanks Rahul Singh and Rishi Solanki 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=1760424&r1=1760423&r2=1760424&view=diff==============================================================================
--- ofbiz/trunk/applications/party/servicedef/services.xml (original)
+++ ofbiz/trunk/applications/party/servicedef/services.xml Mon Sep 12 18:13:20 2016
@@ -1309,6 +1309,20 @@ under the License.
<attribute name="userLoginId" type="String" mode="IN" optional="false"/>
<attribute name="productStoreId" type="String" mode="IN" optional="false"/>
</service>
+ <service name="createAgreementAttribute" default-entity-name="AgreementAttribute" engine="entity-auto" invoke="create" auth="true">
+ <description>Create a AgreementAttribute entry</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="updateAgreementAttribute" default-entity-name="AgreementAttribute" engine="entity-auto" invoke="update" auth="true">
+ <description>Update a AgreementAttribute record</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="deleteAgreementAttribute" default-entity-name="AgreementAttribute" engine="entity-auto" invoke="delete" auth="true">
+ <description>Delete a AgreementAttribute record</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ </service>
<service name="importParty" engine="java"
location="org.apache.ofbiz.party.party.PartyServices" invoke="importParty" auth="true">