component-test/src/main/java/org/apache/fineract/cn/anubis/example/nokeystorage/ExampleRestController.java [60:76]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    initialized = true;
    return new ResponseEntity<>(HttpStatus.OK);
  }

  @RequestMapping(value = "/initialize", method = RequestMethod.GET)
  @Permittable(AcceptedTokenType.GUEST)
  public ResponseEntity<Boolean> isInitialized()
  {
    return new ResponseEntity<>(initialized, HttpStatus.OK);
  }

  @RequestMapping(value = "/initialize", method = RequestMethod.DELETE)
  @Permittable(AcceptedTokenType.GUEST)
  public ResponseEntity<Void> uninitialize()
  {
    initialized = false;
    return new ResponseEntity<>(HttpStatus.OK);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



component-test/src/main/java/org/apache/fineract/cn/anubis/example/simple/ExampleRestController.java [43:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    initialized = true;
    return new ResponseEntity<>(HttpStatus.OK);
  }

  @RequestMapping(value = "/initialize", method = RequestMethod.GET)
  @Permittable(AcceptedTokenType.GUEST)
  public ResponseEntity<Boolean> isInitialized()
  {
    return new ResponseEntity<>(initialized, HttpStatus.OK);
  }

  @RequestMapping(value = "/initialize", method = RequestMethod.DELETE)
  @Permittable(AcceptedTokenType.GUEST)
  public ResponseEntity<Void> uninitialize()
  {
    initialized = false;
    return new ResponseEntity<>(HttpStatus.OK);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



