43 lines
1.5 KiB
Ruby
43 lines
1.5 KiB
Ruby
|
class Sequencer
|
||
|
class Sequence
|
||
|
module Import
|
||
|
module Ldap
|
||
|
class User < Sequencer::Sequence::Base
|
||
|
|
||
|
def self.expecting
|
||
|
[:instance]
|
||
|
end
|
||
|
|
||
|
def self.sequence
|
||
|
[
|
||
|
'Import::Ldap::User::NormalizeEntry',
|
||
|
'Import::Ldap::User::RemoteId',
|
||
|
'Import::Ldap::User::Mapping',
|
||
|
'Import::Ldap::User::Skip::MissingMandatory',
|
||
|
'Import::Ldap::User::Skip::Blank',
|
||
|
'Import::Common::Model::Lookup::ExternalSync',
|
||
|
'Import::Common::User::Attributes::Downcase',
|
||
|
'Import::Common::User::Email::CheckValidity',
|
||
|
'Import::Ldap::User::Lookup::Attributes',
|
||
|
'Import::Ldap::User::Attributes::RoleIds::Dn',
|
||
|
'Import::Ldap::User::Attributes::RoleIds::Unassigned',
|
||
|
'Import::Common::Model::Associations::Extract',
|
||
|
'Import::Ldap::User::Attributes::Static',
|
||
|
'Import::Common::Model::Attributes::AddByIds',
|
||
|
'Import::Common::Model::Update',
|
||
|
'Import::Common::Model::Create',
|
||
|
'Import::Common::Model::Associations::Assign',
|
||
|
'Import::Ldap::User::Model::Save',
|
||
|
'Import::Common::Model::ExternalSync::Integrity',
|
||
|
'Import::Ldap::User::HttpLog',
|
||
|
'Import::Ldap::User::Statistics::Diff',
|
||
|
'Import::Common::ImportJob::Statistics::Update',
|
||
|
'Import::Common::ImportJob::Statistics::Store',
|
||
|
]
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|