Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 1.06 KB

README.md

File metadata and controls

29 lines (19 loc) · 1.06 KB

Build Status

Introduction

Spring Security addons. This code is not provided by SpringSource nor by the Spring Framework Project.

Audit

@Audited

See AuditedAnnotation. Simply add declarative auditing in your application using an @Audited annotation like this:

@Audited(message = "transferMoney(#{args[0].accountNumber}, #{args[1].accountNumber}, #{args[3].amount})")
public void transferMoney(Account from, Account to, Amount amount) throws BusinessException { ... }

How to Integrate this library in your project

See installation page

Developers