Guest User

Untitled

a guest
Jul 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. package com.lego.model.proxies
  2. {
  3. import flash.net.URLRequest;
  4.  
  5. import org.puremvc.as3.multicore.patterns.proxy.Proxy;
  6.  
  7. public class AuthorsProxy extends Proxy
  8. {
  9. public function AuthorsProxy(proxyName:String=null, data:Object=null)
  10. {
  11. super(proxyName, data);
  12. }
  13.  
  14. override public function setData(data:Object):void
  15. {
  16.  
  17. }
  18.  
  19. override public function getData():Object
  20. {
  21.  
  22. }
  23.  
  24. public function getUsername():String
  25. {
  26.  
  27. }
  28.  
  29. public function getFirstName():String
  30. {
  31.  
  32. }
  33.  
  34. public function getLastName():String
  35. {
  36.  
  37. }
  38.  
  39. public function getBio():String
  40. {
  41.  
  42. }
  43.  
  44. public function getProfileImageUrl():URLRequest
  45. {
  46.  
  47. }
  48. }
  49. }
Add Comment
Please, Sign In to add comment