Interface TypeDao

All Known Implementing Classes:
DefaultTypeDao

public interface TypeDao
DAO class for type service.
  • Method Details

    • findComposedTypeByCode

      ComposedTypeModel findComposedTypeByCode(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(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(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(String code)
      Find types for code.
      Parameters:
      code - the code of the required type
      Returns:
      the list of type models