Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. <pnr>
  2. <outbound>
  3. <travellers>
  4. <person>
  5. <name></name>
  6. <address></address>
  7. </person>
  8. <person>
  9. <name></name>
  10. <address></address>
  11. </person>
  12. </travellers>
  13. <segments>
  14. <segment>
  15. <from></from>
  16. <to></to>
  17. <date></date>
  18. <flight-details>
  19. <flight-id></flight-id>
  20. </flight-details>
  21. </segment>
  22.  
  23. <segment>
  24. <from></from>
  25. <to></to>
  26. <date></date>
  27. <flight-details>
  28. <flight-id></flight-id>
  29. </flight-details>
  30. </segment>
  31. </segments>
  32. </outbound>
  33.  
  34. <inbound>
  35. ...
  36. </inbound>
  37. </pnr>
  38.  
  39. class Pnr{
  40. Outbound outbound;
  41. Inbound inbound;
  42. }
  43.  
  44. //Outbound
  45. class Outbound{
  46. ...
  47. }
  48.  
  49. //Inbound
  50. class Inbound{
  51. ...
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement