if(sAnnotation != null) {
Object value = DefaultReflectionProvider.invoke(method, instance);
tmpStatement.setSubject(value);
}
object oAnnotation = method.getAnnotation(object.class);
if(oAnnotation != null) {
// TODO only 1:1 relations are handled, need to take care of 1:n relations as well.
Object value = DefaultReflectionProvider.invoke(method, instance);
tmpStatement.setObject(value);
}