[java-identity-provider COMMIT] in /trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resol...
noreply at shibboleth.net
noreply at shibboleth.net
Mon Jan 19 13:59:33 EST 2015
Author: tzeller
Date: Mon Jan 19 13:59:32 2015
New Revision: 7268
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7268&view=rev
Log:
Fix Javadoc.
Modified:
trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/AbstractResolverPlugin.java
trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/ResolverPlugin.java
Modified: trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/AbstractResolverPlugin.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/AbstractResolverPlugin.java?rev=7268&r1=7267&r2=7268&view=diff
==============================================================================
--- trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/AbstractResolverPlugin.java (original)
+++ trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/AbstractResolverPlugin.java Mon Jan 19 13:59:32 2015
@@ -73,12 +73,7 @@
/** IDs of the {@link ResolverPlugin}s this plug-in depends on. */
@Nonnull @NonnullElements private Set<ResolverPluginDependency> dependencies = Collections.emptySet();
- /**
- * Get whether an {@link AttributeResolutionContext} that occurred resolving attributes will be re-thrown. Doing so
- * will cause the entire attribute resolution request to fail.
- *
- * @return true if {@link ResolutionException}s are propagated, false if not
- */
+ /** {@inheritDoc} */
@Override public boolean isPropagateResolutionExceptions() {
return propagateResolutionExceptions;
}
Modified: trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/ResolverPlugin.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/ResolverPlugin.java?rev=7268&r1=7267&r2=7268&view=diff
==============================================================================
--- trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/ResolverPlugin.java (original)
+++ trunk/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/ResolverPlugin.java Mon Jan 19 13:59:32 2015
@@ -46,7 +46,7 @@
InitializableComponent, DestructableComponent, IdentifiedComponent {
/**
- * Get whether an {@link AttributeResolutionContext} that occurred resolving attributes will be re-thrown. Doing so
+ * Get whether a {@link ResolutionException} that occurred resolving attributes will be re-thrown. Doing so
* will cause the entire attribute resolution request to fail.
*
* @return true if {@link ResolutionException}s are propagated, false if not
@@ -54,9 +54,9 @@
boolean isPropagateResolutionExceptions();
/**
- * Gets the predicate which defines whether this plugin is active for a given request.
+ * Get the predicate which defines whether this plugin is active for a given request.
*
- * @return the predictate.
+ * @return the predicate.
*/
@Nullable Predicate<ProfileRequestContext> getActivationCondition();
More information about the commits
mailing list