Interface EntityDefinition
-
public interface EntityDefinition
Definition for an entity, associating its' implementation, interfaces and nodetype.- Author:
- bramk, bartk
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getImplementation()
Returns null or the fully qualified classname of the implementation class.String[]
getInterfaces()
Returns null or an array of fully qualified classnames of the interfaces.String
getNodeType()
Returns null or the fully qualified nodetype name.
-
-
-
Method Detail
-
getImplementation
String getImplementation()
Returns null or the fully qualified classname of the implementation class.- Returns:
- null or the fully qualified classname of the implementation class
-
getInterfaces
String[] getInterfaces()
Returns null or an array of fully qualified classnames of the interfaces.- Returns:
- null or an array of fully qualified classnames of the interfaces
-
getNodeType
String getNodeType()
Returns null or the fully qualified nodetype name.- Returns:
- null or the fully qualified nodetype name
-
-