mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Added 'enableAuditPath' and 'disableAuditPath'
- Various tests to see that the recorded data is changed - disabledPaths rely entirely on the property caching for fast retrieval git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16271 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -78,7 +78,7 @@ public interface AuditDAO
|
||||
private Long id;
|
||||
private String name;
|
||||
private Long modelId;
|
||||
private Set<String> disabledPaths;
|
||||
private Long disabledPathsId;
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
@@ -88,7 +88,7 @@ public interface AuditDAO
|
||||
.append("[ id=").append(id)
|
||||
.append(", name=").append(name)
|
||||
.append(", modelId=").append(modelId)
|
||||
.append(", disabledPaths=").append(disabledPaths)
|
||||
.append(", disabledPathsId=").append(disabledPathsId)
|
||||
.append("]");
|
||||
return sb.toString();
|
||||
}
|
||||
@@ -117,13 +117,13 @@ public interface AuditDAO
|
||||
{
|
||||
this.modelId = modelId;
|
||||
}
|
||||
public Set<String> getDisabledPaths()
|
||||
public Long getDisabledPathsId()
|
||||
{
|
||||
return disabledPaths;
|
||||
return disabledPathsId;
|
||||
}
|
||||
public void setDisabledPaths(Set<String> disabledPaths)
|
||||
public void setDisabledPathsId(Long disabledPathsId)
|
||||
{
|
||||
this.disabledPaths = disabledPaths;
|
||||
this.disabledPathsId = disabledPathsId;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user