Improved comment and added button for generation.
This commit is contained in:
parent
f44bf65a83
commit
ac18001da8
|
@ -27,7 +27,10 @@ public abstract class Person extends BasicEntity {
|
||||||
private String emailAddress;
|
private String emailAddress;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The list of teams that this person belongs to.
|
* The list of teams that this person belongs to. Because a person can belong to more than one team, it is implied
|
||||||
|
* that each person exists in only one location in the database. Therefore, if one person is enrolled in two courses
|
||||||
|
* both of which use this application, only one instance of that person will exist, and will simply be related to
|
||||||
|
* two teams.
|
||||||
*/
|
*/
|
||||||
@ManyToMany(
|
@ManyToMany(
|
||||||
fetch = FetchType.LAZY,
|
fetch = FetchType.LAZY,
|
||||||
|
|
|
@ -15,6 +15,9 @@
|
||||||
<div class="sidebar_block">
|
<div class="sidebar_block">
|
||||||
This is an example sidebar block.
|
This is an example sidebar block.
|
||||||
</div>
|
</div>
|
||||||
|
<div class="sidebar_block">
|
||||||
|
Click here to generate courses.
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue