diff options
Diffstat (limited to '')
-rw-r--r-- | ogs/gridserver/src/ConsoleCmds.cs | 57 | ||||
-rw-r--r-- | ogs/gridserver/src/GridHttp.cs | 165 | ||||
-rw-r--r-- | ogs/gridserver/src/Main.cs | 94 | ||||
-rw-r--r-- | ogs/gridserver/src/SimProfiles.cs | 111 |
4 files changed, 427 insertions, 0 deletions
diff --git a/ogs/gridserver/src/ConsoleCmds.cs b/ogs/gridserver/src/ConsoleCmds.cs new file mode 100644 index 0000000..82a2279 --- /dev/null +++ b/ogs/gridserver/src/ConsoleCmds.cs | |||
@@ -0,0 +1,57 @@ | |||
1 | /* | ||
2 | Copyright (c) OpenSim project, http://osgrid.org/ | ||
3 | |||
4 | |||
5 | * All rights reserved. | ||
6 | * | ||
7 | * Redistribution and use in source and binary forms, with or without | ||
8 | * modification, are permitted provided that the following conditions are met: | ||
9 | * * Redistributions of source code must retain the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer. | ||
11 | * * Redistributions in binary form must reproduce the above copyright | ||
12 | * notice, this list of conditions and the following disclaimer in the | ||
13 | * documentation and/or other materials provided with the distribution. | ||
14 | * * Neither the name of the <organization> nor the | ||
15 | * names of its contributors may be used to endorse or promote products | ||
16 | * derived from this software without specific prior written permission. | ||
17 | * | ||
18 | * THIS SOFTWARE IS PROVIDED BY <copyright holder> ``AS IS'' AND ANY | ||
19 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
20 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
21 | * DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY | ||
22 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
23 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
24 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
25 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
27 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
28 | */ | ||
29 | |||
30 | using System; | ||
31 | using System.Text; | ||
32 | using ServerConsole; | ||
33 | |||
34 | namespace OpenGridServices | ||
35 | { | ||
36 | |||
37 | public class GridConsole : conscmd_callback { | ||
38 | public GridConsole() { } | ||
39 | |||
40 | public override void RunCmd(string cmd, string[] cmdparams) { | ||
41 | switch(cmd) { | ||
42 | case "help": | ||
43 | ServerConsole.MainConsole.Instance.WriteLine("shutdown - shutdown the grid (USE CAUTION!)" | ||
44 | ); | ||
45 | break; | ||
46 | |||
47 | case "shutdown": | ||
48 | ServerConsole.MainConsole.Instance.Close(); | ||
49 | Environment.Exit(0); | ||
50 | break; | ||
51 | } | ||
52 | } | ||
53 | |||
54 | public override void Show(string ShowWhat) { | ||
55 | } | ||
56 | } | ||
57 | } | ||
diff --git a/ogs/gridserver/src/GridHttp.cs b/ogs/gridserver/src/GridHttp.cs new file mode 100644 index 0000000..833a8ac --- /dev/null +++ b/ogs/gridserver/src/GridHttp.cs | |||
@@ -0,0 +1,165 @@ | |||
1 | /* | ||
2 | Copyright (c) OpenGrid project, http://osgrid.org/ | ||
3 | |||
4 | |||
5 | * All rights reserved. | ||
6 | * | ||
7 | * Redistribution and use in source and binary forms, with or without | ||
8 | * modification, are permitted provided that the following conditions are met: | ||
9 | * * Redistributions of source code must retain the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer. | ||
11 | * * Redistributions in binary form must reproduce the above copyright | ||
12 | * notice, this list of conditions and the following disclaimer in the | ||
13 | * documentation and/or other materials provided with the distribution. | ||
14 | * * Neither the name of the <organization> nor the | ||
15 | * names of its contributors may be used to endorse or promote products | ||
16 | * derived from this software without specific prior written permission. | ||
17 | * | ||
18 | * THIS SOFTWARE IS PROVIDED BY <copyright holder> ``AS IS'' AND ANY | ||
19 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
20 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
21 | * DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY | ||
22 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
23 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
24 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
25 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
27 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
28 | */ | ||
29 | |||
30 | using System; | ||
31 | using System.Text; | ||
32 | using Nwc.XmlRpc; | ||
33 | using System.Threading; | ||
34 | using System.Text.RegularExpressions; | ||
35 | using System.Net; | ||
36 | using System.IO; | ||
37 | using System.Collections; | ||
38 | using System.Collections.Generic; | ||
39 | using libsecondlife; | ||
40 | using ServerConsole; | ||
41 | |||
42 | namespace OpenGridServices | ||
43 | { | ||
44 | public class GridHTTPServer { | ||
45 | public Thread HTTPD; | ||
46 | public HttpListener Listener; | ||
47 | |||
48 | public GridHTTPServer() { | ||
49 | ServerConsole.MainConsole.Instance.WriteLine("Starting up HTTP Server"); | ||
50 | HTTPD = new Thread(new ThreadStart(StartHTTP)); | ||
51 | HTTPD.Start(); | ||
52 | } | ||
53 | |||
54 | public void StartHTTP() { | ||
55 | ServerConsole.MainConsole.Instance.WriteLine("GridHttp.cs:StartHTTP() - Spawned main thread OK"); | ||
56 | Listener = new HttpListener(); | ||
57 | |||
58 | Listener.Prefixes.Add("http://+:8001/gridserver/"); | ||
59 | Listener.Start(); | ||
60 | |||
61 | HttpListenerContext context; | ||
62 | while(true) { | ||
63 | context = Listener.GetContext(); | ||
64 | ThreadPool.QueueUserWorkItem(new WaitCallback(HandleRequest), context); | ||
65 | } | ||
66 | } | ||
67 | |||
68 | static string ParseXMLRPC(string requestBody) { | ||
69 | try{ | ||
70 | XmlRpcRequest request = (XmlRpcRequest)(new XmlRpcRequestDeserializer()).Deserialize(requestBody); | ||
71 | |||
72 | Hashtable requestData = (Hashtable)request.Params[0]; | ||
73 | switch(request.MethodName) { | ||
74 | case "get_sim_info": | ||
75 | ulong req_handle=(ulong)Convert.ToInt64(requestData["region_handle"]); | ||
76 | SimProfile TheSim = OpenGrid_Main.thegrid._regionmanager.GetProfileByHandle(req_handle); | ||
77 | string RecvKey=""; | ||
78 | string caller=(string)requestData["caller"]; | ||
79 | switch(caller) { | ||
80 | case "userserver": | ||
81 | RecvKey=OpenGrid_Main.thegrid.UserRecvKey; | ||
82 | break; | ||
83 | case "assetserver": | ||
84 | RecvKey=OpenGrid_Main.thegrid.AssetRecvKey; | ||
85 | break; | ||
86 | } | ||
87 | if((TheSim!=null) && (string)requestData["authkey"]==RecvKey) { | ||
88 | XmlRpcResponse SimInfoResp = new XmlRpcResponse(); | ||
89 | Hashtable SimInfoData = new Hashtable(); | ||
90 | SimInfoData["UUID"]=TheSim.UUID.ToString(); | ||
91 | SimInfoData["regionhandle"]=TheSim.regionhandle.ToString(); | ||
92 | SimInfoData["regionname"]=TheSim.regionname; | ||
93 | SimInfoData["sim_ip"]=TheSim.sim_ip; | ||
94 | SimInfoData["sim_port"]=TheSim.sim_port.ToString(); | ||
95 | SimInfoData["caps_url"]=TheSim.caps_url; | ||
96 | SimInfoData["RegionLocX"]=TheSim.RegionLocX.ToString(); | ||
97 | SimInfoData["RegionLocY"]=TheSim.RegionLocY.ToString(); | ||
98 | SimInfoData["sendkey"]=TheSim.sendkey; | ||
99 | SimInfoData["recvkey"]=TheSim.recvkey; | ||
100 | SimInfoResp.Value=SimInfoData; | ||
101 | return(Regex.Replace(XmlRpcResponseSerializer.Singleton.Serialize(SimInfoResp),"utf-16","utf-8")); | ||
102 | } else { | ||
103 | XmlRpcResponse SimErrorResp = new XmlRpcResponse(); | ||
104 | Hashtable SimErrorData = new Hashtable(); | ||
105 | SimErrorData["error"]="sim not found"; | ||
106 | SimErrorResp.Value=SimErrorData; | ||
107 | return(XmlRpcResponseSerializer.Singleton.Serialize(SimErrorResp)); | ||
108 | } | ||
109 | break; | ||
110 | } | ||
111 | } catch(Exception e) { | ||
112 | Console.WriteLine(e.ToString()); | ||
113 | } | ||
114 | return ""; | ||
115 | } | ||
116 | |||
117 | static string ParseREST(string requestBody, string requestURL) { | ||
118 | return ""; | ||
119 | } | ||
120 | |||
121 | |||
122 | static void HandleRequest(Object stateinfo) { | ||
123 | HttpListenerContext context=(HttpListenerContext)stateinfo; | ||
124 | |||
125 | HttpListenerRequest request = context.Request; | ||
126 | HttpListenerResponse response = context.Response; | ||
127 | |||
128 | response.KeepAlive=false; | ||
129 | response.SendChunked=false; | ||
130 | |||
131 | System.IO.Stream body = request.InputStream; | ||
132 | System.Text.Encoding encoding = System.Text.Encoding.UTF8; | ||
133 | System.IO.StreamReader reader = new System.IO.StreamReader(body, encoding); | ||
134 | |||
135 | string requestBody = reader.ReadToEnd(); | ||
136 | body.Close(); | ||
137 | reader.Close(); | ||
138 | |||
139 | string responseString=""; | ||
140 | switch(request.ContentType) { | ||
141 | case "text/xml": | ||
142 | // must be XML-RPC, so pass to the XML-RPC parser | ||
143 | |||
144 | responseString=ParseXMLRPC(requestBody); | ||
145 | response.AddHeader("Content-type","text/xml"); | ||
146 | break; | ||
147 | |||
148 | case null: | ||
149 | // must be REST or invalid crap, so pass to the REST parser | ||
150 | responseString=ParseREST(request.Url.OriginalString,requestBody); | ||
151 | break; | ||
152 | } | ||
153 | |||
154 | |||
155 | byte[] buffer = System.Text.Encoding.UTF8.GetBytes(responseString); | ||
156 | System.IO.Stream output = response.OutputStream; | ||
157 | response.SendChunked=false; | ||
158 | response.ContentLength64=buffer.Length; | ||
159 | output.Write(buffer,0,buffer.Length); | ||
160 | output.Close(); | ||
161 | } | ||
162 | } | ||
163 | |||
164 | |||
165 | } | ||
diff --git a/ogs/gridserver/src/Main.cs b/ogs/gridserver/src/Main.cs new file mode 100644 index 0000000..d29a1ae --- /dev/null +++ b/ogs/gridserver/src/Main.cs | |||
@@ -0,0 +1,94 @@ | |||
1 | /* | ||
2 | Copyright (c) OpenSim project, http://osgrid.org/ | ||
3 | |||
4 | |||
5 | * All rights reserved. | ||
6 | * | ||
7 | * Redistribution and use in source and binary forms, with or without | ||
8 | * modification, are permitted provided that the following conditions are met: | ||
9 | * * Redistributions of source code must retain the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer. | ||
11 | * * Redistributions in binary form must reproduce the above copyright | ||
12 | * notice, this list of conditions and the following disclaimer in the | ||
13 | * documentation and/or other materials provided with the distribution. | ||
14 | * * Neither the name of the <organization> nor the | ||
15 | * names of its contributors may be used to endorse or promote products | ||
16 | * derived from this software without specific prior written permission. | ||
17 | * | ||
18 | * THIS SOFTWARE IS PROVIDED BY <copyright holder> ``AS IS'' AND ANY | ||
19 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
20 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
21 | * DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY | ||
22 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
23 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
24 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
25 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
27 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
28 | */ | ||
29 | |||
30 | using System; | ||
31 | using System.Text; | ||
32 | using libsecondlife; | ||
33 | using ServerConsole; | ||
34 | |||
35 | namespace OpenGridServices | ||
36 | { | ||
37 | /// <summary> | ||
38 | /// </summary> | ||
39 | public class OpenGrid_Main | ||
40 | { | ||
41 | |||
42 | public static OpenGrid_Main thegrid; | ||
43 | public string GridOwner; | ||
44 | public string DefaultStartupMsg; | ||
45 | public string DefaultAssetServer; | ||
46 | public string AssetSendKey; | ||
47 | public string AssetRecvKey; | ||
48 | public string DefaultUserServer; | ||
49 | public string UserSendKey; | ||
50 | public string UserRecvKey; | ||
51 | |||
52 | public GridHTTPServer _httpd; | ||
53 | public SimProfileManager _regionmanager; | ||
54 | |||
55 | [STAThread] | ||
56 | public static void Main( string[] args ) | ||
57 | { | ||
58 | Console.WriteLine("OpenGrid " + VersionInfo.Version + "\n"); | ||
59 | Console.WriteLine("Starting...\n"); | ||
60 | ServerConsole.MainConsole.Instance = new MServerConsole(ServerConsole.ConsoleBase.ConsoleType.Local, "", 0, "opengrid-console.log", "OpenGrid", new GridConsole()); | ||
61 | |||
62 | thegrid = new OpenGrid_Main(); | ||
63 | thegrid.Startup(); | ||
64 | |||
65 | ServerConsole.MainConsole.Instance.WriteLine("\nEnter help for a list of commands\n"); | ||
66 | |||
67 | while(true) { | ||
68 | ServerConsole.MainConsole.Instance.MainConsolePrompt(); | ||
69 | } | ||
70 | } | ||
71 | |||
72 | public void Startup() { | ||
73 | ServerConsole.MainConsole.Instance.WriteLine("Main.cs:Startup() - Please press enter to retain default settings"); | ||
74 | |||
75 | this.GridOwner=ServerConsole.MainConsole.Instance.CmdPrompt("Grid owner [OGS development team]: ","OGS development team"); | ||
76 | this.DefaultStartupMsg=ServerConsole.MainConsole.Instance.CmdPrompt("Default startup message for clients [Welcome to OGS!]: ","Welcome to OGS!"); | ||
77 | |||
78 | this.DefaultAssetServer=ServerConsole.MainConsole.Instance.CmdPrompt("Default asset server [no default]: "); | ||
79 | this.AssetSendKey=ServerConsole.MainConsole.Instance.CmdPrompt("Key to send to asset server: "); | ||
80 | this.AssetRecvKey=ServerConsole.MainConsole.Instance.CmdPrompt("Key to expect from asset server: "); | ||
81 | |||
82 | this.DefaultUserServer=ServerConsole.MainConsole.Instance.CmdPrompt("Default user server [no default]: "); | ||
83 | this.UserSendKey=ServerConsole.MainConsole.Instance.CmdPrompt("Key to send to user server: "); | ||
84 | this.UserRecvKey=ServerConsole.MainConsole.Instance.CmdPrompt("Key to expect from user server: "); | ||
85 | |||
86 | ServerConsole.MainConsole.Instance.WriteLine("Main.cs:Startup() - Starting HTTP process"); | ||
87 | _httpd = new GridHTTPServer(); | ||
88 | |||
89 | this._regionmanager=new SimProfileManager(); | ||
90 | _regionmanager.CreateNewProfile("OpenSim Test", "http://there-is-no-caps.com", "4.78.190.75", 9000, 997, 996, this.UserSendKey, this.UserRecvKey); | ||
91 | |||
92 | } | ||
93 | } | ||
94 | } | ||
diff --git a/ogs/gridserver/src/SimProfiles.cs b/ogs/gridserver/src/SimProfiles.cs new file mode 100644 index 0000000..91a92ea --- /dev/null +++ b/ogs/gridserver/src/SimProfiles.cs | |||
@@ -0,0 +1,111 @@ | |||
1 | /* | ||
2 | Copyright (c) OpenGrid project, http://osgrid.org/ | ||
3 | |||
4 | |||
5 | * All rights reserved. | ||
6 | * | ||
7 | * Redistribution and use in source and binary forms, with or without | ||
8 | * modification, are permitted provided that the following conditions are met: | ||
9 | * * Redistributions of source code must retain the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer. | ||
11 | * * Redistributions in binary form must reproduce the above copyright | ||
12 | * notice, this list of conditions and the following disclaimer in the | ||
13 | * documentation and/or other materials provided with the distribution. | ||
14 | * * Neither the name of the <organization> nor the | ||
15 | * names of its contributors may be used to endorse or promote products | ||
16 | * derived from this software without specific prior written permission. | ||
17 | * | ||
18 | * THIS SOFTWARE IS PROVIDED BY <copyright holder> ``AS IS'' AND ANY | ||
19 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
20 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
21 | * DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY | ||
22 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
23 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
24 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
25 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
27 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
28 | */ | ||
29 | |||
30 | using System; | ||
31 | using System.Text; | ||
32 | using System.Collections; | ||
33 | using System.Collections.Generic; | ||
34 | using libsecondlife; | ||
35 | using ServerConsole; | ||
36 | |||
37 | namespace OpenGridServices | ||
38 | { | ||
39 | /// <summary> | ||
40 | /// </summary> | ||
41 | public class SimProfileManager { | ||
42 | |||
43 | public Dictionary<LLUUID, SimProfile> SimProfiles = new Dictionary<LLUUID, SimProfile>(); | ||
44 | |||
45 | public SimProfileManager() { | ||
46 | } | ||
47 | |||
48 | public void InitSimProfiles() { | ||
49 | // TODO: need to load from database | ||
50 | } | ||
51 | |||
52 | public SimProfile GetProfileByHandle(ulong reqhandle) { | ||
53 | foreach (libsecondlife.LLUUID UUID in SimProfiles.Keys) { | ||
54 | if(SimProfiles[UUID].regionhandle==reqhandle) return SimProfiles[UUID]; | ||
55 | } | ||
56 | return null; | ||
57 | } | ||
58 | |||
59 | public SimProfile GetProfileByLLUUID(LLUUID ProfileLLUUID) { | ||
60 | return SimProfiles[ProfileLLUUID]; | ||
61 | } | ||
62 | |||
63 | public bool AuthenticateSim(LLUUID RegionUUID, uint regionhandle, string simrecvkey) { | ||
64 | SimProfile TheSim=GetProfileByHandle(regionhandle); | ||
65 | if(TheSim != null) | ||
66 | if(TheSim.recvkey==simrecvkey) { | ||
67 | return true; | ||
68 | } else { | ||
69 | return false; | ||
70 | } else return false; | ||
71 | |||
72 | } | ||
73 | |||
74 | public SimProfile CreateNewProfile(string regionname, string caps_url, string sim_ip, uint sim_port, uint RegionLocX, uint RegionLocY, string sendkey, string recvkey) { | ||
75 | SimProfile newprofile = new SimProfile(); | ||
76 | newprofile.regionname=regionname; | ||
77 | newprofile.sim_ip=sim_ip; | ||
78 | newprofile.sim_port=sim_port; | ||
79 | newprofile.RegionLocX=RegionLocX; | ||
80 | newprofile.RegionLocY=RegionLocY; | ||
81 | newprofile.caps_url="http://" + sim_ip + ":9000/"; | ||
82 | newprofile.sendkey=sendkey; | ||
83 | newprofile.recvkey=recvkey; | ||
84 | newprofile.regionhandle=Util.UIntsToLong((RegionLocX*256), (RegionLocY*256)); | ||
85 | newprofile.UUID=LLUUID.Random(); | ||
86 | this.SimProfiles.Add(newprofile.UUID,newprofile); | ||
87 | return newprofile; | ||
88 | } | ||
89 | |||
90 | } | ||
91 | |||
92 | public class SimProfile { | ||
93 | public LLUUID UUID; | ||
94 | public ulong regionhandle; | ||
95 | public string regionname; | ||
96 | public string sim_ip; | ||
97 | public uint sim_port; | ||
98 | public string caps_url; | ||
99 | public uint RegionLocX; | ||
100 | public uint RegionLocY; | ||
101 | public string sendkey; | ||
102 | public string recvkey; | ||
103 | |||
104 | |||
105 | public SimProfile() { | ||
106 | } | ||
107 | |||
108 | |||
109 | } | ||
110 | |||
111 | } | ||