Fix problems with overlong directory names: phase #1
[mono.git] / mcs / class / System.ServiceProcess / System.ServiceProcess / UnixServiceController.cs
1 //
2 // System.ServiceProcess.UnixServiceController
3 //
4 // Author:
5 //      Gert Driesen (drieseng@users.sourceforge.net)
6 //
7 // Copyright (C) 2006 Novell, Inc (http://www.novell.com)
8 //
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 namespace System.ServiceProcess
31 {
32         internal class UnixServiceController : ServiceControllerImpl
33         {
34                 public UnixServiceController (ServiceController serviceController)
35                         : base (serviceController)
36                 {
37                 }
38
39                 public override bool CanPauseAndContinue {
40                         get {
41                                 throw new NotImplementedException ();
42                         }
43                 }
44
45                 public override bool CanShutdown {
46                         get {
47                                 throw new NotImplementedException ();
48                         }
49                 }
50
51                 public override bool CanStop {
52                         get {
53                                 throw new NotImplementedException ();
54                         }
55                 }
56
57                 public override ServiceController [] DependentServices {
58                         get {
59                                 throw new NotImplementedException ();
60                         }
61                 }
62
63                 public override string DisplayName {
64                         get {
65                                 throw new NotImplementedException ();
66                         }
67                 }
68
69                 public override string ServiceName {
70                         get {
71                                 throw new NotImplementedException ();
72                         }
73                 }
74
75                 public override ServiceController [] ServicesDependedOn {
76                         get {
77                                 throw new NotImplementedException ();
78                         }
79                 }
80
81                 public override ServiceType ServiceType {
82                         get {
83                                 throw new NotImplementedException ();
84                         }
85                 }
86
87                 public override ServiceControllerStatus Status {
88                         get {
89                                 throw new NotImplementedException ();
90                         }
91                 }
92
93                 public override void Close ()
94                 {
95                         throw new NotImplementedException ();
96                 }
97
98                 public override void Continue ()
99                 {
100                         throw new NotImplementedException ();
101                 }
102
103                 public override void Dispose (bool disposing)
104                 {
105                 }
106
107                 public override void ExecuteCommand (int command)
108                 {
109                         throw new NotImplementedException ();
110                 }
111
112                 public override ServiceController [] GetDevices ()
113                 {
114                         throw new NotImplementedException ();
115                 }
116
117                 public override ServiceController [] GetServices ()
118                 {
119                         throw new NotImplementedException ();
120                 }
121
122                 public override void Pause ()
123                 {
124                         throw new NotImplementedException ();
125                 }
126
127                 public override void Refresh ()
128                 {
129                         throw new NotImplementedException ();
130                 }
131
132                 public override void Start (string [] args)
133                 {
134                         throw new NotImplementedException ();
135                 }
136
137                 public override void Stop ()
138                 {
139                         throw new NotImplementedException ();
140                 }
141         }
142 }