| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- package com.imt.intimamedia.vo
- {
- import com.imt.intimamedia.helpers.AMFDateConverter;
-
- [RemoteClass(alias="com.imt.intimamedia.vo.MailVo")]
- [Bindable]
- /**
- * Objet mail
- */
- public class MailVo
- {
- private var _mailer : String = "";
- private var _addressee : String = "";
- private var _subject : String = "";
- private var _body : String = "";
- private var _bodyHTML : String = "";
- private var _file : String = "";
- private var _name : String = "";
- private var _reply : String = "";
-
- /**
- * Expéditeur du mail
- *
- * @default ""
- */
- public function get mailer () : String
- {
- return _mailer;
- }
-
- /**
- * @private
- */
- public function set mailer ( value : String ) : void
- {
- _mailer = value;
- }
-
- /**
- * Déstinataire du mail
- *
- * @default ""
- */
- public function get addressee () : String
- {
- return _addressee;
- }
-
- /**
- * @private
- */
- public function set addressee ( value : String ) : void
- {
- _addressee = value;
- }
-
- /**
- * Sujet du mail
- *
- * @default ""
- */
- public function get subject () : String
- {
- return _subject;
- }
-
- /**
- * @private
- */
- public function set subject ( value : String ) : void
- {
- _subject = value;
- }
-
- /**
- * Corps du mail
- *
- * @default ""
- */
- public function get body () : String
- {
- return _body;
- }
-
- /**
- * @private
- */
- public function set body ( value : String ) : void
- {
- _body = value;
- }
-
- /**
- * Corps du mail en HTML
- *
- * @default ""
- */
- public function get bodyHTML () : String
- {
- return _bodyHTML;
- }
-
- /**
- * @private
- */
- public function set bodyHTML ( value : String ) : void
- {
- _bodyHTML = value;
- }
-
- /**
- * Nom du fichier
- *
- * @default ""
- */
- public function get file () : String
- {
- return _file;
- }
-
- /**
- * @private
- */
- public function set file ( value : String ) : void
- {
- _file = value;
- }
-
- /**
- * Nom du fichier
- *
- * @default ""
- */
- public function get name () : String
- {
- return _name;
- }
-
- /**
- * @private
- */
- public function set name ( value : String ) : void
- {
- _name = value;
- }
-
- /**
- * Adresse de réponse
- *
- * @default ""
- */
- public function get reply () : String
- {
- return _reply;
- }
-
- /**
- * @private
- */
- public function set reply ( value : String ) : void
- {
- _reply = value;
- }
- }
- }
|