diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-02-25 14:31:49 +0100 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2016-02-25 14:31:49 +0100 |
commit | afe6acdbabf17194cf2deb7df47c70399f9d23ab (patch) | |
tree | 7ed4e8c502bf94326c603767fd0c34fcff45a331 /id/server/modules | |
parent | 19f91c16f69b97c70ffe9a290305737bd351aae8 (diff) | |
download | moa-id-spss-afe6acdbabf17194cf2deb7df47c70399f9d23ab.tar.gz moa-id-spss-afe6acdbabf17194cf2deb7df47c70399f9d23ab.tar.bz2 moa-id-spss-afe6acdbabf17194cf2deb7df47c70399f9d23ab.zip |
generate CSS und JS for GUI dynamically.
Now all html templates must not include it's on CSS and JS as inline code
Diffstat (limited to 'id/server/modules')
-rw-r--r-- | id/server/modules/moa-id-modules-saml1/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/SAML1Protocol.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/id/server/modules/moa-id-modules-saml1/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/SAML1Protocol.java b/id/server/modules/moa-id-modules-saml1/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/SAML1Protocol.java index 1b1815b44..f3650065e 100644 --- a/id/server/modules/moa-id-modules-saml1/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/SAML1Protocol.java +++ b/id/server/modules/moa-id-modules-saml1/src/main/java/at/gv/egovernment/moa/id/protocols/saml1/SAML1Protocol.java @@ -97,7 +97,7 @@ public class SAML1Protocol extends AbstractAuthProtocolModulController { @RequestMapping(value = "/StartAuthentication", method = {RequestMethod.POST, RequestMethod.GET}) - public void PVPMetadataRequest(HttpServletRequest req, HttpServletResponse resp) throws MOAIDException, IOException { + public void SAML1AuthnRequest(HttpServletRequest req, HttpServletResponse resp) throws MOAIDException, IOException { if (!AuthConfigurationProviderFactory.getInstance().getAllowedProtocols().isSAML1Active()) { Logger.info("SAML1 is deaktivated!"); throw new ProtocolNotActiveException("auth.22", new Object[] { "SAML 1" }); |