[java-identity-provider] branch main updated: IDP-2002 - Migrate all unmanaged config files into core module
Scott Cantor
cantor.2 at osu.edu
Thu May 11 16:26:31 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=7be23b089277d8fb0e5c19af855439f8a5b4435c
The following commit(s) were added to refs/heads/main by this push:
new 7be23b089 IDP-2002 - Migrate all unmanaged config files into core module
7be23b089 is described below
commit 7be23b089277d8fb0e5c19af855439f8a5b4435c
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu May 11 12:26:04 2023 -0400
IDP-2002 - Migrate all unmanaged config files into core module
https://shibboleth.atlassian.net/browse/IDP-2002
Modularize most of the files from idp-distribution's bin folder.
---
.../core/impl/{Core.java => CommandLine.java} | 15 +---
.../net/shibboleth/idp/module/core/impl/Core.java | 9 +++
.../idp/module/core/impl/EditWebApp.java | 9 ---
.../services/net.shibboleth.idp.module.IdPModule | 1 +
.../net/shibboleth/idp/module}/bin/aacli.bat | 0
.../net/shibboleth/idp/module}/bin/aacli.sh | 0
.../net/shibboleth/idp/module}/bin/ant.bat | 0
.../net/shibboleth/idp/module}/bin/ant.sh | 0
.../net/shibboleth/idp/module}/bin/build.bat | 0
.../net/shibboleth/idp/module}/bin/build.sh | 0
.../net/shibboleth/idp/module}/bin/build.xml | 0
.../net/shibboleth/idp/module}/bin/keygen.bat | 0
.../net/shibboleth/idp/module}/bin/keygen.sh | 0
.../net/shibboleth/idp/module}/bin/mdquery.bat | 0
.../net/shibboleth/idp/module}/bin/mdquery.sh | 0
.../net/shibboleth/idp/module}/bin/module.bat | 0
.../net/shibboleth/idp/module}/bin/module.sh | 0
.../net/shibboleth/idp/module}/bin/plugin.bat | 0
.../net/shibboleth/idp/module}/bin/plugin.sh | 0
.../shibboleth/idp/module}/bin/reload-metadata.bat | 0
.../shibboleth/idp/module}/bin/reload-metadata.sh | 0
.../shibboleth/idp/module}/bin/reload-service.bat | 0
.../shibboleth/idp/module}/bin/reload-service.sh | 0
.../net/shibboleth/idp/module}/bin/runclass.bat | 0
.../net/shibboleth/idp/module}/bin/runclass.sh | 0
.../net/shibboleth/idp/module}/bin/sealer.bat | 0
.../net/shibboleth/idp/module}/bin/sealer.sh | 0
.../net/shibboleth/idp/module}/bin/seckeygen.bat | 0
.../net/shibboleth/idp/module}/bin/seckeygen.sh | 0
.../net/shibboleth/idp/module}/bin/status.bat | 0
.../net/shibboleth/idp/module}/bin/status.sh | 0
.../net/shibboleth/idp/module}/bin/version.bat | 0
.../net/shibboleth/idp/module}/bin/version.sh | 0
.../idp/module/core/impl/module.properties | 82 +++++++++++++++++++++-
34 files changed, 93 insertions(+), 23 deletions(-)
diff --git a/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/Core.java b/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/CommandLine.java
similarity index 77%
copy from idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/Core.java
copy to idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/CommandLine.java
index fa2f5382c..d7989080b 100644
--- a/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/Core.java
+++ b/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/CommandLine.java
@@ -19,17 +19,14 @@ package net.shibboleth.idp.module.core.impl;
import java.io.IOException;
-import javax.annotation.Nonnull;
-
import net.shibboleth.idp.module.IdPModule;
-import net.shibboleth.idp.module.ModuleContext;
import net.shibboleth.idp.module.ModuleException;
import net.shibboleth.idp.module.impl.CoreIdPModule;
/**
* {@link IdPModule} implementation.
*/
-public final class Core extends CoreIdPModule {
+public final class CommandLine extends CoreIdPModule {
/**
* Constructor.
@@ -37,14 +34,8 @@ public final class Core extends CoreIdPModule {
* @throws ModuleException on error
* @throws IOException on error
*/
- public Core() throws IOException, ModuleException {
- super(Core.class);
- }
-
- /** {@inheritDoc} */
- @Override
- public boolean isEnabled(@Nonnull final ModuleContext moduleContext) {
- return true;
+ public CommandLine() throws IOException, ModuleException {
+ super(CommandLine.class);
}
}
\ No newline at end of file
diff --git a/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/Core.java b/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/Core.java
index fa2f5382c..03de0e5d5 100644
--- a/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/Core.java
+++ b/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/Core.java
@@ -18,6 +18,7 @@
package net.shibboleth.idp.module.core.impl;
import java.io.IOException;
+import java.util.Map;
import javax.annotation.Nonnull;
@@ -47,4 +48,12 @@ public final class Core extends CoreIdPModule {
return true;
}
+ /** {@inheritDoc} */
+ @Override
+ @Nonnull public Map<ModuleResource, ResourceResult> disable(@Nonnull final ModuleContext moduleContext,
+ final boolean clean) throws ModuleException {
+ throw new ModuleException("This module cannot be disabled.");
+ }
+
+
}
\ No newline at end of file
diff --git a/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/EditWebApp.java b/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/EditWebApp.java
index 08f0eb758..0d66a0412 100644
--- a/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/EditWebApp.java
+++ b/idp-conf-impl/src/main/java/net/shibboleth/idp/module/core/impl/EditWebApp.java
@@ -19,10 +19,7 @@ package net.shibboleth.idp.module.core.impl;
import java.io.IOException;
-import javax.annotation.Nonnull;
-
import net.shibboleth.idp.module.IdPModule;
-import net.shibboleth.idp.module.ModuleContext;
import net.shibboleth.idp.module.ModuleException;
import net.shibboleth.idp.module.impl.CoreIdPModule;
@@ -41,10 +38,4 @@ public final class EditWebApp extends CoreIdPModule {
super(EditWebApp.class);
}
- /** {@inheritDoc} */
- @Override
- public boolean isEnabled(@Nonnull final ModuleContext moduleContext) {
- return true;
- }
-
}
\ No newline at end of file
diff --git a/idp-conf-impl/src/main/resources/META-INF/services/net.shibboleth.idp.module.IdPModule b/idp-conf-impl/src/main/resources/META-INF/services/net.shibboleth.idp.module.IdPModule
index 417916eda..8fff5c5cc 100644
--- a/idp-conf-impl/src/main/resources/META-INF/services/net.shibboleth.idp.module.IdPModule
+++ b/idp-conf-impl/src/main/resources/META-INF/services/net.shibboleth.idp.module.IdPModule
@@ -1,4 +1,5 @@
net.shibboleth.idp.module.core.impl.Core
+net.shibboleth.idp.module.core.impl.CommandLine
net.shibboleth.idp.module.core.impl.EditWebApp
net.shibboleth.idp.module.core.impl.UserPrefs
diff --git a/idp-distribution/src/main/resources/bin/aacli.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/aacli.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/aacli.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/aacli.bat
diff --git a/idp-distribution/src/main/resources/bin/aacli.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/aacli.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/aacli.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/aacli.sh
diff --git a/idp-distribution/src/main/resources/bin/ant.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/ant.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/ant.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/ant.bat
diff --git a/idp-distribution/src/main/resources/bin/ant.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/ant.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/ant.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/ant.sh
diff --git a/idp-distribution/src/main/resources/bin/build.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/build.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/build.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/build.bat
diff --git a/idp-distribution/src/main/resources/bin/build.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/build.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/build.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/build.sh
diff --git a/idp-distribution/src/main/resources/bin/build.xml b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/build.xml
similarity index 100%
rename from idp-distribution/src/main/resources/bin/build.xml
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/build.xml
diff --git a/idp-distribution/src/main/resources/bin/keygen.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/keygen.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/keygen.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/keygen.bat
diff --git a/idp-distribution/src/main/resources/bin/keygen.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/keygen.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/keygen.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/keygen.sh
diff --git a/idp-distribution/src/main/resources/bin/mdquery.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/mdquery.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/mdquery.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/mdquery.bat
diff --git a/idp-distribution/src/main/resources/bin/mdquery.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/mdquery.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/mdquery.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/mdquery.sh
diff --git a/idp-distribution/src/main/resources/bin/module.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/module.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/module.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/module.bat
diff --git a/idp-distribution/src/main/resources/bin/module.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/module.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/module.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/module.sh
diff --git a/idp-distribution/src/main/resources/bin/plugin.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/plugin.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/plugin.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/plugin.bat
diff --git a/idp-distribution/src/main/resources/bin/plugin.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/plugin.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/plugin.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/plugin.sh
diff --git a/idp-distribution/src/main/resources/bin/reload-metadata.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/reload-metadata.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/reload-metadata.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/reload-metadata.bat
diff --git a/idp-distribution/src/main/resources/bin/reload-metadata.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/reload-metadata.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/reload-metadata.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/reload-metadata.sh
diff --git a/idp-distribution/src/main/resources/bin/reload-service.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/reload-service.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/reload-service.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/reload-service.bat
diff --git a/idp-distribution/src/main/resources/bin/reload-service.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/reload-service.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/reload-service.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/reload-service.sh
diff --git a/idp-distribution/src/main/resources/bin/runclass.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/runclass.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/runclass.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/runclass.bat
diff --git a/idp-distribution/src/main/resources/bin/runclass.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/runclass.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/runclass.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/runclass.sh
diff --git a/idp-distribution/src/main/resources/bin/sealer.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/sealer.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/sealer.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/sealer.bat
diff --git a/idp-distribution/src/main/resources/bin/sealer.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/sealer.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/sealer.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/sealer.sh
diff --git a/idp-distribution/src/main/resources/bin/seckeygen.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/seckeygen.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/seckeygen.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/seckeygen.bat
diff --git a/idp-distribution/src/main/resources/bin/seckeygen.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/seckeygen.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/seckeygen.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/seckeygen.sh
diff --git a/idp-distribution/src/main/resources/bin/status.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/status.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/status.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/status.bat
diff --git a/idp-distribution/src/main/resources/bin/status.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/status.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/status.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/status.sh
diff --git a/idp-distribution/src/main/resources/bin/version.bat b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/version.bat
similarity index 100%
rename from idp-distribution/src/main/resources/bin/version.bat
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/version.bat
diff --git a/idp-distribution/src/main/resources/bin/version.sh b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/version.sh
similarity index 100%
rename from idp-distribution/src/main/resources/bin/version.sh
rename to idp-conf-impl/src/main/resources/net/shibboleth/idp/module/bin/version.sh
diff --git a/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/core/impl/module.properties b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/core/impl/module.properties
index 2b1694d61..d4f155a4b 100644
--- a/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/core/impl/module.properties
+++ b/idp-conf-impl/src/main/resources/net/shibboleth/idp/module/core/impl/module.properties
@@ -2,9 +2,87 @@
# Class to Module ID mappings
net.shibboleth.idp.module.core.impl.Core = idp.Core
+net.shibboleth.idp.module.core.impl.CommandLine = idp.CommandLine
net.shibboleth.idp.module.core.impl.UserPrefs = idp.UserPrefs
net.shibboleth.idp.module.core.impl.EditWebApp = idp.EditWebApp
+idp.CommandLine.name = Command Line Scripts
+idp.CommandLine.desc = Command line scripts for managing services or rebuilding the warfile
+idp.CommandLine.url = /WebInterfaces
+idp.CommandLine.1.src = /net/shibboleth/idp/module/bin/aacli.sh
+idp.CommandLine.1.dest = bin/aacli.sh
+idp.CommandLine.1.exec = true
+idp.CommandLine.2.src = /net/shibboleth/idp/module/bin/aacli.bat
+idp.CommandLine.2.dest = bin/aacli.bat
+idp.CommandLine.3.src = /net/shibboleth/idp/module/bin/ant.sh
+idp.CommandLine.3.dest = bin/ant.sh
+idp.CommandLine.3.exec = true
+idp.CommandLine.4.src = /net/shibboleth/idp/module/bin/ant.bat
+idp.CommandLine.4.dest = bin/ant.bat
+idp.CommandLine.5.src = /net/shibboleth/idp/module/bin/build.sh
+idp.CommandLine.5.dest = bin/build.sh
+idp.CommandLine.5.exec = true
+idp.CommandLine.6.src = /net/shibboleth/idp/module/bin/build.bat
+idp.CommandLine.6.dest = bin/build.bat
+idp.CommandLine.7.src = /net/shibboleth/idp/module/bin/build.xml
+idp.CommandLine.7.dest = bin/build.xml
+idp.CommandLine.8.src = /net/shibboleth/idp/module/bin/keygen.sh
+idp.CommandLine.8.dest = bin/keygen.sh
+idp.CommandLine.8.exec = true
+idp.CommandLine.9.src = /net/shibboleth/idp/module/bin/keygen.bat
+idp.CommandLine.9.dest = bin/keygen.bat
+idp.CommandLine.10.src = /net/shibboleth/idp/module/bin/mdquery.sh
+idp.CommandLine.10.dest = bin/mdquery.sh
+idp.CommandLine.10.exec = true
+idp.CommandLine.11.src = /net/shibboleth/idp/module/bin/mdquery.bat
+idp.CommandLine.11.dest = bin/mdquery.bat
+idp.CommandLine.12.src = /net/shibboleth/idp/module/bin/module.sh
+idp.CommandLine.12.dest = bin/module.sh
+idp.CommandLine.12.exec = true
+idp.CommandLine.13.src = /net/shibboleth/idp/module/bin/module.bat
+idp.CommandLine.13.dest = bin/module.bat
+idp.CommandLine.14.src = /net/shibboleth/idp/module/bin/plugin.sh
+idp.CommandLine.14.dest = bin/plugin.sh
+idp.CommandLine.14.exec = true
+idp.CommandLine.15.src = /net/shibboleth/idp/module/bin/plugin.bat
+idp.CommandLine.15.dest = bin/plugin.bat
+idp.CommandLine.16.src = /net/shibboleth/idp/module/bin/reload-metadata.sh
+idp.CommandLine.16.dest = bin/reload-metadata.sh
+idp.CommandLine.16.exec = true
+idp.CommandLine.17.src = /net/shibboleth/idp/module/bin/reload-service.bat
+idp.CommandLine.17.dest = bin/reload-metadata.bat
+idp.CommandLine.18.src = /net/shibboleth/idp/module/bin/reload-service.sh
+idp.CommandLine.18.dest = bin/reload-metadata.sh
+idp.CommandLine.18.exec = true
+idp.CommandLine.19.src = /net/shibboleth/idp/module/bin/reload-service.bat
+idp.CommandLine.19.dest = bin/reload-metadata.bat
+idp.CommandLine.20.src = /net/shibboleth/idp/module/bin/runclass.sh
+idp.CommandLine.20.dest = bin/runclass.sh
+idp.CommandLine.20.exec = true
+idp.CommandLine.21.src = /net/shibboleth/idp/module/bin/runclass.bat
+idp.CommandLine.21.dest = bin/runclass.bat
+idp.CommandLine.22.src = /net/shibboleth/idp/module/bin/sealer.sh
+idp.CommandLine.22.dest = bin/sealer.sh
+idp.CommandLine.22.exec = true
+idp.CommandLine.23.src = /net/shibboleth/idp/module/bin/sealer.bat
+idp.CommandLine.23.dest = bin/sealer.bat
+idp.CommandLine.24.src = /net/shibboleth/idp/module/bin/seckeygen.sh
+idp.CommandLine.24.dest = bin/seckeygen.sh
+idp.CommandLine.24.exec = true
+idp.CommandLine.25.src = /net/shibboleth/idp/module/bin/seckeygen.bat
+idp.CommandLine.25.dest = bin/seckeygen.bat
+idp.CommandLine.26.src = /net/shibboleth/idp/module/bin/status.sh
+idp.CommandLine.26.dest = bin/status.sh
+idp.CommandLine.26.exec = true
+idp.CommandLine.27.src = /net/shibboleth/idp/module/bin/status.bat
+idp.CommandLine.27.dest = bin/status.bat
+idp.CommandLine.28.src = /net/shibboleth/idp/module/bin/version.sh
+idp.CommandLine.28.dest = bin/version.sh
+idp.CommandLine.28.exec = true
+idp.CommandLine.29.src = /net/shibboleth/idp/module/bin/version.bat
+idp.CommandLine.29.dest = bin/version.bat
+
+
idp.EditWebApp.name = Overlay Tree for WAR Build
idp.EditWebApp.desc = Tree allowing overlay of files into the WAR build process
idp.EditWebApp.url = /
@@ -21,7 +99,6 @@ idp.EditWebApp.5.dest = edit-webapp/images/success-32x32.png
idp.EditWebApp.6.src = /net/shibboleth/idp/module/edit-webapp/index.jsp
idp.EditWebApp.6.dest = edit-webapp/index.jsp
-
idp.UserPrefs.name = User Preferences Flow
idp.UserPrefs.desc = Flow that renders a view allowing manipulation of preference cookies
idp.UserPrefs.url = /
@@ -32,8 +109,9 @@ idp.UserPrefs.2.dest = views/user-prefs.vm
idp.UserPrefs.3.src = /net/shibboleth/idp/module/views/user-prefs.js
idp.UserPrefs.3.dest = views/user-prefs.js
+# The Big Kahuna
-idp.Core.name = Core IdP Functions
+idp.Core.name = Core IdP Functions (Required)
idp.Core.desc = Module that provides built-in IdP functionality
idp.Core.url = /
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list