-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCookieStore.php
More file actions
79 lines (72 loc) Β· 2.24 KB
/
CookieStore.php
File metadata and controls
79 lines (72 loc) Β· 2.24 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\net;
use PHPJava\Exceptions\NotImplementedException;
/**
* The `CookieStore` interface was auto generated.
*/
interface CookieStore
{
/**
* Adds one HTTP cookie to the store.
*
* @param mixed $a
* @param mixed $b
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#add
* @NotImplemented
*/
// public function add($a = null, $b = null)
/**
* Retrieve cookies associated with given URI, or whose domain matches the given URI.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#get
* @NotImplemented
*/
// public function get($a = null)
/**
* Get all not-expired cookies in cookie store.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getCookies
* @NotImplemented
*/
// public function getCookies($a = null)
/**
* Get all URIs which identify the cookies in this cookie store.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#getURIs
* @NotImplemented
*/
// public function getURIs($a = null)
/**
* Remove a cookie from store.
*
* @param mixed $a
* @param mixed $b
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#remove
* @NotImplemented
*/
// public function remove($a = null, $b = null)
/**
* Remove all cookies in this cookie store.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#removeAll
* @NotImplemented
*/
// public function removeAll($a = null)
}