[java-opensaml COMMIT] /trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractMetad...
noreply at shibboleth.net
noreply at shibboleth.net
Thu Oct 23 19:02:03 EDT 2014
Author: putmanb
Date: Thu Oct 23 19:02:02 2014
New Revision: 4107
URL: http://svn.shibboleth.net/view/java-opensaml?rev=4107&view=rev
Log:
Adjust some log text.
Modified:
trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractMetadataResolver.java
Modified: trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractMetadataResolver.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractMetadataResolver.java?rev=4107&r1=4106&r2=4107&view=diff
==============================================================================
--- trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractMetadataResolver.java (original)
+++ trunk/opensaml-saml-impl/src/main/java/org/opensaml/saml/metadata/resolver/impl/AbstractMetadataResolver.java Thu Oct 23 19:02:02 2014
@@ -321,7 +321,7 @@
@Nonnull @NonnullElements protected List<EntityDescriptor> lookupEntityID(@Nonnull @NotEmpty final String entityID)
throws ResolverException {
if (!isInitialized()) {
- throw new ResolverException("Metadata provider has not been initialized");
+ throw new ResolverException("Metadata resolver has not been initialized");
}
if (Strings.isNullOrEmpty(entityID)) {
@@ -331,7 +331,7 @@
List<EntityDescriptor> descriptors = lookupIndexedEntityID(entityID);
if (descriptors.isEmpty()) {
- log.debug("Metadata document does not contain any EntityDescriptors with the ID {}", entityID);
+ log.debug("Metadata backing store does not contain any EntityDescriptors with the ID: {}", entityID);
return descriptors;
}
@@ -339,8 +339,8 @@
while (entitiesIter.hasNext()) {
EntityDescriptor descriptor = entitiesIter.next();
if (!isValid(descriptor)) {
- log.debug("Metadata document contained an EntityDescriptor with the ID {}, but it was no longer valid",
- entityID);
+ log.debug("Metadata backing store contained an EntityDescriptor with the ID: {}, "
+ + " but it was no longer valid", entityID);
entitiesIter.remove();
}
}
More information about the commits
mailing list