<div dir="ltr">Thanks for the tip David! Will do.<br><div><br></div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Aug 19, 2022 at 3:14 PM IAM David Bantz <<a href="mailto:dabantz@alaska.edu">dabantz@alaska.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><div dir="ltr">If there is any possibility of eduPersonAffiliation being ‘empty’ you should probably make the loop conditional on it’s existence, e.g.,</div><div dir="ltr"><br></div><div dir="ltr"><p style="margin:0px;font-stretch:normal;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(180,36,25)"><span style="font-variant-ligatures:no-common-ligatures">if (typeof </span><span style="color:rgb(68,140,39);font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;white-space:pre-wrap;background-color:rgb(245,245,245)">eduPersonAffiliationv</span> != "undefined" && <span style="color:rgb(68,140,39);font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;white-space:pre-wrap;background-color:rgb(245,245,245)">eduPersonAffiliation</span> != null && <span style="color:rgb(68,140,39);font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;white-space:pre-wrap;background-color:rgb(245,245,245)">eduPersonAffiliation</span>().size() !=0)</p><div dir="ltr"><span style="font-variant-ligatures:no-common-ligatures">…</span></div><div dir="ltr"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div dir="ltr"><span style="font-variant-ligatures:no-common-ligatures">David St Pierre Bantz</span></div><div dir="ltr"><span style="font-variant-ligatures:no-common-ligatures">U Alaska</span></div></div>
<br>
<div class="gmail_quote">
    <div dir="ltr" class="gmail_attr">On 19Aug2022 at 09:18:49, Mohamed Lrhazi via users <<a href="mailto:users@shibboleth.net" target="_blank">users@shibboleth.net</a>> wrote:<br></div>
    <blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" type="cite">
        <div dir="ltr">Thanks a lot Keith. The scripting you suggested seems to have worked well:<div><br></div><div><div style="color:rgb(51,51,51);background-color:rgb(245,245,245);font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;line-height:18px;white-space:pre-wrap"><br><div>    <span style="color:rgb(119,119,119)"><</span><span style="color:rgb(75,105,198)">AttributeDefinition</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">id</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">isEligible</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">xsi</span><span style="color:rgb(119,119,119);font-style:italic">:</span><span style="color:rgb(129,144,160);font-style:italic">type</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">ScriptedAttribute</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(119,119,119)">></span></div><div>        <span style="color:rgb(119,119,119)"><</span><span style="color:rgb(75,105,198)">InputDataConnector</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">ref</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">sqliteConnector</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">attributeNames</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">eduPersonAffiliation</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(119,119,119)">/></span></div><div>        <span style="color:rgb(119,119,119)"><</span><span style="color:rgb(75,105,198)">Script</span><span style="color:rgb(119,119,119)">></span><span style="color:rgb(119,119,119)"><![CDATA[</span></div><div><span style="color:rgb(68,140,39)">            logger = Java.type("org.slf4j.LoggerFactory").getLogger("net.shibboleth.idp.attribute.resolver.eppnbuilder");</span></div><div><span style="color:rgb(68,140,39)">            result=0;</span></div><div><span style="color:rgb(68,140,39)">            for(i = 0; i < eduPersonAffiliation.getValues().size(); i++) {</span></div><div><span style="color:rgb(68,140,39)">                value = eduPersonAffiliation.getValues().get(i);</span></div><div><span style="color:rgb(68,140,39)">                // <a href="http://logger.info" target="_blank">logger.info</a>("isEligible: eduPersonAffiliation: " + value);</span></div><div><span style="color:rgb(68,140,39)">                if (value=='student') {</span></div><div><span style="color:rgb(68,140,39)">                    result=1</span></div><div><span style="color:rgb(68,140,39)">                }</span></div><div><span style="color:rgb(68,140,39)">            }</span></div><div><span style="color:rgb(68,140,39)">            isEligible.getValues().add(result.toString());</span></div><div><span style="color:rgb(68,140,39)">        </span><span style="color:rgb(119,119,119)">]]></span>        </div><div>        <span style="color:rgb(119,119,119)"></</span><span style="color:rgb(75,105,198)">Script</span><span style="color:rgb(119,119,119)">></span></div><div>        <span style="color:rgb(119,119,119)"><</span><span style="color:rgb(75,105,198)">AttributeEncoder</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">xsi</span><span style="color:rgb(119,119,119);font-style:italic">:</span><span style="color:rgb(129,144,160);font-style:italic">type</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">SAML1String</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">name</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">isEligible</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">encodeType</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">false</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(119,119,119)">/></span></div><div>        <span style="color:rgb(119,119,119)"><</span><span style="color:rgb(75,105,198)">AttributeEncoder</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">xsi</span><span style="color:rgb(119,119,119);font-style:italic">:</span><span style="color:rgb(129,144,160);font-style:italic">type</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">SAML2String</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">name</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">isEligible</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">friendlyName</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">isEligible</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(129,144,160);font-style:italic">encodeType</span><span style="color:rgb(145,179,224)">=</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(68,140,39)">false</span><span style="color:rgb(119,119,119)">"</span><span style="color:rgb(145,179,224)"> </span><span style="color:rgb(119,119,119)">/></span></div><div>    <span style="color:rgb(119,119,119)"></</span><span style="color:rgb(75,105,198)">AttributeDefinition</span><span style="color:rgb(119,119,119)">></span></div><br><br></div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Aug 18, 2022 at 9:58 PM Wessel, Keith <<a href="mailto:kwessel@illinois.edu" target="_blank">kwessel@illinois.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div>





<div lang="EN-US">
<div>
<p class="MsoNormal">The problem is your map is evaluating every value of eduPersonAffiliation. Any chance you could do what you’re hoping with something single-valued like eduPersonPrimaryAffiliation?<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">Shy of that, I think your best bet is a script. Set the attribute to 0 at the beginning. Then iterate over all values of eduPersonAffiliation in a for loop. If you find “student”, change that variable to 1. Should be a pretty simple script.<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal">Keith<u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<div style="border-right:none;border-bottom:none;border-left:none;border-top:1pt solid rgb(225,225,225);padding:3pt 0in 0in">
<p class="MsoNormal"><b>From:</b> users <<a href="mailto:users-bounces@shibboleth.net" target="_blank">users-bounces@shibboleth.net</a>> <b>On Behalf Of
</b>Mohamed Lrhazi via users<br>
<b>Sent:</b> Thursday, August 18, 2022 6:26 PM<br>
<b>To:</b> Shib Users <<a href="mailto:users@shibboleth.net" target="_blank">users@shibboleth.net</a>><br>
<b>Cc:</b> Mohamed Lrhazi <<a href="mailto:lrhazi@cua.edu" target="_blank">lrhazi@cua.edu</a>><br>
<b>Subject:</b> Help with MappedAttributeDefinition<u></u><u></u></p>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
<div>
<p class="MsoNormal">Hello,<u></u><u></u></p>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">I am trying to add an attribute that resolves to "1" if the user is a student, but "0" otherwise... I thought it would be as simple as below.... but this actually returns "1" and "0" if the user is both a student and also a member or any
 other affiliation....<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">How do I implement this logic?  <u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">Thanks a lot!<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">Mohamed.<u></u><u></u></p>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">   
<u></u><u></u></span></p>
</div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">    </span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"><</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">AttributeDefinition</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">id</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">isEligible</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">xsi</span></i><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">:</span></i><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">type</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">Mapped</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)"><u></u><u></u></span></p>
</div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">       
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"><</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">InputDataConnector</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">ref</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">sqliteConnector</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">attributeNames</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">eduPersonAffiliation</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"/></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)"><u></u><u></u></span></p>
</div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">       
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"><</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">DefaultValue</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">0</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"></</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">DefaultValue</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)"><u></u><u></u></span></p>
</div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">       
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"><</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">ValueMap</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)"><u></u><u></u></span></p>
</div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">           
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"><</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">ReturnValue</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">1</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"></</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">ReturnValue</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)"><u></u><u></u></span></p>
</div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">           
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"><</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">SourceValue</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">student</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"></</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">SourceValue</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)"><u></u><u></u></span></p>
</div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">      
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"></</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">ValueMap</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)"><u></u><u></u></span></p>
</div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">      
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"><</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">AttributeEncoder</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">xsi</span></i><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">:</span></i><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">type</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">SAML1String</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">name</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">isEligible</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">encodeType</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">false</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">/></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)"><u></u><u></u></span></p>
</div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">      
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"><</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">AttributeEncoder</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">xsi</span></i><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">:</span></i><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">type</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">SAML2String</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">name</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">isEligible</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">friendlyName</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">isEligible</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><i><span style="font-size:9pt;font-family:"Courier New";color:rgb(129,144,160)">encodeType</span></i><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">=</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(68,140,39)">false</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">"</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(145,179,224)">
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">/></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)"><u></u><u></u></span></p>
</div>
<div>
<p class="MsoNormal" style="line-height:13.5pt;background:whitesmoke"><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)">   
</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)"></</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(75,105,198)">AttributeDefinition</span><span style="font-size:9pt;font-family:"Courier New";color:rgb(119,119,119)">></span><span style="font-size:9pt;font-family:"Courier New";color:rgb(51,51,51)"><u></u><u></u></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

</div></blockquote></div>

<div>
<div>
    -- <br>For Consortium Member technical support, see <a href="https://shibboleth.atlassian.net/wiki/x/ZYEpPw" target="_blank">https://shibboleth.atlassian.net/wiki/x/ZYEpPw</a><br>To unsubscribe from this list send an email to <a href="mailto:users-unsubscribe@shibboleth.net" target="_blank">users-unsubscribe@shibboleth.net</a><br>
</div>
</div>
    </blockquote>
</div></div>
</blockquote></div>