* {@inheritDoc}
*/
@Override
public List<String> getAnnotationTypeDomainValues(KamInfo ki,
AnnotationType annotationType) {
if (ki == null) throw new InvalidArgument(DEFAULT_MSG);
if (!exists(ki)) return null;
try {
KAMStoreDao dao = kamStoreDao(ki);
return dao.getAnnotationTypeDomainValues(annotationType);
} catch (SQLException e) {