Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.31 KB | None | 0 0
  1. package com.riotgames.platform.adminclient.domain
  2. {
  3. import flash.events.*;
  4. import mx.collections.*;
  5. import mx.events.*;
  6.  
  7. public class Account extends Object implements IEventDispatcher
  8. {
  9. private var _1422950650active:Boolean;
  10. private var _1218714947address1:String;
  11. private var _96619420email:String;
  12. private var _1218714946address2:String;
  13. private var _399879970newSecurityAnswer:Boolean;
  14. private var _1216985755password:String;
  15. private var _132835675firstName:String;
  16. private var _631494470securityQuestion:String;
  17. private var _3355id:Number;
  18. private var _266666762userName:String;
  19. private var _3053931city:String;
  20. private var _1649264028authGroups:ArrayCollection;
  21. private var _120609zip:String;
  22. private var _1218759906securityAnswer:String;
  23. private var _504377593summonerName:String;
  24. private var _386871910dateOfBirthate;
  25. private var _810559932verificationKey:String;
  26. private var _1459599807lastName:String;
  27. private var _bindingEventDispatcher:EventDispatcher;
  28. private var _2054074437isAdmin:Boolean;
  29. private var _1237460524groups:ArrayCollection;
  30. private var _121353952authGroupIdsArr:Array;
  31. private var _1444974712auditableActions:ArrayCollection;
  32. private var _338214823banData:BanData;
  33. private var _109757585state:String;
  34. private var _957831062country:String;
  35. private var _99761537authGroupIds:ArrayCollection;
  36. public static const VERIFICATION_EXCEPTION:String = "com.riotgames.platform.ValidationException";
  37.  
  38. public function Account()
  39. {
  40. this._bindingEventDispatcher = new EventDispatcher(IEventDispatcher(this));
  41. return;
  42. }// end function
  43.  
  44. public function set authGroupIds(param1:ArrayCollection) : void
  45. {
  46. var _loc_2:* = this._99761537authGroupIds;
  47. if (_loc_2 !== param1)
  48. {
  49. this._99761537authGroupIds = param1;
  50. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "authGroupIds", _loc_2, param1));
  51. }
  52. return;
  53. }// end function
  54.  
  55. public function ha*****ission(param1:String) : Boolean
  56. {
  57. var _loc_2:Object = null;
  58. var _loc_3:AuthGroup = null;
  59. for each (_loc_2 in this.authGroups)
  60. {
  61.  
  62. _loc_3 = _loc_2 as AuthGroup;
  63. if (_loc_3.ha*****ission(param1))
  64. {
  65. return true;
  66. }
  67. }
  68. return false;
  69. }// end function
  70.  
  71. public function set auditableActions(param1:ArrayCollection) : void
  72. {
  73. var _loc_2:* = this._1444974712auditableActions;
  74. if (_loc_2 !== param1)
  75. {
  76. this._1444974712auditableActions = param1;
  77. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "auditableActions", _loc_2, param1));
  78. }
  79. return;
  80. }// end function
  81.  
  82. public function get active() : Boolean
  83. {
  84. return this._1422950650active;
  85. }// end function
  86.  
  87. public function get authGroupIdsArr() : Array
  88. {
  89. return this._121353952authGroupIdsArr;
  90. }// end function
  91.  
  92. public function set state(param1:String) : void
  93. {
  94. var _loc_2:* = this._109757585state;
  95. if (_loc_2 !== param1)
  96. {
  97. this._109757585state = param1;
  98. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "state", _loc_2, param1));
  99. }
  100. return;
  101. }// end function
  102.  
  103. public function get securityAnswer() : String
  104. {
  105. return this._1218759906securityAnswer;
  106. }// end function
  107.  
  108. public function get zip() : String
  109. {
  110. return this._120609zip;
  111. }// end function
  112.  
  113. public function get id() : Number
  114. {
  115. return this._3355id;
  116. }// end function
  117.  
  118. public function set country(param1:String) : void
  119. {
  120. var _loc_2:* = this._957831062country;
  121. if (_loc_2 !== param1)
  122. {
  123. this._957831062country = param1;
  124. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "country", _loc_2, param1));
  125. }
  126. return;
  127. }// end function
  128.  
  129. public function set active(param1:Boolean) : void
  130. {
  131. var _loc_2:* = this._1422950650active;
  132. if (_loc_2 !== param1)
  133. {
  134. this._1422950650active = param1;
  135. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "active", _loc_2, param1));
  136. }
  137. return;
  138. }// end function
  139.  
  140. public function set dateOfBirth(param1ate) : void
  141. {
  142. var _loc_2:* = this._386871910dateOfBirth;
  143. if (_loc_2 !== param1)
  144. {
  145. this._386871910dateOfBirth = param1;
  146. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "dateOfBirth", _loc_2, param1));
  147. }
  148. return;
  149. }// end function
  150.  
  151. public function set id(param1:Number) : void
  152. {
  153. var _loc_2:* = this._3355id;
  154. if (_loc_2 !== param1)
  155. {
  156. this._3355id = param1;
  157. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "id", _loc_2, param1));
  158. }
  159. return;
  160. }// end function
  161.  
  162. public function set email(param1:String) : void
  163. {
  164. var _loc_2:* = this._96619420email;
  165. if (_loc_2 !== param1)
  166. {
  167. this._96619420email = param1;
  168. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "email", _loc_2, param1));
  169. }
  170. return;
  171. }// end function
  172.  
  173. public function set securityAnswer(param1:String) : void
  174. {
  175. var _loc_2:* = this._1218759906securityAnswer;
  176. if (_loc_2 !== param1)
  177. {
  178. this._1218759906securityAnswer = param1;
  179. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "securityAnswer", _loc_2, param1));
  180. }
  181. return;
  182. }// end function
  183.  
  184. public function set password(param1:String) : void
  185. {
  186. var _loc_2:* = this._1216985755password;
  187. if (_loc_2 !== param1)
  188. {
  189. this._1216985755password = param1;
  190. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "password", _loc_2, param1));
  191. }
  192. return;
  193. }// end function
  194.  
  195. public function set authGroups(param1:ArrayCollection) : void
  196. {
  197. var _loc_2:* = this._1649264028authGroups;
  198. if (_loc_2 !== param1)
  199. {
  200. this._1649264028authGroups = param1;
  201. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "authGroups", _loc_2, param1));
  202. }
  203. return;
  204. }// end function
  205.  
  206. public function set authGroupIdsArr(param1:Array) : void
  207. {
  208. var _loc_2:* = this._121353952authGroupIdsArr;
  209. if (_loc_2 !== param1)
  210. {
  211. this._121353952authGroupIdsArr = param1;
  212. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "authGroupIdsArr", _loc_2, param1));
  213. }
  214. return;
  215. }// end function
  216.  
  217. public function get lastName() : String
  218. {
  219. return this._1459599807lastName;
  220. }// end function
  221.  
  222. public function get isAdmin() : Boolean
  223. {
  224. return this._2054074437isAdmin;
  225. }// end function
  226.  
  227. public function get securityQuestion() : String
  228. {
  229. return this._631494470securityQuestion;
  230. }// end function
  231.  
  232. public function dispatchEvent(event:Event) : Boolean
  233. {
  234. return this._bindingEventDispatcher.dispatchEvent(event);
  235. }// end function
  236.  
  237. public function set zip(param1:String) : void
  238. {
  239. var _loc_2:* = this._120609zip;
  240. if (_loc_2 !== param1)
  241. {
  242. this._120609zip = param1;
  243. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "zip", _loc_2, param1));
  244. }
  245. return;
  246. }// end function
  247.  
  248. public function removeEventListener(param1:String, param2:Function, param3:Boolean = false) : void
  249. {
  250. this._bindingEventDispatcher.removeEventListener(p aram1, param2, param3);
  251. return;
  252. }// end function
  253.  
  254. public function get verificationKey() : String
  255. {
  256. return this._810559932verificationKey;
  257. }// end function
  258.  
  259. public function addEventListener(param1:String, param2:Function, param3:Boolean = false, param4:int = 0, param5:Boolean = false) : void
  260. {
  261. this._bindingEventDispatcher.addEventListener(para m1, param2, param3, param4, param5);
  262. return;
  263. }// end function
  264.  
  265. public function get dateBannedUntil() : Date
  266. {
  267. return this.banData == null ? (null) : (this.banData.dateBannedUntil);
  268. }// end function
  269.  
  270. public function get banData() : BanData
  271. {
  272. return this._338214823banData;
  273. }// end function
  274.  
  275. public function get firstName() : String
  276. {
  277. return this._132835675firstName;
  278. }// end function
  279.  
  280. public function get city() : String
  281. {
  282. return this._3053931city;
  283. }// end function
  284.  
  285. public function set address1(param1:String) : void
  286. {
  287. var _loc_2:* = this._1218714947address1;
  288. if (_loc_2 !== param1)
  289. {
  290. this._1218714947address1 = param1;
  291. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "address1", _loc_2, param1));
  292. }
  293. return;
  294. }// end function
  295.  
  296. public function set address2(param1:String) : void
  297. {
  298. var _loc_2:* = this._1218714946address2;
  299. if (_loc_2 !== param1)
  300. {
  301. this._1218714946address2 = param1;
  302. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "address2", _loc_2, param1));
  303. }
  304. return;
  305. }// end function
  306.  
  307. public function get authGroupIds() : ArrayCollection
  308. {
  309. return this._99761537authGroupIds;
  310. }// end function
  311.  
  312. public function willTrigger(param1:String) : Boolean
  313. {
  314. return this._bindingEventDispatcher.willTrigger(param1);
  315. }// end function
  316.  
  317. public function set verificationKey(param1:String) : void
  318. {
  319. var _loc_2:* = this._810559932verificationKey;
  320. if (_loc_2 !== param1)
  321. {
  322. this._810559932verificationKey = param1;
  323. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "verificationKey", _loc_2, param1));
  324. }
  325. return;
  326. }// end function
  327.  
  328. public function set securityQuestion(param1:String) : void
  329. {
  330. var _loc_2:* = this._631494470securityQuestion;
  331. if (_loc_2 !== param1)
  332. {
  333. this._631494470securityQuestion = param1;
  334. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "securityQuestion", _loc_2, param1));
  335. }
  336. return;
  337. }// end function
  338.  
  339. public function set lastName(param1:String) : void
  340. {
  341. var _loc_2:* = this._1459599807lastName;
  342. if (_loc_2 !== param1)
  343. {
  344. this._1459599807lastName = param1;
  345. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "lastName", _loc_2, param1));
  346. }
  347. return;
  348. }// end function
  349.  
  350. public function get country() : String
  351. {
  352. return this._957831062country;
  353. }// end function
  354.  
  355. public function get auditableActions() : ArrayCollection
  356. {
  357. return this._1444974712auditableActions;
  358. }// end function
  359.  
  360. public function set isAdmin(param1:Boolean) : void
  361. {
  362. var _loc_2:* = this._2054074437isAdmin;
  363. if (_loc_2 !== param1)
  364. {
  365. this._2054074437isAdmin = param1;
  366. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "isAdmin", _loc_2, param1));
  367. }
  368. return;
  369. }// end function
  370.  
  371. public function get dateOfBirth() : Date
  372. {
  373. return this._386871910dateOfBirth;
  374. }// end function
  375.  
  376. public function get password() : String
  377. {
  378. return this._1216985755password;
  379. }// end function
  380.  
  381. public function get email() : String
  382. {
  383. return this._96619420email;
  384. }// end function
  385.  
  386. public function get state() : String
  387. {
  388. return this._109757585state;
  389. }// end function
  390.  
  391. public function get authGroups() : ArrayCollection
  392. {
  393. return this._1649264028authGroups;
  394. }// end function
  395.  
  396. public function set groups(param1:ArrayCollection) : void
  397. {
  398. var _loc_2:* = this._1237460524groups;
  399. if (_loc_2 !== param1)
  400. {
  401. this._1237460524groups = param1;
  402. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "groups", _loc_2, param1));
  403. }
  404. return;
  405. }// end function
  406.  
  407. public function set banData(param1:BanData) : void
  408. {
  409. var _loc_2:* = this._338214823banData;
  410. if (_loc_2 !== param1)
  411. {
  412. this._338214823banData = param1;
  413. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "banData", _loc_2, param1));
  414. }
  415. return;
  416. }// end function
  417.  
  418. public function set firstName(param1:String) : void
  419. {
  420. var _loc_2:* = this._132835675firstName;
  421. if (_loc_2 !== param1)
  422. {
  423. this._132835675firstName = param1;
  424. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "firstName", _loc_2, param1));
  425. }
  426. return;
  427. }// end function
  428.  
  429. public function set newSecurityAnswer(param1:Boolean) : void
  430. {
  431. var _loc_2:* = this._399879970newSecurityAnswer;
  432. if (_loc_2 !== param1)
  433. {
  434. this._399879970newSecurityAnswer = param1;
  435. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "newSecurityAnswer", _loc_2, param1));
  436. }
  437. return;
  438. }// end function
  439.  
  440. public function get address1() : String
  441. {
  442. return this._1218714947address1;
  443. }// end function
  444.  
  445. public function get address2() : String
  446. {
  447. return this._1218714946address2;
  448. }// end function
  449.  
  450. public function get groups() : ArrayCollection
  451. {
  452. return this._1237460524groups;
  453. }// end function
  454.  
  455. public function get newSecurityAnswer() : Boolean
  456. {
  457. return this._399879970newSecurityAnswer;
  458. }// end function
  459.  
  460. public function set city(param1:String) : void
  461. {
  462. var _loc_2:* = this._3053931city;
  463. if (_loc_2 !== param1)
  464. {
  465. this._3053931city = param1;
  466. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "city", _loc_2, param1));
  467. }
  468. return;
  469. }// end function
  470.  
  471. public function set userName(param1:String) : void
  472. {
  473. var _loc_2:* = this._266666762userName;
  474. if (_loc_2 !== param1)
  475. {
  476. this._266666762userName = param1;
  477. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "userName", _loc_2, param1));
  478. }
  479. return;
  480. }// end function
  481.  
  482. public function set summonerName(param1:String) : void
  483. {
  484. var _loc_2:* = this._504377593summonerName;
  485. if (_loc_2 !== param1)
  486. {
  487. this._504377593summonerName = param1;
  488. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "summonerName", _loc_2, param1));
  489. }
  490. return;
  491. }// end function
  492.  
  493. public function hasEventListener(param1:String) : Boolean
  494. {
  495. return this._bindingEventDispatcher.hasEventListener(para m1);
  496. }// end function
  497.  
  498. public function get userName() : String
  499. {
  500. return this._266666762userName;
  501. }// end function
  502.  
  503. public function get summonerName() : String
  504. {
  505. return this._504377593summonerName;
  506. }// end function
  507.  
  508. }
  509. }
  510. [17:20:03] tssge: package com.riotgames.platform.adminclient.domain
  511. {
  512. import flash.events.*;
  513. import mx.events.*;
  514.  
  515. public class BanData extends Object implements IEventDispatcher
  516. {
  517. private var _338231652banCode:String;
  518. private var _1534946734dateBannedUntilate;
  519. private var _bindingEventDispatcher:EventDispatcher;
  520. private var _1724546052description:String;
  521.  
  522. public function BanData()
  523. {
  524. this._bindingEventDispatcher = new EventDispatcher(IEventDispatcher(this));
  525. return;
  526. }// end function
  527.  
  528. public function get banCode() : String
  529. {
  530. return this._338231652banCode;
  531. }// end function
  532.  
  533. public function set dateBannedUntil(param1ate) : void
  534. {
  535. var _loc_2:* = this._1534946734dateBannedUntil;
  536. if (_loc_2 !== param1)
  537. {
  538. this._1534946734dateBannedUntil = param1;
  539. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "dateBannedUntil", _loc_2, param1));
  540. }
  541. return;
  542. }// end function
  543.  
  544. public function willTrigger(param1:String) : Boolean
  545. {
  546. return this._bindingEventDispatcher.willTrigger(param1);
  547. }// end function
  548.  
  549. public function removeEventListener(param1:String, param2:Function, param3:Boolean = false) : void
  550. {
  551. this._bindingEventDispatcher.removeEventListener(p aram1, param2, param3);
  552. return;
  553. }// end function
  554.  
  555. public function hasEventListener(param1:String) : Boolean
  556. {
  557. return this._bindingEventDispatcher.hasEventListener(para m1);
  558. }// end function
  559.  
  560. public function addEventListener(param1:String, param2:Function, param3:Boolean = false, param4:int = 0, param5:Boolean = false) : void
  561. {
  562. this._bindingEventDispatcher.addEventListener(para m1, param2, param3, param4, param5);
  563. return;
  564. }// end function
  565.  
  566. public function dispatchEvent(event:Event) : Boolean
  567. {
  568. return this._bindingEventDispatcher.dispatchEvent(event);
  569. }// end function
  570.  
  571. public function set description(param1:String) : void
  572. {
  573. var _loc_2:* = this._1724546052description;
  574. if (_loc_2 !== param1)
  575. {
  576. this._1724546052description = param1;
  577. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "description", _loc_2, param1));
  578. }
  579. return;
  580. }// end function
  581.  
  582. public function get dateBannedUntil() : Date
  583. {
  584. return this._1534946734dateBannedUntil;
  585. }// end function
  586.  
  587. public function set banCode(param1:String) : void
  588. {
  589. var _loc_2:* = this._338231652banCode;
  590. if (_loc_2 !== param1)
  591. {
  592. this._338231652banCode = param1;
  593. this.dispatchEvent(PropertyChangeEvent.createUpdat eEvent(this, "banCode", _loc_2, param1));
  594. }
  595. return;
  596. }// end function
  597.  
  598. public function get description() : String
  599. {
  600. return this._1724546052description;
  601. }// end function
  602.  
  603. }
  604. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement