Skip to content

Commit

Permalink
additional methods
Browse files Browse the repository at this point in the history
  • Loading branch information
vikasgupta78 committed Jul 5, 2023
1 parent e9a5741 commit 2ea1aa8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
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);

}

0 comments on commit 2ea1aa8

Please sign in to comment.