Versions Compared

Key

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

...

All encryption is done through a core "encryption" service. The various points in the frameworks will call this central service for the actual encrypting/decrypting. Institutions wishing for different encryption algorithms can simply override the encryptionService Spring bean. For example, say you want to turn off encryption for development purposes, you can just add the following to your override the appropriate Spring beans filefiles....

Code Block
xml
xml
<bean id="encryptionService" class="org.kuali.rice.core.service.impl.NoEncryptionEncryptionServiceImpl" />

...