Created
March 3, 2011 08:20
-
-
Save ketankhairnar/852502 to your computer and use it in GitHub Desktop.
AuditableUsage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Auditable(operation = "Save/Update Login Configuration") | |
public void save(Config loginConfig) | |
{ | |
logger.debug("saving Login Config for terminalId=" + loginConfig.getTerminalId()); | |
getSession().merge(loginConfig); | |
getSession().flush(); | |
return; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment