Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1. import java.util.Date;
  2.  
  3. import javax.xml.bind.annotation.XmlAccessType;
  4. import javax.xml.bind.annotation.XmlAccessorType;
  5. import javax.xml.bind.annotation.XmlRootElement;
  6.  
  7. @XmlAccessorType(XmlAccessType.FIELD)
  8. @XmlRootElement(name="TimeSchedule")
  9. public class TimeSchedule
  10. {
  11. private String communication;
  12. private Long coproductionNumber;
  13. private String commPackageName;
  14. private String buyer;
  15. private Date kdfcDate;
  16. private Date finalDFC;
  17. private Date pdfASM;
  18. private Date pdfMP;
  19. private Date pdfAEL;
  20. private String pdfExceptions;
  21. private Date adressLiveTapesSFC;
  22. private String lettershop;
  23. private Date dnp_1;
  24. private Date dnp_2;
  25.  
  26. public Date creationDate;
  27. public String creationUserName;
  28.  
  29. public String getCommunication()
  30. {
  31. return communication;
  32. }
  33. public void setCommunication( String communication )
  34. {
  35. this.communication = communication;
  36. }
  37. public Long getCoproductionNumber()
  38. {
  39. return coproductionNumber;
  40. }
  41. public void setCoproductionNumber( Long coproductionNumber )
  42. {
  43. this.coproductionNumber = coproductionNumber;
  44. }
  45. public String getCommPackageName()
  46. {
  47. return commPackageName;
  48. }
  49. public void setCommPackageName( String commPackageName )
  50. {
  51. this.commPackageName = commPackageName;
  52. }
  53. public String getBuyer()
  54. {
  55. return buyer;
  56. }
  57. public void setBuyer( String buyer )
  58. {
  59. this.buyer = buyer;
  60. }
  61. public Date getKdfcDate()
  62. {
  63. return kdfcDate;
  64. }
  65. public void setKdfcDate( Date kdfcDate )
  66. {
  67. this.kdfcDate = kdfcDate;
  68. }
  69. public Date getFinalDFC()
  70. {
  71. return finalDFC;
  72. }
  73. public void setFinalDFC( Date finalDFC )
  74. {
  75. this.finalDFC = finalDFC;
  76. }
  77. public Date getPdfASM()
  78. {
  79. return pdfASM;
  80. }
  81. public void setPdfASM( Date pdfASM )
  82. {
  83. this.pdfASM = pdfASM;
  84. }
  85. public Date getPdfMP()
  86. {
  87. return pdfMP;
  88. }
  89. public void setPdfMP( Date pdfMP )
  90. {
  91. this.pdfMP = pdfMP;
  92. }
  93. public Date getPdfAEL()
  94. {
  95. return pdfAEL;
  96. }
  97. public void setPdfAEL( Date pdfAEL )
  98. {
  99. this.pdfAEL = pdfAEL;
  100. }
  101. public String getPdfExceptions()
  102. {
  103. return pdfExceptions;
  104. }
  105. public void setPdfExceptions( String pdfExceptions )
  106. {
  107. this.pdfExceptions = pdfExceptions;
  108. }
  109. public Date getAdressLiveTapesSFC()
  110. {
  111. return adressLiveTapesSFC;
  112. }
  113. public void setAdressLiveTapesSFC( Date adressLiveTapesSFC )
  114. {
  115. this.adressLiveTapesSFC = adressLiveTapesSFC;
  116. }
  117. public String getLettershop()
  118. {
  119. return lettershop;
  120. }
  121. public void setLettershop( String lettershop )
  122. {
  123. this.lettershop = lettershop;
  124. }
  125.  
  126. public Date getDnp_1()
  127. {
  128. return dnp_1;
  129. }
  130. public void setDnp_1( Date dnp_1 )
  131. {
  132. this.dnp_1 = dnp_1;
  133. }
  134. public Date getDnp_2()
  135. {
  136. return dnp_2;
  137. }
  138. public void setDnp_2( Date dnp_2 )
  139. {
  140. this.dnp_2 = dnp_2;
  141. }
  142.  
  143.  
  144.  
  145. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement