SEC-3056 - Fix JavaDoc errors.
Fixed JavaDoc errors accross multiple modules in order to make javadoc happy with Java 8.
This commit is contained in:
committed by
Rob Winch
parent
7317c090cc
commit
ad1d858e2b
+9
-11
@@ -29,41 +29,39 @@ import java.util.Map;
|
||||
* <p>
|
||||
* By defining this object as a Bean, Spring Security is exposed as SpEL expressions for
|
||||
* creating Spring Data queries.
|
||||
* </p>
|
||||
*
|
||||
* <p>
|
||||
* With Java based configuration, we can define the bean using the following:
|
||||
* </p>
|
||||
*
|
||||
* <p>
|
||||
* For example, if you return a UserDetails that extends the following User object:
|
||||
* </p>
|
||||
*
|
||||
* <pre>
|
||||
* @Entity
|
||||
* @Entity
|
||||
* public class User {
|
||||
* @GeneratedValue(strategy = GenerationType.AUTO)
|
||||
* @Id
|
||||
* @GeneratedValue(strategy = GenerationType.AUTO)
|
||||
* @Id
|
||||
* private Long id;
|
||||
*
|
||||
* ...
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* <p>
|
||||
* And you have a Message object that looks like the following:
|
||||
* </p>
|
||||
*
|
||||
* <pre>
|
||||
* @Entity
|
||||
* @Entity
|
||||
* public class Message {
|
||||
* @Id
|
||||
* @GeneratedValue(strategy = GenerationType.AUTO)
|
||||
* @Id
|
||||
* @GeneratedValue(strategy = GenerationType.AUTO)
|
||||
* private Long id;
|
||||
*
|
||||
* @OneToOne
|
||||
* @OneToOne
|
||||
* private User to;
|
||||
*
|
||||
* ...
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* You can use the following {@code Query} annotation to search for only messages that are
|
||||
|
||||
Reference in New Issue
Block a user