2026-03-17 13:31:18 -07:00

22 lines
514 B
Java

package com.honeywell.honeywellXL10NextGen.xl10Controller.device;
import javax.baja.sys.BInterface;
import javax.baja.sys.BString;
import javax.baja.util.Lexicon;
public interface ISpyderLicense extends BInterface {
boolean brandModelExists(ISpyderLicense iSpyderLicense);
void doLicenseCheck(BString bString);
Lexicon getDeviceLexicon();
String[] getFeatureToCheck();
void licenseCheck(BString bString);
int readDeviceBrand(String str) throws Exception;
int readToolBrand();
}