You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by ju...@apache.org on 2014/07/30 10:22:54 UTC

svn commit: r1614582 - in /jackrabbit/oak/trunk: oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/version/ oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/token/ oak-core/src/main/java/org/apache/jackrabbit/oak/security...

Author: jukka
Date: Wed Jul 30 08:22:53 2014
New Revision: 1614582

URL: http://svn.apache.org/r1614582
Log:
OAK-2003: Avoid <p/> in javadoc

perl -i -pe 's[<p/>][<p>]g' `find . -name '*.java'`

Modified:
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/version/VersionConstants.java
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/token/TokenLoginModule.java
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/user/LoginModuleImpl.java
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/user/UserImporter.java
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/Authentication.java
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/GuestLoginModule.java
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/xml/ProtectedNodeImporter.java
    jackrabbit/oak/trunk/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/delegate/package-info.java
    jackrabbit/oak/trunk/oak-mk/src/main/java/org/apache/jackrabbit/mk/model/Id.java

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/version/VersionConstants.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/version/VersionConstants.java?rev=1614582&r1=1614581&r2=1614582&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/version/VersionConstants.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/version/VersionConstants.java Wed Jul 30 08:22:53 2014
@@ -78,7 +78,7 @@ public interface VersionConstants extend
     String RESTORE_PREFIX = "restore-";
 
     /**
-     * Quote from JSR 283 Section "15.12.3 Activity Storage"<p/>
+     * Quote from JSR 283 Section "15.12.3 Activity Storage"<p>
      * <p>
      * Activities are persisted as nodes of type nt:activity under system-generated
      * node names in activity storage below /jcr:system/jcr:activities.<br>
@@ -88,7 +88,7 @@ public interface VersionConstants extend
     String ACTIVITIES_PATH = '/' + JCR_SYSTEM + '/' + JCR_ACTIVITIES;
 
     /**
-     * Quote from JSR 283 Section "15.13.2 Configuration Proxy Nodes"<p/>
+     * Quote from JSR 283 Section "15.13.2 Configuration Proxy Nodes"<p>
      * <p>
      * Each configuration in a given workspace is represented by a distinct proxy
      * node of type nt:configuration located in configuration storage within the
@@ -100,7 +100,7 @@ public interface VersionConstants extend
     String CONFIGURATIONS_PATH = '/' + JCR_SYSTEM + '/' + JCR_CONFIGURATIONS;
 
     /**
-     * Quote from JSR 283 Section "3.13.8 Version Storage"<p/>
+     * Quote from JSR 283 Section "3.13.8 Version Storage"<p>
      * <p>
      * Version histories are stored in a single, repository-wide version storage
      * mutable and readable through the versioning API.

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/token/TokenLoginModule.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/token/TokenLoginModule.java?rev=1614582&r1=1614581&r2=1614582&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/token/TokenLoginModule.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/token/TokenLoginModule.java Wed Jul 30 08:22:53 2014
@@ -71,7 +71,7 @@ import org.slf4j.LoggerFactory;
  *
  * <h3>Commit</h3>
  * If login was successfully handled by this module the {@link #commit()} will
- * just populate the subject.<p/>
+ * just populate the subject.<p>
  *
  * If the login was successfully handled by another module in the chain, the
  * {@code TokenLoginModule} will test if the login was associated with a

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/user/LoginModuleImpl.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/user/LoginModuleImpl.java?rev=1614582&r1=1614581&r2=1614582&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/user/LoginModuleImpl.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/user/LoginModuleImpl.java Wed Jul 30 08:22:53 2014
@@ -92,7 +92,7 @@ import org.slf4j.LoggerFactory;
  * Impersonation will succeed if the {@link ImpersonationCredentials#getBaseCredentials() base credentials}
  * refer to a valid user that has not been disabled. If the authenticating
  * subject is not allowed to impersonate the specified user, the login attempt
- * will fail with {@code LoginException}.<p/>
+ * will fail with {@code LoginException}.<p>
  * Please note, that a user will always be allowed to impersonate him/herself
  * irrespective of the impersonation definitions exposed by
  * {@link org.apache.jackrabbit.api.security.user.User#getImpersonation()}

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/user/UserImporter.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/user/UserImporter.java?rev=1614582&r1=1614581&r2=1614582&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/user/UserImporter.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/user/UserImporter.java Wed Jul 30 08:22:53 2014
@@ -71,7 +71,7 @@ import static org.apache.jackrabbit.oak.
 /**
  * {@code UserImporter} implements both {@code ode>ProtectedPropertyImporter}
  * and {@code ProtectedNodeImporter} and provides import facilities for protected
- * user and group content defined and used by this user management implementation.<p/>
+ * user and group content defined and used by this user management implementation.<p>
  * <p>
  * The importer is intended to be used by applications that import user content
  * extracted from another repository instance and immediately persist the

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/Authentication.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/Authentication.java?rev=1614582&r1=1614581&r2=1614582&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/Authentication.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/Authentication.java Wed Jul 30 08:22:53 2014
@@ -24,11 +24,11 @@ import javax.security.auth.login.LoginEx
  * {@link javax.jcr.Credentials Credentials} during the
  * {@link javax.security.auth.spi.LoginModule#login() login step} of the
  * authentication process. The validation depends on the authentication
- * mechanism in place.<p/>
+ * mechanism in place.<p>
  *
  * A given implementation may only handle certain types of {@code Credentials}
  * as the authentication process is tightly coupled to the semantics of the
- * {@code Credentials}.<p/>
+ * {@code Credentials}.<p>
  *
  * For example a implementation may only be able to validate UserID/password
  * pairs such as passed with {@link javax.jcr.SimpleCredentials}, while another

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/GuestLoginModule.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/GuestLoginModule.java?rev=1614582&r1=1614581&r2=1614582&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/GuestLoginModule.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/authentication/GuestLoginModule.java Wed Jul 30 08:22:53 2014
@@ -37,7 +37,7 @@ import org.slf4j.LoggerFactory;
  * in jackrabbit-core. While the specification claims that {@link javax.jcr.Repository#login}
  * with {@code null} Credentials implies that the authentication process is
  * handled externally, the default implementation jackrabbit-core treated it
- * as 'anonymous' login such as covered by using {@link GuestCredentials}.<p/>
+ * as 'anonymous' login such as covered by using {@link GuestCredentials}.<p>
  *
  * This {@code LoginModule} implementation performs the following tasks upon
  * {@link #login()}.
@@ -55,7 +55,7 @@ import org.slf4j.LoggerFactory;
  * in phase 1 it will add those credentials and the {@link EveryonePrincipal}
  * to the subject in phase 2 of the login process. Subsequent login modules
  * my choose to provide additional principals/credentials associated with
- * a guest login.<p/>
+ * a guest login.<p>
  *
  * The authentication configuration using this {@code LoginModule} could for
  * example look as follows:

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/xml/ProtectedNodeImporter.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/xml/ProtectedNodeImporter.java?rev=1614582&r1=1614581&r2=1614582&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/xml/ProtectedNodeImporter.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/xml/ProtectedNodeImporter.java Wed Jul 30 08:22:53 2014
@@ -61,7 +61,7 @@ public interface ProtectedNodeImporter e
      * Informs this importer that the tree to be imported below
      * {@code protectedParent} has bee completed. This allows the importer
      * to be reset in order to be able to deal with another call to
-     * {@link #start(Tree)}.<p/>
+     * {@link #start(Tree)}.<p>
      * If {@link #start(Tree)} hasn't been called before, this method returns
      * silently.
      *
@@ -79,7 +79,7 @@ public interface ProtectedNodeImporter e
      * If the importer is able to successfully import the given information
      * this method returns silently. Otherwise
      * {@code ConstraintViolationException} is thrown, in which case the
-     * whole import fails.<p/>
+     * whole import fails.<p>
      * In case this importer deals with multiple levels of nodes, it is in
      * charge of maintaining the hierarchical structure (see also {#link endChildInfo()}.
      * <p>

Modified: jackrabbit/oak/trunk/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/delegate/package-info.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/delegate/package-info.java?rev=1614582&r1=1614581&r2=1614582&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/delegate/package-info.java (original)
+++ jackrabbit/oak/trunk/oak-jcr/src/main/java/org/apache/jackrabbit/oak/jcr/delegate/package-info.java Wed Jul 30 08:22:53 2014
@@ -25,7 +25,7 @@
  * to internals by simply casting to an implementation class. Further it
  * makes internal round-tripping through the JCR API unnecessary since
  * all functionality is provided by the internal interface (i.e. delegates),
- * which simplifies maintaining and checking state invariants.<p/>
+ * which simplifies maintaining and checking state invariants.<p>
  *
  * <b>Responsibilities of JCR API implementation classes:</b>
  * <ul>

Modified: jackrabbit/oak/trunk/oak-mk/src/main/java/org/apache/jackrabbit/mk/model/Id.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-mk/src/main/java/org/apache/jackrabbit/mk/model/Id.java?rev=1614582&r1=1614581&r2=1614582&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-mk/src/main/java/org/apache/jackrabbit/mk/model/Id.java (original)
+++ jackrabbit/oak/trunk/oak-mk/src/main/java/org/apache/jackrabbit/mk/model/Id.java Wed Jul 30 08:22:53 2014
@@ -28,7 +28,7 @@ import java.util.Arrays;
  * of an identifier instance. therefore it doesn't cache e.g. the hashCode
  * or the string representation.
  * <p>
- * <b>Important Note:</b><p/>
+ * <b>Important Note:</b><p>
  * An {@link Id} is considered immutable. The {@code byte[]}
  * passed to {@link Id#Id(byte[])} must not be reused or modified, the same
  * applies for the {@code byte[]} returned by {@link Id#getBytes()}.