Interface TypeDao
- All Known Implementing Classes:
DefaultTypeDao
public interface TypeDao
DAO class for type service.
-
Method Summary
Modifier and TypeMethodDescriptionfindAtomicTypeByCode(String code) Find atomic types for code.findAtomicTypeByJavaClass(Class javaClass) Find atomic types for java class.findComposedTypeByCode(String code) Find composed types for code.findTypeByCode(String code) Find types for code.
-
Method Details
-
findComposedTypeByCode
Find composed types for code.- Parameters:
code- the code of the required composed type- Returns:
- the list of composed type models
-
findAtomicTypeByCode
Find atomic types for code.- Parameters:
code- the code of the required atomic type- Returns:
- the list of atomic type models
-
findAtomicTypeByJavaClass
Find atomic types for java class.- Parameters:
javaClass- class the code of the required atomic type- Returns:
- the list of atomic type models
-
findTypeByCode
Find types for code.- Parameters:
code- the code of the required type- Returns:
- the list of type models
-