Project

General

Profile

« Previous | Next » 

Revision 9f53e2a3

Added by Andreas Müller over 7 years ago

ref #6072 test missing entity in webservice

View differences:

cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/dto/FindByMarkerDTO.java
40 40
	public class CdmEntity{
41 41
		UUID cdmUuid;
42 42
		String titleCache;
43
		T entity;
43
		T entitys;
44 44
		public CdmEntity(UUID cdmUuid, String titleCache, T entity) {
45 45
			this.cdmUuid = cdmUuid;
46 46
			this.titleCache = titleCache;
47
			this.entity = entity;
47
			this.entitys = entity;
48 48
		}
49 49
		public UUID getCdmUuid() {return cdmUuid;}
50 50
		public String getTitleCache() {return titleCache;}
51
		public T getEntity() {return entity;}
51
		public T getEntityX() {return entitys;}
52 52

  
53 53
	}
54 54

  

Also available in: Unified diff