Versions Compared

Key

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

If you created your own connection it's necessary to create your own connection manager. 

1. Create the connectionmanager

Create a new class and let it implement the IConnectionManager interface (and its methods).

2. Annotate the class 

Add the "@AquimaConnectionManager" annotation to the class.

Code Block
@AquimaConnectionManager
public class CustomConnectionManager implements IConnectionManager{

3. Implement the code

Implement the code so you can get and set your own connection. 

...