12 lines
312 B
Java
12 lines
312 B
Java
package javax.baja.platform;
|
|
|
|
import javax.baja.file.BIFile;
|
|
|
|
public interface PlatformLicenseManager {
|
|
String getHostId() throws Exception;
|
|
|
|
BIFile[] getLicenses() throws Exception;
|
|
|
|
void installLicenses(BIFile[] bIFileArr, IPlatformOperationListener iPlatformOperationListener) throws Exception;
|
|
}
|