<html><body><div style="font-family: times new roman, new york, times, serif; font-size: 12pt; color: #000000"><div>Hi Jason,<br></div><div>well, multiple intents could be used for what you need, if... :<br></div><div><br></div><div>1) you can define what the policies for login (icfs:name) would be - this is what you already have/know<br></div><div>2) you can distinguish between the intents by algorithm when synchronizing<br></div><div><br></div><div>The schema handling is quite simple, but for each objectType in schemaHandling you need a corresponding objectSynchronization in synchronization part. Each objectSynchronization should have a condition, so that midPoint will use exactly one objectSynchronization. As connector only returns "account", decision about intent is done in midPoint synchronization.<br></div><div><br></div><div>An example from our training: I have two intents (default and admin); they differ only in suffix in DN (otherwise they are completely equal). In your case the correlation expressions would differ of course. But the thing is: midPoint will apply all the conditions on any discovered account, and for any which resolves to true, will use the kind/intent from that objectSynchronization and set it in the shadow.<br></div><div><br></div><div>So if you can have the condition which will in fact just decide what kind/intent the shadow is, you can have then different correlation rules.<br></div><div><br></div><div>Is that possible in your case? Can you differentiate them?<br></div><div>(I have just finished a training today so this came to my mind...)<br></div><div><br></div><div>        <synchronization><br>            <objectSynchronization><br>                <!--<br>                    The synchronization for this resource is enabled.<br>                    It means that the synchronization will react to changes detected by<br>                    the system (live sync task, discovery or reconciliation) --><br>                    <name>Default account</name><br>                    <description>Normal accounts are NOT in ou=_Administrators container</description><br>                    <kind>account</kind><br>                    <intent>default</intent><br>                <enabled>true</enabled><br>                    <condition><br>                        <script><br>                            <code><br>import static com.evolveum.midpoint.schema.constants.SchemaConstants.*<br>tmpSuffix = '(?i).*,ou=_Administrators_,ou=ExAmPLE,dc=example,dc=com$'<br>re = ~tmpSuffix<br>!(basic.getAttributeValue(shadow, ICFS_NAME) ==~ re)<br>                            </code><br>                        </script><br>                    </condition><br>                <correlation><br>                    <q:description><br>                        Correlation expression is a search query.<br>                        Following search queury will look for users that have "employeeNumber"<br>                        equal to the "employeeNumber" attribute of the account.<br>                            The condition will ensure that "employeeNumber" is not<br>                            empty, otherwise it would match any midPoint user<br>                            with empty "employeeNumber" attribute, such as "administrator".<br>                        The correlation rule always looks for users, so it will not match<br>                        any other object type.<br>                    </q:description><br>                    <q:equal><br>                        <q:path>c:employeeNumber</q:path><br>                              <expression><br>                                <path>$account/attributes/ri:employeeNumber</path><br>                              </expression><br>                    </q:equal><br>                    <condition><br>                        <script><br>                            <code>basic.getAttributeValue(shadow, 'employeeNumber') != null</code><br>                        </script><br>                    </condition><br>                </correlation><br>    <br>                <!-- Confirmation rule may be here, but as the search above will<br>                     always return at most one match, the confirmation rule is not needed. --><br>    <br>                <!-- Following section describes reactions to a situations.<br>                     The setting here assumes that this resource is authoritative,<br>                     therefore all accounts created on the resource should be<br>                     reflected as new users in IDM.<br>                     See http://wiki.evolveum.com/display/midPoint/Synchronization+Situations<br>                 --><br>                <reaction><br>                    <situation>linked</situation><br>                        <synchronize>true</synchronize><br>                </reaction><br>                <reaction><br>                    <situation>deleted</situation><br>                    <synchronize>true</synchronize><br>                        <action><br>                            <handlerUri>http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink</handlerUri><br>                        </action><br>                </reaction><br>                <reaction><br>                    <situation>unlinked</situation><br>                    <synchronize>true</synchronize><br>                        <action><br>                            <handlerUri>http://midpoint.evolveum.com/xml/ns/public/model/action-3#link</handlerUri><br>                        </action><br>                </reaction><br>                <reaction><br>                    <situation>unmatched</situation><br>                </reaction><br>        </objectSynchronization><br></div><div><br></div><div>            <objectSynchronization><br>                    <name>Admin account</name><br>                    <description>Admin accounts are in ou=_Administrators container</description><br>                    <kind>account</kind><br>                    <intent>admin</intent><br>                <enabled>true</enabled><br>                    <condition><br>                        <script><br>                            <code><br>import static com.evolveum.midpoint.schema.constants.SchemaConstants.*<br>tmpSuffix = '(?i).*,ou=_Administrators_,ou=ExAmPLE,dc=example,dc=com$'<br>re = ~tmpSuffix<br>basic.getAttributeValue(shadow, ICFS_NAME) ==~ re<br>                            </code><br>                        </script><br>                    </condition><br>                <correlation><br>                    <q:description><br>                        Correlation expression is a search query.<br>                        Following search queury will look for users that have "employeeNumber"<br>                        equal to the "employeeNumber" attribute of the account.<br>                            The condition will ensure that "employeeNumber" is not<br>                            empty, otherwise it would match any midPoint user<br>                            with empty "employeeNumber" attribute, such as "administrator".<br>                        The correlation rule always looks for users, so it will not match<br>                        any other object type.<br>                    </q:description><br>                    <q:equal><br>                        <q:path>c:employeeNumber</q:path><br>                              <expression><br>                                <path>$account/attributes/ri:employeeNumber</path><br>                              </expression><br>                    </q:equal><br>                        <condition><br>                            <script><br>                                <code>basic.getAttributeValue(shadow, 'employeeNumber') != null</code><br>                            </script><br>                        </condition><br>                </correlation><br>    <br>                <reaction><br>                    <situation>linked</situation><br>                        <synchronize>true</synchronize><br>                </reaction><br>                <reaction><br>                    <situation>deleted</situation><br>                    <synchronize>true</synchronize><br>                        <action><br>                            <handlerUri>http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink</handlerUri><br>                        </action><br>                </reaction><br>                <reaction><br>                    <situation>unlinked</situation><br>                    <synchronize>true</synchronize><br>                        <action><br>                            <handlerUri>http://midpoint.evolveum.com/xml/ns/public/model/action-3#link</handlerUri><br>                        </action><br>                </reaction><br>                <reaction><br>                    <situation>unmatched</situation><br>                </reaction><br>            </objectSynchronization><br>        </synchronization><br>    </c:resource><br><br></c:objects><br><br></div><div>Best regards,<br></div><div>Ivan<br></div><div><br></div><hr id="zwchr"><blockquote style="border-left:2px solid #1010FF;margin-left:5px;padding-left:5px;color:#000;font-weight:normal;font-style:normal;text-decoration:none;font-family:Helvetica,Arial,sans-serif;font-size:12pt;"><b>From: </b>"Jason Everling" <jeverling@bshp.edu><br><b>To: </b>"midPoint General Discussion" <midpoint@lists.evolveum.com><br><b>Sent: </b>Friday, February 10, 2017 3:40:02 PM<br><b>Subject: </b>Re: [midPoint] Multiple IDs (correlation) on resource<br><div><br></div><div dir="ltr">Well not really, though that is much needed feature. What I was referring too, the different person types use different icfs:name as the identifier, so..<div><br></div><div><br></div><div>On the same resource, <span style="font-size:12.8px">faculty/staff/contractors/etc.</span><span style="font-size:12.8px">. would have to match using 'name' , their campus id does not exist on the resource, only username.</span></div><div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                            </span><attribute></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                      </span><c:ref>icfs:name</c:ref></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                   </span><displayName>Name</displayName></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                    </span><limitations></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                            </span><minOccurs>0</minOccurs></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                           </span><access></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                                 </span><read>true</read></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                          </span></access></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                        </span></limitations></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                   </span><inbound></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                                </span><target></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                                 </span><c:path>$user/name</c:path></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                                </span></target></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                        </span></inbound></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                               </span></attribute></div><div><div><br></div><div><br></div><div>and <span style="font-size:12.8px">students/alumni/guests would need to match using their campus id and their username is not on resource, only campus id</span></div><div><br></div><div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                          </span><attribute></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                      </span><c:ref>icfs:name</c:ref></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                   </span><displayName>Name</displayName></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                    </span><limitations></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                            </span><minOccurs>0</minOccurs></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                           </span><access></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                                 </span><read>true</read></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                          </span></access></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                        </span></limitations></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                   </span><inbound></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                                </span><target></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                                 </span><c:path>$c:user/c:extension/bshp:campusID</c:path></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                         </span></target></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                                        </span></inbound></div><div><span class="gmail-Apple-tab-span" style="white-space:pre">                               </span></attribute></div></div><div><br></div></div></div><div><br></div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature"><div dir="ltr">JASON</div></div></div>
<br><div class="gmail_quote">On Fri, Feb 10, 2017 at 4:12 AM, Davy Priem <span dir="ltr"><<a href="mailto:davy.priem@vives.be" target="_blank">davy.priem@vives.be</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">





<div lang="NL-BE">
<div class="m_7884580304484539760WordSection1">
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d">Hi Jason,<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d">On the roadmap I see they will introduce ‘Personas: (identity links): Ability to link user objects representing physical person and
 his personas, e.g. employee persona, administration persona, etc.’. Isn’t this what you’re looking for?<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d">Best regards,<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d">Davy Priem<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></span></p>
<p class="MsoNormal"><b><span style="font-size:11.0pt;font-family:"Calibri",sans-serif" lang="NL">Van:</span></b><span style="font-size:11.0pt;font-family:"Calibri",sans-serif" lang="NL"> midPoint [mailto:<a href="mailto:midpoint-bounces@lists.evolveum.com" target="_blank">midpoint-bounces@lists.evolveum.com</a>]
<b>Namens </b>Jason Everling<br>
<b>Verzonden:</b> dinsdag 7 februari 2017 1:49<br>
<b>Aan:</b> midPoint General Discussion <<a href="mailto:midpoint@lists.evolveum.com" target="_blank">midpoint@lists.evolveum.com</a>><br>
<b>Onderwerp:</b> [midPoint] Multiple IDs (correlation) on resource<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></span></p><div><div class="h5">
<p class="MsoNormal"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
<div>
<p class="MsoNormal">I am working on adding a resource in which each type of person can have a different ID, (uuid) , such as faculty/staff/contractors/etc.. would match using their username (name) and students/alumni/guests would match using their campus id.<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
<div>
<p class="MsoNormal"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal">I couldn't find too much on this or samples, does anybody have anything similar?<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal">This kind of resource is new to me but reading up on the wiki I am leaning towards multiple (intents)??? Would that be down the right road? For example<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<div>
<p class="MsoNormal"><objectType><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><displayName>Student Account</displayName><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><intent>studentAccount</intent><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><default>true</default><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
</div>
<div>
<p class="MsoNormal">....<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal">...<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"></objectType><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<div>
<div>
<p class="MsoNormal"><objectType><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><displayName>Staff Account</displayName><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><intent>staffAccount</intent><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><default>true</default><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
</div>
<div>
<p class="MsoNormal">....<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal">...<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"></objectType><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
</div>
<div>
<p class="MsoNormal"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<div>
<p class="MsoNormal"><synchronization><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><objectSynchronization><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span class="m_7884580304484539760gmail-apple-tab-span">            </span><enabled>true</enabled><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span class="m_7884580304484539760gmail-apple-tab-span">            </span><intent>studentAccount</intent><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span class="m_7884580304484539760gmail-apple-tab-span">                        </span>
<correlation><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span class="m_7884580304484539760gmail-apple-tab-span">                                   
</span><q:equal><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span class="m_7884580304484539760gmail-apple-tab-span">                                              
</span><q:path>c:extension/bshp:campusID</q:path><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
</div>
<div>
<p class="MsoNormal">........<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal">.......<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal">     </objectSynchronization><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<div>
<div>
<p class="MsoNormal">    <objectSynchronization><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span class="m_7884580304484539760gmail-apple-tab-span">            </span><enabled>true</enabled><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span class="m_7884580304484539760gmail-apple-tab-span">            </span><intent>staffAccount</intent><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span class="m_7884580304484539760gmail-apple-tab-span">                        </span>
<correlation><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span class="m_7884580304484539760gmail-apple-tab-span">                                   
</span><q:equal><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span class="m_7884580304484539760gmail-apple-tab-span">                                              
</span><q:path>c:name</q:path><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
</div>
<div>
<p class="MsoNormal">........<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal">.......<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal">     </objectSynchronization><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
</div>
<div>
<p class="MsoNormal"></synchronization><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal">Any help is always appreciated!<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal">JASON<span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
<div>
<p class="MsoNormal"><span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span> <span data-mce-style="text-decoration: underline;" style="text-decoration: underline;"></span></p>
</div>
</div>
</div></div></div>
</div>

<br>_______________________________________________<br>
midPoint mailing list<br>
<a href="mailto:midPoint@lists.evolveum.com" target="_blank">midPoint@lists.evolveum.com</a><br>
<a href="http://lists.evolveum.com/mailman/listinfo/midpoint" rel="noreferrer" target="_blank">http://lists.evolveum.com/mailman/listinfo/midpoint</a><br>
<br></blockquote></div><br></div>
<br>_______________________________________________<br>midPoint mailing list<br>midPoint@lists.evolveum.com<br>http://lists.evolveum.com/mailman/listinfo/midpoint<br></blockquote><div><br><br></div><div><br></div><div>-- <br></div><div><span name="x"></span>Ivan Noris<br>Senior Identity Engineer<br>evolveum.com<span name="x"></span><br></div></div></body></html>