1 | <?php |
||
18 | class ByebyeOptions |
||
19 | { |
||
20 | /** |
||
21 | * Default notification type |
||
22 | */ |
||
23 | const DEFAULT_NOTIFICATION_TYPE = 'upnp:rootdevice'; |
||
24 | |||
25 | /** |
||
26 | * @var NotificationType |
||
27 | */ |
||
28 | protected $notificationType; |
||
29 | |||
30 | /** |
||
31 | * @var UniqueServiceName |
||
32 | */ |
||
33 | protected $uniqueServiceName; |
||
34 | |||
35 | /** |
||
36 | * Get notification type |
||
37 | * |
||
38 | * @return NotificationType |
||
39 | */ |
||
40 | public function getNotificationType() |
||
48 | |||
49 | /** |
||
50 | * Set notification type |
||
51 | * |
||
52 | * @param NotificationType $notificationType |
||
53 | * |
||
54 | * @return $this |
||
55 | */ |
||
56 | public function setNotificationType(NotificationType $notificationType) |
||
61 | |||
62 | /** |
||
63 | * Get unique service name |
||
64 | * |
||
65 | * @return UniqueServiceName |
||
66 | */ |
||
67 | public function getUniqueServiceName() |
||
75 | |||
76 | /** |
||
77 | * Set unique service name |
||
78 | * |
||
79 | * @param UniqueServiceName $uniqueServiceName |
||
80 | * |
||
81 | * @return $this |
||
82 | */ |
||
83 | public function setUniqueServiceName(UniqueServiceName $uniqueServiceName) |
||
88 | } |
||
89 |