Interface TypeDao
-
- All Known Implementing Classes:
DefaultTypeDao
public interface TypeDaoDAO class for type service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AtomicTypeModelfindAtomicTypeByCode(java.lang.String code)Find atomic types for code.AtomicTypeModelfindAtomicTypeByJavaClass(java.lang.Class javaClass)Find atomic types for java class.ComposedTypeModelfindComposedTypeByCode(java.lang.String code)Find composed types for code.TypeModelfindTypeByCode(java.lang.String code)Find types for code.
-
-
-
Method Detail
-
findComposedTypeByCode
ComposedTypeModel findComposedTypeByCode(java.lang.String code)
Find composed types for code.- Parameters:
code- the code of the required composed type- Returns:
- the list of composed type models
-
findAtomicTypeByCode
AtomicTypeModel findAtomicTypeByCode(java.lang.String code)
Find atomic types for code.- Parameters:
code- the code of the required atomic type- Returns:
- the list of atomic type models
-
findAtomicTypeByJavaClass
AtomicTypeModel findAtomicTypeByJavaClass(java.lang.Class javaClass)
Find atomic types for java class.- Parameters:
javaClass- class the code of the required atomic type- Returns:
- the list of atomic type models
-
findTypeByCode
TypeModel findTypeByCode(java.lang.String code)
Find types for code.- Parameters:
code- the code of the required type- Returns:
- the list of type models
-
-