-
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.
Removed Batch resolver delegate. Added Refilterable interface. Implemented interface where appropriate. Added initialization for metadataFilterChain. Saving filters is much speedier now for these resolver types.
- Loading branch information
Bill Smith
committed
Sep 11, 2018
1 parent
c37f890
commit 1350872
Showing
5 changed files
with
39 additions
and
39 deletions.
There are no files selected for viewing
19 changes: 0 additions & 19 deletions
19
.../shibboleth/admin/ui/domain/resolvers/opensaml/OpenSamlBatchMetadataResolverDelegate.java
This file was deleted.
Oops, something went wrong.
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
16 changes: 16 additions & 0 deletions
16
...n/java/edu/internet2/tier/shibboleth/admin/ui/domain/resolvers/opensaml/Refilterable.java
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,16 @@ | ||
package edu.internet2.tier.shibboleth.admin.ui.domain.resolvers.opensaml; | ||
|
||
/** | ||
* Indicates that the resolver implementing this interface is a resolver that allows for its metadata to be | ||
* filtered multiple times. | ||
* | ||
* @author Bill Smith (wsmith@unicon.net) | ||
*/ | ||
public interface Refilterable { | ||
|
||
/** | ||
* Reapply this resolver's filters to its cached, unfiltered metadata, and set the result back to its cached, | ||
* filtered metadata. | ||
*/ | ||
void refilter(); | ||
} |