Module cRemoteEntryProcess.pkg
1//****************************************************************************//
2// //
3// $File name : cRemoteEntryProcess.pkg //
4// $File title : cRemoteEntryProcess class //
5// $Author(s) : John Tuohy //
6// //
7// Confidential Trade Secret. //
8// Copyright 1998-1999 Data Access Corporation, Miami FL, USA //
9// All Rights reserved //
10// DataFlex is a registered trademark of Data Access Corporation. //
11// //
12// $Rev History //
13// //
14// JW 1998-06-27 Source Merge for Internet by Janne Wassberg //
15// //
16//****************************************************************************//
17
18Use cDistributedBusinessProcess.pkg // DistributedBusinessProcess class
19Use RemoteEntryMixin.pkg // RemoteEntryMixin class
20
21//
22// Create a Sub-class that provides save, delete, clear, find support.
23// This is still at an abstract level (we have not provided messages to
24// actually move data in and out of a remote entry object).
25//
26
27{ ClassLibrary=WebApp ClassType=Abstract }
28{ HelpTopic=cRemoteEntryProcess }
29Class cRemoteEntryProcess is an cDistributedBusinessProcess
30
31 Procedure Construct_Object
32 Forward Send Construct_Object
33 Send Define_RemoteEntryMixin
34 End_procedure
35
36 // mixin save, delete, clear and find skills
37 Import_Class_Protocol RemoteEntryMixin
38
39End_Class
40