-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSecureCacheResponse.php
More file actions
77 lines (70 loc) Β· 2.78 KB
/
SecureCacheResponse.php
File metadata and controls
77 lines (70 loc) Β· 2.78 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\net;
use PHPJava\Exceptions\NotImplementedException;
// use PHPJava\Packages\java\util\_List;
// use PHPJava\Packages\java\security\Principal;
/**
* The `SecureCacheResponse` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
* @parent \PHPJava\Packages\java\net\CacheResponse
*/
class SecureCacheResponse extends CacheResponse // implements _List, Principal
{
/**
* Returns the cipher suite in use on the original connection that retrieved the network resource.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getCipherSuite
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getCipherSuite($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the certificate chain that were sent to the server during handshaking of the original connection that retrieved the network resource.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getLocalCertificateChain
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getLocalCertificateChain($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the principal that was sent to the server during handshaking in the original connection that retrieved the network resource.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getLocalPrincipal
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getLocalPrincipal($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the server's principal which was established as part of defining the session during the original connection that retrieved the network resource.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getPeerPrincipal
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getPeerPrincipal($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the server's certificate chain, which was established as part of defining the session in the original connection that retrieved the network resource, from cache.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getServerCertificateChain
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getServerCertificateChain($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}