This is an automated email from the ASF dual-hosted git repository.
patelanil pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git
The following commit(s) were added to refs/heads/trunk by this push:
new 2d3f17c03 Minor changes pushed in the example component (#230)
2d3f17c03 is described below
commit 2d3f17c03aed18b88dedd4e2119249892f57344b
Author: Anil K Patel <[email protected]>
AuthorDate: Fri May 8 20:38:24 2026 +0530
Minor changes pushed in the example component (#230)
---
example/servicedef/services.xml | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/example/servicedef/services.xml b/example/servicedef/services.xml
index fcd99a1ff..66227d0c8 100644
--- a/example/servicedef/services.xml
+++ b/example/servicedef/services.xml
@@ -65,7 +65,7 @@ under the License.
</service>
<service name="createExampleItem" default-entity-name="ExampleItem"
engine="entity-auto" invoke="create" auth="true">
- <description>Create a ExampleItem</description>
+ <description>Create an ExampleItem</description>
<permission-service service-name="exampleGenericPermission"
main-action="CREATE"/>
<auto-attributes include="pk" mode="IN" optional="false"/>
<auto-attributes include="nonpk" mode="IN" optional="true"/>
@@ -73,52 +73,52 @@ under the License.
<override name="description" optional="false"/>
</service>
<service name="updateExampleItem" default-entity-name="ExampleItem"
engine="entity-auto" invoke="update" auth="true">
- <description>Update a ExampleItem</description>
+ <description>Update an ExampleItem</description>
<permission-service service-name="exampleGenericPermission"
main-action="UPDATE"/>
<auto-attributes include="pk" mode="IN" optional="false"/>
<auto-attributes include="nonpk" mode="IN" optional="true"/>
</service>
<service name="deleteExampleItem" default-entity-name="ExampleItem"
engine="entity-auto" invoke="delete" auth="true">
- <description>Delete a ExampleItem</description>
+ <description>Delete an ExampleItem</description>
<permission-service service-name="exampleGenericPermission"
main-action="DELETE"/>
<auto-attributes include="pk" mode="IN" optional="false"/>
</service>
<!-- ExampleFeature Services -->
<service name="createExampleFeature" default-entity-name="ExampleFeature"
engine="entity-auto" invoke="create" auth="true">
- <description>Create a ExampleFeature</description>
+ <description>Create an ExampleFeature</description>
<permission-service service-name="exampleGenericPermission"
main-action="CREATE"/>
<auto-attributes include="pk" mode="OUT" optional="false"/>
<auto-attributes include="nonpk" mode="IN" optional="true"/>
<override name="description" optional="false"/>
</service>
<service name="updateExampleFeature" default-entity-name="ExampleFeature"
engine="entity-auto" invoke="update" auth="true">
- <description>Update a ExampleFeature</description>
+ <description>Update an ExampleFeature</description>
<permission-service service-name="exampleGenericPermission"
main-action="UPDATE"/>
<auto-attributes include="pk" mode="IN" optional="false"/>
<auto-attributes include="nonpk" mode="IN" optional="true"/>
</service>
<service name="deleteExampleFeature" default-entity-name="ExampleFeature"
engine="entity-auto" invoke="delete" auth="true">
- <description>Delete a ExampleFeature</description>
+ <description>Delete an ExampleFeature</description>
<permission-service service-name="exampleGenericPermission"
main-action="DELETE"/>
<auto-attributes include="pk" mode="IN" optional="false"/>
</service>
<service name="createExampleFeatureAppl"
default-entity-name="ExampleFeatureAppl" engine="entity-auto" invoke="create"
auth="true">
- <description>Create a ExampleFeatureAppl</description>
+ <description>Create an ExampleFeatureAppl</description>
<permission-service service-name="exampleGenericPermission"
main-action="CREATE"/>
<auto-attributes include="pk" mode="IN" optional="false"/>
<auto-attributes include="nonpk" mode="IN" optional="true"/>
<override name="fromDate" optional="true"/>
</service>
<service name="updateExampleFeatureAppl"
default-entity-name="ExampleFeatureAppl" engine="entity-auto" invoke="update"
auth="true">
- <description>Update a ExampleFeatureAppl</description>
+ <description>Update an ExampleFeatureAppl</description>
<permission-service service-name="exampleGenericPermission"
main-action="UPDATE"/>
<auto-attributes include="pk" mode="IN" optional="false"/>
<auto-attributes include="nonpk" mode="IN" optional="true"/>
</service>
<service name="deleteExampleFeatureAppl"
default-entity-name="ExampleFeatureAppl" engine="entity-auto" invoke="delete"
auth="true">
- <description>Delete a ExampleFeatureAppl</description>
+ <description>Delete an ExampleFeatureAppl</description>
<permission-service service-name="exampleGenericPermission"
main-action="DELETE"/>
<auto-attributes include="pk" mode="IN" optional="false"/>
</service>
@@ -156,17 +156,17 @@ under the License.
<!-- ExampleFeatureApplType services -->
<service name="createExampleFeatureApplType"
default-entity-name="ExampleFeatureApplType" engine="entity-auto"
invoke="create" auth="true">
- <description>Create a ExampleFeatureApplType</description>
+ <description>Create an ExampleFeatureApplType</description>
<auto-attributes include="nonpk" mode="IN" optional="true"/>
<auto-attributes include="pk" mode="INOUT" optional="true"/>
</service>
<service name="updateExampleFeatureApplType"
default-entity-name="ExampleFeatureApplType" engine="entity-auto"
invoke="update" auth="true">
- <description>Update a ExampleFeatureApplType</description>
+ <description>Update an ExampleFeatureApplType</description>
<auto-attributes include="pk" mode="IN" optional="false"/>
<auto-attributes include="nonpk" mode="IN" optional="true"/>
</service>
<service name="deleteExampleFeatureApplType"
default-entity-name="ExampleFeatureApplType" engine="entity-auto"
invoke="delete" auth="true">
- <description>Delete a ExampleFeatureApplType</description>
+ <description>Delete an ExampleFeatureApplType</description>
<auto-attributes include="pk" mode="IN" optional="false"/>
</service>