Interface TypeDao
-
- All Known Implementing Classes:
DefaultTypeDao
public interface TypeDao
DAO class for type service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AtomicTypeModel
findAtomicTypeByCode(java.lang.String code)
Find atomic types for code.AtomicTypeModel
findAtomicTypeByJavaClass(java.lang.Class javaClass)
Find atomic types for java class.ComposedTypeModel
findComposedTypeByCode(java.lang.String code)
Find composed types for code.TypeModel
findTypeByCode(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
-
-