Merge branch 'release/3.12.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / newWizard / NewAmplificationWizard.java
1 // $Id$
2 /**
3 * Copyright (C) 2014 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10 package eu.etaxonomy.taxeditor.newWizard;
11
12 import eu.etaxonomy.cdm.api.service.molecular.IAmplificationService;
13 import eu.etaxonomy.cdm.model.molecular.Amplification;
14 import eu.etaxonomy.taxeditor.store.CdmStore;
15
16 /**
17 * @author pplitzner
18 * @date 11.03.2014
19 *
20 */
21 public class NewAmplificationWizard extends AbstractNewEntityWizard<Amplification> {
22
23 private AmplificationGeneralWizardPage amplificationGeneralPage;
24
25 /** {@inheritDoc} */
26 @Override
27 public void addPages() {
28 amplificationGeneralPage = new AmplificationGeneralWizardPage(formFactory, getConversationHolder(), getEntity());
29 addPage(amplificationGeneralPage);
30 }
31
32 /** {@inheritDoc} */
33 @Override
34 protected Amplification createNewEntity() {
35 return Amplification.NewInstance();
36 }
37
38 /** {@inheritDoc} */
39 @Override
40 protected void saveEntity() {
41 if(CdmStore.getCurrentSessionManager().isRemoting()) {
42 CdmStore.getService(IAmplificationService.class).merge(getEntity(), true);
43 } else {
44 CdmStore.getService(IAmplificationService.class).save(getEntity());
45 }
46 }
47
48 /** {@inheritDoc} */
49 @Override
50 public void setEntity(Amplification entity) {
51 super.setEntity(entity);
52 amplificationGeneralPage.getDetailElement().setEntity(entity);
53 }
54
55 @Override
56 protected String getEntityName() {
57 return "Amplification";
58 }
59 }