pat.setLongDescription("Read/Write Long Description");
types.add(pat);
}
private static void createScienceProjectStatusTypes(List<AbstractLookupType> types) {
ScienceProjectStatusType spst = new ScienceProjectStatusType();
spst.setId(3);
spst.setKey(ScienceProjectStatusType.Key.REGISTERED_KEY.getKey());
spst.setLabel("REGISTERED Label");
spst.setDescription("REGISTERED DESCRIPTION");
spst.setLongDescription("REGISTERED LONG DESCRIPTION");
types.add(spst);
spst = new ScienceProjectStatusType();
spst.setId(4);
spst.setKey(ScienceProjectStatusType.Key.SCORED_KEY.getKey());
spst.setLabel("SCORED Label");
spst.setDescription("SCORED DESCRIPTION");
spst.setLongDescription("SCORED LONG DESCRIPTION");
types.add(spst);
spst = new ScienceProjectStatusType();
spst.setId(5);
spst.setKey(ScienceProjectStatusType.Key.SCORINGINPROGRESS_KEY.getKey());
spst.setLabel("Scoring In Progress");
spst.setDescription("Scoring In Progress Description");
spst.setLongDescription("Scoring In Progress Long Description");
types.add(spst);
}