Package de.xima.fc.importer.interfaces
Interface IEntityDependency
- 
- All Superinterfaces:
 Serializable
- All Known Implementing Classes:
 EntityDependency,EntityListDependency
public interface IEntityDependency extends Serializable
Interface for dependencies of entities that have not not yet been resolved- Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectfindValue(List<IEntityImportConfig<?>> configs)Class<de.xima.cmn.dao.interfaces.IEntity<Long>>getEntityClass()StringgetFieldDescriptor()Describes the field on the entity (or its members), that has a dependency. 
 - 
 
- 
- 
Method Detail
- 
getFieldDescriptor
String getFieldDescriptor()
Describes the field on the entity (or its members), that has a dependency. E.g.: 'bedingung#folgeAktion'- Returns:
 Stringdescribing the dependency field
 
- 
getEntityClass
Class<de.xima.cmn.dao.interfaces.IEntity<Long>> getEntityClass()
- Returns:
 Classof the dependency
 
- 
findValue
Object findValue(List<IEntityImportConfig<?>> configs)
- Parameters:
 configs-Listof import configs to look for value- Returns:
 - dependency value if one could be found within the given list or 
nullotherwise 
 
 - 
 
 -