Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Concepts/Process Service"

(Stub version)
 
m (Category changed)
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{ScoutPage|cat=Concepts}}
+
{{ScoutPage|cat=Server}}
  
<TODO: 1 phrase describing the concept>
+
A Process Service is responsible to handle {{ScoutLink|Concepts|FormData|FormData}} by providing functions to create, load, update, delete data.
  
* implements: {{ScoutJavadoc|<TODO:NameOfTheInterface>|I}}
+
* extends: {{ScoutJavadoc|AbstractService|C}}
* extends: {{ScoutJavadoc|<TODO:NameOfTheAbstractClass>|C}}
+
  
 
== Description ==
 
== Description ==
Line 13: Line 12:
 
* load
 
* load
 
* store
 
* store
 
 
== Properties ==
 
''Defined with {{ScoutLink|Concepts|GetConfigured Methods|getConfiguredXxxxxx()}} methods''.
 
 
{{note|TODO|Add a description of important properties. The idea is not to recreate the JavaDoc of the getConfiguredXxxxxx() methods but to provide explanations, best practice, example... Group the properties by domain.}}
 
 
 
== Events ==
 
''Defined with {{ScoutLink|Concepts|Exec_Methods|execXxxxxx()}} methods''.
 
 
{{note|TODO|Add a description of important events. The idea is not to recreate the JavaDoc of the execXxxxxx() methods but to provide explanations, best practice, example... Group the events by domain.}}
 
 
  
 
== See Also ==
 
== See Also ==
 
* {{ScoutLink|Concepts|FormData|FormData}}
 
* {{ScoutLink|Concepts|FormData|FormData}}
 
* {{ScoutLink|Concepts|Server Plug-In|Server Plug-In}}
 
* {{ScoutLink|Concepts|Server Plug-In|Server Plug-In}}

Revision as of 12:23, 3 November 2011

The Scout documentation has been moved to https://eclipsescout.github.io/.

A Process Service is responsible to handle The Scout documentation has been moved to https://eclipsescout.github.io/. by providing functions to create, load, update, delete data.

Description

Note.png
TODO
Add a description


  • prepareCreate
  • create
  • load
  • store

See Also

Back to the top