Author: jleroux Date: Fri Dec 30 08:53:50 2016 New Revision: 1776528 URL: http://svn.apache.org/viewvc?rev=1776528&view=rev Log: Implemented: Add the entity-auto CRUD services for JobSandbox (OFBIZ-9159)
Modified: ofbiz/trunk/framework/service/servicedef/services.xml Modified: ofbiz/trunk/framework/service/servicedef/services.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/servicedef/services.xml?rev=1776528&r1=1776527&r2=1776528&view=diff ============================================================================== --- ofbiz/trunk/framework/service/servicedef/services.xml (original) +++ ofbiz/trunk/framework/service/servicedef/services.xml Fri Dec 30 08:53:50 2016 @@ -222,4 +222,21 @@ under the License. <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>