| 1 | |
package org.paneris.bibliomania.loadtest; |
| 2 | |
|
| 3 | |
import java.io.Serializable; |
| 4 | |
|
| 5 | |
class BookDesc implements Serializable { |
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
private static final long serialVersionUID = 1L; |
| 10 | |
int sectiongroup; |
| 11 | |
int section; |
| 12 | |
int author; |
| 13 | |
int book; |
| 14 | |
ChapterDesc[] chapters; |
| 15 | |
|
| 16 | |
BookDesc(int sectiongroup, int section, int author, int book, |
| 17 | 0 | ChapterDesc[] chapters) { |
| 18 | 0 | this.sectiongroup = sectiongroup; |
| 19 | 0 | this.section = section; |
| 20 | 0 | this.author = author; |
| 21 | 0 | this.book = book; |
| 22 | 0 | this.chapters = chapters; |
| 23 | 0 | } |
| 24 | |
} |