Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The user has to be informed at some point that the application monitors the user actions and transmits them to a measuring system. Furthermore, the user must be informed that he has the possibility to switch of the tracking in the application and can contradict this way. (see: ~anja:Opt-Out)

For this purpose, please include the following text in German language in an appropriate place in your app implementation:

...

Code Block
languagejava
/**
 * When the value <code>false</code> is specified, the sending of 
 * requests to the measuring system is switched off.
 * This value is <code>true</code> by default.
 */
public void setTracking(boolean tracking) { }
/**
 * Delivers the value <code>true</code> when the tracking 
 * is activated otherwise the value is <code>false</code>.
 */
public boolean isTracking() { }

...