List<Status> statusList = new ArrayList<Status>(3);
final String statusChristian = "Christian";
Status status1 = new Status(1l, statusChristian);
Scope[] scope1 = {new Scope(marriageClassName), new Scope(weddingClassName)};
status1.setScope(Arrays.asList(scope1));
final String statusFulfld = "Fulfilled";
Status status2 = new Status(1l, statusFulfld);
Scope[] scope2 = {new Scope(marriageClassName)};
status2.setScope(Arrays.asList(scope2));
// status 'good applies to all classes, so leave scope blank
final String statusGd = "Good";
Status status3 = new Status(1l, statusGd);