[java-metadata-aggregator COMMIT] in /trunk/aggregator-pipeline/src: main/java/net/shibboleth/metadata/SimpleItemColl...
noreply at shibboleth.net
noreply at shibboleth.net
Mon Mar 19 14:01:01 GMT 2012
Author: lajoie
Date: Mon Mar 19 14:01:01 2012
New Revision: 187
URL: http://svn.shibboleth.net/view/java-metadata-aggregator?rev=187&view=rev
Log:
javadoc warning fixes
Modified:
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/SimpleItemCollectionFactory.java
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/AbstractItemMetadataSelectionStage.java
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/PipelineDemultiplexerStage.java
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/PipelineMergeStage.java
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/SplitMergeStage.java
trunk/aggregator-pipeline/src/test/java/net/shibboleth/metadata/dom/MultiOutputXSLTtransformationStageTest.java
trunk/aggregator-pipeline/src/test/java/net/shibboleth/metadata/dom/XSLTtransformationStageTest.java
trunk/aggregator-pipeline/src/test/java/net/shibboleth/metadata/dom/XSLValidationStageTest.java
trunk/aggregator-pipeline/src/test/java/net/shibboleth/metadata/dom/saml/EntitiesDescriptorAssemblerStageTest.java
Modified: trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/SimpleItemCollectionFactory.java
URL: http://svn.shibboleth.net/view/java-metadata-aggregator/trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/SimpleItemCollectionFactory.java?rev=187&r1=186&r2=187&view=diff
==============================================================================
--- trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/SimpleItemCollectionFactory.java (original)
+++ trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/SimpleItemCollectionFactory.java Mon Mar 19 14:01:01 2012
@@ -25,7 +25,7 @@
import com.google.common.base.Supplier;
/**
- * Implementation {@link net.shibboleth.metadata.ItemCollectionFactory} that produces {@link ArrayList} instances.
+ * Implementation {@link Supplier} that produces {@link ArrayList} instances.
*
* @param <ItemType> the type of items the produced collection will contain
*/
Modified: trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/AbstractItemMetadataSelectionStage.java
URL: http://svn.shibboleth.net/view/java-metadata-aggregator/trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/AbstractItemMetadataSelectionStage.java?rev=187&r1=186&r2=187&view=diff
==============================================================================
--- trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/AbstractItemMetadataSelectionStage.java (original)
+++ trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/AbstractItemMetadataSelectionStage.java Mon Mar 19 14:01:01 2012
@@ -49,17 +49,17 @@
@ThreadSafe
public abstract class AbstractItemMetadataSelectionStage extends BaseStage<Item<?>> {
- /** {@link ItemMetadata} classes that, if the an {@Item} contains, will cause the {@link Item} to be selected. */
+ /** {@link ItemMetadata} classes that, if the an item contains, will cause the {@link Item} to be selected. */
private Collection<Class<ItemMetadata>> selectionRequirements = Collections.emptyList();
- /** Strategy used to generate {@link Item} identifiers for logging purposes. */
+ /** Strategy used to generate item identifiers for logging purposes. */
private ItemIdentificationStrategy identifierStrategy = new FirstItemIdItemIdentificationStrategy();
/**
- * Gets the {@link ItemMetadata} classes that, if the an {@Item} contains, will cause the {@link Item} to be
+ * Gets the {@link ItemMetadata} classes that, if the an item contains, will cause the {@link Item} to be
* selected.
*
- * @return {@link ItemMetadata} classes that, if the an {@Item} contains, will cause the {@link Item} to be
+ * @return {@link ItemMetadata} classes that, if the an item contains, will cause the {@link Item} to be
* selected, never null nor containing null elements
*/
@Nonnull @NonnullElements @Unmodifiable public Collection<Class<ItemMetadata>> getSelectionRequirements() {
@@ -67,10 +67,10 @@
}
/**
- * Sets the {@link ItemMetadata} classes that, if the an {@Item} contains, will cause the {@link Item} to be
+ * Sets the {@link ItemMetadata} classes that, if the an item contains, will cause the {@link Item} to be
* selected.
*
- * @param requirements {@link ItemMetadata} classes that, if the an {@Item} contains, will cause the
+ * @param requirements {@link ItemMetadata} classes that, if the an item contains, will cause the
* {@link Item} to be selected, may be null or contain null elements
*/
public synchronized void setSelectionRequirements(
Modified: trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/PipelineDemultiplexerStage.java
[... 572 lines stripped ...]
More information about the commits
mailing list