ilscipio/scipio-erp

View on GitHub
framework/common/servicedef/services_method.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8" ?>
<!--
This file is subject to the terms and conditions defined in the
files 'LICENSE' and 'NOTICE', which are part of this source
code package.
-->

<services xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/services.xsd">
    <description>OFBiz Method Services</description>
    <vendor>OFBiz</vendor>
    <version>1.0</version>

    <service name="createCustomMethod" engine="entity-auto" invoke="create" default-entity-name="CustomMethod" auth="true">
        <description>Create a Custom Method</description>
        <auto-attributes include="pk" mode="INOUT" optional="true"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="updateCustomMethod" engine="entity-auto" invoke="update" default-entity-name="CustomMethod" auth="true">
        <description>Update a Custom Method</description>
        <auto-attributes include="pk" mode="IN"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="deleteCustomMethod" engine="entity-auto" invoke="delete" default-entity-name="CustomMethod" auth="true">
        <description>Delete a Custom Method</description>
        <auto-attributes include="pk" mode="IN"/>
    </service>

    <service name="createCustomMethodType" engine="entity-auto" invoke="create" default-entity-name="CustomMethodType" auth="true">
        <description>Create a Custom Method Type</description>
        <auto-attributes include="pk" mode="INOUT" optional="true"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="updateCustomMethodType" engine="entity-auto" invoke="update" default-entity-name="CustomMethodType" auth="true">
        <description>Update a Custom Method Type</description>
        <auto-attributes include="pk" mode="IN"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="deleteCustomMethodType" engine="entity-auto" invoke="delete" default-entity-name="CustomMethodType" auth="true">
        <description>Delete a Custom Method Type</description>
        <auto-attributes include="pk" mode="IN"/>
    </service>
    
</services>