1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package biz.report;
|
| import foundation.preload.Bucket;
|
| public class ReportBucket extends Bucket<Report>{
| private static ReportBucket instance;
|
| public static synchronized ReportBucket getInstance() {
| if (instance != null) {
| return instance;
| }
|
| instance = new ReportBucket();
| return instance;
| }
| }
|
|