/modules/org.restlet.test/src/main/java/org/restlet/test/ext/odata/deepexpand/model/Professor.java

http://github.com/restlet/restlet-framework-java · Java · 642 lines · 215 code · 88 blank · 339 comment · 0 complexity · e24c216822a2bccedb478e494cc1e7c7 MD5 · raw file

  1. /**
  2. * Copyright 2005-2020 Talend
  3. *
  4. * The contents of this file are subject to the terms of one of the following
  5. * open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
  6. * select the license that you prefer but you may not use this file except in
  7. * compliance with one of these Licenses.
  8. *
  9. * You can obtain a copy of the Apache 2.0 license at
  10. * http://www.opensource.org/licenses/apache-2.0
  11. *
  12. * You can obtain a copy of the EPL 1.0 license at
  13. * http://www.opensource.org/licenses/eclipse-1.0
  14. *
  15. * See the Licenses for the specific language governing permissions and
  16. * limitations under the Licenses.
  17. *
  18. * Alternatively, you can obtain a royalty free commercial license with less
  19. * limitations, transferable or non-transferable, directly at
  20. * https://restlet.talend.com/
  21. *
  22. * Restlet is a registered trademark of Talend S.A.
  23. */
  24. package org.restlet.test.ext.odata.deepexpand.model;
  25. import java.util.Date;
  26. import java.util.List;
  27. import org.restlet.test.ext.odata.deepexpand.model.Address;
  28. import org.restlet.test.ext.odata.deepexpand.model.CoOp;
  29. import org.restlet.test.ext.odata.deepexpand.model.Department;
  30. import org.restlet.test.ext.odata.deepexpand.model.Division;
  31. import org.restlet.test.ext.odata.deepexpand.model.Group;
  32. import org.restlet.test.ext.odata.deepexpand.model.Job;
  33. import org.restlet.test.ext.odata.deepexpand.model.JobPosting;
  34. import org.restlet.test.ext.odata.deepexpand.model.Language;
  35. import org.restlet.test.ext.odata.deepexpand.model.Report;
  36. import org.restlet.test.ext.odata.deepexpand.model.Role;
  37. import org.restlet.test.ext.odata.deepexpand.model.Telephone;
  38. /**
  39. * Generated by the generator tool for the OData extension for the Restlet
  40. * framework.<br>
  41. *
  42. * @see <a
  43. * href="http://praktiki.metal.ntua.gr/CoopOData/CoopOData.svc/$metadata">Metadata
  44. * of the target OData service</a>
  45. *
  46. */
  47. public class Professor {
  48. private Date dateOfBirth;
  49. private String email;
  50. private String fatherName;
  51. private String gender;
  52. private int id;
  53. private String motherName;
  54. private String name;
  55. private String notes;
  56. private String rank;
  57. private String surname;
  58. private String userName;
  59. private Tracking tracking;
  60. private List<CoOp> academicallyDirectedCoOps;
  61. private List<Address> addresses;
  62. private CoOp defaultCoOp;
  63. private Department department;
  64. private Division division;
  65. private List<CoOp> institutionallyDirectedCoOps;
  66. private Language preferredLanguage;
  67. private List<Report> reports;
  68. private List<Role> roles;
  69. private List<CoOp> scientificallyDirectedCoOps;
  70. private List<CoOp> supervisedCoOps;
  71. private List<Group> supervisedGroups;
  72. private List<JobPosting> supervisedJobPostings;
  73. private List<Job> supervisedJobs;
  74. private List<Telephone> telephones;
  75. /**
  76. * Constructor without parameter.
  77. *
  78. */
  79. public Professor() {
  80. super();
  81. }
  82. /**
  83. * Constructor.
  84. *
  85. * @param id
  86. * The identifiant value of the entity.
  87. */
  88. public Professor(int id) {
  89. this();
  90. this.id = id;
  91. }
  92. /**
  93. * Returns the value of the "dateOfBirth" attribute.
  94. *
  95. * @return The value of the "dateOfBirth" attribute.
  96. */
  97. public Date getDateOfBirth() {
  98. return dateOfBirth;
  99. }
  100. /**
  101. * Returns the value of the "email" attribute.
  102. *
  103. * @return The value of the "email" attribute.
  104. */
  105. public String getEmail() {
  106. return email;
  107. }
  108. /**
  109. * Returns the value of the "fatherName" attribute.
  110. *
  111. * @return The value of the "fatherName" attribute.
  112. */
  113. public String getFatherName() {
  114. return fatherName;
  115. }
  116. /**
  117. * Returns the value of the "gender" attribute.
  118. *
  119. * @return The value of the "gender" attribute.
  120. */
  121. public String getGender() {
  122. return gender;
  123. }
  124. /**
  125. * Returns the value of the "id" attribute.
  126. *
  127. * @return The value of the "id" attribute.
  128. */
  129. public int getId() {
  130. return id;
  131. }
  132. /**
  133. * Returns the value of the "motherName" attribute.
  134. *
  135. * @return The value of the "motherName" attribute.
  136. */
  137. public String getMotherName() {
  138. return motherName;
  139. }
  140. /**
  141. * Returns the value of the "name" attribute.
  142. *
  143. * @return The value of the "name" attribute.
  144. */
  145. public String getName() {
  146. return name;
  147. }
  148. /**
  149. * Returns the value of the "notes" attribute.
  150. *
  151. * @return The value of the "notes" attribute.
  152. */
  153. public String getNotes() {
  154. return notes;
  155. }
  156. /**
  157. * Returns the value of the "rank" attribute.
  158. *
  159. * @return The value of the "rank" attribute.
  160. */
  161. public String getRank() {
  162. return rank;
  163. }
  164. /**
  165. * Returns the value of the "surname" attribute.
  166. *
  167. * @return The value of the "surname" attribute.
  168. */
  169. public String getSurname() {
  170. return surname;
  171. }
  172. /**
  173. * Returns the value of the "userName" attribute.
  174. *
  175. * @return The value of the "userName" attribute.
  176. */
  177. public String getUserName() {
  178. return userName;
  179. }
  180. /**
  181. * Returns the value of the "tracking" attribute.
  182. *
  183. * @return The value of the "tracking" attribute.
  184. */
  185. public Tracking getTracking() {
  186. return tracking;
  187. }
  188. /**
  189. * Returns the value of the "academicallyDirectedCoOps" attribute.
  190. *
  191. * @return The value of the "academicallyDirectedCoOps" attribute.
  192. */
  193. public List<CoOp> getAcademicallyDirectedCoOps() {
  194. return academicallyDirectedCoOps;
  195. }
  196. /**
  197. * Returns the value of the "addresses" attribute.
  198. *
  199. * @return The value of the "addresses" attribute.
  200. */
  201. public List<Address> getAddresses() {
  202. return addresses;
  203. }
  204. /**
  205. * Returns the value of the "defaultCoOp" attribute.
  206. *
  207. * @return The value of the "defaultCoOp" attribute.
  208. */
  209. public CoOp getDefaultCoOp() {
  210. return defaultCoOp;
  211. }
  212. /**
  213. * Returns the value of the "department" attribute.
  214. *
  215. * @return The value of the "department" attribute.
  216. */
  217. public Department getDepartment() {
  218. return department;
  219. }
  220. /**
  221. * Returns the value of the "division" attribute.
  222. *
  223. * @return The value of the "division" attribute.
  224. */
  225. public Division getDivision() {
  226. return division;
  227. }
  228. /**
  229. * Returns the value of the "institutionallyDirectedCoOps" attribute.
  230. *
  231. * @return The value of the "institutionallyDirectedCoOps" attribute.
  232. */
  233. public List<CoOp> getInstitutionallyDirectedCoOps() {
  234. return institutionallyDirectedCoOps;
  235. }
  236. /**
  237. * Returns the value of the "preferredLanguage" attribute.
  238. *
  239. * @return The value of the "preferredLanguage" attribute.
  240. */
  241. public Language getPreferredLanguage() {
  242. return preferredLanguage;
  243. }
  244. /**
  245. * Returns the value of the "reports" attribute.
  246. *
  247. * @return The value of the "reports" attribute.
  248. */
  249. public List<Report> getReports() {
  250. return reports;
  251. }
  252. /**
  253. * Returns the value of the "roles" attribute.
  254. *
  255. * @return The value of the "roles" attribute.
  256. */
  257. public List<Role> getRoles() {
  258. return roles;
  259. }
  260. /**
  261. * Returns the value of the "scientificallyDirectedCoOps" attribute.
  262. *
  263. * @return The value of the "scientificallyDirectedCoOps" attribute.
  264. */
  265. public List<CoOp> getScientificallyDirectedCoOps() {
  266. return scientificallyDirectedCoOps;
  267. }
  268. /**
  269. * Returns the value of the "supervisedCoOps" attribute.
  270. *
  271. * @return The value of the "supervisedCoOps" attribute.
  272. */
  273. public List<CoOp> getSupervisedCoOps() {
  274. return supervisedCoOps;
  275. }
  276. /**
  277. * Returns the value of the "supervisedGroups" attribute.
  278. *
  279. * @return The value of the "supervisedGroups" attribute.
  280. */
  281. public List<Group> getSupervisedGroups() {
  282. return supervisedGroups;
  283. }
  284. /**
  285. * Returns the value of the "supervisedJobPostings" attribute.
  286. *
  287. * @return The value of the "supervisedJobPostings" attribute.
  288. */
  289. public List<JobPosting> getSupervisedJobPostings() {
  290. return supervisedJobPostings;
  291. }
  292. /**
  293. * Returns the value of the "supervisedJobs" attribute.
  294. *
  295. * @return The value of the "supervisedJobs" attribute.
  296. */
  297. public List<Job> getSupervisedJobs() {
  298. return supervisedJobs;
  299. }
  300. /**
  301. * Returns the value of the "telephones" attribute.
  302. *
  303. * @return The value of the "telephones" attribute.
  304. */
  305. public List<Telephone> getTelephones() {
  306. return telephones;
  307. }
  308. /**
  309. * Sets the value of the "dateOfBirth" attribute.
  310. *
  311. * @param dateOfBirth
  312. * The value of the "dateOfBirth" attribute.
  313. */
  314. public void setDateOfBirth(Date dateOfBirth) {
  315. this.dateOfBirth = dateOfBirth;
  316. }
  317. /**
  318. * Sets the value of the "email" attribute.
  319. *
  320. * @param email
  321. * The value of the "email" attribute.
  322. */
  323. public void setEmail(String email) {
  324. this.email = email;
  325. }
  326. /**
  327. * Sets the value of the "fatherName" attribute.
  328. *
  329. * @param fatherName
  330. * The value of the "fatherName" attribute.
  331. */
  332. public void setFatherName(String fatherName) {
  333. this.fatherName = fatherName;
  334. }
  335. /**
  336. * Sets the value of the "gender" attribute.
  337. *
  338. * @param gender
  339. * The value of the "gender" attribute.
  340. */
  341. public void setGender(String gender) {
  342. this.gender = gender;
  343. }
  344. /**
  345. * Sets the value of the "id" attribute.
  346. *
  347. * @param id
  348. * The value of the "id" attribute.
  349. */
  350. public void setId(int id) {
  351. this.id = id;
  352. }
  353. /**
  354. * Sets the value of the "motherName" attribute.
  355. *
  356. * @param motherName
  357. * The value of the "motherName" attribute.
  358. */
  359. public void setMotherName(String motherName) {
  360. this.motherName = motherName;
  361. }
  362. /**
  363. * Sets the value of the "name" attribute.
  364. *
  365. * @param name
  366. * The value of the "name" attribute.
  367. */
  368. public void setName(String name) {
  369. this.name = name;
  370. }
  371. /**
  372. * Sets the value of the "notes" attribute.
  373. *
  374. * @param notes
  375. * The value of the "notes" attribute.
  376. */
  377. public void setNotes(String notes) {
  378. this.notes = notes;
  379. }
  380. /**
  381. * Sets the value of the "rank" attribute.
  382. *
  383. * @param rank
  384. * The value of the "rank" attribute.
  385. */
  386. public void setRank(String rank) {
  387. this.rank = rank;
  388. }
  389. /**
  390. * Sets the value of the "surname" attribute.
  391. *
  392. * @param surname
  393. * The value of the "surname" attribute.
  394. */
  395. public void setSurname(String surname) {
  396. this.surname = surname;
  397. }
  398. /**
  399. * Sets the value of the "userName" attribute.
  400. *
  401. * @param userName
  402. * The value of the "userName" attribute.
  403. */
  404. public void setUserName(String userName) {
  405. this.userName = userName;
  406. }
  407. /**
  408. * Sets the value of the "tracking" attribute.
  409. *
  410. * @param tracking
  411. * The value of the "tracking" attribute.
  412. */
  413. public void setTracking(Tracking tracking) {
  414. this.tracking = tracking;
  415. }
  416. /**
  417. * Sets the value of the "academicallyDirectedCoOps" attribute.
  418. *
  419. * @param academicallyDirectedCoOps
  420. * " The value of the "academicallyDirectedCoOps" attribute.
  421. */
  422. public void setAcademicallyDirectedCoOps(
  423. List<CoOp> academicallyDirectedCoOps) {
  424. this.academicallyDirectedCoOps = academicallyDirectedCoOps;
  425. }
  426. /**
  427. * Sets the value of the "addresses" attribute.
  428. *
  429. * @param addresses
  430. * " The value of the "addresses" attribute.
  431. */
  432. public void setAddresses(List<Address> addresses) {
  433. this.addresses = addresses;
  434. }
  435. /**
  436. * Sets the value of the "defaultCoOp" attribute.
  437. *
  438. * @param defaultCoOp
  439. * " The value of the "defaultCoOp" attribute.
  440. */
  441. public void setDefaultCoOp(CoOp defaultCoOp) {
  442. this.defaultCoOp = defaultCoOp;
  443. }
  444. /**
  445. * Sets the value of the "department" attribute.
  446. *
  447. * @param department
  448. * " The value of the "department" attribute.
  449. */
  450. public void setDepartment(Department department) {
  451. this.department = department;
  452. }
  453. /**
  454. * Sets the value of the "division" attribute.
  455. *
  456. * @param division
  457. * " The value of the "division" attribute.
  458. */
  459. public void setDivision(Division division) {
  460. this.division = division;
  461. }
  462. /**
  463. * Sets the value of the "institutionallyDirectedCoOps" attribute.
  464. *
  465. * @param institutionallyDirectedCoOps
  466. * " The value of the "institutionallyDirectedCoOps" attribute.
  467. */
  468. public void setInstitutionallyDirectedCoOps(
  469. List<CoOp> institutionallyDirectedCoOps) {
  470. this.institutionallyDirectedCoOps = institutionallyDirectedCoOps;
  471. }
  472. /**
  473. * Sets the value of the "preferredLanguage" attribute.
  474. *
  475. * @param preferredLanguage
  476. * " The value of the "preferredLanguage" attribute.
  477. */
  478. public void setPreferredLanguage(Language preferredLanguage) {
  479. this.preferredLanguage = preferredLanguage;
  480. }
  481. /**
  482. * Sets the value of the "reports" attribute.
  483. *
  484. * @param reports
  485. * " The value of the "reports" attribute.
  486. */
  487. public void setReports(List<Report> reports) {
  488. this.reports = reports;
  489. }
  490. /**
  491. * Sets the value of the "roles" attribute.
  492. *
  493. * @param roles
  494. * " The value of the "roles" attribute.
  495. */
  496. public void setRoles(List<Role> roles) {
  497. this.roles = roles;
  498. }
  499. /**
  500. * Sets the value of the "scientificallyDirectedCoOps" attribute.
  501. *
  502. * @param scientificallyDirectedCoOps
  503. * " The value of the "scientificallyDirectedCoOps" attribute.
  504. */
  505. public void setScientificallyDirectedCoOps(
  506. List<CoOp> scientificallyDirectedCoOps) {
  507. this.scientificallyDirectedCoOps = scientificallyDirectedCoOps;
  508. }
  509. /**
  510. * Sets the value of the "supervisedCoOps" attribute.
  511. *
  512. * @param supervisedCoOps
  513. * " The value of the "supervisedCoOps" attribute.
  514. */
  515. public void setSupervisedCoOps(List<CoOp> supervisedCoOps) {
  516. this.supervisedCoOps = supervisedCoOps;
  517. }
  518. /**
  519. * Sets the value of the "supervisedGroups" attribute.
  520. *
  521. * @param supervisedGroups
  522. * " The value of the "supervisedGroups" attribute.
  523. */
  524. public void setSupervisedGroups(List<Group> supervisedGroups) {
  525. this.supervisedGroups = supervisedGroups;
  526. }
  527. /**
  528. * Sets the value of the "supervisedJobPostings" attribute.
  529. *
  530. * @param supervisedJobPostings
  531. * " The value of the "supervisedJobPostings" attribute.
  532. */
  533. public void setSupervisedJobPostings(List<JobPosting> supervisedJobPostings) {
  534. this.supervisedJobPostings = supervisedJobPostings;
  535. }
  536. /**
  537. * Sets the value of the "supervisedJobs" attribute.
  538. *
  539. * @param supervisedJobs
  540. * " The value of the "supervisedJobs" attribute.
  541. */
  542. public void setSupervisedJobs(List<Job> supervisedJobs) {
  543. this.supervisedJobs = supervisedJobs;
  544. }
  545. /**
  546. * Sets the value of the "telephones" attribute.
  547. *
  548. * @param telephones
  549. * " The value of the "telephones" attribute.
  550. */
  551. public void setTelephones(List<Telephone> telephones) {
  552. this.telephones = telephones;
  553. }
  554. }