ilscipio/scipio-erp

View on GitHub
framework/common/servicedef/services_geo.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 Geo Services</description>
    <vendor>OFBiz</vendor>
    <version>1.0</version>

    <service name="createCountryTeleCode" engine="entity-auto" invoke="create" default-entity-name="CountryTeleCode" auth="true">
        <description>Create a Country Tele Code</description>
        <auto-attributes include="pk" mode="IN"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="updateCountryTeleCode" engine="entity-auto" invoke="update" default-entity-name="CountryTeleCode" auth="true">
        <description>Update a Country Tele Code</description>
        <auto-attributes include="pk" mode="IN"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="deleteCountryTeleCode" engine="entity-auto" invoke="delete" default-entity-name="CountryTeleCode" auth="true">
        <description>Delete a Country Tele Code</description>
        <auto-attributes include="pk" mode="IN"/>
    </service>
    
    <service name="createCountryCapital" engine="entity-auto" invoke="create" default-entity-name="CountryCapital" auth="true">
        <description>Create a Country Capital</description>
        <auto-attributes include="pk" mode="IN"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="updateCountryCapital" engine="entity-auto" invoke="update" default-entity-name="CountryCapital" auth="true">
        <description>Update a Country Capital</description>
        <auto-attributes include="pk" mode="IN"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="deleteCountryCapital" engine="entity-auto" invoke="delete" default-entity-name="CountryCapital" auth="true">
        <description>Delete a Country Capital</description>
        <auto-attributes include="pk" mode="IN"/>
    </service>

    <service name="createCountryCode" engine="entity-auto" invoke="create" default-entity-name="CountryCode" auth="true">
        <description>Create a Country Code</description>
        <auto-attributes include="pk" mode="IN"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="updateCountryCode" engine="entity-auto" invoke="update" default-entity-name="CountryCode" auth="true">
        <description>Update a Country Code</description>
        <auto-attributes include="pk" mode="IN"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="deleteCountryCode" engine="entity-auto" invoke="delete" default-entity-name="CountryCode" auth="true">
        <description>Delete a Country Code</description>
        <auto-attributes include="pk" mode="IN"/>
    </service>

    <service name="createCountryAddressFormat" engine="entity-auto" invoke="create" default-entity-name="CountryAddressFormat" auth="true">
        <description>Create a Country Address Format</description>
        <auto-attributes include="pk" mode="IN" optional="false"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="updateCountryAddressFormat" engine="entity-auto" invoke="update" default-entity-name="CountryAddressFormat" auth="true">
        <description>Update a Country Address Format</description>
        <auto-attributes include="pk" mode="IN" optional="false"/>
        <auto-attributes include="nonpk" mode="IN" optional="true"/>
    </service>
    <service name="deleteCountryAddressFormat" engine="entity-auto" invoke="delete" default-entity-name="CountryAddressFormat" auth="true">
        <description>Delete a Country Address Format</description>
        <auto-attributes include="pk" mode="IN" optional="false"/>
    </service>
</services>