@@ 20-56 (lines=37) @@ | ||
17 | /** |
|
18 | * |
|
19 | */ |
|
20 | class GetUserByConstraintResponse extends Response |
|
21 | { |
|
22 | /** |
|
23 | * @var integer |
|
24 | */ |
|
25 | protected $GetUserByConstraintResult; |
|
26 | ||
27 | /** |
|
28 | * @var Properties |
|
29 | */ |
|
30 | protected $ResultSet; |
|
31 | ||
32 | /** |
|
33 | * |
|
34 | */ |
|
35 | public function __construct() |
|
36 | { |
|
37 | $this->GetUserByConstraintResult = Response::ERROR_NORESULT; |
|
38 | $this->ResultSet = new Properties(); |
|
39 | } |
|
40 | ||
41 | /** |
|
42 | * {@inheritDoc} |
|
43 | */ |
|
44 | public function getCode() |
|
45 | { |
|
46 | return $this->GetUserByConstraintResult; |
|
47 | } |
|
48 | ||
49 | /** |
|
50 | * @return Properties |
|
51 | */ |
|
52 | public function getProperties() |
|
53 | { |
|
54 | return $this->ResultSet; |
|
55 | } |
|
56 | } |
|
57 |
@@ 20-56 (lines=37) @@ | ||
17 | /** |
|
18 | * |
|
19 | */ |
|
20 | class GetUserByFilterResponse extends Response |
|
21 | { |
|
22 | /** |
|
23 | * @var integer |
|
24 | */ |
|
25 | protected $GetUserByFilterResult; |
|
26 | ||
27 | /** |
|
28 | * @var Properties |
|
29 | */ |
|
30 | protected $ResultSet; |
|
31 | ||
32 | /** |
|
33 | * |
|
34 | */ |
|
35 | public function __construct() |
|
36 | { |
|
37 | $this->GetUserByFilterResult = Response::ERROR_NORESULT; |
|
38 | $this->ResultSet = new Properties(); |
|
39 | } |
|
40 | ||
41 | /** |
|
42 | * {@inheritDoc} |
|
43 | */ |
|
44 | public function getCode() |
|
45 | { |
|
46 | return $this->GetUserByFilterResult; |
|
47 | } |
|
48 | ||
49 | /** |
|
50 | * @return Properties |
|
51 | */ |
|
52 | public function getProperties() |
|
53 | { |
|
54 | return $this->ResultSet; |
|
55 | } |
|
56 | } |
|
57 |
@@ 20-56 (lines=37) @@ | ||
17 | /** |
|
18 | * |
|
19 | */ |
|
20 | class GetUserByIDResponse extends Response |
|
21 | { |
|
22 | /** |
|
23 | * |
|
24 | */ |
|
25 | protected $GetUserByIDResult; |
|
26 | ||
27 | /** |
|
28 | * |
|
29 | */ |
|
30 | protected $ResultSet; |
|
31 | ||
32 | /** |
|
33 | * |
|
34 | */ |
|
35 | public function __construct() |
|
36 | { |
|
37 | $this->GetUserByIDResult = Response::ERROR_NORESULT; |
|
38 | $this->ResultSet = new Properties(); |
|
39 | } |
|
40 | ||
41 | /** |
|
42 | * {@inheritDoc} |
|
43 | */ |
|
44 | public function getCode() |
|
45 | { |
|
46 | return $this->GetUserByIDResult; |
|
47 | } |
|
48 | ||
49 | /** |
|
50 | * @return Properties |
|
51 | */ |
|
52 | public function getProperties() |
|
53 | { |
|
54 | return $this->ResultSet; |
|
55 | } |
|
56 | } |
|
57 |