[java-opensaml] branch master updated: Fix typos in log messages

Ian Young ian at iay.org.uk
Wed Mar 20 10:29:29 EDT 2019


This is an automated email from the git hooks/post-receive script.

iay pushed a commit to branch master
in repository java-opensaml.

View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=162be1b0bb5d3c2a678330e7c1f455375111e47a

The following commit(s) were added to refs/heads/master by this push:
       new  162be1b   Fix typos in log messages
162be1b is described below

commit 162be1b0bb5d3c2a678330e7c1f455375111e47a
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Wed Mar 20 14:29:23 2019 +0000

    Fix typos in log messages
---
 .../saml/saml2/metadata/impl/AffiliationDescriptorMarshaller.java | 4 ++--
 .../saml/saml2/metadata/impl/EntitiesDescriptorMarshaller.java    | 6 +++---
 .../saml/saml2/metadata/impl/EntityDescriptorMarshaller.java      | 4 ++--
 .../saml/saml2/metadata/impl/RoleDescriptorMarshaller.java        | 8 ++++----
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/AffiliationDescriptorMarshaller.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/AffiliationDescriptorMarshaller.java
index 4d012c1..931600a 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/AffiliationDescriptorMarshaller.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/AffiliationDescriptorMarshaller.java
@@ -58,7 +58,7 @@ public class AffiliationDescriptorMarshaller extends AbstractSAMLObjectMarshalle
 
         // Set the validUntil attribute
         if (descriptor.getValidUntil() != null) {
-            log.trace("Writting validUntil attribute to AffiliationDescriptor DOM element");
+            log.trace("Writing validUntil attribute to AffiliationDescriptor DOM element");
             final String validUntilStr =
                     SAMLConfigurationSupport.getSAMLDateFormatter().format(descriptor.getValidUntil());
             domElement.setAttributeNS(null, TimeBoundSAMLObject.VALID_UNTIL_ATTRIB_NAME, validUntilStr);
@@ -66,7 +66,7 @@ public class AffiliationDescriptorMarshaller extends AbstractSAMLObjectMarshalle
 
         // Set the cacheDuration attribute
         if (descriptor.getCacheDuration() != null) {
-            log.trace("Writting cacheDuration attribute to AffiliationDescriptor DOM element");
+            log.trace("Writing cacheDuration attribute to AffiliationDescriptor DOM element");
             domElement.setAttributeNS(null, CacheableSAMLObject.CACHE_DURATION_ATTRIB_NAME,
                     descriptor.getCacheDuration().toString());
         }
diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/EntitiesDescriptorMarshaller.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/EntitiesDescriptorMarshaller.java
index d4ccd54..acfdf5c 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/EntitiesDescriptorMarshaller.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/EntitiesDescriptorMarshaller.java
@@ -49,7 +49,7 @@ public class EntitiesDescriptorMarshaller extends AbstractSAMLObjectMarshaller {
 
         // Set the validUntil attribute
         if (entitiesDescriptor.getValidUntil() != null) {
-            log.trace("Writting validUntil attribute to EntitiesDescriptor DOM element");
+            log.trace("Writing validUntil attribute to EntitiesDescriptor DOM element");
             final String validUntilStr =
                     SAMLConfigurationSupport.getSAMLDateFormatter().format(entitiesDescriptor.getValidUntil());
             domElement.setAttributeNS(null, TimeBoundSAMLObject.VALID_UNTIL_ATTRIB_NAME, validUntilStr);
@@ -57,14 +57,14 @@ public class EntitiesDescriptorMarshaller extends AbstractSAMLObjectMarshaller {
 
         // Set the cacheDuration attribute
         if (entitiesDescriptor.getCacheDuration() != null) {
-            log.trace("Writting cacheDuration attribute to EntitiesDescriptor DOM element");
+            log.trace("Writing cacheDuration attribute to EntitiesDescriptor DOM element");
             domElement.setAttributeNS(null, CacheableSAMLObject.CACHE_DURATION_ATTRIB_NAME,
                     entitiesDescriptor.getCacheDuration().toString());
         }
 
         // Set the Name attribute
         if (entitiesDescriptor.getName() != null) {
-            log.trace("Writting Name attribute to EntitiesDescriptor DOM element");
+            log.trace("Writing Name attribute to EntitiesDescriptor DOM element");
             domElement.setAttributeNS(null, EntitiesDescriptor.NAME_ATTRIB_NAME, entitiesDescriptor.getName());
         }
     }
diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/EntityDescriptorMarshaller.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/EntityDescriptorMarshaller.java
index a582850..7dda570 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/EntityDescriptorMarshaller.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/EntityDescriptorMarshaller.java
@@ -52,7 +52,7 @@ public class EntityDescriptorMarshaller extends AbstractSAMLObjectMarshaller {
 
         // Set the validUntil attribute
         if (entityDescriptor.getValidUntil() != null) {
-            log.debug("Writting validUntil attribute to EntityDescriptor DOM element");
+            log.debug("Writing validUntil attribute to EntityDescriptor DOM element");
             final String validUntilStr =
                     SAMLConfigurationSupport.getSAMLDateFormatter().format(entityDescriptor.getValidUntil());
             domElement.setAttributeNS(null, TimeBoundSAMLObject.VALID_UNTIL_ATTRIB_NAME, validUntilStr);
@@ -60,7 +60,7 @@ public class EntityDescriptorMarshaller extends AbstractSAMLObjectMarshaller {
 
         // Set the cacheDuration attribute
         if (entityDescriptor.getCacheDuration() != null) {
-            log.debug("Writting cacheDuration attribute to EntityDescriptor DOM element");
+            log.debug("Writing cacheDuration attribute to EntityDescriptor DOM element");
             domElement.setAttributeNS(null, CacheableSAMLObject.CACHE_DURATION_ATTRIB_NAME,
                     entityDescriptor.getCacheDuration().toString());
         }
diff --git a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/RoleDescriptorMarshaller.java b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/RoleDescriptorMarshaller.java
index a63133e..1539ce3 100644
--- a/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/RoleDescriptorMarshaller.java
+++ b/opensaml-saml-impl/src/main/java/org/opensaml/saml/saml2/metadata/impl/RoleDescriptorMarshaller.java
@@ -52,7 +52,7 @@ public abstract class RoleDescriptorMarshaller extends AbstractSAMLObjectMarshal
 
         // Set the validUntil attribute
         if (roleDescriptor.getValidUntil() != null) {
-            log.trace("Writting validUntil attribute to RoleDescriptor DOM element");
+            log.trace("Writing validUntil attribute to RoleDescriptor DOM element");
             final String validUntilStr =
                     SAMLConfigurationSupport.getSAMLDateFormatter().format(roleDescriptor.getValidUntil());
             domElement.setAttributeNS(null, TimeBoundSAMLObject.VALID_UNTIL_ATTRIB_NAME, validUntilStr);
@@ -60,7 +60,7 @@ public abstract class RoleDescriptorMarshaller extends AbstractSAMLObjectMarshal
 
         // Set the cacheDuration attribute
         if (roleDescriptor.getCacheDuration() != null) {
-            log.trace("Writting cacheDuration attribute to EntitiesDescriptor DOM element");
+            log.trace("Writing cacheDuration attribute to EntitiesDescriptor DOM element");
             domElement.setAttributeNS(null, CacheableSAMLObject.CACHE_DURATION_ATTRIB_NAME,
                     roleDescriptor.getCacheDuration().toString());
         }
@@ -68,7 +68,7 @@ public abstract class RoleDescriptorMarshaller extends AbstractSAMLObjectMarshal
         // Set the protocolSupportEnumeration attribute
         final List<String> supportedProtocols = roleDescriptor.getSupportedProtocols();
         if (supportedProtocols != null && supportedProtocols.size() > 0) {
-            log.trace("Writting protocolSupportEnumberation attribute to RoleDescriptor DOM element");
+            log.trace("Writing protocolSupportEnumberation attribute to RoleDescriptor DOM element");
 
             final StringBuilder builder = new StringBuilder();
             for (final String protocol : supportedProtocols) {
@@ -81,7 +81,7 @@ public abstract class RoleDescriptorMarshaller extends AbstractSAMLObjectMarshal
 
         // Set errorURL attribute
         if (roleDescriptor.getErrorURL() != null) {
-            log.trace("Writting errorURL attribute to RoleDescriptor DOM element");
+            log.trace("Writing errorURL attribute to RoleDescriptor DOM element");
             domElement.setAttributeNS(null, RoleDescriptor.ERROR_URL_ATTRIB_NAME, roleDescriptor.getErrorURL());
         }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list