Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
boolean com.griddynamics.jagger.engine.e1.collector.NotNullResponseValidator.validate ( Object  query,
Object  endpoint,
Object  result,
long  duration 
)

Return false if invocation result is null.

Author
Dmitry Kotlyarov
Parameters
query- the query of current invocation
endpoint- the endpoint of current invocation
result- the result of invocation
duration- the duration of invocation
Returns
false if invocation result is null

Definition at line 51 of file NotNullResponseValidator.java.

51  {
52  return result != null;
53  }