This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-discovery-api.git
commit 41e87c1a6c2f48d732b92489ebd2fcf766e52fba Author: Stefan Egli <[email protected]> AuthorDate: Mon Apr 27 13:18:29 2015 +0000 SLING-4668 sneak-in: pure javadoc reformatting, no text change git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1676255 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/sling/discovery/TopologyView.java | 48 +++++++++++----------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/src/main/java/org/apache/sling/discovery/TopologyView.java b/src/main/java/org/apache/sling/discovery/TopologyView.java index b76695a..0352efb 100644 --- a/src/main/java/org/apache/sling/discovery/TopologyView.java +++ b/src/main/java/org/apache/sling/discovery/TopologyView.java @@ -30,21 +30,21 @@ import aQute.bnd.annotation.ProviderType; @ProviderType public interface TopologyView { - /** - * Checks if this TopologyView is currently valid - or if the - * service knows of a topology change just going on (or another - * uncertainty about the topology such as IOException etc) - * @return true if this TopologyView is currently valid, false - * if the service knows of a topology change just going on (or - * another issue with discovery like IOException etc) - */ - boolean isCurrent(); + /** + * Checks if this TopologyView is currently valid - or if the + * service knows of a topology change just going on (or another + * uncertainty about the topology such as IOException etc) + * @return true if this TopologyView is currently valid, false + * if the service knows of a topology change just going on (or + * another issue with discovery like IOException etc) + */ + boolean isCurrent(); - /** - * Provides the InstanceDescription belonging to <b>this</b> instance. - * @return the InstanceDescription belonging to <b>this</b> instance - */ - InstanceDescription getLocalInstance(); + /** + * Provides the InstanceDescription belonging to <b>this</b> instance. + * @return the InstanceDescription belonging to <b>this</b> instance + */ + InstanceDescription getLocalInstance(); /** * Provides the set of InstanceDescriptions in the entire topology, @@ -52,16 +52,16 @@ public interface TopologyView { * @return the set of InstanceDescriptions in the entire topology, * without any particular order */ - Set<InstanceDescription> getInstances(); + Set<InstanceDescription> getInstances(); - /** - * Searches through this topology and picks those accepted by the provided - * <code>InstanceFilter</code> - and returns them without any particular order - * @param filter the filter to use - * @return the set of InstanceDescriptions which were accepted by the InstanceFilter, - * without any particular order - */ - Set<InstanceDescription> findInstances(InstanceFilter filter); + /** + * Searches through this topology and picks those accepted by the provided + * <code>InstanceFilter</code> - and returns them without any particular order + * @param filter the filter to use + * @return the set of InstanceDescriptions which were accepted by the InstanceFilter, + * without any particular order + */ + Set<InstanceDescription> findInstances(InstanceFilter filter); /** * Provides the collection of ClusterViews. @@ -70,5 +70,5 @@ public interface TopologyView { * including InstanceDescriptions that form "a cluster of 1" * @return the set of ClusterViews, without any particular order */ - Set<ClusterView> getClusterViews(); + Set<ClusterView> getClusterViews(); } -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
