Implemented: Add the entity-auto CRUD services for JobSandbox
(OFBIZ-9159)


git-svn-id: https://svn.apache.org/repos/asf/ofbiz/trunk@1776528 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/service/servicedef/services.xml b/framework/service/servicedef/services.xml
index 341652f..34307b8 100644
--- a/framework/service/servicedef/services.xml
+++ b/framework/service/servicedef/services.xml
@@ -222,4 +222,21 @@
         <description>Delete a SequenceValueItem</description>
         <auto-attributes include="pk" mode="IN" optional="false"/>
     </service>
+
+    <!-- JobSandbox Services -->
+    <service name="createJobSandbox" engine="entity-auto" invoke="create" default-entity-name="JobSandbox" auth="true">
+        <description>Create JobSandbox record</description>
+        <auto-attributes include="pk" mode="INOUT" optional="true"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateJobSandbox" engine="entity-auto" invoke="update" default-entity-name="JobSandbox" auth="true">
+        <description>Update JobSandbox record</description>
+        <auto-attributes include="pk" mode="IN"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteJobSandbox" engine="entity-auto" invoke="delete" default-entity-name="JobSandbox" auth="true">
+        <description>Delete JobSandbox record</description>
+        <auto-attributes include="pk" mode="IN"/>
+    </service>
+
 </services>