[java-opensaml COMMIT] in /trunk: opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/Context.java op...

noreply at shibboleth.net noreply at shibboleth.net
Sat Sep 17 00:08:07 BST 2011


Author: lajoie
Date: Sat Sep 17 00:08:07 2011
New Revision: 2888

URL: http://svn.shibboleth.net/view/java-opensaml?rev=2888&view=rev
Log:
Change IdentifiedComponent to IdentifiableComponent in order to harmonize names with the rest of the component interfaces

Added:
    trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiableComponent.java   (contents, props changed)
      - copied, changed from r2879, trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiedComponent.java
    trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiableInitializableComponent.java   (contents, props changed)
      - copied, changed from r2881, trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiedInitializableComponent.java
    trunk/opensaml-util/src/main/java/org/opensaml/util/component/IdentifiableComponent.java   (contents, props changed)
      - copied, changed from r2879, trunk/opensaml-util/src/main/java/org/opensaml/util/component/IdentifiedComponent.java
Removed:
    trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiedComponent.java
    trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiedInitializableComponent.java
    trunk/opensaml-util/src/main/java/org/opensaml/util/component/IdentifiedComponent.java
Modified:
    trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/Context.java
    trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/metadata/MetadataResolver.java

Modified: trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/Context.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/Context.java?rev=2888&r1=2887&r2=2888&view=diff
==============================================================================
--- trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/Context.java (original)
+++ trunk/opensaml-messaging-api/src/main/java/org/opensaml/messaging/context/Context.java Sat Sep 17 00:08:07 2011
@@ -18,12 +18,12 @@
 package org.opensaml.messaging.context;
 
 import org.joda.time.DateTime;
-import org.opensaml.util.component.IdentifiedComponent;
+import org.opensaml.util.component.IdentifiableComponent;
 
 /**
  * Interface for a component which represents the context used to store state used for purposes related to messaging.
  */
-public interface Context extends IdentifiedComponent {
+public interface Context extends IdentifiableComponent {
 
     /**
      * Get the timestamp of the creation of the context.

Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/metadata/MetadataResolver.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/metadata/MetadataResolver.java?rev=2888&r1=2887&r2=2888&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/metadata/MetadataResolver.java (original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/metadata/MetadataResolver.java Sat Sep 17 00:08:07 2011
@@ -18,7 +18,7 @@
 package org.opensaml.saml.metadata;
 
 import org.opensaml.saml2.metadata.EntityDescriptor;
-import org.opensaml.util.component.IdentifiedComponent;
+import org.opensaml.util.component.IdentifiableComponent;
 import org.opensaml.util.component.ValidatableComponent;
 import org.opensaml.util.criteria.CriteriaSet;
 import org.opensaml.util.resolver.Resolver;
@@ -44,7 +44,7 @@
  * <li>{@link org.opensaml.saml.criterion.BindingCriterion}</li>
  * </ul>
  */
-public interface MetadataResolver extends Resolver<EntityDescriptor, CriteriaSet>, IdentifiedComponent,
+public interface MetadataResolver extends Resolver<EntityDescriptor, CriteriaSet>, IdentifiableComponent,
         ValidatableComponent {
 
 }

Copied: trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiableComponent.java (from r2879, trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiedComponent.java)
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiableComponent.java?p2=trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiableComponent.java&p1=trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiedComponent.java&r1=2879&r2=2888&rev=2888&view=diff
==============================================================================
--- trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiedComponent.java (original)
+++ trunk/opensaml-util/src/main/java/org/opensaml/util/component/AbstractIdentifiableComponent.java Sat Sep 17 00:08:07 2011
@@ -21,12 +21,12 @@
 import org.opensaml.util.StringSupport;
 
 /**
- * Simple implementation of {@link IdentifiedComponent}.
+ * Simple implementation of {@link IdentifiableComponent}.
  * 

[... 50 lines stripped ...]


More information about the commits mailing list