Apache2::REST::Handler::test::user::location - Fake location resource for a user.


Apache2-REST documentation Contained in the Apache2-REST distribution.

Index


Code Index:

NAME

Top

Apache2::REST::Handler::test::user::location - Fake location resource for a user.

GET

Returns a fake collection of locations.


Apache2-REST documentation Contained in the Apache2-REST distribution.
package Apache2::REST::Handler::test::user::location ;

use base qw/Apache2::REST::Handler/  ;

sub GET{
    my ( $self , $req , $resp ) = @ _;
    $resp->data()->{'location_message'} = 'This is location of user '.$self->parent()->userid() ;
    $resp->data()->{'locations'} =[ { 'lat' => '45.222233'  , 'long' => '45.564354343' },
                                    { 'lat' => '46.222233'  , 'long' => '45.564354343' },
                                    { 'lat' => '47.222233'  , 'long' => '45.564354343' },
                                  ]
                                    ;
    return Apache2::Const::HTTP_OK ;
}

1 ;