Merge from head.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3314 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-07-13 07:06:30 +00:00
parent b601821d98
commit fae76d7896
41 changed files with 1354 additions and 147 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;
}