Advertisement
Guest User

Untitled

a guest
May 24th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.93 KB | None | 0 0
  1. public class Form extends RealmObject {
  2.  
  3. @PrimaryKey
  4. private String _id;
  5.  
  6. private MetaData _kmd;
  7.  
  8. private String title;
  9.  
  10. private String description;
  11.  
  12. private boolean live;
  13.  
  14. private long last_modified_at;
  15.  
  16. private RealmList<Question> question_list;
  17.  
  18. private int type;
  19.  
  20. private int sector;
  21.  
  22. private String organization_id;
  23.  
  24. private String published_revision_last_published_in;
  25.  
  26. private String form_family_id;
  27.  
  28. private boolean response_email_enabled;
  29.  
  30. private boolean response_sms_enabled;
  31.  
  32. private EmailOrSms email_parameters;
  33.  
  34. private EmailOrSms sms_parameters;
  35.  
  36. private String owner;
  37.  
  38. private boolean force_submit_disabled;
  39.  
  40. public String get_id() {
  41. return _id;
  42. }
  43.  
  44. public void set_id(String _id) {
  45. this._id = _id;
  46. }
  47.  
  48. public MetaData get_kmd() {
  49. return _kmd;
  50. }
  51.  
  52. public void set_kmd(MetaData _kmd) {
  53. this._kmd = _kmd;
  54. }
  55.  
  56. public String getTitle() {
  57. return title;
  58. }
  59.  
  60. public void setTitle(String title) {
  61. this.title = title;
  62. }
  63.  
  64. public String getDescription() {
  65. return description;
  66. }
  67.  
  68. public void setDescription(String description) {
  69. this.description = description;
  70. }
  71.  
  72. public long getLast_modified_at() {
  73. return last_modified_at;
  74. }
  75.  
  76. public void setLast_modified_at(long last_modified_at) {
  77. this.last_modified_at = last_modified_at;
  78. }
  79.  
  80. public RealmList<Question> getQuestion_list() {
  81. return question_list;
  82. }
  83.  
  84. public void setQuestion_list(RealmList<Question> question_list) {
  85. this.question_list = question_list;
  86. }
  87.  
  88. public int getType() {
  89. return type;
  90. }
  91.  
  92. public void setType(int type) {
  93. this.type = type;
  94. }
  95.  
  96. public int getSector() {
  97. return sector;
  98. }
  99.  
  100. public void setSector(int sector) {
  101. this.sector = sector;
  102. }
  103.  
  104. public String getOrganization_id() {
  105. return organization_id;
  106. }
  107.  
  108. public void setOrganization_id(String organization_id) {
  109. this.organization_id = organization_id;
  110. }
  111.  
  112. public String getPublished_revision_last_published_in() {
  113. return published_revision_last_published_in;
  114. }
  115.  
  116. public void setPublished_revision_last_published_in(String published_revision_last_published_in) {
  117. this.published_revision_last_published_in = published_revision_last_published_in;
  118. }
  119.  
  120. public String getForm_family_id() {
  121. return form_family_id;
  122. }
  123.  
  124. public void setForm_family_id(String form_family_id) {
  125. this.form_family_id = form_family_id;
  126. }
  127.  
  128. public boolean isResponse_email_enabled() {
  129. return response_email_enabled;
  130. }
  131.  
  132. public void setResponse_email_enabled(boolean response_email_enabled) {
  133. this.response_email_enabled = response_email_enabled;
  134. }
  135.  
  136. public boolean isResponse_sms_enabled() {
  137. return response_sms_enabled;
  138. }
  139.  
  140. public void setResponse_sms_enabled(boolean response_sms_enabled) {
  141. this.response_sms_enabled = response_sms_enabled;
  142. }
  143.  
  144. public EmailOrSms getEmail_parameters() {
  145. return email_parameters;
  146. }
  147.  
  148. public void setEmail_parameters(EmailOrSms email_parameters) {
  149. this.email_parameters = email_parameters;
  150. }
  151.  
  152. public EmailOrSms getSms_parameters() {
  153. return sms_parameters;
  154. }
  155.  
  156. public void setSms_parameters(EmailOrSms sms_parameters) {
  157. this.sms_parameters = sms_parameters;
  158. }
  159.  
  160. public String getOwner() {
  161. return owner;
  162. }
  163.  
  164. public void setOwner(String owner) {
  165. this.owner = owner;
  166. }
  167.  
  168. public boolean isForce_submit_disabled() {
  169. return force_submit_disabled;
  170. }
  171.  
  172. public void setForce_submit_disabled(boolean force_submit_disabled) {
  173. this.force_submit_disabled = force_submit_disabled;
  174. }
  175.  
  176. public boolean isLive() {
  177. return live;
  178. }
  179.  
  180. public void setLive(boolean live) {
  181. this.live = live;
  182. }
  183. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement