[utilities COMMIT] /java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/service/ReloadableService....
noreply at shibboleth.net
noreply at shibboleth.net
Sun Oct 5 22:21:39 EDT 2014
Author: scantor
Date: Sun Oct 5 22:21:38 2014
New Revision: 667
URL: http://svn.shibboleth.net/view/utilities?rev=667&view=rev
Log:
Fix javadoc.
Modified:
java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/service/ReloadableService.java
Modified: java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/service/ReloadableService.java
URL: http://svn.shibboleth.net/view/utilities/java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/service/ReloadableService.java?rev=667&r1=666&r2=667&view=diff
==============================================================================
--- java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/service/ReloadableService.java (original)
+++ java-support/trunk/src/main/java/net/shibboleth/utilities/java/support/service/ReloadableService.java Sun Oct 5 22:21:38 2014
@@ -23,8 +23,11 @@
import org.joda.time.DateTime;
-/** A service that supports reloading its configuration.
- * @param <T> The sort of service that this implements */
+/**
+ * A service that supports reloading its configuration.
+ *
+ * @param <T> The sort of service that this implements
+ */
public interface ReloadableService<T> extends InitializableComponent {
/**
@@ -57,11 +60,12 @@
*/
public void reload() ;
- /** Get the serviceable component that this service supports . If
- * The component hasn't been successfully loaded yet or if this service
- * does not support a ServiceableComponent return null. If it is non-null,
- * the returned component will be is pinned and <em>MUST</em> be unpinned by a call to
+ /**
+ * Get the serviceable component that this service supports. If the component hasn't been successfully
+ * loaded yet or if this service does not support a ServiceableComponent, null is returned. On a non-null
+ * value, the returned component will be pinned and <em>MUST</em> be unpinned by a call to
* {@link ServiceableComponent#unpinComponent()}.
+ *
* @return the component, if appropriate.
*/
@Nullable public ServiceableComponent<T> getServiceableComponent();
More information about the commits
mailing list