Package | com.adobe.webapis.flickr.methodgroups |
Class | public class Test |
Method | Defined by | ||
---|---|---|---|
Test(service:FlickrService)
Construct a new Test "method group" class
| Test | ||
echo(... params):void
A testing method which echo's all paramaters back in
the response.
| Test | ||
login():void
A testing method which checks if the caller is logged
in then returns their username.
| Test |
Event | Summary | Defined by | ||
---|---|---|---|---|
Broadcast as a result of the echo method being called
The event contains the following properties
success - Boolean indicating if the call was successful or not
data - When success is true, an XML object like the following:
| Test | |||
Broadcast as a result of the login method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, a User instance When success is false, contains an "error" FlickrError instance | Test |
Test | () | constructor |
public function Test(service:FlickrService)
Construct a new Test "method group" class
Parametersservice:FlickrService — The FlickrService this method group
is associated with.
|
echo | () | method |
public function echo(... params):void
A testing method which echo's all paramaters back in the response.
Parameters... params |
See also
login | () | method |
public function login():void
A testing method which checks if the caller is logged in then returns their username.
See also
testEcho | event |
com.adobe.webapis.flickr.events.FlickrResultEvent
Broadcast as a result of the echo method being called
The event contains the following properties
success - Boolean indicating if the call was successful or not
data - When success is true, an XML object like the following:
See also
testLogin | event |
com.adobe.webapis.flickr.events.FlickrResultEvent
Broadcast as a result of the login method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, a User instance When success is false, contains an "error" FlickrError instance
See also