svn commit: r1759532 - /ofbiz/trunk/applications/product/servicedef/services_facility.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1759532 - /ofbiz/trunk/applications/product/servicedef/services_facility.xml

Arun Patidar-4
Author: arunpatidar
Date: Wed Sep  7 01:18:09 2016
New Revision: 1759532

URL: http://svn.apache.org/viewvc?rev=1759532&view=rev
Log:
Applied patch from jira issue - OFBIZ-8081 - Added CRUD services for Container entity . 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=1759532&r1=1759531&r2=1759532&view=diff
==============================================================================
--- ofbiz/trunk/applications/product/servicedef/services_facility.xml (original)
+++ ofbiz/trunk/applications/product/servicedef/services_facility.xml Wed Sep  7 01:18:09 2016
@@ -917,4 +917,18 @@ under the License.
         <override name="latitude" optional="false"/>
         <override name="longitude" optional="false"/>
     </service>
+    <service name="createContainer" default-entity-name="Container" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a new Container Record</description>
+        <auto-attributes mode="INOUT" include="pk" optional="true"/>
+        <auto-attributes mode="IN" include="nonpk" optional="true"/>
+    </service>
+    <service name="updateContainer" default-entity-name="Container" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a Container</description>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteContainer" default-entity-name="Container" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete an existing Container Record</description>
+        <auto-attributes mode="IN" include="pk" optional="false"/>
+    </service>
 </services>