Project

General

Profile

« Previous | Next » 

Revision 14ac3831

Added by Andreas Müller over 3 years ago

cleanup

View differences:

eu.etaxonomy.taxeditor.navigation/src/main/java/eu/etaxonomy/taxeditor/navigation/navigator/operation/UpdateSubtreeOperation.java
1
/**
2
* Copyright (C) 2018 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
1 9
package eu.etaxonomy.taxeditor.navigation.navigator.operation;
2 10

  
3 11
import java.util.UUID;
......
19 27

  
20 28
public abstract class UpdateSubtreeOperation extends RemotingCdmUpdateOperation {
21 29

  
22
	ForSubtreeConfiguratorBase config;
30
	private ForSubtreeConfiguratorBase config;
23 31

  
24
	UUID parentUuid;
32
	private UUID parentUuid;
25 33

  
26
	 TaxonNode subtreeNode;
27
	 ITaxonNodeService taxonNodeService;
28
	 ILongRunningTasksService longRunningTaskService;
34
	private TaxonNode subtreeNode;
35
	private ITaxonNodeService taxonNodeService;
36
	private ILongRunningTasksService longRunningTaskService;
29 37

  
30
	 protected EModelService modelService = null;
38
	protected EModelService modelService = null;
31 39

  
32
	 public UpdateSubtreeOperation(Object source,
40
	public UpdateSubtreeOperation(Object source,
33 41
	            boolean async,
34 42
	            UUID taxonNodeUuid,
35 43
	            EPartService partService,
......
46 54
	        longRunningTaskService = CdmApplicationState.getLongRunningTasksService();
47 55
	        subtreeNode = CdmStore.getService(ITaxonNodeService.class).load(config.getSubtreeUuid());
48 56
	    }
49

  
50
}
57
}

Also available in: Unified diff