diff options
author | Charles Krinke | 2009-02-14 19:47:02 +0000 |
---|---|---|
committer | Charles Krinke | 2009-02-14 19:47:02 +0000 |
commit | a583d8ad70daad8c755c2f43e2f2af7bc5b7ee4d (patch) | |
tree | 7e90740b7ea86922db55905a34e3b6e065cb6041 /OpenSim/Data/NHibernate/EstateRegionLink.cs | |
parent | Add an override for the % operator. (diff) | |
download | opensim-SC-a583d8ad70daad8c755c2f43e2f2af7bc5b7ee4d.zip opensim-SC-a583d8ad70daad8c755c2f43e2f2af7bc5b7ee4d.tar.gz opensim-SC-a583d8ad70daad8c755c2f43e2f2af7bc5b7ee4d.tar.bz2 opensim-SC-a583d8ad70daad8c755c2f43e2f2af7bc5b7ee4d.tar.xz |
Thank you kindly, TLaukkan (Tommil) for a patch that:
* Created value object for EstateRegionLink for storing the estate region relationship.
* Refactored slightly NHibernateManager and NHibernateXXXXData implementations for accesing nhibernate generated ID on insert.
** Changed NHibernateManager.Save method name to Insert as it does Insert.
** Changed NHibernateManager.Save return value object as ID can be both UUID and uint currently.
** Changed NHibernateManager.Load method Id parameter to object as it can be both UUID and uint.
* Created NHibernateEstateData implementation. This is the actual estate storage.
* Created NHibernate mapping files for both EstateSettings and EstateRegionLink
* Created MigrationSyntaxDifferences.txt files to write notes about differences in migration scripts between different databases.
* Created estate storage migration scripts for all four databases.
* Created estate unit test classes for all four databases.
* Updated one missing field to BasicEstateTest.cs
* Tested NHibernate unit tests with NUnit GUI. Asset databases fail but that is not related to this patch.
* Tested build with both Visual Studio and nant.
* Executed build tests with nant succesfully.
Diffstat (limited to 'OpenSim/Data/NHibernate/EstateRegionLink.cs')
-rw-r--r-- | OpenSim/Data/NHibernate/EstateRegionLink.cs | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/OpenSim/Data/NHibernate/EstateRegionLink.cs b/OpenSim/Data/NHibernate/EstateRegionLink.cs new file mode 100644 index 0000000..cceced2 --- /dev/null +++ b/OpenSim/Data/NHibernate/EstateRegionLink.cs | |||
@@ -0,0 +1,49 @@ | |||
1 | ?using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenMetaverse; | ||
5 | |||
6 | namespace OpenSim.Data.NHibernate | ||
7 | { | ||
8 | public class EstateRegionLink | ||
9 | { | ||
10 | private UUID estateRegionLinkID; | ||
11 | public UUID EstateRegionLinkID | ||
12 | { | ||
13 | get | ||
14 | { | ||
15 | return estateRegionLinkID; | ||
16 | } | ||
17 | set | ||
18 | { | ||
19 | estateRegionLinkID = value; | ||
20 | } | ||
21 | } | ||
22 | |||
23 | private uint estateID; | ||
24 | public uint EstateID | ||
25 | { | ||
26 | get | ||
27 | { | ||
28 | return estateID; | ||
29 | } | ||
30 | set | ||
31 | { | ||
32 | estateID = value; | ||
33 | } | ||
34 | } | ||
35 | |||
36 | private UUID regionID; | ||
37 | public UUID RegionID | ||
38 | { | ||
39 | get | ||
40 | { | ||
41 | return regionID; | ||
42 | } | ||
43 | set | ||
44 | { | ||
45 | regionID = value; | ||
46 | } | ||
47 | } | ||
48 | } | ||
49 | } | ||