Project

General

Profile

« Previous | Next » 

Revision 279b1a0c

Added by Andreas Müller over 11 years ago

Latest AlgaTerra Import developments

View differences:

app-import/src/main/java/eu/etaxonomy/cdm/io/algaterra/AlgaTerraImportState.java
29 29
	private static final Logger logger = Logger.getLogger(AlgaTerraImportState.class);
30 30

  
31 31
	private boolean specimenVocabulariesCreated = false;
32
	private Map<String, UUID> parameterFeatureUuidMap = new HashMap<String, UUID>(); 
33 32
	
34 33
	public AlgaTerraImportState(AlgaTerraImportConfigurator config) {
35 34
		super(config);
......
47 46
		this.specimenVocabulariesCreated = specimenVocabulariesCreated;
48 47
	}
49 48

  
50
	public UUID getParameterFeatureUuid(String key) {
51
		return parameterFeatureUuidMap.get(key);
52
	}
53

  
54
	public void putParameterFeatureUuid(String key, UUID parameterFeatureUuid) {
55
		this.parameterFeatureUuidMap.put(key, parameterFeatureUuid);
56
	}
57 49

  
58 50
}

Also available in: Unified diff