private void tryToInjectPollState( Response response ) {
pollState.addResponse( response );
Field[] fields = target.getClass().getDeclaredFields();
for( Field field : fields ) {
Context contextAnnotation = field.getAnnotation( Context.class );
if( contextAnnotation != null && field.getType() == PollState.class ) {
injectPollState( field );
}
}
}