package com.qianwen.license.common; import java.io.File; import java.text.DateFormat; import java.text.MessageFormat; import java.text.SimpleDateFormat; import java.util.prefs.Preferences; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import de.schlichtherle.license.CipherParam; import de.schlichtherle.license.DefaultCipherParam; import de.schlichtherle.license.DefaultLicenseParam; import de.schlichtherle.license.KeyStoreParam; import de.schlichtherle.license.LicenseContent; import de.schlichtherle.license.LicenseManager; import de.schlichtherle.license.LicenseParam; public class LicenseVerifyParam { /** * 证书subject */ private String subject; /** * 公钥别称 */ private String publicAlias; /** * 访问公钥库的密码 */ private String storePass; /** * 证书生成路径 */ private String licensePath; /** * 密钥库存储路径 */ private String publicKeysStorePath; public String getSubject() { return subject; } public void setSubject(String subject) { this.subject = subject; } public String getPublicAlias() { return publicAlias; } public void setPublicAlias(String publicAlias) { this.publicAlias = publicAlias; } public String getStorePass() { return storePass; } public void setStorePass(String storePass) { this.storePass = storePass; } public String getLicensePath() { return licensePath; } public void setLicensePath(String licensePath) { this.licensePath = licensePath; } public String getPublicKeysStorePath() { return publicKeysStorePath; } public void setPublicKeysStorePath(String publicKeysStorePath) { this.publicKeysStorePath = publicKeysStorePath; } }