MessageVo.as 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. package com.imt.intimamedia.vo
  2. {
  3. import com.imt.intimamedia.helpers.AMFDateConverter;
  4. [RemoteClass(alias="com.imt.intimamedia.vo.MessageVo")]
  5. [Bindable]
  6. /**
  7. * Objet message
  8. */
  9. public class MessageVo
  10. {
  11. private var _mail : String = "";
  12. private var _firstname : String = "";
  13. private var _lastname : String = "";
  14. private var _organization : String = "";
  15. private var _phone : String = "";
  16. private var _message : String = "";
  17. /**
  18. * email
  19. *
  20. * @default ""
  21. */
  22. public function get mail () : String
  23. {
  24. return _mail;
  25. }
  26. /**
  27. * @private
  28. */
  29. public function set mail ( value : String ) : void
  30. {
  31. _mail = value;
  32. }
  33. /**
  34. * Prenom
  35. *
  36. * @default ""
  37. */
  38. public function get firstname () : String
  39. {
  40. return _firstname;
  41. }
  42. /**
  43. * @private
  44. */
  45. public function set firstname ( value : String ) : void
  46. {
  47. _firstname = value;
  48. }
  49. /**
  50. * Nom
  51. *
  52. * @default ""
  53. */
  54. public function get lastname () : String
  55. {
  56. return _lastname;
  57. }
  58. /**
  59. * @private
  60. */
  61. public function set lastname ( value : String ) : void
  62. {
  63. _lastname = value;
  64. }
  65. /**
  66. * Phone
  67. *
  68. * @default ""
  69. */
  70. public function get phone () : String
  71. {
  72. return _phone;
  73. }
  74. /**
  75. * @private
  76. */
  77. public function set phone ( value : String ) : void
  78. {
  79. _phone = value;
  80. }
  81. /**
  82. * Organization
  83. *
  84. * @default ""
  85. */
  86. public function get organization () : String
  87. {
  88. return _organization;
  89. }
  90. /**
  91. * @private
  92. */
  93. public function set organization ( value : String ) : void
  94. {
  95. _organization = value;
  96. }
  97. /**
  98. * Message
  99. *
  100. * @default ""
  101. */
  102. public function get message () : String
  103. {
  104. return _message;
  105. }
  106. /**
  107. * @private
  108. */
  109. public function set message ( value : String ) : void
  110. {
  111. _message = value;
  112. }
  113. }
  114. }