Author: arunpatidar
Date: Thu Sep 8 17:50:14 2016
New Revision: 1759875
URL:
http://svn.apache.org/viewvc?rev=1759875&view=revLog:
Applied patch for "Added CRUD services for ContainerType entity" [OFBIZ-8082]
Thanks Rohit Koushal and Rishi Solanki for your contribution.
Modified:
ofbiz/trunk/applications/product/servicedef/services_facility.xml
Modified: ofbiz/trunk/applications/product/servicedef/services_facility.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/servicedef/services_facility.xml?rev=1759875&r1=1759874&r2=1759875&view=diff==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_facility.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_facility.xml Thu Sep 8 17:50:14 2016
@@ -931,4 +931,18 @@ under the License.
<description>Delete an existing Container Record</description>
<auto-attributes mode="IN" include="pk" optional="false"/>
</service>
+ <service name="createContainerType" default-entity-name="ContainerType" engine="entity-auto" invoke="create" auth="true">
+ <description>Create a new ContainerType Record</description>
+ <auto-attributes mode="INOUT" include="pk" optional="true"/>
+ <auto-attributes mode="IN" include="nonpk" optional="true"/>
+ </service>
+ <service name="updateContainerType" default-entity-name="ContainerType" engine="entity-auto" invoke="update" auth="true">
+ <description>Update a ContainerType</description>
+ <auto-attributes include="pk" mode="IN" optional="false"/>
+ <auto-attributes include="nonpk" mode="IN" optional="true"/>
+ </service>
+ <service name="deleteContainerType" default-entity-name="ContainerType" engine="entity-auto" invoke="delete" auth="true">
+ <description>Delete an existing ContainerType Record</description>
+ <auto-attributes mode="IN" include="pk" optional="false"/>
+ </service>
</services>