Skip to content

Commit

Permalink
Merge pull request #620 from zinggAI/issue607_1
Browse files Browse the repository at this point in the history
additional methods
  • Loading branch information
sonalgoyal authored Jul 9, 2023
2 parents 5061714 + 61a88c1 commit 055f2ee
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
package zingg.common.client.license;

import java.util.Properties;

public interface ILicenseValidator {

public String getName();

public boolean validate();

public Properties getLicenseProps();

public void setLicenseProps(Properties licenseProps);

public String getKey();

public void setKey(String key);

public String getValToCheck();

public void setValToCheck(String valToCheck);

public String getName();

public void setName(String name);

}
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
package zingg.common.client.license;

import java.util.Properties;

public interface IZinggLicense {

public ILicenseValidator getValidator(String name);


public Properties getLicenseProps();

}

0 comments on commit 055f2ee

Please sign in to comment.