Author: arunpatidar
Date: Sat Sep 3 15:56:38 2016 New Revision: 1759097 URL: http://svn.apache.org/viewvc?rev=1759097&view=rev Log: Applied patch from jira issue - OFBIZ-8047 - Added CRUD services for CommunicationEventType entity . Thanks Amit Gadaley and Rishi Solanki for your contribution. Added: ofbiz/trunk/applications/party/servicedef/services_communication.xml Modified: ofbiz/trunk/applications/party/ofbiz-component.xml Modified: ofbiz/trunk/applications/party/ofbiz-component.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/ofbiz-component.xml?rev=1759097&r1=1759096&r2=1759097&view=diff ============================================================================== --- ofbiz/trunk/applications/party/ofbiz-component.xml (original) +++ ofbiz/trunk/applications/party/ofbiz-component.xml Sat Sep 3 15:56:38 2016 @@ -34,6 +34,7 @@ under the License. <entity-resource type="data" reader-name="seed-initial" loader="main" location="data/ScheduledJobs.xml"/> <service-resource type="model" loader="main" location="servicedef/services.xml"/> <service-resource type="model" loader="main" location="servicedef/services_agreement.xml"/> + <service-resource type="model" loader="main" location="servicedef/services_communication.xml"/> <service-resource type="model" loader="main" location="servicedef/services_view.xml"/> <service-resource type="eca" loader="main" location="servicedef/secas.xml"/> <service-resource type="mca" loader="main" location="servicedef/mcas.xml"/> Added: ofbiz/trunk/applications/party/servicedef/services_communication.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/servicedef/services_communication.xml?rev=1759097&view=auto ============================================================================== --- ofbiz/trunk/applications/party/servicedef/services_communication.xml (added) +++ ofbiz/trunk/applications/party/servicedef/services_communication.xml Sat Sep 3 15:56:38 2016 @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8" ?> + +<services xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/services.xsd"> + <description>Party Component Services</description> + <vendor>OFBiz</vendor> + <version>1.0</version> + + <!-- Party communication services --> + <service name="createCommunicationEventType" default-entity-name="CommunicationEventType" engine="entity-auto" invoke="create" auth="true"> + <description>Create a new Communication Event Type Record</description> + <auto-attributes mode="INOUT" include="pk" optional="true"/> + <auto-attributes mode="IN" include="nonpk" optional="true"/> + </service> + <service name="updateCommunicationEventType" default-entity-name="CommunicationEventType" engine="entity-auto" invoke="update" auth="true"> + <description>Update a Communication Event Type Record</description> + <auto-attributes mode="IN" include="pk"/> + <auto-attributes mode="IN" include="nonpk" optional="true"/> + </service> + <service name="deleteCommunicationEventType" default-entity-name="CommunicationEventType" engine="entity-auto" invoke="delete" auth="true"> + <description>Delete a Communication Event Type Record</description> + <auto-attributes mode="IN" include="pk"/> + <auto-attributes mode="IN" include="nonpk" optional="true"/> + </service> + +</services> |
Free forum by Nabble | Edit this page |