[java-identity-provider] branch master updated: Eliminate use of removed base class.

Scott Cantor cantor.2 at osu.edu
Fri Jul 12 12:21:35 EDT 2019


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

scantor pushed a commit to branch master
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=f1b9977ae4ce74264f5d40f655a4c384f5d9ecbb

The following commit(s) were added to refs/heads/master by this push:
       new  f1b9977   Eliminate use of removed base class.
f1b9977 is described below

commit f1b9977ae4ce74264f5d40f655a4c384f5d9ecbb
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Jul 12 12:21:31 2019 -0400

    Eliminate use of removed base class.
---
 .../net/shibboleth/idp/cas/service/impl/ServiceEntityDescriptor.java | 5 +++--
 .../net/shibboleth/idp/saml/xmlobject/impl/DelegationPolicyImpl.java | 4 ++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/service/impl/ServiceEntityDescriptor.java b/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/service/impl/ServiceEntityDescriptor.java
index 16b19b5..4d7579b 100644
--- a/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/service/impl/ServiceEntityDescriptor.java
+++ b/idp-cas-impl/src/main/java/net/shibboleth/idp/cas/service/impl/ServiceEntityDescriptor.java
@@ -30,9 +30,10 @@ import javax.xml.namespace.QName;
 import net.shibboleth.idp.cas.service.Service;
 import net.shibboleth.utilities.java.support.logic.Constraint;
 import net.shibboleth.utilities.java.support.primitive.StringSupport;
+
+import org.opensaml.core.xml.AbstractXMLObject;
 import org.opensaml.core.xml.XMLObject;
 import org.opensaml.core.xml.util.AttributeMap;
-import org.opensaml.saml.common.AbstractSAMLObject;
 import org.opensaml.saml.common.xml.SAMLConstants;
 import org.opensaml.saml.metadata.EntityGroupName;
 import org.opensaml.saml.saml2.metadata.AdditionalMetadataLocation;
@@ -54,7 +55,7 @@ import org.opensaml.xmlsec.signature.Signature;
  *
  * @author Marvin S. Addison
  */
-public class ServiceEntityDescriptor extends AbstractSAMLObject implements EntityDescriptor {
+public class ServiceEntityDescriptor extends AbstractXMLObject implements EntityDescriptor {
 
     /** Underlying CAS service. */
     @Nonnull private final Service svc;
diff --git a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/DelegationPolicyImpl.java b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/DelegationPolicyImpl.java
index 21a1e38..42ac542 100644
--- a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/DelegationPolicyImpl.java
+++ b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/xmlobject/impl/DelegationPolicyImpl.java
@@ -24,12 +24,12 @@ import javax.annotation.concurrent.NotThreadSafe;
 
 import net.shibboleth.idp.saml.xmlobject.DelegationPolicy;
 
+import org.opensaml.core.xml.AbstractXMLObject;
 import org.opensaml.core.xml.XMLObject;
-import org.opensaml.saml.common.AbstractSAMLObject;
 
 /** Implementation of {@link DelegationPolicy}. */
 @NotThreadSafe
-public class DelegationPolicyImpl extends AbstractSAMLObject implements DelegationPolicy {
+public class DelegationPolicyImpl extends AbstractXMLObject implements DelegationPolicy {
 
     /** The VerifyDepth attribute. */
     private Long maximumTokenDelegationChainLength;

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


More information about the commits mailing list