<html><body><div style="font-family: times new roman, new york, times, serif; font-size: 12pt; color: #000000"><div>Hi Jason,<br></div><div><br></div><div>this feature was implemented exactly for such reasons - I have a customer with more than 20 intents in AD/Exchange; having more than 20 resources would be quite un-managable.<br></div><div><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;" data-mce-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>Saturday, February 11, 2017 8:15:24 PM<br><b>Subject: </b>Re: [midPoint] Multiple IDs (correlation) on resource<br><div><br></div><div dir="ltr">Ok thanks, that is helpful so i know it can be done now. I didnt want to have to create 2 objects for the same resource,<div><br></div><div>JASON</div><div class="gmail_extra"><div><div class="gmail_signature"><div dir="ltr"><br></div></div></div><br><div class="gmail_quote">On Fri, Feb 10, 2017 at 1:48 PM, Ivan Noris <span dir="ltr"><<a href="mailto:Ivan.Noris@evolveum.com" target="_blank" data-mce-href="mailto:Ivan.Noris@evolveum.com">Ivan.Noris@evolveum.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex" data-mce-style="margin: 0 0 0 .8ex; border-left: 1px #ccc solid; padding-left: 1ex;"><div><div style="font-family:times new roman,new york,times,serif;font-size:12pt;color:#000000" data-mce-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 <a href="http://wiki.evolveum.com/display/midPoint/Synchronization+Situations" target="_blank" data-mce-href="http://wiki.evolveum.com/display/midPoint/Synchronization+Situations">http://wiki.evolveum.com/display/midPoint/Synchronization+Situations</a><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><a href="http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink" target="_blank" data-mce-href="http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink">http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink</a></handlerUri><br>                        </action><br>                </reaction><br>                <reaction><br>                    <situation>unlinked</situation><br>                    <synchronize>true</synchronize><br>                        <action><br>                            <handlerUri><a href="http://midpoint.evolveum.com/xml/ns/public/model/action-3#link" target="_blank" data-mce-href="http://midpoint.evolveum.com/xml/ns/public/model/action-3#link">http://midpoint.evolveum.com/xml/ns/public/model/action-3#link</a></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><a href="http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink" target="_blank" data-mce-href="http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink">http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink</a></handlerUri><br>                        </action><br>                </reaction><br>                <reaction><br>                    <situation>unlinked</situation><br>                    <synchronize>true</synchronize><br>                        <action><br>                            <handlerUri><a href="http://midpoint.evolveum.com/xml/ns/public/model/action-3#link" target="_blank" data-mce-href="http://midpoint.evolveum.com/xml/ns/public/model/action-3#link">http://midpoint.evolveum.com/xml/ns/public/model/action-3#link</a></handlerUri><br>                        </action><br>                </reaction><br>                <reaction><br>                    <situation>unmatched</situation><br>                </reaction><br>            </objectSynchronization><br>        </synchronization><br>    </c:resource><br><div><br></div></c:objects><br><div><br></div></div><div>Best regards,<br></div><div>Ivan<br></div><div><br></div><hr id="m_4270347085725821575zwchr"><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" data-mce-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" <<a href="mailto:jeverling@bshp.edu" target="_blank" data-mce-href="mailto:jeverling@bshp.edu">jeverling@bshp.edu</a>><br><b>To: </b>"midPoint General Discussion" <<a href="mailto:midpoint@lists.evolveum.com" target="_blank" data-mce-href="mailto:midpoint@lists.evolveum.com">midpoint@lists.evolveum.com</a>><br><b>Sent: </b>Friday, February 10, 2017 3:40:02 PM<br><b>Subject: </b>Re: [midPoint] Multiple IDs (correlation) on resource<div><div class="h5"><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" data-mce-style="font-size: 12.8px;">faculty/staff/contractors/etc.</span><span style="font-size:12.8px" data-mce-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="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><attribute></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><c:ref>icfs:name</c:ref></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><displayName>Name</displayName></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><limitations></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><minOccurs>0</minOccurs></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><access></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><read>true</read></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span></access></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span></limitations></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><inbound></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><target></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><c:path>$user/name</c:path></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span></target></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span></inbound></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span></attribute></div><div><div><br></div><div><br></div><div>and <span style="font-size:12.8px" data-mce-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="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><attribute></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><c:ref>icfs:name</c:ref></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><displayName>Name</displayName></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><limitations></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><minOccurs>0</minOccurs></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><access></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><read>true</read></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span></access></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span></limitations></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><inbound></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><target></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span><c:path>$c:user/c:extension/bshp:campusID</c:path></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span></target></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span></inbound></div><div><span class="m_4270347085725821575gmail-Apple-tab-span" style="white-space:pre-wrap" data-mce-style="white-space: pre-wrap;"> </span></attribute></div></div><div><br></div></div></div><div><br></div></div><div class="gmail_extra"><br clear="all"><div><div class="m_4270347085725821575gmail_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" data-mce-href="mailto:davy.priem@vives.be">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" data-mce-style="margin: 0 0 0 .8ex; border-left: 1px #ccc solid; padding-left: 1ex;"><div lang="NL-BE"><div class="m_4270347085725821575m_7884580304484539760WordSection1"><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d" data-mce-style="font-size: 11.0pt; font-family: 'Calibri',sans-serif; color: #1f497d;">Hi Jason,<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d" data-mce-style="font-size: 11.0pt; font-family: 'Calibri',sans-serif; color: #1f497d;"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d" data-mce-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 style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d" data-mce-style="font-size: 11.0pt; font-family: 'Calibri',sans-serif; color: #1f497d;"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d" data-mce-style="font-size: 11.0pt; font-family: 'Calibri',sans-serif; color: #1f497d;">Best regards,<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d" data-mce-style="font-size: 11.0pt; font-family: 'Calibri',sans-serif; color: #1f497d;">Davy Priem<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></span></p><p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1f497d" data-mce-style="font-size: 11.0pt; font-family: 'Calibri',sans-serif; color: #1f497d;"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></span></p><p class="MsoNormal"><b><span style="font-size:11.0pt;font-family:"Calibri",sans-serif" data-mce-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" data-mce-style="font-size: 11.0pt; font-family: 'Calibri',sans-serif;" lang="NL"> midPoint [mailto:<a href="mailto:midpoint-bounces@lists.evolveum.com" target="_blank" data-mce-href="mailto:midpoint-bounces@lists.evolveum.com">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" data-mce-href="mailto:midpoint@lists.evolveum.com">midpoint@lists.evolveum.com</a>><br> <b>Onderwerp:</b> [midPoint] Multiple IDs (correlation) on resource<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></span></p><div><div class="m_4270347085725821575h5"><p class="MsoNormal"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-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 style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p><div><p class="MsoNormal"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-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 style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-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 style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><div><p class="MsoNormal"><objectType><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><displayName>Student Account</displayName><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><intent>studentAccount</intent><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><default>true</default><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div></div><div><p class="MsoNormal">....<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal">...<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"></objectType><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><div><div><p class="MsoNormal"><objectType><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><displayName>Staff Account</displayName><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><intent>staffAccount</intent><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><default>true</default><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div></div><div><p class="MsoNormal">....<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal">...<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"></objectType><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div></div><div><p class="MsoNormal"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><div><p class="MsoNormal"><synchronization><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><objectSynchronization><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span class="m_4270347085725821575m_7884580304484539760gmail-apple-tab-span">            </span><enabled>true</enabled><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span class="m_4270347085725821575m_7884580304484539760gmail-apple-tab-span">            </span><intent>studentAccount</intent><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span class="m_4270347085725821575m_7884580304484539760gmail-apple-tab-span">                        </span> <correlation><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span class="m_4270347085725821575m_7884580304484539760gmail-apple-tab-span">                                    </span><q:equal><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span class="m_4270347085725821575m_7884580304484539760gmail-apple-tab-span">                                               </span><q:path>c:extension/bshp:campusID</q:path><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div></div><div><p class="MsoNormal">........<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal">.......<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal">     </objectSynchronization><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><div><div><p class="MsoNormal">    <objectSynchronization><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span class="m_4270347085725821575m_7884580304484539760gmail-apple-tab-span">            </span><enabled>true</enabled><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span class="m_4270347085725821575m_7884580304484539760gmail-apple-tab-span">            </span><intent>staffAccount</intent><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span class="m_4270347085725821575m_7884580304484539760gmail-apple-tab-span">                        </span> <correlation><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span class="m_4270347085725821575m_7884580304484539760gmail-apple-tab-span">                                    </span><q:equal><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span class="m_4270347085725821575m_7884580304484539760gmail-apple-tab-span">                                               </span><q:path>c:name</q:path><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div></div><div><p class="MsoNormal">........<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal">.......<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal">     </objectSynchronization><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div></div><div><p class="MsoNormal"></synchronization><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal">Any help is always appreciated!<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal">JASON<span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span></p></div><div><p class="MsoNormal"><span style="text-decoration:underline" data-mce-style="text-decoration: underline;"></span> <span style="text-decoration:underline" data-mce-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" data-mce-href="mailto:midPoint@lists.evolveum.com">midPoint@lists.evolveum.com</a><br> <a href="http://lists.evolveum.com/mailman/listinfo/midpoint" rel="noreferrer" target="_blank" data-mce-href="http://lists.evolveum.com/mailman/listinfo/midpoint">http://lists.evolveum.com/mailman/listinfo/midpoint</a><br> <br></blockquote></div><br></div><br>_______________________________________________<br>midPoint mailing list<br><a href="mailto:midPoint@lists.evolveum.com" target="_blank" data-mce-href="mailto:midPoint@lists.evolveum.com">midPoint@lists.evolveum.com</a><br><a href="http://lists.evolveum.com/mailman/listinfo/midpoint" target="_blank" data-mce-href="http://lists.evolveum.com/mailman/listinfo/midpoint">http://lists.evolveum.com/mailman/listinfo/midpoint</a><br></div></div></blockquote><div><br><div><br></div></div><div><br></div><div>-- <br></div><div><span></span>Ivan Noris<br>Senior Identity Engineer<br><a href="http://evolveum.com" target="_blank" data-mce-href="http://evolveum.com">evolveum.com</a><span></span><br></div></div></div><br>_______________________________________________<br> midPoint mailing list<br> <a href="mailto:midPoint@lists.evolveum.com" target="_blank" data-mce-href="mailto:midPoint@lists.evolveum.com">midPoint@lists.evolveum.com</a><br> <a href="http://lists.evolveum.com/mailman/listinfo/midpoint" rel="noreferrer" target="_blank" data-mce-href="http://lists.evolveum.com/mailman/listinfo/midpoint">http://lists.evolveum.com/mailman/listinfo/midpoint</a><br> <br></blockquote></div><br></div></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>