[java-metadata-aggregator COMMIT] in /trunk/aggregator-pipeline/src: main/java/net/shibboleth/metadata/pipeline/BaseS...

noreply at shibboleth.net noreply at shibboleth.net
Sat Feb 22 08:44:41 EST 2014


Author: rdw
Date: Sat Feb 22 08:44:41 2014
New Revision: 347

URL: http://svn.shibboleth.net/view/java-metadata-aggregator?rev=347&view=rev
Log:
JSPT-40 Renamed *IdentifiableComponent to *IdentifiedComponent

Modified:
    trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/BaseStage.java
    trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/ComponentInfo.java
    trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/CompositeStage.java
    trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/Pipeline.java
    trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/SimplePipeline.java
    trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/Stage.java
    trunk/aggregator-pipeline/src/test/java/net/shibboleth/metadata/pipeline/CountingStage.java

Modified: trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/BaseStage.java
URL: http://svn.shibboleth.net/view/java-metadata-aggregator/trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/BaseStage.java?rev=347&r1=346&r2=347&view=diff
==============================================================================
--- trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/BaseStage.java (original)
+++ trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/BaseStage.java Sat Feb 22 08:44:41 2014
@@ -27,7 +27,7 @@
 import net.shibboleth.metadata.util.ItemMetadataSupport;
 import net.shibboleth.utilities.java.support.annotation.constraint.NonnullElements;
 import net.shibboleth.utilities.java.support.annotation.constraint.NotEmpty;
-import net.shibboleth.utilities.java.support.component.AbstractDestructableIdentifiableInitializableComponent;
+import net.shibboleth.utilities.java.support.component.AbstractDestructableIdentifiedInitializableComponent;
 import net.shibboleth.utilities.java.support.component.ComponentSupport;
 
 /**
@@ -37,7 +37,7 @@
  */
 @ThreadSafe
 public abstract class BaseStage<T> extends
-        AbstractDestructableIdentifiableInitializableComponent implements Stage<T> {
+        AbstractDestructableIdentifiedInitializableComponent implements Stage<T> {
 
     /** {@inheritDoc} */
     @Override public synchronized void setId(@Nonnull @NotEmpty final String componentId) {

Modified: trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/ComponentInfo.java
URL: http://svn.shibboleth.net/view/java-metadata-aggregator/trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/ComponentInfo.java?rev=347&r1=346&r2=347&view=diff
==============================================================================
--- trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/ComponentInfo.java (original)
+++ trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/ComponentInfo.java Sat Feb 22 08:44:41 2014
@@ -21,7 +21,7 @@
 import javax.annotation.Nullable;
 
 import net.shibboleth.metadata.ItemMetadata;
-import net.shibboleth.utilities.java.support.component.IdentifiableComponent;
+import net.shibboleth.utilities.java.support.component.IdentifiedComponent;
 import net.shibboleth.utilities.java.support.logic.Constraint;
 import net.shibboleth.utilities.java.support.primitive.StringSupport;
 
@@ -56,7 +56,7 @@
      * 
      * @param component component which this info describes
      */
-    public ComponentInfo(@Nonnull final IdentifiableComponent component) {
+    public ComponentInfo(@Nonnull final IdentifiedComponent component) {
         Constraint.isNotNull(component, "Component can not be null");
         componentId = component.getId();
         componentType = component.getClass();

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=347&r1=346&r2=347&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 Sat Feb 22 08:44:41 2014
@@ -29,7 +29,7 @@
 import net.shibboleth.metadata.Item;
 import net.shibboleth.utilities.java.support.annotation.constraint.NonnullElements;
 import net.shibboleth.utilities.java.support.annotation.constraint.NullableElements;
-import net.shibboleth.utilities.java.support.component.AbstractDestructableIdentifiableInitializableComponent;
+import net.shibboleth.utilities.java.support.component.AbstractDestructableIdentifiedInitializableComponent;
 import net.shibboleth.utilities.java.support.component.ComponentInitializationException;
 import net.shibboleth.utilities.java.support.component.ComponentSupport;
 
@@ -40,7 +40,7 @@
  * @param <T> type of metadata this stage, and its composed stages, operate upon
  */
 @ThreadSafe

[... 97 lines stripped ...]


More information about the commits mailing list