First cut of audit annotations on public services, updated audit schema and first cut of default audit settings

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3312 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2006-07-12 16:59:19 +00:00
parent 9025ad537a
commit 868966c11a
33 changed files with 655 additions and 62 deletions

View File

@@ -16,6 +16,8 @@
*/
package org.alfresco.service.license;
import org.alfresco.service.NotAuditable;
/**
* Contract for managing licenses
@@ -30,6 +32,7 @@ public interface LicenseService
*
* @throws LicenseException
*/
@NotAuditable
public void verifyLicense() throws LicenseException;
/**
@@ -38,6 +41,7 @@ public interface LicenseService
* @return license descriptor (or null, if one is not installed)
* @throws LicenseException
*/
@NotAuditable
public LicenseDescriptor getLicense() throws LicenseException;
}