Skip to content

Commit

Permalink
JavaDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
gunnarmorling committed Feb 16, 2013
1 parent 13a13a1 commit 4392bde
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Bean Validation providers are identified by the presence of
* META-INF/services/javax.validation.spi.ValidationProvider
* files following the Service Provider pattern described
* <a href="http://java.sun.com/j2se/1.5.0/docs/guide/jar/jar.html#Service%20Provider">here</a>
* <a href="http://docs.oracle.com/javase/6/docs/technotes/guides/jar/jar.html#Service%20Provider">here</a>.
* <p/>
* Each META-INF/services/javax.validation.spi.ValidationProvider file contains the list of
* {@code ValidationProvider} implementations each of them representing a provider.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ public interface GenericBootstrap {
* returned by the {@code ValidationProviderResolver} strategy.
*
* @return a Configuration implementation compliant with the bootstrap state
* @throws javax.validation.ValidationException if the Configuration object cannot be built
* this is generally due to an issue with the ValidationProviderResolver
* @throws javax.validation.ValidationException
* If the Configuration object cannot be built. This is
* generally due to an issue with the
* ValidationProviderResolver.
*/
Configuration<?> configure();
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,10 @@ public interface ProviderSpecificBootstrap<T extends Configuration<T>> {
*
* @return {@code Configuration} sub interface implementation
*
* @throws javax.validation.ValidationException if the Configuration object cannot be built
* this is generally due to an issue with the ValidationProviderResolver
* @throws javax.validation.ValidationException
* If the Configuration object cannot be built. This is
* generally due to an issue with the
* ValidationProviderResolver.
*/
public T configure();
}

0 comments on commit 4392bde

Please sign in to comment.