Advertisement
Guest User

Untitled

a guest
Nov 15th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <bean id="curriculum1" class="domain.Curriculum">
  2. <property name="ticker" value="123456AB" />
  3. <property name="personalRecord">
  4. <list>
  5. <ref bean="personalRecord1" />
  6.  
  7. </list>
  8. </property>
  9. <property name="educationRecord">
  10. <list>
  11. <ref bean="educationRecord1" />
  12.  
  13. </list>
  14. </property>
  15. <property name="profesionalRecord">
  16. <list>
  17. <ref bean="profesionalRecord1" />
  18.  
  19. </list>
  20. </property>
  21. <property name="endorserRecord">
  22. <list>
  23. <ref bean="endorserRecord1" />
  24.  
  25. </list>
  26. </property>
  27. <property name="miscellaneousRecord">
  28. <list>
  29. <ref bean="miscellaneousRecord1" />
  30.  
  31. </list>
  32. </property>
  33. </bean>
  34.  
  35. <bean id="curriculum2" class="domain.Curriculum">
  36. <property name="ticker" value="123456AC" />
  37. <property name="personalRecord">
  38. <list>
  39. <ref bean="personalRecord2" />
  40.  
  41. </list>
  42. </property>
  43. <property name="educationRecord">
  44. <list>
  45. <ref bean="educationRecord2" />
  46.  
  47. </list>
  48. </property>
  49. <property name="profesionalRecord">
  50. <list>
  51. <ref bean="profesionalRecord2" />
  52.  
  53. </list>
  54. </property>
  55. <property name="endorserRecord">
  56. <list>
  57. <ref bean="endorserRecord2" />
  58.  
  59. </list>
  60. </property>
  61. <property name="miscellaneousRecord">
  62. <list>
  63. <ref bean="miscellaneousRecord2" />
  64.  
  65. </list>
  66. </property>
  67. </bean>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement