This repository has been archived by the owner. It is now read-only.
forked from InCommon/inc-meta
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Separate out definitions of UKF beans
- Loading branch information
Showing
5 changed files
with
116 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,99 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <beans xmlns="http://www.springframework.org/schema/beans" | ||
| xmlns:c="http://www.springframework.org/schema/c" | ||
| xmlns:context="http://www.springframework.org/schema/context" | ||
| xmlns:p="http://www.springframework.org/schema/p" | ||
| xmlns:util="http://www.springframework.org/schema/util" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation=" | ||
| http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd | ||
| http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd | ||
| http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> | ||
|
|
||
| <!-- | ||
| Bean definitions for simplified access to components in the | ||
| ukf-mda artifact. | ||
| All defined bean names are prefixed with "ukf.". | ||
| --> | ||
|
|
||
| <!-- | ||
| Parent for anything based on the Shibboleth component system. | ||
| These all require initialization before use. | ||
| --> | ||
| <bean id="ukf.component_parent" abstract="true" | ||
| init-method="initialize" destroy-method="destroy"/> | ||
|
|
||
| <!-- | ||
| Parent for all stages. | ||
| --> | ||
| <bean id="ukf.stage_parent" abstract="true" parent="ukf.component_parent"/> | ||
|
|
||
| <!-- | ||
| uk.org.ukfederation.mda | ||
| --> | ||
|
|
||
| <bean id="ukf.EntityDescriptorUKIdPopulationStage" abstract="true" parent="ukf.stage_parent" | ||
| class="uk.org.ukfederation.mda.EntityDescriptorUKIdPopulationStage"/> | ||
|
|
||
| <bean id="ukf.IdPDisplayNameDuplicateDetectingStage" abstract="true" parent="ukf.stage_parent" | ||
| class="uk.org.ukfederation.mda.IdPDisplayNameDuplicateDetectingStage"/> | ||
|
|
||
| <bean id="ukf.RegexFileFilter" abstract="true" | ||
| class="uk.org.ukfederation.mda.RegexFileFilter"/> | ||
|
|
||
| <bean id="ukf.UKEntityOrderingStrategy" abstract="true" | ||
| class="uk.org.ukfederation.mda.UKEntityOrderingStrategy"/> | ||
|
|
||
| <bean id="ukf.UKEntitySelectionStrategy" abstract="true" | ||
| class="uk.org.ukfederation.mda.UKEntitySelectionStrategy"/> | ||
|
|
||
| <bean id="ukf.UKItemIdentificationStrategy" abstract="true" | ||
| class="uk.org.ukfederation.mda.UKItemIdentificationStrategy"/> | ||
|
|
||
| <!-- | ||
| uk.org.ukfederation.mda.dom | ||
| --> | ||
|
|
||
| <!-- | ||
| uk.org.ukfederation.mda.dom.saml | ||
| --> | ||
|
|
||
| <bean id="ukf.EntityOwnerCheckingStage" abstract="true" parent="ukf.stage_parent" | ||
| class="uk.org.ukfederation.mda.dom.saml.EntityOwnerCheckingStage"/> | ||
|
|
||
| <bean id="ukf.SAMLStringElementCheckingStage" abstract="true" parent="ukf.stage_parent" | ||
| class="uk.org.ukfederation.mda.dom.saml.SAMLStringElementCheckingStage"/> | ||
|
|
||
| <bean id="ukf.ScopeInjectionStage" abstract="true" parent="ukf.stage_parent" | ||
| class="uk.org.ukfederation.mda.dom.saml.ScopeInjectionStage"/> | ||
|
|
||
| <!-- | ||
| uk.org.ukfederation.mda.dom.saml.mdattr | ||
| --> | ||
|
|
||
| <bean id="ukf.EntityAttributeAddingStage" abstract="true" parent="ukf.stage_parent" | ||
| class="uk.org.ukfederation.mda.dom.saml.mdattr.EntityAttributeAddingStage"/> | ||
|
|
||
| <!-- | ||
| uk.org.ukfederation.mda.statistics | ||
| --> | ||
|
|
||
| <bean id="ukf.StatisticsVelocityStage" abstract="true" parent="ukf.stage_parent" | ||
| class="uk.org.ukfederation.mda.statistics.StatisticsVelocityStage"/> | ||
|
|
||
| <!-- | ||
| uk.org.ukfederation.mda.validate | ||
| --> | ||
|
|
||
| <bean id="ukf.X509ConsistentNameValidator" abstract="true" parent="ukf.component_parent" | ||
| class="uk.org.ukfederation.mda.validate.X509ConsistentNameValidator"/> | ||
|
|
||
| <!-- | ||
| uk.org.ukfederation.mda.validate.mdui | ||
| --> | ||
|
|
||
| <bean id="ukf.IPHintValidationStage" abstract="true" parent="ukf.stage_parent" | ||
| class="uk.org.ukfederation.mda.validate.mdui.IPHintValidationStage"/> | ||
|
|
||
| </beans> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters