From: lajoie Date: Sat, 19 May 2007 23:38:00 +0000 (+0000) Subject: move configuration files into a conf directory (which will be copied onto the filesys... X-Git-Tag: v2.1.3~612 X-Git-Url: https://repo.niif.hu/gitweb/gitweb.cgi?p=java-idp.git;a=commitdiff_plain;h=10fa62dd02b96fdfc5b8b5c345803a50ce60a7b6 move configuration files into a conf directory (which will be copied onto the filesystem during install) Start of default configuration files git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@2200 ab3bd59b-922f-494d-bb5f-6f0a3c29deca --- diff --git a/.classpath b/.classpath index 73117c0..90cf0a7 100644 --- a/.classpath +++ b/.classpath @@ -1,8 +1,9 @@ - - + + + diff --git a/resources/conf/attribute-filter.xml b/resources/conf/attribute-filter.xml new file mode 100644 index 0000000..d0842bc --- /dev/null +++ b/resources/conf/attribute-filter.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/resources/conf/attribute-resolver.xml b/resources/conf/attribute-resolver.xml new file mode 100644 index 0000000..3ea3576 --- /dev/null +++ b/resources/conf/attribute-resolver.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/resources/conf/internal.xml b/resources/conf/internal.xml new file mode 100644 index 0000000..2ea72df --- /dev/null +++ b/resources/conf/internal.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/resources/conf/protocol.xml b/resources/conf/protocol.xml new file mode 100644 index 0000000..502dcf2 --- /dev/null +++ b/resources/conf/protocol.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/conf/relying-party.xml b/resources/conf/relying-party.xml new file mode 100644 index 0000000..15c7b2d --- /dev/null +++ b/resources/conf/relying-party.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/conf/service.xml b/resources/conf/service.xml new file mode 100644 index 0000000..ad0a3a8 --- /dev/null +++ b/resources/conf/service.xml @@ -0,0 +1,66 @@ + + + + + + + $IdP_HOME$/etc/logging.xml + + + + $IdP_HOME$/etc/protocol.xml + + + + + + $IdP_HOME$/etc/relying-party.xml + + + + + + $IdP_HOME$/etc/attribute-resolver.xml + + + + + + $IdP_HOME$/etc/attribute-filter.xml + + + + \ No newline at end of file diff --git a/src/edu/internet2/middleware/shibboleth/idp/profile/ProfileRequestDispatcher.java b/src/edu/internet2/middleware/shibboleth/idp/profile/ShibbolethProfileRequestDispatcher.java similarity index 94% rename from src/edu/internet2/middleware/shibboleth/idp/profile/ProfileRequestDispatcher.java rename to src/edu/internet2/middleware/shibboleth/idp/profile/ShibbolethProfileRequestDispatcher.java index a89d0f3..b3e5aa3 100644 --- a/src/edu/internet2/middleware/shibboleth/idp/profile/ProfileRequestDispatcher.java +++ b/src/edu/internet2/middleware/shibboleth/idp/profile/ShibbolethProfileRequestDispatcher.java @@ -28,7 +28,7 @@ import edu.internet2.middleware.shibboleth.common.profile.ProfileResponse; /** * Servlet responsible for dispatching incoming shibboleth requests to the appropriate profile handler. */ -public class ProfileRequestDispatcher extends BaseServletProfileRequestDispatcher { +public class ShibbolethProfileRequestDispatcher extends BaseServletProfileRequestDispatcher { /** Serial version UID. */ private static final long serialVersionUID = -3939942569721369334L;