Skip to content

Commit

Permalink
Initial registrar handling for hr_eduhr.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Feb 11, 2013
1 parent d7ae9bc commit fa5ca03
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions mdx/hr_eduhr/beans.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,45 @@
<property name="verificationCertificate" ref="hr_eduhr_signingCertificate"/>
</bean>

<!--
hr_eduhr_registrar
Unique ID for the registrar associated with this channel.
-->
<bean id="hr_eduhr_registrar" class="java.lang.String">
<constructor-arg value="http://www.aaiedu.hr"/>
</bean>

<!--
hr_eduhr_check_regauth
Any registrationAuthority already present on an entity in this
channel must match the known registration authority value.
-->
<bean id="hr_eduhr_check_regauth" parent="check_regauth_parent"
p:id="hr_eduhr_check_regauth">
<property name="transformParameters">
<map>
<entry key="expectedAuthority" value-ref="hr_eduhr_registrar"/>
</map>
</property>
</bean>

<!--
hr_eduhr_default_regauth
Provide a default registrationAuthority appropriate to
this channel.
-->
<bean id="hr_eduhr_default_regauth" parent="default_regauth_parent"
p:id="hr_eduhr_default_regauth">
<property name="transformParameters">
<map>
<entry key="defaultAuthority" value-ref="hr_eduhr_registrar"/>
</map>
</property>
</bean>

<!--
Fetch and process the eduGAIN export entities as a collection.
-->
Expand All @@ -75,6 +114,9 @@

<ref bean="disassemble"/>

<ref bean="hr_eduhr_default_regauth"/>
<ref bean="hr_eduhr_check_regauth"/>

<ref bean="standardImportActions"/>
</list>
</property>
Expand Down

0 comments on commit fa5ca03

Please sign in to comment.