[java-metadata-aggregator COMMIT] /trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/Composite...
noreply at shibboleth.net
noreply at shibboleth.net
Wed Mar 21 12:23:04 GMT 2012
Author: lajoie
Date: Wed Mar 21 12:23:04 2012
New Revision: 191
URL: http://svn.shibboleth.net/view/java-metadata-aggregator?rev=191&view=rev
Log:
Fix stage that didn't have a public setId method
Modified:
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/CompositeStage.java
Modified: trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/CompositeStage.java
URL: http://svn.shibboleth.net/view/java-metadata-aggregator/trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/CompositeStage.java?rev=191&r1=190&r2=191&view=diff
==============================================================================
--- trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/CompositeStage.java (original)
+++ trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/CompositeStage.java Wed Mar 21 12:23:04 2012
@@ -46,6 +46,11 @@
/** Stages which compose this stage. */
private List<Stage<ItemType>> composedStages = Collections.emptyList();
+ /** {@inheritDoc} */
+ public synchronized void setId(String componentId) {
+ super.setId(componentId);
+ }
+
/**
* Gets an unmodifiable list the stages that compose this stage.
*
More information about the commits
mailing list