1 | <?php |
||
10 | class Future extends TransferCommand implements ExtensionInterface |
||
11 | { |
||
12 | protected $extension = 'extfut'; |
||
13 | |||
14 | protected $extension_xmlns = 'http://www.dns.pl/nask-epp-schema/extfut-2.0'; |
||
15 | |||
16 | public function getExtensionNamespace() |
||
20 | |||
21 | /** |
||
22 | * Set domain name for future (option) |
||
23 | * |
||
24 | * @param string $domain Domain Name |
||
25 | * |
||
26 | * @throws Exception on incorrect domain name |
||
27 | */ |
||
28 | public function setFuture($domain) |
||
36 | |||
37 | /** |
||
38 | * Set requested future AuthInfo |
||
39 | * |
||
40 | * @param string $pw AuthInfo for future |
||
41 | * @param string $roid if specified, this is ContactId of registrant and autinfo is of registrant |
||
42 | */ |
||
43 | public function setAuthInfo($pw, $roid = null) |
||
51 | |||
52 | public function resendConfirmationRequest() |
||
56 | } |
||
57 |