Merge branch 'master' of \\\pk2010\Pithos\
[pithos-ms-client] / trunk / Pithos.Core.Test / MockSettings.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using Pithos.Interfaces;
6
7 namespace Pithos.Core.Test
8 {
9     class MockSettings:IPithosSettings
10     {
11         public string PithosPath { get; set; }
12         public string PithosSite { get; private set; }
13
14         public string IconsPath { get; set; }
15         public string UserName { get; set; }
16         public string ApiKey { get; set; }
17
18         public AccountsCollection Accounts { get; set; }
19         public bool UseDefaultProxy { get; set; }
20         public bool UseManualProxy { get; set; }
21         public bool UseNoProxy { get; set; }
22
23
24         public string ProxyServer { get; set; }
25
26
27         public int ProxyPort { get; set; }
28
29
30         public string ProxyUsername { get; set; }
31
32
33         public string ProxyPassword { get; set; }
34
35         public string ProxyDomain { get; set; }
36
37         public bool ProxyAuthentication { get; set; }
38         public bool ExtensionsActivated { get; set; }
39
40         public int PollingInterval { get; set; }
41
42
43         public void Save()
44         {
45             
46         }
47
48         public void Reload()
49         {
50             
51         }
52     }
53 }