Merge branch 'master' of https://github.com/mono/mono into issue4328
[mono.git] / mcs / class / System.EnterpriseServices / System.EnterpriseServices.CompensatingResourceManager / Compensator.cs
1 // 
2 // System.EnterpriseServices.CompensatingResourceManager.Compensator.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.EnterpriseServices;
33
34 namespace System.EnterpriseServices.CompensatingResourceManager {
35         public class Compensator : ServicedComponent{
36
37                 #region Constructors
38
39                 [MonoTODO]
40                 public Compensator ()
41                 {
42                         throw new NotImplementedException ();
43                 }
44
45                 #endregion // Constructors
46
47                 #region Properties
48
49                 public Clerk Clerk {
50                         [MonoTODO]
51                         get { throw new NotImplementedException (); }
52                 }
53
54                 #endregion // Properties
55
56                 #region Methods
57
58                 [MonoTODO]
59                 public virtual bool AbortRecord (LogRecord rec)
60                 {
61                         throw new NotImplementedException ();
62                 }
63
64                 [MonoTODO]
65                 public virtual void BeginAbort (bool fRecovery)
66                 {
67                         throw new NotImplementedException ();
68                 }
69
70                 [MonoTODO]
71                 public virtual void BeginCommit (bool fRecovery)
72                 {
73                         throw new NotImplementedException ();
74                 }
75
76                 [MonoTODO]
77                 public virtual void BeginPrepare ()
78                 {
79                         throw new NotImplementedException ();
80                 }
81
82                 [MonoTODO]
83                 public virtual bool CommitRecord (LogRecord rec)
84                 {
85                         throw new NotImplementedException ();
86                 }
87
88                 [MonoTODO]
89                 public virtual void EndAbort ()
90                 {
91                         throw new NotImplementedException ();
92                 }
93
94                 [MonoTODO]
95                 public virtual void EndCommit ()
96                 {
97                         throw new NotImplementedException ();
98                 }
99
100                 [MonoTODO]
101                 public virtual bool EndPrepare ()
102                 {
103                         throw new NotImplementedException ();
104                 }
105
106                 [MonoTODO]
107                 public virtual bool PrepareRecord (LogRecord rec)
108                 {
109                         throw new NotImplementedException ();
110                 }
111
112                 #endregion // Methods
113         }
114 }