folder_contacts.rb 650 B

12345678910111213141516171819202122
  1. class Sequencer
  2. class Sequence
  3. module Import
  4. module Exchange
  5. class FolderContacts < Sequencer::Sequence::Base
  6. def self.sequence
  7. [
  8. 'Import::Exchange::FolderContacts::DryRunPayload',
  9. 'Exchange::Connection',
  10. 'Import::Exchange::FolderContacts::FolderIds',
  11. 'Import::Exchange::FolderContacts::Total',
  12. 'Import::Common::ImportJob::Statistics::Update',
  13. 'Import::Common::ImportJob::Statistics::Store',
  14. 'Import::Exchange::FolderContacts::SubSequence',
  15. ]
  16. end
  17. end
  18. end
  19. end
  20. end
  21. end