PageRenderTime 35ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/src/main/java/com/atlassian/util/profiling/filters/StatusUpdateStrategy.java

https://bitbucket.org/atlassian/atlassian-profiling
Java | 13 lines | 6 code | 2 blank | 5 comment | 0 complexity | 8e505f0ddaea2cb94ca51143f5a4c386 MD5 | raw file
  1. package com.atlassian.util.profiling.filters;
  2. import javax.servlet.ServletRequest;
  3. public interface StatusUpdateStrategy
  4. {
  5. /**
  6. * Turn on or off profiling via the request.
  7. *
  8. * @param request containing the query string to parse
  9. */
  10. void setStateViaRequest(ServletRequest request);
  11. }