svn commit: r786539 - /ofbiz/trunk/applications/workeffort/servicedef/services.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r786539 - /ofbiz/trunk/applications/workeffort/servicedef/services.xml

adrianc
Author: adrianc
Date: Fri Jun 19 15:11:39 2009
New Revision: 786539

URL: http://svn.apache.org/viewvc?rev=786539&view=rev
Log:
Added CRUD services for WorkEffortAttribute. These will be needed for the iCalendar integration.

Modified:
    ofbiz/trunk/applications/workeffort/servicedef/services.xml

Modified: ofbiz/trunk/applications/workeffort/servicedef/services.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/servicedef/services.xml?rev=786539&r1=786538&r2=786539&view=diff
==============================================================================
--- ofbiz/trunk/applications/workeffort/servicedef/services.xml (original)
+++ ofbiz/trunk/applications/workeffort/servicedef/services.xml Fri Jun 19 15:11:39 2009
@@ -662,6 +662,25 @@
         <auto-attributes mode="IN" include="pk" optional="false"/>
     </service>
 
+    <!-- WorkEffort Attribute Services -->
+    <service name="createWorkEffortAttribute" default-entity-name="WorkEffortAttribute" engine="entity-auto" invoke="create" auth="true">
+        <description>Create a WorkEffort Attribute</description>
+        <permission-service service-name="workEffortGenericPermission" main-action="CREATE"/>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="updateWorkEffortEventReminder" default-entity-name="WorkEffortAttribute" engine="entity-auto" invoke="update" auth="true">
+        <description>Update a WorkEffort Attribute</description>
+        <permission-service service-name="workEffortGenericPermission" main-action="UPDATE"/>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+        <auto-attributes include="nonpk" mode="IN" optional="true"/>
+    </service>
+    <service name="deleteWorkEffortEventReminder" default-entity-name="WorkEffortAttribute" engine="entity-auto" invoke="delete" auth="true">
+        <description>Delete a WorkEffort Attribute</description>
+        <permission-service service-name="workEffortGenericPermission" main-action="DELETE"/>
+        <auto-attributes include="pk" mode="IN" optional="false"/>
+    </service>
+
     <!-- WorkEffort Event Reminder Services -->
     <service name="createWorkEffortEventReminder" default-entity-name="WorkEffortEventReminder" engine="entity-auto" invoke="create" auth="true">
         <description>Create a WorkEffort Event Reminder</description>