at.setLongDescription("Third Place Long Description");
types.add(at);
}
private static void createAttachmentTypes(List<AbstractLookupType> types) {
AttachmentType attachType = new AttachmentType();
attachType.setId(28);
attachType.setKey("attachmentTypeOne");
attachType.setLabel("Attachment Type One Label");
attachType.setDescription("Attachment Type One Description");
attachType.setLongDescription("Attachment Type One Long Description");
types.add(attachType);
attachType = new AttachmentType();
attachType.setId(29);
attachType.setKey("attachmentTypeTwo");
attachType.setLabel("Attachment Type Two Label");
attachType.setDescription("Attachment Type Two Description");
attachType.setLongDescription("Attachment Type Two Long Description");
types.add(attachType);
attachType = new AttachmentType();
attachType.setId(30);
attachType.setKey("attachmentTypeThree");
attachType.setLabel("Attachment Type Three Label");
attachType.setDescription("Attachment Type Three Description");
attachType.setLongDescription("Attachment Type Three Long Description");
types.add(attachType);
}