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/07 01:14:39 UTC

svn commit: r1759530 - /ofbiz/trunk/applications/content/servicedef/services_commevent.xml

Author: arunpatidar
Date: Wed Sep  7 01:14:39 2016
New Revision: 1759530

URL: http://svn.apache.org/viewvc?rev=1759530&view=rev
Log:
Applied patch from jira issue - OFBIZ-8022 - Added CRUD services for CommContentAssocType entity . Thanks Rohit Koushal and Rishi Solanki for your contribution.

Modified:
    ofbiz/trunk/applications/content/servicedef/services_commevent.xml

Modified: ofbiz/trunk/applications/content/servicedef/services_commevent.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/servicedef/services_commevent.xml?rev=1759530&r1=1759529&r2=1759530&view=diff
==============================================================================
--- ofbiz/trunk/applications/content/servicedef/services_commevent.xml (original)
+++ ofbiz/trunk/applications/content/servicedef/services_commevent.xml Wed Sep  7 01:14:39 2016
@@ -79,4 +79,19 @@ under the License.
         <attribute name="fromDate" type="java.sql.Timestamp" mode="IN" optional="false"/>
     </service>
 
+    <service name="createCommContentAssocType" default-entity-name="CommContentAssocType" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new Comm Content Assoc Type Record</description>
+        <auto-attributes mode="INOUT" include="pk" optional="true"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateCommContentAssocType" default-entity-name="CommContentAssocType" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a Comm Content Assoc Type</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteCommContentAssocType" default-entity-name="CommContentAssocType" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete an existing Comm Content Assoc Type Record</description>
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+    </service>
+
 </services>