Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data/Data/Support
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv21617/Data/Support
Modified Files:
SimpleServiceConfig.cs
Log Message:
SPRNET-773 - Unit tests for ServiceDomainTransactionManager
Index: SimpleServiceConfig.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data/Data/Support/SimpleServiceConfig.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SimpleServiceConfig.cs 4 Dec 2007 08:16:42 -0000 1.1
--- SimpleServiceConfig.cs 4 Dec 2007 16:31:05 -0000 1.2
***************
*** 1,2 ****
--- 1,24 ----
+ #region License
+
+ /*
+ * Copyright © 2002-2007 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+ #endregion
+
+ #if (!NET_1_0)
+
using System.EnterpriseServices;
***************
*** 4,10 ****
{
/// <summary>
! /// A class that contains the properties of ServiceConfig used by ServiceDomainPlatformTransactionManager. This is
! /// done to enhance testability of the transaction manager since ServiceConfig does not override Equals or Hashcode
/// </summary>
public class SimpleServiceConfig
{
--- 26,34 ----
{
/// <summary>
! /// A class that contains the properties of ServiceConfig used by ServiceDomainPlatformTransactionManager.
/// </summary>
+ /// <remarks>This is done to enhance testability of the transaction manager since ServiceConfig does not override Equals or Hashcode</remarks>
+ /// <author>Mark Pollack (.NET)</author>
+ /// <version>$Id $</version>
public class SimpleServiceConfig
{
***************
*** 100,102 ****
}
}
! }
\ No newline at end of file
--- 124,127 ----
}
}
! }
! #endif
\ No newline at end of file
|