1 | <?php |
||
14 | class AMQPMessage implements AMQPMessageInterface |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | * @Type("string") |
||
19 | */ |
||
20 | protected $id; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | * @Type("string") |
||
25 | */ |
||
26 | protected $index; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | * @Type("string") |
||
31 | */ |
||
32 | protected $type; |
||
33 | |||
34 | /** |
||
35 | * @var string |
||
36 | * @Type("string") |
||
37 | */ |
||
38 | protected $data; |
||
39 | |||
40 | /** |
||
41 | * {@inheritDoc} |
||
42 | */ |
||
43 | 1 | public function setId($id) |
|
48 | |||
49 | /** |
||
50 | * {@inheritDoc} |
||
51 | */ |
||
52 | 1 | public function getId() |
|
56 | |||
57 | /** |
||
58 | * {@inheritDoc} |
||
59 | */ |
||
60 | 1 | public function setIndex($index) |
|
65 | |||
66 | /** |
||
67 | * {@inheritDoc} |
||
68 | */ |
||
69 | 1 | public function getIndex() |
|
73 | |||
74 | /** |
||
75 | * {@inheritDoc} |
||
76 | */ |
||
77 | 5 | public function setType($type) |
|
82 | |||
83 | /** |
||
84 | * {@inheritDoc} |
||
85 | */ |
||
86 | 5 | public function getType() |
|
90 | |||
91 | /** |
||
92 | * {@inheritDoc} |
||
93 | */ |
||
94 | 5 | public function setData($data) |
|
99 | |||
100 | /** |
||
101 | * {@inheritDoc} |
||
102 | */ |
||
103 | 5 | public function getData() |
|
107 | } |
||
108 |