toolbox.dao
Interface DaoBeanEx

Package class diagram package DaoBeanEx
All Superinterfaces:
DaoBean
All Known Implementing Classes:
LogMessage

public interface DaoBeanEx
extends DaoBean

Defines an interface that enhances the DaoBean interface with additional methods on property and mapping types.


Method Summary
 java.lang.Class getMappingType(java.lang.String mapping)
          Return the type of the provided mapping.
 java.util.Map getMappingTypes()
          Return the mapping types.
 java.lang.Class getPropertyType(java.lang.String prop)
          Return the type of the provided property.
 java.util.Map getPropertyTypes()
          Return the property types.
 
Methods inherited from interface toolbox.dao.DaoBean
getMap, getMapping, getMappings, setMap
 

Method Detail

getMappingType

java.lang.Class getMappingType(java.lang.String mapping)
Return the type of the provided mapping.

Parameters:
mapping - String containing the mapping value.
Returns:
Class containing the mapping type.

getPropertyType

java.lang.Class getPropertyType(java.lang.String prop)
Return the type of the provided property.

Parameters:
prop - String containing the property name.
Returns:
Class containing the property type.

getMappingTypes

java.util.Map getMappingTypes()
Return the mapping types.

Returns:
Map instance containing mapping types.

getPropertyTypes

java.util.Map getPropertyTypes()
Return the property types.

Returns:
Map instance containing property types.