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-tenant.git
commit 0b1356bac8f42830031033138ba458fbfdb1579d Author: Carsten Ziegeler <[email protected]> AuthorDate: Mon Apr 22 11:28:20 2013 +0000 Minor javadoc updates git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1470458 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/sling/tenant/Tenant.java | 2 +- src/main/java/org/apache/sling/tenant/TenantProvider.java | 2 +- src/main/java/org/apache/sling/tenant/spi/TenantCustomizer.java | 6 ++++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/sling/tenant/Tenant.java b/src/main/java/org/apache/sling/tenant/Tenant.java index 04d1dd4..0a911ca 100644 --- a/src/main/java/org/apache/sling/tenant/Tenant.java +++ b/src/main/java/org/apache/sling/tenant/Tenant.java @@ -27,7 +27,7 @@ import aQute.bnd.annotation.ProviderType; * further customize request and other processing. * <p> * This interface is intended to be implemented by the implementor of the - * {@link TenantProvider} interface to be returned for it tenant accessor + * {@link TenantProvider} interface to be returned by the tenant accessor * methods. */ @ProviderType diff --git a/src/main/java/org/apache/sling/tenant/TenantProvider.java b/src/main/java/org/apache/sling/tenant/TenantProvider.java index b491deb..6c8a9d7 100644 --- a/src/main/java/org/apache/sling/tenant/TenantProvider.java +++ b/src/main/java/org/apache/sling/tenant/TenantProvider.java @@ -23,7 +23,7 @@ import java.util.Iterator; import aQute.bnd.annotation.ProviderType; /** - * The <code>TenantProvider</code> defines the service interface of for a sevice + * The <code>TenantProvider</code> defines the service interface * which may be asked for {@link Tenant tenant instances}. * <p> * For now this provider interface provides access to a tenant applying to a diff --git a/src/main/java/org/apache/sling/tenant/spi/TenantCustomizer.java b/src/main/java/org/apache/sling/tenant/spi/TenantCustomizer.java index d4ab46f..18785da 100644 --- a/src/main/java/org/apache/sling/tenant/spi/TenantCustomizer.java +++ b/src/main/java/org/apache/sling/tenant/spi/TenantCustomizer.java @@ -26,8 +26,10 @@ import org.apache.sling.tenant.Tenant; import aQute.bnd.annotation.ConsumerType; /** - * This is a service interface which services are called by the WebConsole - * plugin (or admin tool) to complete the Tenant setup. + * This is a service interface to customize tenant setup and administration. + * + * Tools can hook into the tenant creation, changing a tenant and removing + * thereof by implementing this interface. */ @ConsumerType public interface TenantCustomizer { -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
