Versions Compared

Key

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

Implementing an IContentManager

Implement IContentManager

Consult the javadoc Javadoc to see which methods must be implemented, globally the following functionality is expected

...

The IContentManagerFactory constis consists of a single method which creates an IContentManager implementation for a given connection. If the given connection is not supported it may raise an exception. To implement this method, you may also need to create your own IConnection which can be used by your content manager.

...

Register your IContentManagerFactory implementation

Java

Annotate your implementation with the AquimaContentManagerFactory annotation and make sure the class will be scanned by Spring. Blueriq will automatically pick it up and use it where needed.

...