mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Java doc tidy up in auditing and scheduled actions
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5295 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -48,32 +48,63 @@ public class CompensatingActionException extends AlfrescoRuntimeException
|
||||
|
||||
List<Pair<Action, NodeRef>> compensatingActions;
|
||||
|
||||
|
||||
/**
|
||||
* @param msgId
|
||||
*/
|
||||
public CompensatingActionException(String msgId)
|
||||
{
|
||||
super(msgId);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param msgId
|
||||
* @param cause
|
||||
* @param compensatingActions
|
||||
*/
|
||||
public CompensatingActionException(String msgId, Throwable cause, List<Pair<Action, NodeRef>> compensatingActions)
|
||||
{
|
||||
super(msgId, cause);
|
||||
this.compensatingActions = compensatingActions;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the compensationg actions
|
||||
*
|
||||
* @return - the compensating actions
|
||||
*/
|
||||
public List<Pair<Action, NodeRef>> getCompensatingActions()
|
||||
{
|
||||
return compensatingActions;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param msgId
|
||||
* @param msgParams
|
||||
*/
|
||||
public CompensatingActionException(String msgId, Object[] msgParams)
|
||||
{
|
||||
super(msgId, msgParams);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param msgId
|
||||
* @param cause
|
||||
*/
|
||||
public CompensatingActionException(String msgId, Throwable cause)
|
||||
{
|
||||
super(msgId, cause);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param msgId
|
||||
* @param msgParams
|
||||
* @param cause
|
||||
*/
|
||||
public CompensatingActionException(String msgId, Object[] msgParams, Throwable cause)
|
||||
{
|
||||
super(msgId, msgParams, cause);
|
||||
|
Reference in New Issue
Block a user