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

CardSync Synchronization

Revision as of 05:27, 10 July 2009 by Ayuhimenko.parityinc.net (Talk | contribs) (New page: =Transfer objects= Image:CardSync_Synchronization_TOs.png ==CommandTO== Command transfer object. Encapsulate commands in transfer objects. Please, see "Command" design pattern. * Str...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Transfer objects

CardSync Synchronization TOs.png

CommandTO

Command transfer object. Encapsulate commands in transfer objects. Please, see "Command" design pattern.

  • String id - Represents command id, Client should use it it for processing command executed status @see CmdExecStatusTO.
  • String name - Represents operation/command name. It must be one of the following constants:

* * Add * * Update * * Delete

* String resourceType - Represents resource type. It might be "PCard","MCard","CardHistory","UserProfile" etc.
* String resourceId - Represents server resource identifier. @see BaseTO#id
* BaseTO resource - Represents resource.


From server to client

From client to server

Problem

Back to the top