[java-metadata-aggregator] 01/02: Refactor: remove unnecessary class names, order from specification

Ian Young ian at iay.org.uk
Tue May 19 16:14:23 UTC 2020


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

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

View the commit online:
http://git.shibboleth.net/view/?p=java-metadata-aggregator.git;a=commit;h=0c88d55cbd3c8f7813f6968038840fb865c443ae

commit 0c88d55cbd3c8f7813f6968038840fb865c443ae
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Tue May 19 16:53:28 2020 +0100

    Refactor: remove unnecessary class names, order from specification
---
 .../metadata/dom/saml/mdui/MDUISupport.java          | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/mdui/MDUISupport.java b/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/mdui/MDUISupport.java
index 046542b..886e5aa 100644
--- a/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/mdui/MDUISupport.java
+++ b/aggregator-pipeline/src/main/java/net/shibboleth/metadata/dom/saml/mdui/MDUISupport.java
@@ -27,27 +27,27 @@ public final class MDUISupport {
     /** MDUI namespace. */
     public static final String MDUI_NS = "urn:oasis:names:tc:SAML:metadata:ui";
 
-    /** {@link QName} representing an <code>mdui:DisplayName</code>. */
-    public static final QName DISPLAYNAME_NAME = new QName(MDUISupport.MDUI_NS, "DisplayName");
-    
     /** {@link QName} representing an <code>mdui:UIInfo</code>. */
-    public static final QName UIINFO_NAME = new QName(MDUISupport.MDUI_NS, "UIInfo");
+    public static final QName UIINFO_NAME = new QName(MDUI_NS, "UIInfo");
+    
+    /** {@link QName} representing an <code>mdui:DisplayName</code>. */
+    public static final QName DISPLAYNAME_NAME = new QName(MDUI_NS, "DisplayName");
     
     /** {@link QName} representing an <code>mdui:Description</code>. */
-    public static final QName DESCRIPTION_NAME = new QName(MDUISupport.MDUI_NS, "Description");
+    public static final QName DESCRIPTION_NAME = new QName(MDUI_NS, "Description");
     
     /** {@link QName} representing an <code>mdui:Keywords</code>. */
-    public static final QName KEYWORDS_NAME = new QName(MDUISupport.MDUI_NS, "Keywords");
+    public static final QName KEYWORDS_NAME = new QName(MDUI_NS, "Keywords");
     
     /** {@link QName} representing an <code>mdui:Logo</code>. */
-    public static final QName LOGO_NAME = new QName(MDUISupport.MDUI_NS, "Logo");
+    public static final QName LOGO_NAME = new QName(MDUI_NS, "Logo");
     
     /** {@link QName} representing an <code>mdui:InformationURL</code>. */
-    public static final QName INFORMATIONURL_NAME = new QName(MDUISupport.MDUI_NS, "InformationURL");
+    public static final QName INFORMATIONURL_NAME = new QName(MDUI_NS, "InformationURL");
     
     /** {@link QName} representing an <code>mdui:PrivacyStatementURL</code>. */
-    public static final QName PRIVACYSTATEMENTURL_NAME = new QName(MDUISupport.MDUI_NS, "PrivacyStatementURL");
-    
+    public static final QName PRIVACYSTATEMENTURL_NAME = new QName(MDUI_NS, "PrivacyStatementURL");
+
     /** Constructor. */
     private MDUISupport() {
     }

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


More information about the commits mailing list