[java-metadata-aggregator COMMIT] in /trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata: dom/saml/Conta...
noreply at shibboleth.net
noreply at shibboleth.net
Wed Sep 18 10:55:45 EDT 2013
Author: iay
Date: Wed Sep 18 10:55:45 2013
New Revision: 261
URL: http://svn.shibboleth.net/view/java-metadata-aggregator?rev=261&view=rev
Log:
Checkstyle fixes.
Modified:
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/ContactPersonFilterStage.java
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/EntityPublisherPathFilterStage.java
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/EntityRegistrationAuthorityFilterStage.java
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/AbstractItemMetadataSelectionStage.java
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/SerializationStage.java
trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/util/ItemMetadataSupport.java
Modified: trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/ContactPersonFilterStage.java
URL: http://svn.shibboleth.net/view/java-metadata-aggregator/trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/ContactPersonFilterStage.java?rev=261&r1=260&r2=261&view=diff
==============================================================================
--- trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/ContactPersonFilterStage.java (original)
+++ trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/ContactPersonFilterStage.java Wed Sep 18 10:55:45 2013
@@ -216,7 +216,8 @@
if (type == null) {
log.debug(
- "The following ContactPerson does not contain the required contactType attribute, it will be removed:\n{}",
+ "The following ContactPerson does not contain the required contactType attribute, " +
+ "it will be removed:\n{}",
SerializeSupport.prettyPrintXML(contactPerson));
return false;
}
Modified: trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/EntityPublisherPathFilterStage.java
URL: http://svn.shibboleth.net/view/java-metadata-aggregator/trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/EntityPublisherPathFilterStage.java?rev=261&r1=260&r2=261&view=diff
==============================================================================
--- trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/EntityPublisherPathFilterStage.java (original)
+++ trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/EntityPublisherPathFilterStage.java Wed Sep 18 10:55:45 2013
@@ -36,7 +36,8 @@
public class EntityPublisherPathFilterStage extends BaseStage<DomElementItem> {
/** {@inheritDoc} */
- protected void doExecute(@Nonnull @NonnullElements final Collection<DomElementItem> metadataCollection) throws StageProcessingException {
+ protected void doExecute(@Nonnull @NonnullElements final Collection<DomElementItem> metadataCollection)
+ throws StageProcessingException {
// TODO Auto-generated method stub
}
Modified: trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/EntityRegistrationAuthorityFilterStage.java
URL: http://svn.shibboleth.net/view/java-metadata-aggregator/trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/EntityRegistrationAuthorityFilterStage.java?rev=261&r1=260&r2=261&view=diff
==============================================================================
--- trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/EntityRegistrationAuthorityFilterStage.java (original)
+++ trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/EntityRegistrationAuthorityFilterStage.java Wed Sep 18 10:55:45 2013
@@ -240,7 +240,8 @@
if (registrationInfoElement == null) {
if (requiringRegistrationInformation) {
log.debug(
- "{} pipeline stage removing Item because it did not have required registration information extension",
+ "{} pipeline stage removing Item because it did not have " +
+ "required registration information extension",
getId());
return true;
} else {
@@ -252,7 +253,8 @@
AttributeSupport.getAttributeValue(registrationInfoElement, null, "registrationAuthority");
if (registrationAuthority == null) {
log.debug(
- "{} pipeline stage removing Item because it contained a registration info extension but no authority attribute",
+ "{} pipeline stage removing Item because it contained a registration info extension " +
+ "but no authority attribute",
getId());
return true;
}
Modified: trunk/aggregator-pipeline/src/main/java/net/shibboleth/metadata/pipeline/AbstractItemMetadataSelectionStage.java
[... 48 lines stripped ...]
More information about the commits
mailing list