-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSecurityManager.php
More file actions
302 lines (278 loc) Β· 11.3 KB
/
SecurityManager.php
File metadata and controls
302 lines (278 loc) Β· 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang;
use PHPJava\Exceptions\NotImplementedException;
/**
* The `SecurityManager` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class SecurityManager extends Object_
{
/**
* Throws a SecurityException if the calling thread is not permitted to accept a socket connection from the specified host and port number.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkAccept
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function checkAccept($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to modify the thread argument.
* Throws a SecurityException if the calling thread is not allowed to modify the thread group argument.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkAccess
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkAccess($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to open a socket connection to the specified host and port number.
* Throws a SecurityException if the specified security context is not allowed to open a socket connection to the specified host and port number.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkConnect
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public function checkConnect($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to create a new class loader.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkCreateClassLoader
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkCreateClassLoader($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to delete the specified file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkDelete
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkDelete($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to create a subprocess.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkExec
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkExec($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to cause the Java Virtual Machine to halt with the specified status code.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkExit
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkExit($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to dynamic link the library code specified by the string argument file.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkLink
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkLink($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to wait for a connection request on the specified local port number.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkListen
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkListen($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to use (join/leave/send/receive) IP multicast.
* Deprecated.Use #checkPermission(java.security.Permission) instead.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkMulticast
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function checkMulticast($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to access the specified package.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkPackageAccess
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkPackageAccess($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to define classes in the specified package.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkPackageDefinition
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkPackageDefinition($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the requested access, specified by the given permission, is not permitted based on the security policy currently in effect.
* Throws a SecurityException if the specified security context is denied access to the resource specified by the given permission.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkPermission
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function checkPermission($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to initiate a print job request.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkPrintJobAccess
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkPrintJobAccess($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to access or modify the system properties.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkPropertiesAccess
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkPropertiesAccess($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to access the system property with the specified key name.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkPropertyAccess
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkPropertyAccess($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to read from the specified file descriptor.
* Throws a SecurityException if the calling thread is not allowed to read the file specified by the string argument.
* Throws a SecurityException if the specified security context is not allowed to read the file specified by the string argument.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkRead
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function checkRead($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Determines whether the permission with the specified permission target name should be granted or denied.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkSecurityAccess
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkSecurityAccess($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to set the socket factory used by ServerSocket or Socket, or the stream handler factory used by URL.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkSetFactory
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkSetFactory($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Throws a SecurityException if the calling thread is not allowed to write to the specified file descriptor.
* Throws a SecurityException if the calling thread is not allowed to write to the file specified by the string argument.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#checkWrite
* @param null|mixed $a
* @throws NotImplementedException
*/
public function checkWrite($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the current execution stack as an array of classes.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getClassContext
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getClassContext($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Creates an object that encapsulates the current execution environment.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getSecurityContext
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getSecurityContext($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the thread group into which to instantiate any new thread being created at the time this is being called.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getThreadGroup
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getThreadGroup($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}