Moving Shibboleth constants down to java-shib-common. Seems to more naturally belong...
authorputmanb <putmanb@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Sat, 23 Jun 2007 20:25:53 +0000 (20:25 +0000)
committerputmanb <putmanb@ab3bd59b-922f-494d-bb5f-6f0a3c29deca>
Sat, 23 Jun 2007 20:25:53 +0000 (20:25 +0000)
but mainly also need to support namespace and prefix constants for Shib SAML MD extension object providers.

git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@2275 ab3bd59b-922f-494d-bb5f-6f0a3c29deca

src/edu/internet2/middleware/shibboleth/idp/ShibbolethConstants.java [deleted file]
src/edu/internet2/middleware/shibboleth/idp/profile/saml1/AttributeQueryProfileHandler.java
src/edu/internet2/middleware/shibboleth/idp/profile/saml1/ShibbolethSSOProfileHandler.java

diff --git a/src/edu/internet2/middleware/shibboleth/idp/ShibbolethConstants.java b/src/edu/internet2/middleware/shibboleth/idp/ShibbolethConstants.java
deleted file mode 100644 (file)
index 07865c4..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright [2007] [University Corporation for Advanced Internet Development, Inc.]
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package edu.internet2.middleware.shibboleth.idp;
-
-import org.opensaml.common.xml.SAMLConstants;
-
-/**
- * Constants related used in the SAML specifications.
- */
-public class ShibbolethConstants extends SAMLConstants {
-
-    /** URI for the Shibboleth SSO profile. */
-    public static final String SHIB_SSO_PROFILE_URI = "urn:mace:shibboleth:1.0";
-    
-}
\ No newline at end of file
index 69e4c71..5c40f88 100644 (file)
@@ -36,12 +36,12 @@ import org.opensaml.saml2.metadata.RoleDescriptor;
 import org.opensaml.saml2.metadata.provider.MetadataProviderException;
 import org.opensaml.ws.security.SecurityPolicyException;
 
+import edu.internet2.middleware.shibboleth.common.ShibbolethConstants;
 import edu.internet2.middleware.shibboleth.common.profile.ProfileException;
 import edu.internet2.middleware.shibboleth.common.profile.ProfileRequest;
 import edu.internet2.middleware.shibboleth.common.profile.ProfileResponse;
 import edu.internet2.middleware.shibboleth.common.relyingparty.RelyingPartyConfiguration;
 import edu.internet2.middleware.shibboleth.common.relyingparty.provider.saml1.AttributeQueryConfiguration;
-import edu.internet2.middleware.shibboleth.idp.ShibbolethConstants;
 
 /**
  * SAML 1 Attribute Query profile handler.
index 7a8fa63..339c409 100644 (file)
@@ -46,13 +46,13 @@ import org.opensaml.saml2.metadata.RoleDescriptor;
 import org.opensaml.saml2.metadata.provider.MetadataProviderException;
 import org.opensaml.xml.util.DatatypeHelper;
 
+import edu.internet2.middleware.shibboleth.common.ShibbolethConstants;
 import edu.internet2.middleware.shibboleth.common.profile.ProfileException;
 import edu.internet2.middleware.shibboleth.common.profile.ProfileRequest;
 import edu.internet2.middleware.shibboleth.common.profile.ProfileResponse;
 import edu.internet2.middleware.shibboleth.common.relyingparty.RelyingPartyConfiguration;
 import edu.internet2.middleware.shibboleth.common.relyingparty.provider.saml1.ShibbolethSSOConfiguration;
 import edu.internet2.middleware.shibboleth.common.util.HttpHelper;
-import edu.internet2.middleware.shibboleth.idp.ShibbolethConstants;
 import edu.internet2.middleware.shibboleth.idp.authn.LoginContext;
 import edu.internet2.middleware.shibboleth.idp.authn.ShibbolethSSOLoginContext;